sbwb-ds 3.14.0 → 3.15.0
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/index.d.ts +4 -0
- package/dist/sbwb-ds.js +7526 -7412
- package/dist/sbwb-ds.umd.cjs +821 -767
- package/dist/src/presentation/components/molecules/SegmentedButton/index.d.ts +15 -8
- package/dist/src/presentation/components/molecules/SegmentedButton/styles.d.ts +3 -8
- package/dist/src/presentation/styles/styleGuide.d.ts +11 -0
- package/package.json +1 -1
- package/src/presentation/components/molecules/Modal/components/ProgressModal/styles.ts +10 -0
- package/src/presentation/components/molecules/SegmentedButton/SegmentedButton.stories.tsx +38 -21
- package/src/presentation/components/molecules/SegmentedButton/index.tsx +72 -35
- package/src/presentation/components/molecules/SegmentedButton/styles.ts +17 -24
- package/src/presentation/components/molecules/TabBar/TabBar.stories.tsx +7 -1
- package/src/presentation/components/molecules/TabBar/index.tsx +9 -3
- package/src/presentation/components/molecules/TabBar/styles.ts +48 -36
- package/src/presentation/styles/styleGuide.ts +12 -0
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ import { SeriesData } from './src/presentation/components/molecules/ChartLinear'
|
|
|
18
18
|
import { NotificationItemProps, NotificationProps } from './src/presentation/components/molecules/Notification';
|
|
19
19
|
import { MenuSelectProps } from './src/presentation/components/molecules/MenuSelect';
|
|
20
20
|
import { Tab } from './src/presentation/components/molecules/TabBar';
|
|
21
|
+
import { SegmentedButtonProps, SegmentedButtonType } from './src/presentation/components/molecules/SegmentedButton';
|
|
21
22
|
export { default as Accordion } from './src/presentation/components/atoms/Accordion';
|
|
22
23
|
export { default as Avatar } from './src/presentation/components/atoms/Avatar/Avatar.view';
|
|
23
24
|
export { default as ActionButton } from './src/presentation/components/atoms/ActionButton';
|
|
@@ -79,6 +80,7 @@ export { default as Popover } from './src/presentation/components/molecules/Popo
|
|
|
79
80
|
export { default as Notification } from './src/presentation/components/molecules/Notification';
|
|
80
81
|
export { NotificationText } from './src/presentation/components/molecules/Notification';
|
|
81
82
|
export * from './src/presentation/components/molecules/RowsCard';
|
|
83
|
+
export { default as SegmentedButton } from './src/presentation/components/molecules/SegmentedButton';
|
|
82
84
|
export { TableProvider, useTableContext, } from './src/presentation/context/table/index';
|
|
83
85
|
export type IconType = keyof typeof Icons;
|
|
84
86
|
export type { TreeProps };
|
|
@@ -101,5 +103,7 @@ export type { NotificationProps };
|
|
|
101
103
|
export type { MenuSelectProps };
|
|
102
104
|
export type { CheckboxProps };
|
|
103
105
|
export type { Tab };
|
|
106
|
+
export type { SegmentedButtonProps };
|
|
107
|
+
export type { SegmentedButtonType };
|
|
104
108
|
export { sg, GlobalStyles, resetStyles };
|
|
105
109
|
export { LocalStorageAdapter };
|