@react-solutions/inputs 0.2.0 → 0.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/index.js +6026 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6089 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +19 -22
package/package.json
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-solutions/inputs",
|
|
3
3
|
"description": "A input library for react",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "React Solutions",
|
|
7
|
+
"sideEffects": false,
|
|
7
8
|
"main": "dist/index.js",
|
|
8
9
|
"module": "dist/index.mjs",
|
|
9
10
|
"types": "dist/index.d.ts",
|
|
10
11
|
"exports": {
|
|
11
12
|
".": {
|
|
12
|
-
"types":
|
|
13
|
+
"types": {
|
|
14
|
+
"import": "./dist/index.d.mts",
|
|
15
|
+
"require": "./dist/index.d.ts"
|
|
16
|
+
},
|
|
13
17
|
"import": "./dist/index.mjs",
|
|
14
18
|
"require": "./dist/index.js"
|
|
15
19
|
}
|
|
@@ -28,31 +32,20 @@
|
|
|
28
32
|
"react input library"
|
|
29
33
|
],
|
|
30
34
|
"scripts": {
|
|
31
|
-
"build": "tsup lib/index.ts --format esm,cjs --dts --sourcemap --
|
|
35
|
+
"build": "tsup lib/index.ts --format esm,cjs --dts --sourcemap --clean --tsconfig tsconfig.build.json",
|
|
32
36
|
"dev": "tsc --watch",
|
|
33
37
|
"prepublishOnly": "npm run build",
|
|
34
38
|
"lint": "eslint .",
|
|
35
39
|
"format": "prettier --write ."
|
|
36
40
|
},
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"@emotion/react": ">=11.0.0",
|
|
39
|
-
"@emotion/styled": ">=11.0.0",
|
|
40
|
-
"@mui/icons-material": ">=7.0.0",
|
|
41
|
-
"@mui/material": ">=7.0.0",
|
|
42
|
-
"@mui/x-date-pickers": ">=8.0.0",
|
|
43
|
-
"date-fns": ">=4.0.0",
|
|
44
|
-
"react": ">=16.8.0",
|
|
45
|
-
"react-dom": ">=16.8.0",
|
|
46
|
-
"react-hook-form": ">=7.0.0"
|
|
47
|
-
},
|
|
41
|
+
"dependencies": {},
|
|
48
42
|
"peerDependencies": {
|
|
49
43
|
"@emotion/react": ">=11.0.0",
|
|
50
44
|
"@emotion/styled": ">=11.0.0",
|
|
51
|
-
"@mui/icons-material": ">=
|
|
52
|
-
"@mui/material": ">=
|
|
53
|
-
"@mui/x-date-pickers": ">=
|
|
54
|
-
"
|
|
55
|
-
"date-fns": ">=4.0.0",
|
|
45
|
+
"@mui/icons-material": ">=5.0.0",
|
|
46
|
+
"@mui/material": ">=5.0.0",
|
|
47
|
+
"@mui/x-date-pickers": ">=5.0.0",
|
|
48
|
+
"date-fns": ">=2.0.0",
|
|
56
49
|
"react": ">=16.8.0",
|
|
57
50
|
"react-dom": ">=16.8.0",
|
|
58
51
|
"react-hook-form": ">=7.0.0"
|
|
@@ -73,9 +66,6 @@
|
|
|
73
66
|
"@mui/x-date-pickers": {
|
|
74
67
|
"optional": false
|
|
75
68
|
},
|
|
76
|
-
"axios": {
|
|
77
|
-
"optional": false
|
|
78
|
-
},
|
|
79
69
|
"date-fns": {
|
|
80
70
|
"optional": false
|
|
81
71
|
},
|
|
@@ -90,10 +80,16 @@
|
|
|
90
80
|
}
|
|
91
81
|
},
|
|
92
82
|
"devDependencies": {
|
|
83
|
+
"@emotion/react": "^11.14.0",
|
|
84
|
+
"@emotion/styled": "^11.14.0",
|
|
93
85
|
"@eslint/js": "^9.36.0",
|
|
86
|
+
"@mui/icons-material": "^6.4.0",
|
|
87
|
+
"@mui/material": "^6.4.0",
|
|
88
|
+
"@mui/x-date-pickers": "^7.24.0",
|
|
94
89
|
"@types/node": "^24.6.0",
|
|
95
90
|
"@types/react": "^19.1.16",
|
|
96
91
|
"@types/react-dom": "^19.1.9",
|
|
92
|
+
"date-fns": "^4.1.0",
|
|
97
93
|
"eslint": "^9.36.0",
|
|
98
94
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
99
95
|
"eslint-plugin-react-refresh": "^0.4.22",
|
|
@@ -101,6 +97,7 @@
|
|
|
101
97
|
"prettier": "^3.0.0",
|
|
102
98
|
"react": "^19.2.0",
|
|
103
99
|
"react-dom": "^19.2.0",
|
|
100
|
+
"react-hook-form": "^7.54.2",
|
|
104
101
|
"tsup": "^8.0.0",
|
|
105
102
|
"typescript": "~5.9.3",
|
|
106
103
|
"typescript-eslint": "^8.45.0"
|