@@ -332,7 +332,7 @@ export interface BackstackEntry {
332
332
}
333
333
334
334
// @public
335
- export class BottomNavigation extends TabNavigationBase {
335
+ export class BottomNavigation extends TabbableComponent {
336
336
android: any /* android.view.View */ ;
337
337
338
338
ios: any /* UITabBarController */ ;
@@ -2195,6 +2195,26 @@ export class Switch extends View {
2195
2195
offBackgroundColor: Color ;
2196
2196
}
2197
2197
2198
+ // @public
2199
+ export abstract class TabbableComponent extends TabNavigationBase {
2200
+ android: any /* android.view.View */ ;
2201
+
2202
+ ios: any /* UITabBarController */ ;
2203
+
2204
+ items: Array <TabContentItem >;
2205
+
2206
+ on(eventNames : string , callback : (data : EventData ) => void , thisArg ? : any );
2207
+
2208
+ // Warning: (ae-forgotten-export) The symbol "SelectedIndexChangedEventData" needs to be exported by the entry point index.d.ts
2209
+ on(event : " selectedIndexChanged" , callback : (args : SelectedIndexChangedEventData_2 ) => void , thisArg ? : any );
2210
+
2211
+ selectedIndex: number ;
2212
+
2213
+ public static selectedIndexChangedEvent: string ;
2214
+
2215
+ tabStrip: TabStrip ;
2216
+ }
2217
+
2198
2218
// @public
2199
2219
export class TabContentItem extends ContentView {
2200
2220
// (undocumented)
@@ -2237,7 +2257,6 @@ export class TabNavigationBase extends View {
2237
2257
2238
2258
on(eventNames : string , callback : (data : EventData ) => void , thisArg ? : any );
2239
2259
2240
- // Warning: (ae-forgotten-export) The symbol "SelectedIndexChangedEventData" needs to be exported by the entry point index.d.ts
2241
2260
on(event : " selectedIndexChanged" , callback : (args : SelectedIndexChangedEventData_2 ) => void , thisArg ? : any );
2242
2261
2243
2262
onItemsChanged(oldItems : TabContentItem [], newItems : TabContentItem []): void ;
@@ -2282,7 +2301,7 @@ export class TabNavigationBase extends View {
2282
2301
}
2283
2302
2284
2303
// @public
2285
- export class Tabs extends TabNavigationBase {
2304
+ export class Tabs extends TabbableComponent {
2286
2305
android: any /* android.view.View */ ;
2287
2306
2288
2307
ios: any /* UITabBarController */ ;
0 commit comments