@strictly/react-form 0.0.19 → 0.0.21
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/.turbo/turbo-build.log
CHANGED
|
@@ -8,11 +8,11 @@ $ tsup
|
|
|
8
8
|
[34mCJS[39m Build start
|
|
9
9
|
[34mESM[39m Build start
|
|
10
10
|
[32mCJS[39m [1mdist/index.cjs [22m[32m60.71 KB[39m
|
|
11
|
-
[32mCJS[39m ⚡️ Build success in
|
|
11
|
+
[32mCJS[39m ⚡️ Build success in 127ms
|
|
12
12
|
[32mESM[39m [1mdist/index.js [22m[32m56.70 KB[39m
|
|
13
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 127ms
|
|
14
14
|
[34mDTS[39m Build start
|
|
15
|
-
[32mDTS[39m ⚡️ Build success in
|
|
15
|
+
[32mDTS[39m ⚡️ Build success in 9799ms
|
|
16
16
|
[32mDTS[39m [1mdist/index.d.cts [22m[32m38.50 KB[39m
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m38.50 KB[39m
|
|
18
|
-
Done in 10.
|
|
18
|
+
Done in 10.96s.
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
yarn run v1.22.22
|
|
2
|
-
$ tsc
|
|
3
|
-
Done in
|
|
2
|
+
$ tsc -b
|
|
3
|
+
Done in 0.37s.
|
package/package.json
CHANGED
|
@@ -1,15 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "Chris <chris.glover@gmail.com> (@madmaw)",
|
|
3
|
-
"dependencies": {
|
|
4
|
-
"@mantine/core": "^7.13.4",
|
|
5
|
-
"@mantine/hooks": "^7.13.4",
|
|
6
|
-
"@strictly/base": "*",
|
|
7
|
-
"@strictly/define": "*",
|
|
8
|
-
"mobx": "^6.13.5",
|
|
9
|
-
"mobx-react": "^9.1.1",
|
|
10
|
-
"react": "^19.0.0 || ^18.3.1",
|
|
11
|
-
"react-dom": "^19.0.0 || ^18.3.1"
|
|
12
|
-
},
|
|
13
3
|
"description": "Types and utilities for creating React forms",
|
|
14
4
|
"devDependencies": {
|
|
15
5
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
@@ -34,7 +24,6 @@
|
|
|
34
24
|
"jsdom": "^25.0.1",
|
|
35
25
|
"resize-observer-polyfill": "^1.5.1",
|
|
36
26
|
"storybook": "^8.4.5",
|
|
37
|
-
"type-fest": "^4.26.1",
|
|
38
27
|
"vite": "^6.0.5",
|
|
39
28
|
"vitest-matchmedia-mock": "^1.0.6"
|
|
40
29
|
},
|
|
@@ -46,6 +35,17 @@
|
|
|
46
35
|
],
|
|
47
36
|
"license": "MIT",
|
|
48
37
|
"name": "@strictly/react-form",
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"@mantine/core": "^7.13.4",
|
|
40
|
+
"@mantine/hooks": "^7.13.4",
|
|
41
|
+
"@strictly/base": "*",
|
|
42
|
+
"@strictly/define": "*",
|
|
43
|
+
"mobx": "^6.13.5",
|
|
44
|
+
"mobx-react": "^9.1.1",
|
|
45
|
+
"react": "^19.0.0 || ^18.3.1",
|
|
46
|
+
"react-dom": "^19.0.0 || ^18.3.1",
|
|
47
|
+
"type-fest": "^4.27.0"
|
|
48
|
+
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsup",
|
|
59
|
-
"check-types": "tsc",
|
|
59
|
+
"check-types": "tsc -b",
|
|
60
60
|
"clean": "del-cli dist .out .turbo",
|
|
61
61
|
"lint": "cross-env ESLINT_USE_FLAT_CONFIG=false eslint . --max-warnings=0",
|
|
62
62
|
"lint:fix": "cross-env ESLINT_USE_FLAT_CONFIG=false eslint . --fix",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"test:watch": "vitest"
|
|
71
71
|
},
|
|
72
72
|
"type": "module",
|
|
73
|
-
"version": "0.0.
|
|
73
|
+
"version": "0.0.21",
|
|
74
74
|
"exports": {
|
|
75
75
|
".": {
|
|
76
76
|
"import": {
|