@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.
- 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} +8350 -3562
- 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} +8378 -3594
- 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 +10 -8
- 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.
|
|
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": "
|
|
58
|
-
"react-dom": "
|
|
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
|
}
|