react-state-monad 1.0.23 → 1.0.24
Sign up to get free protection for your applications and to get access to all the features.
- package/.github/workflows/publish.yml +72 -72
- package/LICENSE +673 -673
- package/README.md +274 -274
- package/package.json +1 -1
- package/src/hooks/types.ts +12 -12
- package/src/hooks/useElementState.ts +25 -25
- package/src/hooks/useEmptyState.ts +12 -12
- package/src/hooks/useFieldState.ts +53 -53
- package/src/hooks/useNullSafety.ts +23 -23
- package/src/hooks/useRemapArray.ts +50 -50
- package/src/hooks/useStateObject.ts +14 -14
- package/src/implementations/emptyState.ts +42 -42
- package/src/implementations/validState.ts +59 -59
- package/src/index.ts +10 -10
- package/src/stateObject.ts +70 -70
- package/tsconfig.json +15 -15
package/tsconfig.json
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
{
|
2
|
-
"compilerOptions": {
|
3
|
-
"module": "ESNext",
|
4
|
-
"target": "ESNext",
|
5
|
-
"declaration": true,
|
6
|
-
"declarationDir": "./",
|
7
|
-
"outDir": "dist",
|
8
|
-
"moduleResolution": "Node",
|
9
|
-
"esModuleInterop": true,
|
10
|
-
"strict": true
|
11
|
-
},
|
12
|
-
"include": [
|
13
|
-
"src/**/*",
|
14
|
-
"index.ts"
|
15
|
-
]
|
1
|
+
{
|
2
|
+
"compilerOptions": {
|
3
|
+
"module": "ESNext",
|
4
|
+
"target": "ESNext",
|
5
|
+
"declaration": true,
|
6
|
+
"declarationDir": "./",
|
7
|
+
"outDir": "dist",
|
8
|
+
"moduleResolution": "Node",
|
9
|
+
"esModuleInterop": true,
|
10
|
+
"strict": true
|
11
|
+
},
|
12
|
+
"include": [
|
13
|
+
"src/**/*",
|
14
|
+
"index.ts"
|
15
|
+
]
|
16
16
|
}
|