sbwb-ds 1.0.0 → 1.0.2

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 (33) hide show
  1. package/dist/index.d.ts +2 -1
  2. package/dist/sbwb-ds.js +9364 -9267
  3. package/dist/sbwb-ds.umd.cjs +625 -571
  4. package/dist/src/main/helpers/functions/dateFormatterPtBr.d.ts +1 -0
  5. package/dist/src/main/helpers/functions/icons.d.ts +5 -0
  6. package/dist/src/presentation/components/atoms/Button/index.d.ts +1 -1
  7. package/dist/src/presentation/components/atoms/Modal/index.d.ts +14 -0
  8. package/dist/src/presentation/components/atoms/Modal/index.spec.d.ts +1 -0
  9. package/dist/src/presentation/components/atoms/Modal/styles.d.ts +6 -0
  10. package/dist/src/presentation/components/atoms/Select/index.d.ts +2 -2
  11. package/dist/src/presentation/components/atoms/SkeletonLoading/index.d.ts +2 -1
  12. package/dist/src/presentation/components/atoms/index.d.ts +1 -0
  13. package/dist/src/presentation/components/molecules/Datepicker/components/inputCalendar/index.d.ts +4 -2
  14. package/dist/src/presentation/components/molecules/Datepicker/hooks/useCalendar.d.ts +2 -0
  15. package/dist/src/presentation/components/molecules/Datepicker/hooks/useInputCalendar.d.ts +1 -1
  16. package/dist/src/presentation/components/molecules/Datepicker/index.d.ts +1 -0
  17. package/package.json +1 -1
  18. package/src/main/helpers/functions/dateFormatterPtBr.ts +24 -0
  19. package/src/main/helpers/functions/icons.ts +10 -0
  20. package/src/presentation/components/atoms/Button/index.tsx +1 -1
  21. package/src/presentation/components/atoms/Modal/Modal.stories.tsx +86 -0
  22. package/src/presentation/components/atoms/Modal/index.spec.tsx +51 -0
  23. package/src/presentation/components/atoms/Modal/index.tsx +50 -0
  24. package/src/presentation/components/atoms/Modal/styles.ts +64 -0
  25. package/src/presentation/components/atoms/Select/index.tsx +19 -9
  26. package/src/presentation/components/atoms/Select/styles.ts +18 -5
  27. package/src/presentation/components/atoms/SkeletonLoading/index.tsx +2 -1
  28. package/src/presentation/components/atoms/Tag/styles.ts +6 -2
  29. package/src/presentation/components/atoms/index.ts +1 -0
  30. package/src/presentation/components/molecules/Datepicker/components/inputCalendar/index.tsx +16 -17
  31. package/src/presentation/components/molecules/Datepicker/hooks/useCalendar.tsx +9 -1
  32. package/src/presentation/components/molecules/Datepicker/hooks/useInputCalendar.tsx +11 -13
  33. package/src/presentation/components/molecules/Datepicker/index.tsx +13 -1
package/dist/index.d.ts CHANGED
@@ -17,7 +17,8 @@ export { default as Tag } from './src/presentation/components/atoms/Tag';
17
17
  export { default as ChartPie } from './src/presentation/components/atoms/ChartPie';
18
18
  export { default as Icon } from './src/presentation/components/atoms/Icon';
19
19
  export { default as SkeletonLoading } from './src/presentation/components/atoms/SkeletonLoading';
20
+ export { default as Modal } from './src/presentation/components/atoms/Modal';
20
21
  export { default as TabBar } from './src/presentation/components/molecules/TabBar';
21
22
  export { default as Table } from './src/presentation/components/molecules/Table';
22
23
  export { default as DatePicker } from './src/presentation/components/molecules/Datepicker';
23
- export { default as Modal } from './src/presentation/components/molecules/Sidebar';
24
+ export { default as Sidebar } from './src/presentation/components/molecules/Sidebar';