@ansible/ansible-ui-framework 0.0.724 → 0.0.726

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,16 @@
1
+ import { ReactNode } from 'react';
2
+ interface RoutedTabProps {
3
+ label?: string;
4
+ url: string;
5
+ children: ReactNode;
6
+ }
7
+ export declare function RoutedTabs(props: {
8
+ baseUrl: string;
9
+ children: ReactNode;
10
+ preComponents?: ReactNode;
11
+ postComponents?: ReactNode;
12
+ initialTabIndex?: number;
13
+ isLoading?: boolean;
14
+ }): JSX.Element;
15
+ export declare function RoutedTab(props: RoutedTabProps): JSX.Element;
16
+ export {};
@@ -39,6 +39,7 @@ export * from './PageTable/PageTableColumn';
39
39
  export * from './PageTable/PageToolbar';
40
40
  export * from './PageTable/useTableItems';
41
41
  export * from './PageTabs';
42
+ export * from './RoutedTabs';
42
43
  export * from './Settings';
43
44
  export * from './components/BulkSelector';
44
45
  export * from './components/Collapse';