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.
Files changed (78) hide show
  1. package/dist/index.d.ts +5 -0
  2. package/dist/sbwb-ds.js +17307 -17360
  3. package/dist/sbwb-ds.umd.cjs +910 -951
  4. package/dist/src/main/helpers/functions/icons.d.ts +17 -0
  5. package/dist/src/presentation/components/atoms/Breadcrumb/index.d.ts +9 -2
  6. package/dist/src/presentation/components/atoms/Breadcrumb/styles.d.ts +1 -0
  7. package/dist/src/presentation/components/atoms/Button/index.d.ts +3 -1
  8. package/dist/src/presentation/components/atoms/Button/styles.d.ts +1 -0
  9. package/dist/src/presentation/components/atoms/Radio/index.d.ts +2 -0
  10. package/dist/src/presentation/components/atoms/Radio/styles.d.ts +1 -0
  11. package/dist/src/presentation/components/molecules/ChartBar/index.d.ts +1 -10
  12. package/dist/src/presentation/components/molecules/ChartLinear/index.d.ts +0 -10
  13. package/dist/src/presentation/components/molecules/ChartLinear/styles.d.ts +0 -6
  14. package/dist/src/presentation/components/molecules/ChartMatrix/styles.d.ts +0 -7
  15. package/dist/src/presentation/components/molecules/ChartPie/styles.d.ts +0 -8
  16. package/dist/src/presentation/components/molecules/ChartRadar/styles.d.ts +0 -7
  17. package/dist/src/presentation/components/molecules/DataTable/Components/TableCell/index.d.ts +3 -2
  18. package/dist/src/presentation/components/molecules/DataTable/Components/TableRow/index.d.ts +1 -1
  19. package/dist/src/presentation/components/molecules/DataTable/index.d.ts +2 -2
  20. package/dist/src/presentation/components/molecules/Notification/index.d.ts +28 -2
  21. package/dist/src/presentation/components/molecules/Notification/styles.d.ts +5 -0
  22. package/package.json +3 -3
  23. package/src/main/assets/icons/ant/history.svg +3 -0
  24. package/src/main/assets/icons/ant/pin-fill.svg +3 -0
  25. package/src/main/assets/icons/ant/pin.svg +3 -0
  26. package/src/main/assets/icons/extraLarge/history.svg +3 -0
  27. package/src/main/assets/icons/extraLarge/pin-fill.svg +3 -0
  28. package/src/main/assets/icons/extraLarge/pin.svg +3 -0
  29. package/src/main/assets/icons/large/history.svg +3 -0
  30. package/src/main/assets/icons/large/pin-fill.svg +3 -0
  31. package/src/main/assets/icons/large/pin.svg +3 -0
  32. package/src/main/assets/icons/medium/history.svg +3 -0
  33. package/src/main/assets/icons/medium/pin-fill.svg +3 -0
  34. package/src/main/assets/icons/medium/pin.svg +3 -0
  35. package/src/main/assets/icons/small/expand-circle-down.svg +3 -0
  36. package/src/main/assets/icons/small/expand-circle-right.svg +3 -0
  37. package/src/main/assets/icons/small/history.svg +3 -0
  38. package/src/main/assets/icons/small/pin-fill.svg +3 -0
  39. package/src/main/assets/icons/small/pin.svg +3 -0
  40. package/src/main/helpers/functions/icons.ts +38 -0
  41. package/src/main/helpers/functions/measurementConverters.ts +10 -13
  42. package/src/presentation/components/atoms/Breadcrumb/Breadcrumb.stories.tsx +27 -9
  43. package/src/presentation/components/atoms/Breadcrumb/index.tsx +89 -5
  44. package/src/presentation/components/atoms/Breadcrumb/styles.ts +15 -0
  45. package/src/presentation/components/atoms/Button/Button.stories.tsx +26 -5
  46. package/src/presentation/components/atoms/Button/index.tsx +52 -22
  47. package/src/presentation/components/atoms/Button/styles.ts +6 -1
  48. package/src/presentation/components/atoms/Input/styles.ts +9 -0
  49. package/src/presentation/components/atoms/Loading/styles.ts +4 -0
  50. package/src/presentation/components/atoms/Pagination/styles.ts +3 -0
  51. package/src/presentation/components/atoms/Radio/Radio.stories.tsx +2 -0
  52. package/src/presentation/components/atoms/Radio/index.tsx +33 -1
  53. package/src/presentation/components/atoms/Radio/styles.ts +18 -2
  54. package/src/presentation/components/molecules/ChartBar/ChartBar.stories.tsx +114 -6
  55. package/src/presentation/components/molecules/ChartBar/Chartbar.spec.tsx +2 -14
  56. package/src/presentation/components/molecules/ChartBar/index.tsx +87 -161
  57. package/src/presentation/components/molecules/ChartLinear/ChartLinear.stories.tsx +168 -14
  58. package/src/presentation/components/molecules/ChartLinear/index.tsx +40 -107
  59. package/src/presentation/components/molecules/ChartLinear/styles.tsx +1 -66
  60. package/src/presentation/components/molecules/ChartMatrix/ChartMatrix.stories.tsx +118 -3
  61. package/src/presentation/components/molecules/ChartMatrix/index.tsx +36 -63
  62. package/src/presentation/components/molecules/ChartMatrix/styles.ts +1 -80
  63. package/src/presentation/components/molecules/ChartPie/ChartPie.stories.tsx +123 -3
  64. package/src/presentation/components/molecules/ChartPie/index.tsx +1 -44
  65. package/src/presentation/components/molecules/ChartPie/styles.tsx +1 -73
  66. package/src/presentation/components/molecules/ChartRadar/ChartRadar.stories.tsx +135 -7
  67. package/src/presentation/components/molecules/ChartRadar/index.tsx +5 -63
  68. package/src/presentation/components/molecules/ChartRadar/styles.tsx +0 -83
  69. package/src/presentation/components/molecules/DataTable/Components/TableCell/index.tsx +9 -2
  70. package/src/presentation/components/molecules/DataTable/Components/TableCell/styles.tsx +7 -4
  71. package/src/presentation/components/molecules/DataTable/Components/TableRow/index.tsx +1 -1
  72. package/src/presentation/components/molecules/DataTable/DataTable.stories.tsx +323 -1
  73. package/src/presentation/components/molecules/DataTable/index.tsx +42 -46
  74. package/src/presentation/components/molecules/HeaderTitle/index.tsx +10 -2
  75. package/src/presentation/components/molecules/HeaderTitle/styles.ts +2 -0
  76. package/src/presentation/components/molecules/Notification/Notification.stories.tsx +139 -0
  77. package/src/presentation/components/molecules/Notification/index.tsx +143 -5
  78. 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 };