diff --git a/api/@internal/component/ets/sidebar.d.ts b/api/@internal/component/ets/sidebar.d.ts index dcd1d9b9b4d667928d234ee92a223789c48977cd..1daef1b95ba4635784bd30bb311dc1f301b48ec4 100644 --- a/api/@internal/component/ets/sidebar.d.ts +++ b/api/@internal/component/ets/sidebar.d.ts @@ -107,21 +107,35 @@ declare class SideBarContainerAttribute extends CommonMethod void): SideBarContainerAttribute; /** * Sets the length of sidebar. - * Notice: only supports 'number' type on 8, supports 'Length' type since 9. + * @since 8 + */ + sideBarWidth(value: number): SideBarContainerAttribute; + /** + * Sets the min length of sidebar. + * default value is 200vp. + * @since 8 + */ + minSideBarWidth(value: number): SideBarContainerAttribute; + /** + * Sets the max length of sidebar. + * default value is 280vp. + * @since 8 + */ + maxSideBarWidth(value: number): SideBarContainerAttribute; + /** + * Sets the length of sidebar. * @since 9 */ sideBarWidth(value: Length): SideBarContainerAttribute; /** * Sets the min length of sidebar. * default value is 200vp. - * Notice: only supports 'number' type on 8, supports 'Length' type since 9. * @since 9 */ minSideBarWidth(value: Length): SideBarContainerAttribute; /** * Sets the max length of sidebar. * default value is 280vp. - * Notice: only supports 'number' type on 8, supports 'Length' type since 9. * @since 9 */ maxSideBarWidth(value: Length): SideBarContainerAttribute;