sbwb-ds 1.0.97 → 1.0.98
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 +2 -0
- package/dist/sbwb-ds.js +766 -792
- package/dist/sbwb-ds.umd.cjs +27 -24
- package/dist/src/presentation/components/atoms/Alert/index.d.ts +1 -0
- package/dist/src/presentation/components/atoms/ChartLinear/index.d.ts +8 -5
- package/package.json +1 -1
- package/src/presentation/components/atoms/Alert/index.tsx +6 -1
- package/src/presentation/components/atoms/Alert/styles.ts +5 -1
- package/src/presentation/components/atoms/ChartLinear/ChartLinear.stories.tsx +6 -10
- package/src/presentation/components/atoms/ChartLinear/index.tsx +66 -91
- package/src/presentation/components/atoms/ChartLinear/styles.tsx +2 -0
- package/src/presentation/styles/styleGuide.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { CommentProps as HistoryCommentProps } from './src/presentation/componen
|
|
|
12
12
|
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
|
+
import { seriesData } from './src/presentation/components/atoms/ChartLinear';
|
|
15
16
|
export { default as Accordion } from './src/presentation/components/atoms/Accordion';
|
|
16
17
|
export { default as ActionButton } from './src/presentation/components/atoms/ActionButton';
|
|
17
18
|
export { default as Actions } from './src/presentation/components/atoms/Actions';
|
|
@@ -73,4 +74,5 @@ export type { HistoryCommentProps };
|
|
|
73
74
|
export type { Column as ColumnTableProps };
|
|
74
75
|
export type { TableCellProps };
|
|
75
76
|
export type { TableHeaderCellProps };
|
|
77
|
+
export type { seriesData as ChartLinearData };
|
|
76
78
|
export { sg };
|