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.
- package/dist/sbwb-ds.js +14750 -14804
- package/dist/sbwb-ds.umd.cjs +859 -899
- package/dist/src/presentation/components/atoms/ActionButton/index.d.ts +4 -4
- package/dist/src/presentation/components/atoms/Badge/index.d.ts +11 -0
- package/dist/src/presentation/components/atoms/Badge/styles.d.ts +9 -0
- package/dist/src/presentation/components/atoms/ChartLegends/index.d.ts +17 -0
- package/dist/src/presentation/components/atoms/ChartLegends/styles.d.ts +15 -0
- package/dist/src/presentation/components/atoms/Input/input.types.d.ts +3 -1
- package/dist/src/presentation/components/atoms/Loading/index.d.ts +1 -0
- package/dist/src/presentation/components/atoms/LoadingBar/index.d.ts +2 -1
- package/dist/src/presentation/components/atoms/LoadingBar/styles.d.ts +1 -1
- package/dist/src/presentation/components/atoms/Radio/index.d.ts +1 -1
- package/dist/src/presentation/components/atoms/Radio/styles.d.ts +2 -2
- package/dist/src/presentation/components/atoms/Switch/index.d.ts +1 -1
- package/dist/src/presentation/components/atoms/Switch/styles.d.ts +3 -3
- package/dist/src/presentation/components/molecules/ChartPie/index.d.ts +4 -5
- package/dist/src/presentation/components/molecules/ChartPie/styles.d.ts +2 -0
- package/dist/src/presentation/components/molecules/ChartRadar/index.d.ts +5 -14
- package/dist/src/presentation/components/molecules/ChartRadar/styles.d.ts +5 -3
- package/dist/src/presentation/components/molecules/DataTable/Components/TableCell/index.d.ts +2 -1
- package/dist/src/presentation/components/molecules/DataTable/Components/TableCell/styles.d.ts +2 -0
- package/dist/src/presentation/components/molecules/DataTable/Components/TableHeaderCell/index.d.ts +2 -1
- package/dist/src/presentation/components/molecules/DataTable/Components/TableHeaderCell/styles.d.ts +1 -0
- package/dist/src/presentation/components/molecules/DataTable/index.d.ts +1 -0
- package/dist/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/index.d.ts +2 -2
- package/dist/src/presentation/components/molecules/{ReviewStatus/hooks/useReviewStatus.d.ts → DepreciatedReviewStatus/hooks/useDepreciatedReviewStatus.d.ts} +1 -1
- package/dist/src/presentation/components/molecules/DepreciatedReviewStatus/index.d.ts +15 -0
- package/dist/src/presentation/components/molecules/DepreciatedReviewStatus/styles.d.ts +7 -0
- package/dist/src/presentation/components/molecules/ReviewStatus/ReviewStatus.spec.d.ts +1 -0
- package/dist/src/presentation/components/molecules/ReviewStatus/index.d.ts +5 -12
- package/dist/src/presentation/components/molecules/ReviewStatus/styles.d.ts +4 -6
- package/package.json +1 -1
- package/src/main/assets/icons/small/Visibility.svg +1 -1
- package/src/presentation/components/atoms/ActionButton/index.tsx +12 -9
- package/src/presentation/components/atoms/ActionButton/styles.ts +1 -4
- package/src/presentation/components/atoms/Badge/Badge.stories.tsx +123 -0
- package/src/presentation/components/atoms/Badge/index.tsx +73 -0
- package/src/presentation/components/atoms/Badge/styles.ts +81 -0
- package/src/presentation/components/atoms/ChartLegends/ChartLegends.stories.tsx +111 -0
- package/src/presentation/components/atoms/ChartLegends/index.tsx +93 -0
- package/src/presentation/components/atoms/ChartLegends/styles.ts +92 -0
- package/src/presentation/components/atoms/Input/Input.stories.tsx +36 -3
- package/src/presentation/components/atoms/Input/index.tsx +5 -2
- package/src/presentation/components/atoms/Input/input.types.tsx +3 -1
- package/src/presentation/components/atoms/Loading/index.tsx +35 -34
- package/src/presentation/components/atoms/LoadingBar/index.tsx +3 -2
- package/src/presentation/components/atoms/LoadingBar/styles.ts +2 -3
- package/src/presentation/components/atoms/Radio/Radio.stories.tsx +6 -19
- package/src/presentation/components/atoms/Radio/index.tsx +3 -3
- package/src/presentation/components/atoms/Radio/styles.ts +42 -20
- package/src/presentation/components/atoms/Select/styles.ts +5 -2
- package/src/presentation/components/atoms/Switch/Switch.stories.tsx +7 -1
- package/src/presentation/components/atoms/Switch/index.tsx +1 -1
- package/src/presentation/components/atoms/Switch/styles.ts +42 -12
- package/src/presentation/components/atoms/Tooltip/styles.ts +47 -129
- package/src/presentation/components/molecules/ChartBar/ChartBar.stories.tsx +3 -3
- package/src/presentation/components/molecules/ChartMatrix/ChartMatrix.stories.tsx +10 -5
- package/src/presentation/components/molecules/ChartPie/ChartPie.stories.tsx +10 -14
- package/src/presentation/components/molecules/ChartPie/index.tsx +95 -69
- package/src/presentation/components/molecules/ChartPie/styles.tsx +20 -3
- package/src/presentation/components/molecules/ChartRadar/ChartRadar.stories.tsx +4 -13
- package/src/presentation/components/molecules/ChartRadar/index.tsx +81 -147
- package/src/presentation/components/molecules/ChartRadar/styles.tsx +13 -27
- package/src/presentation/components/molecules/DataTable/Components/TableCell/index.tsx +4 -0
- package/src/presentation/components/molecules/DataTable/Components/TableCell/styles.tsx +13 -10
- package/src/presentation/components/molecules/DataTable/Components/TableHeaderCell/TableHeaderCell.stories.tsx +12 -28
- package/src/presentation/components/molecules/DataTable/Components/TableHeaderCell/index.tsx +3 -0
- package/src/presentation/components/molecules/DataTable/Components/TableHeaderCell/styles.tsx +3 -1
- package/src/presentation/components/molecules/DataTable/Components/Toolbar/Toolbar.stories.tsx +104 -19
- package/src/presentation/components/molecules/DataTable/index.tsx +3 -0
- package/src/presentation/components/molecules/DepreciatedReviewStatus/ReviewStatus.stories.tsx +56 -0
- package/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/index.tsx +3 -3
- package/src/presentation/components/molecules/{ReviewStatus/hooks/useReviewStatus.tsx → DepreciatedReviewStatus/hooks/useDepreciatedReviewStatus.tsx} +1 -1
- package/src/presentation/components/molecules/DepreciatedReviewStatus/index.tsx +61 -0
- package/src/presentation/components/molecules/DepreciatedReviewStatus/styles.ts +80 -0
- package/src/presentation/components/molecules/HeaderTitle/HeaderTitle.stories.tsx +5 -3
- package/src/presentation/components/molecules/HeaderTitle/index.tsx +1 -1
- package/src/presentation/components/molecules/HeaderTitle/styles.ts +1 -2
- package/src/presentation/components/molecules/ReviewStatus/ReviewStatus.spec.tsx +33 -0
- package/src/presentation/components/molecules/ReviewStatus/ReviewStatus.stories.tsx +12 -37
- package/src/presentation/components/molecules/ReviewStatus/index.tsx +22 -51
- package/src/presentation/components/molecules/ReviewStatus/styles.ts +36 -44
- package/src/presentation/styles/styleGuide.ts +1 -1
- /package/dist/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/hooks/useSelect.d.ts +0 -0
- /package/dist/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/styles.d.ts +0 -0
- /package/src/presentation/components/molecules/{ReviewStatus → DepreciatedReviewStatus}/components/atoms/ReviewStatusSelect/hooks/useSelect.tsx +0 -0
- /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.