@me1a/ui 1.1.2 → 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} +280 -359
  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} +280 -359
  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 +3 -3
  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.2",
3
+ "version": "1.2.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -61,7 +61,7 @@
61
61
  "typescript": "^5.4.5"
62
62
  },
63
63
  "peerDependencies": {
64
- "react": "^18.3.1",
65
- "react-dom": "^18.3.1"
64
+ "react": "18.2.0",
65
+ "react-dom": "18.2.0"
66
66
  }
67
67
  }