@strictly/react-form 0.0.19 → 0.0.20
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
|
@@ -7,12 +7,12 @@ $ tsup
|
|
|
7
7
|
[34mCLI[39m Target: es6
|
|
8
8
|
[34mCJS[39m Build start
|
|
9
9
|
[34mESM[39m Build start
|
|
10
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m60.71 KB[39m
|
|
11
|
-
[32mCJS[39m ⚡️ Build success in 113ms
|
|
12
10
|
[32mESM[39m [1mdist/index.js [22m[32m56.70 KB[39m
|
|
13
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mESM[39m ⚡️ Build success in 136ms
|
|
12
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m60.71 KB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 139ms
|
|
14
14
|
[34mDTS[39m Build start
|
|
15
|
-
[32mDTS[39m ⚡️ Build success in
|
|
15
|
+
[32mDTS[39m ⚡️ Build success in 9863ms
|
|
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
|
|
18
|
+
Done in 11.05s.
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
yarn run v1.22.22
|
|
2
|
-
$ tsc
|
|
3
|
-
Done in
|
|
2
|
+
$ tsc -b
|
|
3
|
+
Done in 0.34s.
|
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",
|
|
@@ -46,6 +36,16 @@
|
|
|
46
36
|
],
|
|
47
37
|
"license": "MIT",
|
|
48
38
|
"name": "@strictly/react-form",
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"@mantine/core": "^7.13.4",
|
|
41
|
+
"@mantine/hooks": "^7.13.4",
|
|
42
|
+
"@strictly/base": "*",
|
|
43
|
+
"@strictly/define": "*",
|
|
44
|
+
"mobx": "^6.13.5",
|
|
45
|
+
"mobx-react": "^9.1.1",
|
|
46
|
+
"react": "^19.0.0 || ^18.3.1",
|
|
47
|
+
"react-dom": "^19.0.0 || ^18.3.1"
|
|
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.20",
|
|
74
74
|
"exports": {
|
|
75
75
|
".": {
|
|
76
76
|
"import": {
|