sbwb-ds 1.4.3 → 1.4.4
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 +5 -0
- package/dist/sbwb-ds.js +17307 -17360
- package/dist/sbwb-ds.umd.cjs +910 -951
- package/dist/src/main/helpers/functions/icons.d.ts +17 -0
- package/dist/src/presentation/components/atoms/Breadcrumb/index.d.ts +9 -2
- package/dist/src/presentation/components/atoms/Breadcrumb/styles.d.ts +1 -0
- package/dist/src/presentation/components/atoms/Button/index.d.ts +3 -1
- package/dist/src/presentation/components/atoms/Button/styles.d.ts +1 -0
- package/dist/src/presentation/components/atoms/Radio/index.d.ts +2 -0
- package/dist/src/presentation/components/atoms/Radio/styles.d.ts +1 -0
- package/dist/src/presentation/components/molecules/ChartBar/index.d.ts +1 -10
- package/dist/src/presentation/components/molecules/ChartLinear/index.d.ts +0 -10
- package/dist/src/presentation/components/molecules/ChartLinear/styles.d.ts +0 -6
- package/dist/src/presentation/components/molecules/ChartMatrix/styles.d.ts +0 -7
- package/dist/src/presentation/components/molecules/ChartPie/styles.d.ts +0 -8
- package/dist/src/presentation/components/molecules/ChartRadar/styles.d.ts +0 -7
- package/dist/src/presentation/components/molecules/DataTable/Components/TableCell/index.d.ts +3 -2
- package/dist/src/presentation/components/molecules/DataTable/Components/TableRow/index.d.ts +1 -1
- package/dist/src/presentation/components/molecules/DataTable/index.d.ts +2 -2
- package/dist/src/presentation/components/molecules/Notification/index.d.ts +28 -2
- package/dist/src/presentation/components/molecules/Notification/styles.d.ts +5 -0
- package/package.json +3 -3
- package/src/main/assets/icons/ant/history.svg +3 -0
- package/src/main/assets/icons/ant/pin-fill.svg +3 -0
- package/src/main/assets/icons/ant/pin.svg +3 -0
- package/src/main/assets/icons/extraLarge/history.svg +3 -0
- package/src/main/assets/icons/extraLarge/pin-fill.svg +3 -0
- package/src/main/assets/icons/extraLarge/pin.svg +3 -0
- package/src/main/assets/icons/large/history.svg +3 -0
- package/src/main/assets/icons/large/pin-fill.svg +3 -0
- package/src/main/assets/icons/large/pin.svg +3 -0
- package/src/main/assets/icons/medium/history.svg +3 -0
- package/src/main/assets/icons/medium/pin-fill.svg +3 -0
- package/src/main/assets/icons/medium/pin.svg +3 -0
- package/src/main/assets/icons/small/expand-circle-down.svg +3 -0
- package/src/main/assets/icons/small/expand-circle-right.svg +3 -0
- package/src/main/assets/icons/small/history.svg +3 -0
- package/src/main/assets/icons/small/pin-fill.svg +3 -0
- package/src/main/assets/icons/small/pin.svg +3 -0
- package/src/main/helpers/functions/icons.ts +38 -0
- package/src/main/helpers/functions/measurementConverters.ts +10 -13
- package/src/presentation/components/atoms/Breadcrumb/Breadcrumb.stories.tsx +27 -9
- package/src/presentation/components/atoms/Breadcrumb/index.tsx +89 -5
- package/src/presentation/components/atoms/Breadcrumb/styles.ts +15 -0
- package/src/presentation/components/atoms/Button/Button.stories.tsx +26 -5
- package/src/presentation/components/atoms/Button/index.tsx +52 -22
- package/src/presentation/components/atoms/Button/styles.ts +6 -1
- package/src/presentation/components/atoms/Input/styles.ts +9 -0
- package/src/presentation/components/atoms/Loading/styles.ts +4 -0
- package/src/presentation/components/atoms/Pagination/styles.ts +3 -0
- package/src/presentation/components/atoms/Radio/Radio.stories.tsx +2 -0
- package/src/presentation/components/atoms/Radio/index.tsx +33 -1
- package/src/presentation/components/atoms/Radio/styles.ts +18 -2
- package/src/presentation/components/molecules/ChartBar/ChartBar.stories.tsx +114 -6
- package/src/presentation/components/molecules/ChartBar/Chartbar.spec.tsx +2 -14
- package/src/presentation/components/molecules/ChartBar/index.tsx +87 -161
- package/src/presentation/components/molecules/ChartLinear/ChartLinear.stories.tsx +168 -14
- package/src/presentation/components/molecules/ChartLinear/index.tsx +40 -107
- package/src/presentation/components/molecules/ChartLinear/styles.tsx +1 -66
- package/src/presentation/components/molecules/ChartMatrix/ChartMatrix.stories.tsx +118 -3
- package/src/presentation/components/molecules/ChartMatrix/index.tsx +36 -63
- package/src/presentation/components/molecules/ChartMatrix/styles.ts +1 -80
- package/src/presentation/components/molecules/ChartPie/ChartPie.stories.tsx +123 -3
- package/src/presentation/components/molecules/ChartPie/index.tsx +1 -44
- package/src/presentation/components/molecules/ChartPie/styles.tsx +1 -73
- package/src/presentation/components/molecules/ChartRadar/ChartRadar.stories.tsx +135 -7
- package/src/presentation/components/molecules/ChartRadar/index.tsx +5 -63
- package/src/presentation/components/molecules/ChartRadar/styles.tsx +0 -83
- package/src/presentation/components/molecules/DataTable/Components/TableCell/index.tsx +9 -2
- package/src/presentation/components/molecules/DataTable/Components/TableCell/styles.tsx +7 -4
- package/src/presentation/components/molecules/DataTable/Components/TableRow/index.tsx +1 -1
- package/src/presentation/components/molecules/DataTable/DataTable.stories.tsx +323 -1
- package/src/presentation/components/molecules/DataTable/index.tsx +42 -46
- package/src/presentation/components/molecules/HeaderTitle/index.tsx +10 -2
- package/src/presentation/components/molecules/HeaderTitle/styles.ts +2 -0
- package/src/presentation/components/molecules/Notification/Notification.stories.tsx +139 -0
- package/src/presentation/components/molecules/Notification/index.tsx +143 -5
- package/src/presentation/components/molecules/Notification/styles.ts +90 -3
package/dist/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { Column } from './src/presentation/components/molecules/DataTable';
|
|
|
13
13
|
import { TableCellProps } from './src/presentation/components/molecules/DataTable/Components/TableCell';
|
|
14
14
|
import { TableHeaderCellProps } from './src/presentation/components/molecules/DataTable/Components/TableHeaderCell';
|
|
15
15
|
import { seriesData } from './src/presentation/components/molecules/ChartLinear';
|
|
16
|
+
import { NotificationItemProps, NotificationProps } from './src/presentation/components/molecules/Notification';
|
|
16
17
|
export { default as Accordion } from './src/presentation/components/atoms/Accordion';
|
|
17
18
|
export { default as Avatar } from './src/presentation/components/atoms/Avatar/Avatar.view';
|
|
18
19
|
export { default as ActionButton } from './src/presentation/components/atoms/ActionButton';
|
|
@@ -64,6 +65,8 @@ export { default as Modal } from './src/presentation/components/molecules/Modal'
|
|
|
64
65
|
export { default as Footer } from './src/presentation/components/molecules/Footer';
|
|
65
66
|
export { default as Autocomplete } from './src/presentation/components/molecules/Autocomplete';
|
|
66
67
|
export { default as BackgroundSection } from './src/presentation/components/molecules/BackgroundSection';
|
|
68
|
+
export { default as Notification } from './src/presentation/components/molecules/Notification';
|
|
69
|
+
export { NotificationText } from './src/presentation/components/molecules/Notification';
|
|
67
70
|
export { TableProvider, useTableContext, } from './src/presentation/context/table/index';
|
|
68
71
|
export type IconType = keyof typeof Icons;
|
|
69
72
|
export type { TreeProps };
|
|
@@ -79,4 +82,6 @@ export type { Column as ColumnTableProps };
|
|
|
79
82
|
export type { TableCellProps };
|
|
80
83
|
export type { TableHeaderCellProps };
|
|
81
84
|
export type { seriesData as ChartLinearData };
|
|
85
|
+
export type { NotificationItemProps };
|
|
86
|
+
export type { NotificationProps };
|
|
82
87
|
export { sg };
|