mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
fix(core): type collisions with namespace (#8809)
This commit is contained in:
@@ -7,7 +7,8 @@ import { TabViewBase, TabViewItemBase, itemsProperty, selectedIndexProperty, tab
|
||||
import { Color } from '../../color';
|
||||
import { Trace } from '../../trace';
|
||||
import { fontInternalProperty } from '../styling/style-properties';
|
||||
import { textTransformProperty, TextTransform, getTransformedText } from '../text-base';
|
||||
import { textTransformProperty, getTransformedText } from '../text-base';
|
||||
import { Enums } from '../enums';
|
||||
import { ImageSource } from '../../image-source';
|
||||
import { profile } from '../../profiling';
|
||||
import { Frame } from '../frame';
|
||||
@@ -279,7 +280,7 @@ export class TabViewItem extends TabViewItemBase {
|
||||
updateTitleAndIconPositions(this, this.__controller.tabBarItem, this.__controller);
|
||||
}
|
||||
|
||||
[textTransformProperty.setNative](value: TextTransform) {
|
||||
[textTransformProperty.setNative](value: Enums.TextTransformType) {
|
||||
this._update();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user