@me1a/ui 1.1.1 → 1.2.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.
Files changed (52) hide show
  1. package/dist/example/index/example/index.d.ts +1 -0
  2. package/dist/example/index/example/simple.d.ts +4 -0
  3. package/dist/example/index/hook-forms/form-provider.d.ts +8 -0
  4. package/dist/example/index/hook-forms/index.d.ts +9 -0
  5. package/dist/example/index/hook-forms/rhf-autocomplete.d.ts +11 -0
  6. package/dist/example/index/hook-forms/rhf-checkbox.d.ts +19 -0
  7. package/dist/example/index/hook-forms/rhf-radio-group.d.ts +13 -0
  8. package/dist/example/index/hook-forms/rhf-select.d.ts +11 -0
  9. package/dist/example/index/hook-forms/rhf-slider.d.ts +7 -0
  10. package/dist/example/index/hook-forms/rhf-switch.d.ts +7 -0
  11. package/dist/example/index/hook-forms/rhf-text-field.d.ts +6 -0
  12. package/dist/example/index/index.cjs.js +1381 -0
  13. package/dist/example/index/index.cjs.js.map +1 -0
  14. package/dist/example/index/index.d.ts +2 -0
  15. package/dist/example/index/index.es.js +1379 -0
  16. package/dist/example/index/index.es.js.map +1 -0
  17. package/dist/hook-forms/index/example/index.d.ts +1 -0
  18. package/dist/hook-forms/index/example/simple.d.ts +4 -0
  19. package/dist/hook-forms/index/hook-forms/form-provider.d.ts +8 -0
  20. package/dist/hook-forms/index/hook-forms/index.d.ts +9 -0
  21. package/dist/hook-forms/index/hook-forms/rhf-autocomplete.d.ts +11 -0
  22. package/dist/hook-forms/index/hook-forms/rhf-checkbox.d.ts +19 -0
  23. package/dist/hook-forms/index/hook-forms/rhf-radio-group.d.ts +13 -0
  24. package/dist/hook-forms/index/hook-forms/rhf-select.d.ts +11 -0
  25. package/dist/hook-forms/index/hook-forms/rhf-slider.d.ts +7 -0
  26. package/dist/hook-forms/index/hook-forms/rhf-switch.d.ts +7 -0
  27. package/dist/hook-forms/index/hook-forms/rhf-text-field.d.ts +6 -0
  28. package/dist/{index.cjs.js → hook-forms/index/index.cjs.js} +8350 -3562
  29. package/dist/hook-forms/index/index.cjs.js.map +1 -0
  30. package/dist/hook-forms/index/index.d.ts +2 -0
  31. package/dist/{index.es.js → hook-forms/index/index.es.js} +8378 -3594
  32. package/dist/hook-forms/index/index.es.js.map +1 -0
  33. package/dist/index/example/index.d.ts +1 -0
  34. package/dist/index/example/simple.d.ts +4 -0
  35. package/dist/index/hook-forms/form-provider.d.ts +8 -0
  36. package/dist/index/hook-forms/index.d.ts +9 -0
  37. package/dist/index/hook-forms/rhf-autocomplete.d.ts +11 -0
  38. package/dist/index/hook-forms/rhf-checkbox.d.ts +19 -0
  39. package/dist/index/hook-forms/rhf-radio-group.d.ts +13 -0
  40. package/dist/index/hook-forms/rhf-select.d.ts +11 -0
  41. package/dist/index/hook-forms/rhf-slider.d.ts +7 -0
  42. package/dist/index/hook-forms/rhf-switch.d.ts +7 -0
  43. package/dist/index/hook-forms/rhf-text-field.d.ts +6 -0
  44. package/dist/index/index.cjs.js +27272 -0
  45. package/dist/index/index.cjs.js.map +1 -0
  46. package/dist/index/index.d.ts +2 -0
  47. package/dist/index/index.es.js +27232 -0
  48. package/dist/index/index.es.js.map +1 -0
  49. package/package.json +10 -8
  50. package/dist/index.cjs.js.map +0 -1
  51. package/dist/index.d.ts +0 -74
  52. package/dist/index.es.js.map +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@me1a/ui",
3
- "version": "1.1.1",
3
+ "version": "1.2.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -17,6 +17,13 @@
17
17
  },
18
18
  "author": "",
19
19
  "license": "ISC",
20
+ "dependencies": {
21
+ "@emotion/react": "^11.13.3",
22
+ "@emotion/styled": "^11.13.0",
23
+ "@mui/icons-material": "^6.1.5",
24
+ "@mui/material": "^6.1.5",
25
+ "react-hook-form": "^7.51.3"
26
+ },
20
27
  "devDependencies": {
21
28
  "@babel/core": "^7.26.0",
22
29
  "@babel/preset-env": "^7.26.0",
@@ -54,12 +61,7 @@
54
61
  "typescript": "^5.4.5"
55
62
  },
56
63
  "peerDependencies": {
57
- "react": "^18.3.1",
58
- "react-dom": "^18.3.1",
59
- "@emotion/react": "^11.13.3",
60
- "@emotion/styled": "^11.13.0",
61
- "@mui/icons-material": "^6.1.5",
62
- "@mui/material": "^6.1.5",
63
- "react-hook-form": "^7.51.3"
64
+ "react": "18.2.0",
65
+ "react-dom": "18.2.0"
64
66
  }
65
67
  }