File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,9 @@ export class Tabs extends TabNavigation<TabsBar> {
87
87
protected override setTabBarItems ( tabItems : com . nativescript . material . core . TabItemSpec [ ] ) {
88
88
this . mTabsBar . setItems ( tabItems ) ;
89
89
// The setTimeout below is necessary to ensure the scrollToTab is executed only after
90
- // all tabs are recreated. The tabs' recreation is triggered by the setItems call above.
90
+ // all tabs are recreated. The tabs' recreation is triggered by the setItems call above.
91
91
//
92
- // The setTimeout is necessary to fix an Android issue:
92
+ // The setTimeout is necessary to fix an Android issue:
93
93
// Android Issue: Active Tab item not displaying after nav back
94
94
// Reproduce steps:
95
95
// 1. On app with multiple (overflown) tab items, Switch to the last tab item
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ declare module '@nativescript/core/ui/text-field' {
123
123
export class TextField extends TextFieldBase {
124
124
nativeViewProtected : MDCBaseTextField ;
125
125
nativeTextViewProtected : MDCBaseTextField ;
126
+ //@ts -ignore
126
127
public readonly style : Style & { variant : 'outline' | 'underline' | 'filled' } ;
127
128
public nsdigits ?: NSCharacterSet ;
128
129
firstEdit : boolean ;
Original file line number Diff line number Diff line change @@ -154,6 +154,7 @@ export class TextView extends TextViewBase {
154
154
nativeViewProtected : MDCMultilineTextField ;
155
155
private _controller : MDCTextInputControllerBase ;
156
156
public _isEditing : boolean ;
157
+ //@ts -ignore
157
158
public readonly style : Style & { variant : 'outline' | 'underline' | 'filled' } ;
158
159
159
160
public clearFocus ( ) {
You can’t perform that action at this time.
0 commit comments