react-mui-form-validator 1.5.7 → 1.7.0
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/Readme.md +6 -7
- package/lib/index.cjs +23748 -0
- package/lib/index.cjs.map +1 -0
- package/lib/index.d.cts +169 -0
- package/lib/index.d.ts +150 -160
- package/lib/index.js +11968 -9633
- package/lib/index.js.map +1 -0
- package/package.json +44 -34
- package/tsconfig.json +1 -1
package/package.json
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-mui-form-validator",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Validator for forms designed with material-ui components.",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./lib/index.cjs",
|
|
7
|
+
"module": "./lib/index.js",
|
|
8
|
+
"types": "./lib/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./lib/index.d.ts",
|
|
12
|
+
"import": "./lib/index.js",
|
|
13
|
+
"require": "./lib/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
|
+
},
|
|
7
17
|
"scripts": {
|
|
8
|
-
"
|
|
9
|
-
"start": "react-scripts start",
|
|
18
|
+
"build": "rimraf ./lib && tsup src/index.ts src/cli.ts --dts --format esm,cjs --outDir=lib --sourcemap",
|
|
10
19
|
"test": "jest",
|
|
11
20
|
"test:watch": "jest --watch"
|
|
12
21
|
},
|
|
@@ -16,12 +25,14 @@
|
|
|
16
25
|
},
|
|
17
26
|
"keywords": [
|
|
18
27
|
"react",
|
|
19
|
-
"
|
|
28
|
+
"react-forms",
|
|
29
|
+
"mui-form",
|
|
20
30
|
"mui-validator",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"form-validator",
|
|
24
|
-
"validator"
|
|
31
|
+
"validator",
|
|
32
|
+
"validations",
|
|
33
|
+
"mui-form-validator",
|
|
34
|
+
"react-validator",
|
|
35
|
+
"react-form-validator"
|
|
25
36
|
],
|
|
26
37
|
"author": "Blencm",
|
|
27
38
|
"license": "MIT",
|
|
@@ -30,35 +41,34 @@
|
|
|
30
41
|
},
|
|
31
42
|
"homepage": "https://github.com/blencm/react-mui-form-validator#readme",
|
|
32
43
|
"dependencies": {
|
|
33
|
-
"libphonenumber-js": "^1.
|
|
34
|
-
"react": "^
|
|
35
|
-
"react-dom": "^
|
|
44
|
+
"libphonenumber-js": "^1.12.35",
|
|
45
|
+
"react": "^19.2.4",
|
|
46
|
+
"react-dom": "^19.2.4",
|
|
36
47
|
"react-lifecycles-compat": "^3.0.4"
|
|
37
48
|
},
|
|
38
49
|
"peerDependencies": {
|
|
39
|
-
"react": "^16.0.0 || ^17.0.0 || ^18.2.0",
|
|
40
|
-
"react-dom": "^16.0.0 || ^17.0.0 || ^18.2.0"
|
|
50
|
+
"react": "^16.0.0 || ^17.0.0 || ^18.3.1 || ^19.2.4 || 20.0.0",
|
|
51
|
+
"react-dom": "^16.0.0 || ^17.0.0 || ^18.3.1 || ^19.2.4 || 20.0.0"
|
|
41
52
|
},
|
|
42
53
|
"devDependencies": {
|
|
43
|
-
"@babel/preset-env": "^7.
|
|
44
|
-
"@babel/preset-flow": "^7.
|
|
45
|
-
"@babel/preset-react": "^7.
|
|
46
|
-
"@jest/globals": "^
|
|
47
|
-
"@mui/material": "^
|
|
48
|
-
"@testing-library/react": "^
|
|
49
|
-
"@types/node": "^
|
|
50
|
-
"@types/react": "^
|
|
51
|
-
"@types/react-dom": "^
|
|
52
|
-
"@types/react-lifecycles-compat": "^3.0.
|
|
53
|
-
"@types/react-test-renderer": "^
|
|
54
|
-
"babel-jest": "^
|
|
55
|
-
"jest": "^
|
|
56
|
-
"mui-tel-input": "
|
|
57
|
-
"react-
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"typescript": "^4.9.5"
|
|
54
|
+
"@babel/preset-env": "^7.28.6",
|
|
55
|
+
"@babel/preset-flow": "^7.27.1",
|
|
56
|
+
"@babel/preset-react": "^7.28.5",
|
|
57
|
+
"@jest/globals": "^30.2.0",
|
|
58
|
+
"@mui/material": "^7.3.7",
|
|
59
|
+
"@testing-library/react": "^16.3.2",
|
|
60
|
+
"@types/node": "^25.0.10",
|
|
61
|
+
"@types/react": "^19.2.9",
|
|
62
|
+
"@types/react-dom": "^19.2.3",
|
|
63
|
+
"@types/react-lifecycles-compat": "^3.0.4",
|
|
64
|
+
"@types/react-test-renderer": "^19.1.0",
|
|
65
|
+
"babel-jest": "^30.2.0",
|
|
66
|
+
"jest": "^30.2.0",
|
|
67
|
+
"mui-tel-input": "9.0.1",
|
|
68
|
+
"react-test-renderer": "^19.2.4",
|
|
69
|
+
"rimraf": "^6.1.2",
|
|
70
|
+
"tsup": "^8.5.1",
|
|
71
|
+
"typescript": "^5.9.3"
|
|
62
72
|
},
|
|
63
73
|
"browserslist": {
|
|
64
74
|
"production": [
|