sbwb-ds 3.6.1 → 3.8.1
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 +4 -2
- package/dist/sbwb-ds.js +16839 -16655
- package/dist/sbwb-ds.umd.cjs +830 -739
- package/dist/src/main/assets/icons/index.d.ts +4 -0
- package/dist/src/main/helpers/functions/icons.d.ts +120 -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 +2 -1
- 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/dist/src/presentation/components/molecules/TabBar/hooks/useTabBar.d.ts +1 -1
- package/dist/src/presentation/components/molecules/TabBar/index.d.ts +1 -0
- package/dist/src/presentation/components/molecules/Tree/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/main/assets/icons/ant/arrow-downward.svg +3 -0
- package/src/main/assets/icons/ant/arrow-upward.svg +3 -0
- package/src/main/assets/icons/ant/import.svg +4 -0
- package/src/main/assets/icons/ant/nafto-unidade-maritima.svg +10 -0
- package/src/main/assets/icons/extraLarge/arrow-downward.svg +3 -0
- package/src/main/assets/icons/extraLarge/arrow-upward.svg +3 -0
- package/src/main/assets/icons/extraLarge/import.svg +4 -0
- package/src/main/assets/icons/extraLarge/nafto-unidade-maritima.svg +10 -0
- package/src/main/assets/icons/index.ts +4 -0
- package/src/main/assets/icons/large/arrow-downward.svg +3 -0
- package/src/main/assets/icons/large/arrow-upward.svg +3 -0
- package/src/main/assets/icons/large/import.svg +4 -0
- package/src/main/assets/icons/large/nafto-unidade-maritima.svg +10 -0
- package/src/main/assets/icons/medium/arrow-downward.svg +3 -0
- package/src/main/assets/icons/medium/arrow-upward.svg +3 -0
- package/src/main/assets/icons/medium/import.svg +4 -0
- package/src/main/assets/icons/medium/nafto-unidade-maritima.svg +10 -0
- package/src/main/assets/icons/small/arrow-downward.svg +3 -0
- package/src/main/assets/icons/small/arrow-upward.svg +3 -0
- package/src/main/assets/icons/small/import.svg +4 -0
- package/src/main/assets/icons/small/nafto-unidade-maritima.svg +10 -0
- package/src/main/helpers/functions/icons.ts +44 -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 +4 -1
- 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/src/presentation/components/molecules/Sidebar/Sidebar.stories.tsx +15 -21
- package/src/presentation/components/molecules/Sidebar/hooks/useSidebar.tsx +5 -1
- package/src/presentation/components/molecules/Sidebar/index.tsx +1 -1
- package/src/presentation/components/molecules/TabBar/TabBar.stories.tsx +90 -65
- package/src/presentation/components/molecules/TabBar/hooks/useTabBar.tsx +13 -6
- package/src/presentation/components/molecules/TabBar/index.tsx +16 -2
- package/src/presentation/components/molecules/Tree/Tree.stories.tsx +177 -0
- package/src/presentation/components/molecules/Tree/index.tsx +12 -2
- package/dist/src/presentation/components/molecules/MosaicCard/MosaicCard.Styles.d.ts +0 -2
- package/dist/src/presentation/components/molecules/MosaicCard/MosaicCard.functions.d.ts +0 -6
- package/dist/src/presentation/components/molecules/MosaicCard/cardStyles.d.ts +0 -12
- package/dist/src/presentation/components/molecules/MosaicCard/documentation/index.d.ts +0 -1
- package/dist/src/presentation/components/molecules/MosaicCard/index.d.ts +0 -27
- package/src/presentation/components/molecules/MosaicCard/MosaicCard.Styles.ts +0 -18
- package/src/presentation/components/molecules/MosaicCard/MosaicCard.functions.ts +0 -115
- package/src/presentation/components/molecules/MosaicCard/MosaicCard.stories.tsx +0 -577
- package/src/presentation/components/molecules/MosaicCard/cardStyles.ts +0 -158
- package/src/presentation/components/molecules/MosaicCard/documentation/index.tsx +0 -195
- package/src/presentation/components/molecules/MosaicCard/index.tsx +0 -100
- package/src/presentation/components/molecules/MosaicCard/react-mosaic-component.css +0 -507
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';
|
|
@@ -18,6 +17,7 @@ import { TableHeaderCellProps } from './src/presentation/components/molecules/Da
|
|
|
18
17
|
import { SeriesData } from './src/presentation/components/molecules/ChartLinear';
|
|
19
18
|
import { NotificationItemProps, NotificationProps } from './src/presentation/components/molecules/Notification';
|
|
20
19
|
import { MenuSelectProps } from './src/presentation/components/molecules/MenuSelect';
|
|
20
|
+
import { Tab } from './src/presentation/components/molecules/TabBar';
|
|
21
21
|
export { default as Accordion } from './src/presentation/components/atoms/Accordion';
|
|
22
22
|
export { default as Avatar } from './src/presentation/components/atoms/Avatar/Avatar.view';
|
|
23
23
|
export { default as ActionButton } from './src/presentation/components/atoms/ActionButton';
|
|
@@ -76,6 +76,7 @@ export { default as Autocomplete } from './src/presentation/components/molecules
|
|
|
76
76
|
export { default as BackgroundSection } from './src/presentation/components/molecules/BackgroundSection';
|
|
77
77
|
export { default as Notification } from './src/presentation/components/molecules/Notification';
|
|
78
78
|
export { NotificationText } from './src/presentation/components/molecules/Notification';
|
|
79
|
+
export * from './src/presentation/components/molecules/RowsCard';
|
|
79
80
|
export { TableProvider, useTableContext, } from './src/presentation/context/table/index';
|
|
80
81
|
export type IconType = keyof typeof Icons;
|
|
81
82
|
export type { TreeProps };
|
|
@@ -96,5 +97,6 @@ export type { NotificationItemProps };
|
|
|
96
97
|
export type { NotificationProps };
|
|
97
98
|
export type { MenuSelectProps };
|
|
98
99
|
export type { CheckboxProps };
|
|
100
|
+
export type { Tab };
|
|
99
101
|
export { sg };
|
|
100
102
|
export { LocalStorageAdapter };
|