@bitrise/bitkit 12.1.0 → 12.1.2
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.
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Button, TabProps as ChakraTabProps, forwardRef, useTab, useTabsStyles } from '@chakra-ui/react';
|
|
2
|
-
import { TypeColors } from '
|
|
2
|
+
import { TypeColors } from '../../Foundations/Colors/Colors';
|
|
3
3
|
import Box from '../Box/Box';
|
|
4
4
|
import Icon, { TypeIconName } from '../Icon/Icon';
|
|
5
5
|
import Text from '../Text/Text';
|
package/src/index.ts
CHANGED
|
@@ -53,6 +53,9 @@ export { default as TabList } from './Components/Tabs/TabList';
|
|
|
53
53
|
export type { TabProps } from './Components/Tabs/Tab';
|
|
54
54
|
export { default as Tab } from './Components/Tabs/Tab';
|
|
55
55
|
|
|
56
|
+
export type { ContainedTabProps } from './Components/Tabs/ContainedTab';
|
|
57
|
+
export { default as ContainedTab } from './Components/Tabs/ContainedTab';
|
|
58
|
+
|
|
56
59
|
export type { TabPanelsProps } from './Components/Tabs/TabPanels';
|
|
57
60
|
export { default as TabPanels } from './Components/Tabs/TabPanels';
|
|
58
61
|
|