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

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.