@up42/up-components 1.9.0 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,13 +1,13 @@
1
1
  import { ReactNode } from 'react';
2
- import { Tab as TabData, TabsProps } from '../Tabs/Tabs';
2
+ import { TabsProps } from '../Tabs/Tabs';
3
3
  import { BoxProps } from '../Box/Box';
4
- declare type TabData = {
4
+ declare type TabDataType = {
5
5
  label: string | ReactNode;
6
6
  content: string | ReactNode;
7
7
  hidden?: boolean;
8
8
  };
9
9
  export declare type TabGroupProps = {
10
- tabs: TabData[];
10
+ tabs: TabDataType[];
11
11
  tabContentProps?: BoxProps;
12
12
  tabsProps?: TabsProps;
13
13
  /**