@granto-umbrella/umbrella-components 3.0.31 → 3.0.32
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/dist/umbrella-components.es.js +11411 -11409
- package/dist/umbrella-components.umd.js +340 -340
- package/package.json +1 -1
- package/src/components/atoms/TabBar/TabBar.tsx +2 -2
- package/src/components/atoms/TabBar/TabBar.types.ts +2 -2
- package/src/components/atoms/TabBar/index.tsx +2 -2
- package/src/index.ts +2 -2
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Count, Tab, Wrapper } from './TabBar.styles';
|
|
3
|
-
import {
|
|
3
|
+
import { TabBarProps } from './TabBar.types';
|
|
4
4
|
|
|
5
|
-
export const
|
|
5
|
+
export const TabBar: React.FC<TabBarProps> = ({
|
|
6
6
|
items,
|
|
7
7
|
activeIndex,
|
|
8
8
|
onChange,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export type {
|
|
1
|
+
export { TabBar } from './TabBar';
|
|
2
|
+
export type { TabBarProps, TabItem } from './TabBar.types';
|
package/src/index.ts
CHANGED
|
@@ -33,7 +33,7 @@ import { ResendLink } from './components/atoms/ResendLink';
|
|
|
33
33
|
import Select from './components/atoms/Select';
|
|
34
34
|
import { Subtitle } from './components/atoms/Subtitle';
|
|
35
35
|
import Switch from './components/atoms/Switch/Switch';
|
|
36
|
-
import {
|
|
36
|
+
import { TabBar } from './components/atoms/TabBar';
|
|
37
37
|
import Text from './components/atoms/Text';
|
|
38
38
|
import Textarea from './components/atoms/Textarea/Textarea';
|
|
39
39
|
import { Title } from './components/atoms/Title';
|
|
@@ -133,7 +133,7 @@ export {
|
|
|
133
133
|
StyledDialogClose,
|
|
134
134
|
StyledDialogOverlay,
|
|
135
135
|
Switch,
|
|
136
|
-
|
|
136
|
+
TabBar,
|
|
137
137
|
TabToggle,
|
|
138
138
|
Text,
|
|
139
139
|
Textarea,
|