sbwb-ds 2.1.4 → 2.2.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.
Files changed (89) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/sbwb-ds.js +14761 -14803
  3. package/dist/sbwb-ds.umd.cjs +890 -919
  4. package/dist/src/presentation/components/atoms/ActionButton/index.d.ts +4 -4
  5. package/dist/src/presentation/components/atoms/Badge/index.d.ts +11 -0
  6. package/dist/src/presentation/components/atoms/Badge/styles.d.ts +9 -0
  7. package/dist/src/presentation/components/atoms/ChartLegends/index.d.ts +17 -0
  8. package/dist/src/presentation/components/atoms/ChartLegends/styles.d.ts +15 -0
  9. package/dist/src/presentation/components/atoms/Input/input.types.d.ts +3 -1
  10. package/dist/src/presentation/components/atoms/Loading/index.d.ts +1 -0
  11. package/dist/src/presentation/components/atoms/LoadingBar/index.d.ts +2 -1
  12. package/dist/src/presentation/components/atoms/LoadingBar/styles.d.ts +1 -1
  13. package/dist/src/presentation/components/atoms/Radio/index.d.ts +1 -1
  14. package/dist/src/presentation/components/atoms/Radio/styles.d.ts +2 -2
  15. package/dist/src/presentation/components/atoms/Switch/index.d.ts +1 -1
  16. package/dist/src/presentation/components/atoms/Switch/styles.d.ts +3 -3
  17. package/dist/src/presentation/components/molecules/ChartPie/index.d.ts +4 -5
  18. package/dist/src/presentation/components/molecules/ChartPie/styles.d.ts +2 -0
  19. package/dist/src/presentation/components/molecules/ChartRadar/index.d.ts +5 -14
  20. package/dist/src/presentation/components/molecules/ChartRadar/styles.d.ts +5 -3
  21. package/dist/src/presentation/components/molecules/DataTable/Components/TableCell/index.d.ts +2 -1
  22. package/dist/src/presentation/components/molecules/DataTable/Components/TableCell/styles.d.ts +2 -0
  23. package/dist/src/presentation/components/molecules/DataTable/Components/TableHeaderCell/index.d.ts +2 -1
  24. package/dist/src/presentation/components/molecules/DataTable/Components/TableHeaderCell/styles.d.ts +1 -0
  25. package/dist/src/presentation/components/molecules/DataTable/index.d.ts +1 -0
  26. package/dist/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/index.d.ts +2 -2
  27. package/dist/src/presentation/components/molecules/{ReviewStatus/hooks/useReviewStatus.d.ts → DepreciatedReviewStatus/hooks/useDepreciatedReviewStatus.d.ts} +1 -1
  28. package/dist/src/presentation/components/molecules/DepreciatedReviewStatus/index.d.ts +15 -0
  29. package/dist/src/presentation/components/molecules/DepreciatedReviewStatus/styles.d.ts +7 -0
  30. package/dist/src/presentation/components/molecules/ReviewStatus/ReviewStatus.spec.d.ts +1 -0
  31. package/dist/src/presentation/components/molecules/ReviewStatus/index.d.ts +5 -12
  32. package/dist/src/presentation/components/molecules/ReviewStatus/styles.d.ts +4 -6
  33. package/package.json +1 -1
  34. package/src/main/assets/icons/small/Visibility.svg +1 -1
  35. package/src/presentation/components/atoms/ActionButton/index.tsx +12 -9
  36. package/src/presentation/components/atoms/ActionButton/styles.ts +1 -4
  37. package/src/presentation/components/atoms/Badge/Badge.stories.tsx +123 -0
  38. package/src/presentation/components/atoms/Badge/index.tsx +73 -0
  39. package/src/presentation/components/atoms/Badge/styles.ts +81 -0
  40. package/src/presentation/components/atoms/ChartLegends/ChartLegends.stories.tsx +111 -0
  41. package/src/presentation/components/atoms/ChartLegends/index.tsx +93 -0
  42. package/src/presentation/components/atoms/ChartLegends/styles.ts +92 -0
  43. package/src/presentation/components/atoms/Input/Input.stories.tsx +36 -3
  44. package/src/presentation/components/atoms/Input/index.tsx +5 -2
  45. package/src/presentation/components/atoms/Input/input.types.tsx +3 -1
  46. package/src/presentation/components/atoms/Input/styles.ts +11 -0
  47. package/src/presentation/components/atoms/Loading/index.tsx +35 -34
  48. package/src/presentation/components/atoms/LoadingBar/index.tsx +3 -2
  49. package/src/presentation/components/atoms/LoadingBar/styles.ts +2 -3
  50. package/src/presentation/components/atoms/Radio/Radio.stories.tsx +6 -19
  51. package/src/presentation/components/atoms/Radio/index.tsx +3 -3
  52. package/src/presentation/components/atoms/Radio/styles.ts +42 -20
  53. package/src/presentation/components/atoms/Select/styles.ts +5 -2
  54. package/src/presentation/components/atoms/Switch/Switch.stories.tsx +7 -1
  55. package/src/presentation/components/atoms/Switch/index.tsx +1 -1
  56. package/src/presentation/components/atoms/Switch/styles.ts +42 -12
  57. package/src/presentation/components/atoms/Tooltip/styles.ts +47 -129
  58. package/src/presentation/components/molecules/ChartBar/ChartBar.stories.tsx +3 -3
  59. package/src/presentation/components/molecules/ChartMatrix/ChartMatrix.stories.tsx +10 -5
  60. package/src/presentation/components/molecules/ChartPie/ChartPie.stories.tsx +10 -14
  61. package/src/presentation/components/molecules/ChartPie/index.tsx +95 -69
  62. package/src/presentation/components/molecules/ChartPie/styles.tsx +20 -3
  63. package/src/presentation/components/molecules/ChartRadar/ChartRadar.stories.tsx +4 -13
  64. package/src/presentation/components/molecules/ChartRadar/index.tsx +81 -147
  65. package/src/presentation/components/molecules/ChartRadar/styles.tsx +13 -27
  66. package/src/presentation/components/molecules/DataTable/Components/TableCell/index.tsx +4 -0
  67. package/src/presentation/components/molecules/DataTable/Components/TableCell/styles.tsx +13 -10
  68. package/src/presentation/components/molecules/DataTable/Components/TableHeaderCell/TableHeaderCell.stories.tsx +12 -28
  69. package/src/presentation/components/molecules/DataTable/Components/TableHeaderCell/index.tsx +3 -0
  70. package/src/presentation/components/molecules/DataTable/Components/TableHeaderCell/styles.tsx +3 -1
  71. package/src/presentation/components/molecules/DataTable/Components/Toolbar/Toolbar.stories.tsx +104 -19
  72. package/src/presentation/components/molecules/DataTable/index.tsx +3 -0
  73. package/src/presentation/components/molecules/DepreciatedReviewStatus/ReviewStatus.stories.tsx +56 -0
  74. package/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/index.tsx +3 -3
  75. package/src/presentation/components/molecules/{ReviewStatus/hooks/useReviewStatus.tsx → DepreciatedReviewStatus/hooks/useDepreciatedReviewStatus.tsx} +1 -1
  76. package/src/presentation/components/molecules/DepreciatedReviewStatus/index.tsx +61 -0
  77. package/src/presentation/components/molecules/DepreciatedReviewStatus/styles.ts +80 -0
  78. package/src/presentation/components/molecules/HeaderTitle/HeaderTitle.stories.tsx +5 -3
  79. package/src/presentation/components/molecules/HeaderTitle/index.tsx +1 -1
  80. package/src/presentation/components/molecules/HeaderTitle/styles.ts +1 -2
  81. package/src/presentation/components/molecules/ReviewStatus/ReviewStatus.spec.tsx +33 -0
  82. package/src/presentation/components/molecules/ReviewStatus/ReviewStatus.stories.tsx +12 -37
  83. package/src/presentation/components/molecules/ReviewStatus/index.tsx +22 -51
  84. package/src/presentation/components/molecules/ReviewStatus/styles.ts +36 -44
  85. package/src/presentation/styles/styleGuide.ts +1 -1
  86. /package/dist/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/hooks/useSelect.d.ts +0 -0
  87. /package/dist/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/styles.d.ts +0 -0
  88. /package/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/hooks/useSelect.tsx +0 -0
  89. /package/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/styles.ts +0 -0
package/dist/index.d.ts CHANGED
@@ -66,6 +66,7 @@ export { default as SheetHistory } from './src/presentation/components/molecules
66
66
  export { default as Sheet } from './src/presentation/components/molecules/Sheet';
67
67
  export { default as Tree } from './src/presentation/components/molecules/Tree';
68
68
  export { default as MenuSelect } from './src/presentation/components/molecules/MenuSelect';
69
+ export { default as MenuMultiSelect } from './src/presentation/components/atoms/MenuMultiSelect';
69
70
  export { default as Modal } from './src/presentation/components/molecules/Modal';
70
71
  export { default as Footer } from './src/presentation/components/molecules/Footer';
71
72
  export { default as Autocomplete } from './src/presentation/components/molecules/Autocomplete';