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.
Files changed (46) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/dist/sbwb-ds.js +14098 -13938
  3. package/dist/sbwb-ds.umd.cjs +841 -750
  4. package/dist/src/main/assets/icons/index.d.ts +1 -0
  5. package/dist/src/main/helpers/functions/icons.d.ts +30 -0
  6. package/dist/src/presentation/components/molecules/Modal/components/Default/index.d.ts +3 -2
  7. package/dist/src/presentation/components/molecules/Modal/components/Download/index.d.ts +3 -1
  8. package/dist/src/presentation/components/molecules/Modal/components/Input/index.d.ts +3 -2
  9. package/dist/src/presentation/components/molecules/Modal/components/Upload/index.d.ts +3 -1
  10. package/dist/src/presentation/components/molecules/Modal/index.d.ts +3 -2
  11. package/dist/src/presentation/components/molecules/RowsCard/RowCard.d.ts +10 -0
  12. package/dist/src/presentation/components/molecules/RowsCard/RowCard.spec.d.ts +1 -0
  13. package/dist/src/presentation/components/molecules/RowsCard/RowCardActions.d.ts +7 -0
  14. package/dist/src/presentation/components/molecules/RowsCard/RowCardCheckbox.d.ts +3 -0
  15. package/dist/src/presentation/components/molecules/RowsCard/RowCardContent.d.ts +7 -0
  16. package/dist/src/presentation/components/molecules/RowsCard/RowCardHeader.d.ts +7 -0
  17. package/dist/src/presentation/components/molecules/RowsCard/RowCardTitle.d.ts +3 -0
  18. package/dist/src/presentation/components/molecules/RowsCard/index.d.ts +6 -0
  19. package/dist/src/presentation/components/molecules/RowsCard/styles.d.ts +22 -0
  20. package/dist/src/presentation/components/molecules/RowsCard/types.d.ts +10 -0
  21. package/package.json +1 -1
  22. package/src/main/assets/icons/ant/nafto-unidade-maritima.svg +10 -0
  23. package/src/main/assets/icons/extraLarge/nafto-unidade-maritima.svg +10 -0
  24. package/src/main/assets/icons/index.ts +1 -0
  25. package/src/main/assets/icons/large/nafto-unidade-maritima.svg +10 -0
  26. package/src/main/assets/icons/medium/nafto-unidade-maritima.svg +10 -0
  27. package/src/main/assets/icons/small/nafto-unidade-maritima.svg +10 -0
  28. package/src/main/helpers/functions/icons.ts +11 -0
  29. package/src/presentation/components/atoms/Tooltip/index.tsx +1 -1
  30. package/src/presentation/components/molecules/Modal/Modal.stories.tsx +74 -10
  31. package/src/presentation/components/molecules/Modal/components/Default/index.tsx +16 -6
  32. package/src/presentation/components/molecules/Modal/components/Download/index.tsx +19 -9
  33. package/src/presentation/components/molecules/Modal/components/Input/index.tsx +16 -6
  34. package/src/presentation/components/molecules/Modal/components/Upload/index.tsx +10 -4
  35. package/src/presentation/components/molecules/Modal/index.tsx +8 -2
  36. package/src/presentation/components/molecules/RowsCard/RowCard.spec.tsx +100 -0
  37. package/src/presentation/components/molecules/RowsCard/RowCard.stories.tsx +211 -0
  38. package/src/presentation/components/molecules/RowsCard/RowCard.tsx +11 -0
  39. package/src/presentation/components/molecules/RowsCard/RowCardActions.tsx +11 -0
  40. package/src/presentation/components/molecules/RowsCard/RowCardCheckbox.tsx +12 -0
  41. package/src/presentation/components/molecules/RowsCard/RowCardContent.tsx +11 -0
  42. package/src/presentation/components/molecules/RowsCard/RowCardHeader.tsx +11 -0
  43. package/src/presentation/components/molecules/RowsCard/RowCardTitle.tsx +12 -0
  44. package/src/presentation/components/molecules/RowsCard/index.ts +6 -0
  45. package/src/presentation/components/molecules/RowsCard/styles.ts +152 -0
  46. 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 };