diff --git a/api/@internal/component/ets/column_split.d.ts b/api/@internal/component/ets/column_split.d.ts index f76e6cc09da387856ea2096a1079ca28614b94c2..bb8179bc84105bab53ac8ddc96efda2e7f01e194 100644 --- a/api/@internal/component/ets/column_split.d.ts +++ b/api/@internal/component/ets/column_split.d.ts @@ -186,7 +186,7 @@ declare class ColumnSplitAttribute extends CommonMethod { resizeable(value: boolean): ColumnSplitAttribute; /** - * Called when the ColumnSplit split line style is set. + * Set margin of the split line. * @param { ColumnSplitDividerStyle | null } value - indicates the style of the indicator. * if value is set to null, the value of startMargin and endMargin is set to 0.0 by default. * @returns { ColumnSplitAttribute } the attribute of the ColumnSplit @@ -195,7 +195,7 @@ declare class ColumnSplitAttribute extends CommonMethod { * @since 10 */ /** - * Called when the ColumnSplit split line style is set. + * Set margin of the split line. * @param { ColumnSplitDividerStyle | null } value - indicates the style of the indicator. * if value is set to null, the value of startMargin and endMargin is set to 0.0 by default. * @returns { ColumnSplitAttribute } the attribute of the ColumnSplit diff --git a/api/@internal/component/ets/common.d.ts b/api/@internal/component/ets/common.d.ts index 0a2d2edefc144f1b7b2311cef3f31a8004bc8bcb..43d0c8125d9207b493e72b3c9638830f43fce3da 100644 --- a/api/@internal/component/ets/common.d.ts +++ b/api/@internal/component/ets/common.d.ts @@ -29316,7 +29316,7 @@ declare interface LayoutChild { } /** - * Sub component layout info. + * Custom component layout info. * * @extends SizeResult * @interface GeometryInfo @@ -29325,7 +29325,7 @@ declare interface LayoutChild { * @since 10 */ /** - * Sub component layout info. + * Custom component layout info. * * @extends SizeResult * @interface GeometryInfo @@ -29336,7 +29336,7 @@ declare interface LayoutChild { */ declare interface GeometryInfo extends SizeResult { /** - * Sub component borderWidth info. + * Custom component borderWidth info. * * @type { EdgeWidth } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29344,7 +29344,7 @@ declare interface GeometryInfo extends SizeResult { * @since 10 */ /** - * Sub component borderWidth info. + * Custom component borderWidth info. * * @type { EdgeWidth } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29355,7 +29355,7 @@ declare interface GeometryInfo extends SizeResult { borderWidth: EdgeWidth; /** - * Sub component margin info. + * Custom component margin info. * * @type { Margin } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29363,7 +29363,7 @@ declare interface GeometryInfo extends SizeResult { * @since 10 */ /** - * Sub component margin info. + * Custom component margin info. * * @type { Margin } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29374,7 +29374,7 @@ declare interface GeometryInfo extends SizeResult { margin: Margin, /** - * Sub component padding info. + * Custom component padding info. * * @type { Padding } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29382,7 +29382,7 @@ declare interface GeometryInfo extends SizeResult { * @since 10 */ /** - * Sub component padding info. + * Custom component padding info. * * @type { Padding } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29402,7 +29402,7 @@ declare interface GeometryInfo extends SizeResult { * @since 10 */ /** - * Provides the child component layout information. + * Provides the sub component layout information. * * @interface Layoutable * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29412,7 +29412,7 @@ declare interface GeometryInfo extends SizeResult { */ declare interface Layoutable { /** - * Measurement result of the child component. + * Measurement result of the sub component. * * @type { MeasureResult } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29420,7 +29420,7 @@ declare interface Layoutable { * @since 10 */ /** - * Measurement result of the child component. + * Measurement result of the sub component. * * @type { MeasureResult } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29431,7 +29431,7 @@ declare interface Layoutable { measureResult: MeasureResult, /** - * Unique ID of the child component. + * Unique ID of the sub component. * * @type { ?number } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29450,7 +29450,7 @@ declare interface Layoutable { * @since 10 */ /** - * Applies the specified position information to the child component. + * Applies the specified position information to the sub component. * * @param { Position } position * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29461,7 +29461,7 @@ declare interface Layoutable { layout(position: Position): void, /** - * Obtains the margin of the child component. + * Obtains the margin of the sub component. * * @returns { DirectionalEdgesT } the margin of sub component, unit is vp * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29474,7 +29474,7 @@ declare interface Layoutable { /** * Call this method to get the padding of sub component. * - * @returns { DirectionalEdgesT } Padding of the child component, unit is vp. + * @returns { DirectionalEdgesT } Padding of the sub component, unit is vp. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice @@ -29483,7 +29483,7 @@ declare interface Layoutable { getPadding() : DirectionalEdgesT, /** - * Obtains the border width of the child component. + * Obtains the border width of the sub component. * * @returns { DirectionalEdgesT } the borderWidth of sub component, unit is vp * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29513,7 +29513,7 @@ declare interface Layoutable { */ declare interface Measurable { /** - * Unique ID that the system assigns to the child component. + * Unique ID that the system assigns to the sub component. * * @type { ?number } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29533,7 +29533,7 @@ declare interface Measurable { * @since 10 */ /** - * Applies the size constraint to the child component. + * Applies the size constraint to the sub component. * * @param { ConstraintSizeOptions } constraint * @returns { MeasureResult } Provides the measurement result of the component. @@ -29545,9 +29545,9 @@ declare interface Measurable { measure(constraint: ConstraintSizeOptions) : MeasureResult, /** - * Obtains the margin of the child component. + * Obtains the margin of the sub component. * - * @returns { DirectionalEdgesT } Margin of the child component, unit is vp. + * @returns { DirectionalEdgesT } Margin of the sub component, unit is vp. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice @@ -29556,7 +29556,7 @@ declare interface Measurable { getMargin() : DirectionalEdgesT, /** - * Obtains the padding of the child component. + * Obtains the padding of the sub component. * * @returns { DirectionalEdgesT } the padding of sub component, unit is vp * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29567,9 +29567,9 @@ declare interface Measurable { getPadding() : DirectionalEdgesT, /** - * Obtains the border width of the child component. + * Obtains the border width of the sub component. * - * @returns { DirectionalEdgesT } Border width of the child component, unit is vp. + * @returns { DirectionalEdgesT } Border width of the sub component, unit is vp. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice @@ -29579,7 +29579,7 @@ declare interface Measurable { } /** - * Sub component SizeResult info. + * Component SizeResult info. * * @interface SizeResult * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -29636,7 +29636,7 @@ declare interface SizeResult { } /** - * Sub component MeasureResult info. + * Component MeasureResult info. * * @extends SizeResult * @interface MeasureResult diff --git a/api/@internal/component/ets/enums.d.ts b/api/@internal/component/ets/enums.d.ts index bd91cb929bb4cb680350eb06f3644f2406f12af8..ddefc7678d46c5e8888996bcf6cf254aed3827e7 100644 --- a/api/@internal/component/ets/enums.d.ts +++ b/api/@internal/component/ets/enums.d.ts @@ -5301,20 +5301,20 @@ declare enum PixelRoundMode { */ declare enum FlexWrap { /** - * The Flex container has a single row/column layout of elements, and children are allowed to go beyond the container. + * The Flex container has a single row/column layout of elements, and children are not allowed to go beyond the container. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 7 */ /** - * The Flex container has a single row/column layout of elements, and children are allowed to go beyond the container. + * The Flex container has a single row/column layout of elements, and children are not allowed to go beyond the container. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @form * @since 9 */ /** - * The Flex container has a single row/column layout of elements, and children are allowed to go beyond the container. + * The Flex container has a single row/column layout of elements, and children are not allowed to go beyond the container. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform @@ -5322,7 +5322,7 @@ declare enum FlexWrap { * @since 10 */ /** - * The Flex container has a single row/column layout of elements, and children are allowed to go beyond the container. + * The Flex container has a single row/column layout of elements, and children are not allowed to go beyond the container. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform diff --git a/api/@internal/component/ets/relative_container.d.ts b/api/@internal/component/ets/relative_container.d.ts index cd67f313f5e676b8592ebd42beae25bc6c1555b5..7e049ac4bc565fa64b835b4b5697fa6c83d8d92a 100644 --- a/api/@internal/component/ets/relative_container.d.ts +++ b/api/@internal/component/ets/relative_container.d.ts @@ -19,7 +19,7 @@ */ /** - * Provides ports for relative containers. + * Provides ports for relativeContainer. * * @interface RelativeContainerInterface * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -27,7 +27,7 @@ * @since 9 */ /** - * Provides ports for relative containers. + * Provides ports for relativeContainer. * * @interface RelativeContainerInterface * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -36,7 +36,7 @@ * @since 10 */ /** - * Provides ports for relative containers. + * Provides ports for relativeContainer. * * @interface RelativeContainerInterface * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -110,7 +110,7 @@ declare interface GuideLinePosition { } /** - * Specifies the GuideLineStyle of relative container + * Specifies the GuideLineStyle of relativeContainer * * @interface GuideLineStyle * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -122,7 +122,7 @@ declare interface GuideLineStyle { /** * Specifies the id of guideLine * - * @type {string} + * @type { string } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice @@ -133,7 +133,7 @@ declare interface GuideLineStyle { /** * Specifies the direction of guideLine * - * @type {Axis} + * @type { Axis } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice @@ -144,7 +144,7 @@ declare interface GuideLineStyle { /** * Specifies the position of guideLine * - * @type {GuideLinePosition} + * @type { GuideLinePosition } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice @@ -156,7 +156,7 @@ declare interface GuideLineStyle { /** * Specifies the direction value of Barrier. * - * @enum {number} + * @enum { number } * @syscap SystemCapability.Test.UiTest * @crossplatform * @atomicservice @@ -256,7 +256,7 @@ declare enum LocalizedBarrierDirection { } /** - * Specifies the BarrierStyle of relative container + * Specifies the BarrierStyle of relativeContainer * * @interface BarrierStyle * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -268,7 +268,7 @@ declare interface BarrierStyle { /** * Specifies the id of barrier * - * @type {string} + * @type { string } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice @@ -279,7 +279,7 @@ declare interface BarrierStyle { /** * Specifies the direction of barrier * - * @type {BarrierDirection} + * @type { BarrierDirection } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice @@ -290,7 +290,7 @@ declare interface BarrierStyle { /** * Specifies the referencedId of barrier * - * @type {Array} + * @type { Array } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice @@ -300,7 +300,7 @@ declare interface BarrierStyle { } /** - * Specifies the Localized BarrierStyle of relative container + * Specifies the Localized BarrierStyle of relativeContainer * * @interface LocalizedBarrierStyle * @syscap SystemCapability.ArkUI.ArkUI.Full diff --git a/api/@ohos.mediaquery.d.ts b/api/@ohos.mediaquery.d.ts index eea1e126235de20fe746504523c520a9bae251c5..2bd49db2b4c72e5e4b1d965afb1af60a572dd0f6 100644 --- a/api/@ohos.mediaquery.d.ts +++ b/api/@ohos.mediaquery.d.ts @@ -265,7 +265,7 @@ declare namespace mediaquery { /** * Deregisters a callback with the corresponding query condition by using the handle. - * This callback is not triggered when the media attributes chang. + * This callback is not triggered when the media attributes change. * * @param { 'change' } type * @param { Callback } callback @@ -274,7 +274,7 @@ declare namespace mediaquery { */ /** * Deregisters a callback with the corresponding query condition by using the handle. - * This callback is not triggered when the media attributes chang. + * This callback is not triggered when the media attributes change. * * @param { 'change' } type * @param { Callback } callback @@ -284,7 +284,7 @@ declare namespace mediaquery { */ /** * Deregisters a callback with the corresponding query condition by using the handle. - * This callback is not triggered when the media attributes chang. + * This callback is not triggered when the media attributes change. * * @param { 'change' } type * @param { Callback } callback @@ -295,7 +295,7 @@ declare namespace mediaquery { */ /** * Deregisters a callback with the corresponding query condition by using the handle. - * This callback is not triggered when the media attributes chang. + * This callback is not triggered when the media attributes change. * * @param { 'change' } type * @param { Callback } callback