@uniai-fe/uds-primitives 0.12.4 → 0.12.6

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 (55) hide show
  1. package/README.md +17 -0
  2. package/dist/styles.css +2 -2
  3. package/package.json +17 -17
  4. package/src/components/form/markup/Provider.tsx +7 -3
  5. package/src/components/form/markup/form-field/Body.tsx +1 -0
  6. package/src/components/form/markup/form-field/Container.tsx +3 -1
  7. package/src/components/form/markup/form-field/Footer.tsx +1 -0
  8. package/src/components/form/markup/form-field/Header.tsx +2 -0
  9. package/src/components/form/markup/form-field/Template.tsx +3 -2
  10. package/src/components/form/markup/form-field/index.tsx +1 -1
  11. package/src/components/form/markup/index.tsx +1 -0
  12. package/src/components/form/styles/form-field/variables.scss +2 -2
  13. package/src/components/form/types/props.ts +21 -19
  14. package/src/components/form/utils/form-field.ts +6 -4
  15. package/src/components/input/markup/date/Template.tsx +83 -33
  16. package/src/components/input/markup/date/Trigger.tsx +28 -12
  17. package/src/components/input/markup/date/range/Template.tsx +94 -35
  18. package/src/components/input/markup/time/Template.tsx +118 -5
  19. package/src/components/input/markup/time/Trigger.tsx +35 -2
  20. package/src/components/input/types/date.ts +176 -33
  21. package/src/components/input/types/time.ts +10 -4
  22. package/src/components/slot/index.tsx +3 -6
  23. package/src/components/slot/markup/Base.tsx +146 -9
  24. package/src/components/slot/markup/index.tsx +2 -4
  25. package/src/components/slot/types/props.ts +119 -23
  26. package/src/components/table/types/foundation.ts +9 -7
  27. package/src/components/time-picker/markup/Footer.tsx +5 -5
  28. package/src/components/time-picker/markup/HourSection.tsx +7 -7
  29. package/src/components/time-picker/markup/MinuteSection.tsx +5 -5
  30. package/src/components/time-picker/markup/Summary.tsx +2 -2
  31. package/src/components/time-picker/markup/Template.tsx +11 -11
  32. package/src/components/time-picker/types/time-picker.ts +6 -0
  33. package/src/components/time-picker/utils/time.ts +21 -9
  34. package/src/index.scss +0 -2
  35. package/src/index.tsx +8 -2
  36. package/src/types/index.ts +1 -4
  37. package/src/utils/index.ts +8 -4
  38. package/src/utils/selected-values.ts +20 -14
  39. package/src/components/scrollbar/hooks/index.ts +0 -4
  40. package/src/components/scrollbar/img/.gitkeep +0 -0
  41. package/src/components/scrollbar/index.scss +0 -1
  42. package/src/components/scrollbar/index.tsx +0 -4
  43. package/src/components/scrollbar/markup/index.tsx +0 -4
  44. package/src/components/scrollbar/styles/index.scss +0 -0
  45. package/src/components/scrollbar/types/index.ts +0 -4
  46. package/src/components/scrollbar/utils/index.ts +0 -4
  47. package/src/components/spinner/hooks/index.ts +0 -4
  48. package/src/components/spinner/img/.gitkeep +0 -0
  49. package/src/components/spinner/index.scss +0 -1
  50. package/src/components/spinner/index.tsx +0 -4
  51. package/src/components/spinner/markup/index.tsx +0 -4
  52. package/src/components/spinner/styles/index.scss +0 -0
  53. package/src/components/spinner/types/index.ts +0 -4
  54. package/src/components/spinner/utils/index.ts +0 -4
  55. package/src/hooks/index.ts +0 -4
@@ -1,4 +0,0 @@
1
- /**
2
- * Spinner Types; 현재 공개된 타입이 없는 placeholder 엔트리
3
- */
4
- export {};
@@ -1,4 +0,0 @@
1
- /**
2
- * Spinner Utils; 현재 공개된 유틸이 없는 placeholder 엔트리
3
- */
4
- export {};
@@ -1,4 +0,0 @@
1
- /**
2
- * shared hooks placeholder: 카테고리 간 재사용 로직을 이 디렉터리에 모아둔다.
3
- */
4
- export {};