mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 20:11:24 +08:00
Fix missing private _addChildFromBuilder
This commit is contained in:
6
tns-core-modules/ui/text-base/text-base.d.ts
vendored
6
tns-core-modules/ui/text-base/text-base.d.ts
vendored
@ -73,8 +73,7 @@ export class TextBase extends View implements AddChildFromBuilder {
|
|||||||
* Specify the top padding of this layout.
|
* Specify the top padding of this layout.
|
||||||
*/
|
*/
|
||||||
paddingTop: Length;
|
paddingTop: Length;
|
||||||
|
|
||||||
//@private
|
|
||||||
/**
|
/**
|
||||||
* Called for every child element declared in xml.
|
* Called for every child element declared in xml.
|
||||||
* This method will add a child element (value) to current element.
|
* This method will add a child element (value) to current element.
|
||||||
@ -84,6 +83,7 @@ export class TextBase extends View implements AddChildFromBuilder {
|
|||||||
*/
|
*/
|
||||||
_addChildFromBuilder(name: string, value: any): void;
|
_addChildFromBuilder(name: string, value: any): void;
|
||||||
|
|
||||||
|
//@private
|
||||||
/**
|
/**
|
||||||
* Called when the text property is changed to request layout.
|
* Called when the text property is changed to request layout.
|
||||||
* @private
|
* @private
|
||||||
@ -112,4 +112,4 @@ export const whiteSpaceProperty: CssProperty<Style, WhiteSpace>;
|
|||||||
export const letterSpacingProperty: CssProperty<Style, number>;
|
export const letterSpacingProperty: CssProperty<Style, number>;
|
||||||
|
|
||||||
//Used by tab view
|
//Used by tab view
|
||||||
export function getTransformedText(text: string, textTransform: TextTransform): string;
|
export function getTransformedText(text: string, textTransform: TextTransform): string;
|
||||||
|
Reference in New Issue
Block a user