sbwb-ds 3.6.0 → 3.7.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/index.d.ts +2 -2
- package/dist/sbwb-ds.js +14098 -13938
- package/dist/sbwb-ds.umd.cjs +841 -750
- package/dist/src/main/assets/icons/index.d.ts +1 -0
- package/dist/src/main/helpers/functions/icons.d.ts +30 -0
- package/dist/src/presentation/components/molecules/Modal/components/Default/index.d.ts +3 -2
- package/dist/src/presentation/components/molecules/Modal/components/Download/index.d.ts +3 -1
- package/dist/src/presentation/components/molecules/Modal/components/Input/index.d.ts +3 -2
- package/dist/src/presentation/components/molecules/Modal/components/Upload/index.d.ts +3 -1
- package/dist/src/presentation/components/molecules/Modal/index.d.ts +3 -2
- package/dist/src/presentation/components/molecules/RowsCard/RowCard.d.ts +10 -0
- package/dist/src/presentation/components/molecules/RowsCard/RowCard.spec.d.ts +1 -0
- package/dist/src/presentation/components/molecules/RowsCard/RowCardActions.d.ts +7 -0
- package/dist/src/presentation/components/molecules/RowsCard/RowCardCheckbox.d.ts +3 -0
- package/dist/src/presentation/components/molecules/RowsCard/RowCardContent.d.ts +7 -0
- package/dist/src/presentation/components/molecules/RowsCard/RowCardHeader.d.ts +7 -0
- package/dist/src/presentation/components/molecules/RowsCard/RowCardTitle.d.ts +3 -0
- package/dist/src/presentation/components/molecules/RowsCard/index.d.ts +6 -0
- package/dist/src/presentation/components/molecules/RowsCard/styles.d.ts +22 -0
- package/dist/src/presentation/components/molecules/RowsCard/types.d.ts +10 -0
- package/package.json +1 -1
- package/src/main/assets/icons/ant/nafto-unidade-maritima.svg +10 -0
- package/src/main/assets/icons/extraLarge/nafto-unidade-maritima.svg +10 -0
- package/src/main/assets/icons/index.ts +1 -0
- package/src/main/assets/icons/large/nafto-unidade-maritima.svg +10 -0
- package/src/main/assets/icons/medium/nafto-unidade-maritima.svg +10 -0
- package/src/main/assets/icons/small/nafto-unidade-maritima.svg +10 -0
- package/src/main/helpers/functions/icons.ts +11 -0
- package/src/presentation/components/atoms/Tooltip/index.tsx +1 -1
- package/src/presentation/components/molecules/Modal/Modal.stories.tsx +74 -10
- package/src/presentation/components/molecules/Modal/components/Default/index.tsx +16 -6
- package/src/presentation/components/molecules/Modal/components/Download/index.tsx +19 -9
- package/src/presentation/components/molecules/Modal/components/Input/index.tsx +16 -6
- package/src/presentation/components/molecules/Modal/components/Upload/index.tsx +10 -4
- package/src/presentation/components/molecules/Modal/index.tsx +8 -2
- package/src/presentation/components/molecules/RowsCard/RowCard.spec.tsx +100 -0
- package/src/presentation/components/molecules/RowsCard/RowCard.stories.tsx +211 -0
- package/src/presentation/components/molecules/RowsCard/RowCard.tsx +11 -0
- package/src/presentation/components/molecules/RowsCard/RowCardActions.tsx +11 -0
- package/src/presentation/components/molecules/RowsCard/RowCardCheckbox.tsx +12 -0
- package/src/presentation/components/molecules/RowsCard/RowCardContent.tsx +11 -0
- package/src/presentation/components/molecules/RowsCard/RowCardHeader.tsx +11 -0
- package/src/presentation/components/molecules/RowsCard/RowCardTitle.tsx +12 -0
- package/src/presentation/components/molecules/RowsCard/index.ts +6 -0
- package/src/presentation/components/molecules/RowsCard/styles.ts +152 -0
- package/src/presentation/components/molecules/RowsCard/types.ts +14 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Icons } from './src/main/helpers/functions/icons';
|
|
2
2
|
import { sg } from './src/presentation/styles/styleGuide';
|
|
3
3
|
import { LocalStorageAdapter } from './src/main/cache/local-storage-adapter';
|
|
4
|
-
import { TreeProps } from './src/presentation/components/molecules/Tree';
|
|
5
|
-
import { TreeItem } from './src/presentation/components/molecules/Tree';
|
|
4
|
+
import { TreeProps, TreeItem } from './src/presentation/components/molecules/Tree';
|
|
6
5
|
import { TooltipProps } from './src/presentation/components/atoms/Tooltip';
|
|
7
6
|
import { ButtonProps } from './src/presentation/components/atoms/Button';
|
|
8
7
|
import { InputProps } from './src/presentation/components/atoms/Input/input.types';
|
|
@@ -76,6 +75,7 @@ export { default as Autocomplete } from './src/presentation/components/molecules
|
|
|
76
75
|
export { default as BackgroundSection } from './src/presentation/components/molecules/BackgroundSection';
|
|
77
76
|
export { default as Notification } from './src/presentation/components/molecules/Notification';
|
|
78
77
|
export { NotificationText } from './src/presentation/components/molecules/Notification';
|
|
78
|
+
export * from './src/presentation/components/molecules/RowsCard';
|
|
79
79
|
export { TableProvider, useTableContext, } from './src/presentation/context/table/index';
|
|
80
80
|
export type IconType = keyof typeof Icons;
|
|
81
81
|
export type { TreeProps };
|