@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.
- package/dist/example/index/example/index.d.ts +1 -0
- package/dist/example/index/example/simple.d.ts +4 -0
- package/dist/example/index/hook-forms/form-provider.d.ts +8 -0
- package/dist/example/index/hook-forms/index.d.ts +9 -0
- package/dist/example/index/hook-forms/rhf-autocomplete.d.ts +11 -0
- package/dist/example/index/hook-forms/rhf-checkbox.d.ts +19 -0
- package/dist/example/index/hook-forms/rhf-radio-group.d.ts +13 -0
- package/dist/example/index/hook-forms/rhf-select.d.ts +11 -0
- package/dist/example/index/hook-forms/rhf-slider.d.ts +7 -0
- package/dist/example/index/hook-forms/rhf-switch.d.ts +7 -0
- package/dist/example/index/hook-forms/rhf-text-field.d.ts +6 -0
- package/dist/example/index/index.cjs.js +1381 -0
- package/dist/example/index/index.cjs.js.map +1 -0
- package/dist/example/index/index.d.ts +2 -0
- package/dist/example/index/index.es.js +1379 -0
- package/dist/example/index/index.es.js.map +1 -0
- package/dist/hook-forms/index/example/index.d.ts +1 -0
- package/dist/hook-forms/index/example/simple.d.ts +4 -0
- package/dist/hook-forms/index/hook-forms/form-provider.d.ts +8 -0
- package/dist/hook-forms/index/hook-forms/index.d.ts +9 -0
- package/dist/hook-forms/index/hook-forms/rhf-autocomplete.d.ts +11 -0
- package/dist/hook-forms/index/hook-forms/rhf-checkbox.d.ts +19 -0
- package/dist/hook-forms/index/hook-forms/rhf-radio-group.d.ts +13 -0
- package/dist/hook-forms/index/hook-forms/rhf-select.d.ts +11 -0
- package/dist/hook-forms/index/hook-forms/rhf-slider.d.ts +7 -0
- package/dist/hook-forms/index/hook-forms/rhf-switch.d.ts +7 -0
- package/dist/hook-forms/index/hook-forms/rhf-text-field.d.ts +6 -0
- package/dist/{index.cjs.js → hook-forms/index/index.cjs.js} +280 -359
- package/dist/hook-forms/index/index.cjs.js.map +1 -0
- package/dist/hook-forms/index/index.d.ts +2 -0
- package/dist/{index.es.js → hook-forms/index/index.es.js} +280 -359
- package/dist/hook-forms/index/index.es.js.map +1 -0
- package/dist/index/example/index.d.ts +1 -0
- package/dist/index/example/simple.d.ts +4 -0
- package/dist/index/hook-forms/form-provider.d.ts +8 -0
- package/dist/index/hook-forms/index.d.ts +9 -0
- package/dist/index/hook-forms/rhf-autocomplete.d.ts +11 -0
- package/dist/index/hook-forms/rhf-checkbox.d.ts +19 -0
- package/dist/index/hook-forms/rhf-radio-group.d.ts +13 -0
- package/dist/index/hook-forms/rhf-select.d.ts +11 -0
- package/dist/index/hook-forms/rhf-slider.d.ts +7 -0
- package/dist/index/hook-forms/rhf-switch.d.ts +7 -0
- package/dist/index/hook-forms/rhf-text-field.d.ts +6 -0
- package/dist/index/index.cjs.js +27272 -0
- package/dist/index/index.cjs.js.map +1 -0
- package/dist/index/index.d.ts +2 -0
- package/dist/index/index.es.js +27232 -0
- package/dist/index/index.es.js.map +1 -0
- package/package.json +3 -3
- package/dist/index.cjs.js.map +0 -1
- package/dist/index.d.ts +0 -74
- 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
|
|
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": "
|
|
65
|
-
"react-dom": "
|
|
64
|
+
"react": "18.2.0",
|
|
65
|
+
"react-dom": "18.2.0"
|
|
66
66
|
}
|
|
67
67
|
}
|