diff --git a/api/@internal/component/ets/common.d.ts b/api/@internal/component/ets/common.d.ts index eb8fb286fd4e06f90fe32fbec25dcbfdb4212cd0..41b66412b7955123daaf2e1ee555f509e305426e 100644 --- a/api/@internal/component/ets/common.d.ts +++ b/api/@internal/component/ets/common.d.ts @@ -32059,7 +32059,7 @@ declare interface LayoutChild { } /** - * Sub component layout info. + * Custom component layout info. * * @extends SizeResult * @interface GeometryInfo @@ -32068,7 +32068,7 @@ declare interface LayoutChild { * @since 10 */ /** - * Sub component layout info. + * Custom component layout info. * * @extends SizeResult * @interface GeometryInfo @@ -32080,7 +32080,7 @@ declare interface LayoutChild { */ declare interface GeometryInfo extends SizeResult { /** - * Sub component borderWidth info. + * Custom component borderWidth info. * * @type { EdgeWidth } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -32088,7 +32088,7 @@ declare interface GeometryInfo extends SizeResult { * @since 10 */ /** - * Sub component borderWidth info. + * Custom component borderWidth info. * * @type { EdgeWidth } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -32100,7 +32100,7 @@ declare interface GeometryInfo extends SizeResult { borderWidth: EdgeWidth; /** - * Sub component margin info. + * Custom component margin info. * * @type { Margin } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -32108,7 +32108,7 @@ declare interface GeometryInfo extends SizeResult { * @since 10 */ /** - * Sub component margin info. + * Custom component margin info. * * @type { Margin } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -32120,7 +32120,7 @@ declare interface GeometryInfo extends SizeResult { margin: Margin, /** - * Sub component padding info. + * Custom component padding info. * * @type { Padding } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -32128,7 +32128,7 @@ declare interface GeometryInfo extends SizeResult { * @since 10 */ /** - * Sub component padding info. + * Custom component padding info. * * @type { Padding } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -32149,7 +32149,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 @@ -32160,7 +32160,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 @@ -32168,7 +32168,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 @@ -32180,7 +32180,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 @@ -32200,7 +32200,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 @@ -32212,7 +32212,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 @@ -32226,7 +32226,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 @@ -32236,7 +32236,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 @@ -32268,7 +32268,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 @@ -32289,7 +32289,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. @@ -32302,9 +32302,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 @@ -32314,7 +32314,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 @@ -32326,9 +32326,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 @@ -32339,7 +32339,7 @@ declare interface Measurable { } /** - * Sub component SizeResult info. + * Component SizeResult info. * * @interface SizeResult * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -32399,7 +32399,7 @@ declare interface SizeResult { } /** - * Sub component MeasureResult info. + * Component MeasureResult info. * * @extends SizeResult * @interface MeasureResult