@formisch/solid 0.7.2 → 0.7.4
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 +2 -1
- package/dist/dev.js +1 -1
- package/dist/dev.jsx +1 -1
- package/dist/index.js +1 -1
- package/dist/index.jsx +1 -1
- package/package.json +4 -4
- /package/dist/{index.d.mts → index.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Formisch is a schema-based, headless form library for SolidJS. It manages form state and validation. It is type-safe, fast by default and its bundle size is small due to its modular design. Try it out in our [playground](https://stackblitz.com/edit/formisch-playground-solid)!
|
|
4
4
|
|
|
5
|
-
Formisch is also available for [Preact][formisch-preact], [Qwik][formisch-qwik], [Svelte][formisch-svelte] and [Vue][formisch-vue].
|
|
5
|
+
Formisch is also available for [Preact][formisch-preact], [Qwik][formisch-qwik], [React][formisch-react], [Svelte][formisch-svelte] and [Vue][formisch-vue].
|
|
6
6
|
|
|
7
7
|
## Highlights
|
|
8
8
|
|
|
@@ -77,5 +77,6 @@ This project is available free of charge and licensed under the [MIT license](ht
|
|
|
77
77
|
|
|
78
78
|
[formisch-preact]: https://github.com/open-circle/formisch/tree/main/frameworks/preact
|
|
79
79
|
[formisch-qwik]: https://github.com/open-circle/formisch/tree/main/frameworks/qwik
|
|
80
|
+
[formisch-react]: https://github.com/open-circle/formisch/tree/main/frameworks/react
|
|
80
81
|
[formisch-svelte]: https://github.com/open-circle/formisch/tree/main/frameworks/svelte
|
|
81
82
|
[formisch-vue]: https://github.com/open-circle/formisch/tree/main/frameworks/vue
|
package/dist/dev.js
CHANGED
|
@@ -295,8 +295,8 @@ function setFieldInput(internalFormStore, path, input) {
|
|
|
295
295
|
for (let index = 0; index < path.length; index++) {
|
|
296
296
|
internalFieldStore = internalFieldStore.children[path[index]];
|
|
297
297
|
if (index < path.length - 1) internalFieldStore.input.value = true;
|
|
298
|
-
else setNestedInput(internalFieldStore, input);
|
|
299
298
|
}
|
|
299
|
+
setNestedInput(internalFieldStore, input);
|
|
300
300
|
});
|
|
301
301
|
});
|
|
302
302
|
}
|
package/dist/dev.jsx
CHANGED
|
@@ -293,8 +293,8 @@ function setFieldInput(internalFormStore, path, input) {
|
|
|
293
293
|
for (let index = 0; index < path.length; index++) {
|
|
294
294
|
internalFieldStore = internalFieldStore.children[path[index]];
|
|
295
295
|
if (index < path.length - 1) internalFieldStore.input.value = true;
|
|
296
|
-
else setNestedInput(internalFieldStore, input);
|
|
297
296
|
}
|
|
297
|
+
setNestedInput(internalFieldStore, input);
|
|
298
298
|
});
|
|
299
299
|
});
|
|
300
300
|
}
|
package/dist/index.js
CHANGED
|
@@ -295,8 +295,8 @@ function setFieldInput(internalFormStore, path, input) {
|
|
|
295
295
|
for (let index = 0; index < path.length; index++) {
|
|
296
296
|
internalFieldStore = internalFieldStore.children[path[index]];
|
|
297
297
|
if (index < path.length - 1) internalFieldStore.input.value = true;
|
|
298
|
-
else setNestedInput(internalFieldStore, input);
|
|
299
298
|
}
|
|
299
|
+
setNestedInput(internalFieldStore, input);
|
|
300
300
|
});
|
|
301
301
|
});
|
|
302
302
|
}
|
package/dist/index.jsx
CHANGED
|
@@ -293,8 +293,8 @@ function setFieldInput(internalFormStore, path, input) {
|
|
|
293
293
|
for (let index = 0; index < path.length; index++) {
|
|
294
294
|
internalFieldStore = internalFieldStore.children[path[index]];
|
|
295
295
|
if (index < path.length - 1) internalFieldStore.input.value = true;
|
|
296
|
-
else setNestedInput(internalFieldStore, input);
|
|
297
296
|
}
|
|
297
|
+
setNestedInput(internalFieldStore, input);
|
|
298
298
|
});
|
|
299
299
|
});
|
|
300
300
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formisch/solid",
|
|
3
3
|
"description": "The modular and type-safe form library for SolidJS",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.4",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Fabian Hiller",
|
|
7
7
|
"homepage": "https://formisch.dev",
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"tsup-preset-solid": "^2.2.0",
|
|
61
61
|
"typescript": "^5.8.3",
|
|
62
62
|
"typescript-eslint": "^8.36.0",
|
|
63
|
-
"valibot": "^1.
|
|
63
|
+
"valibot": "^1.2.0",
|
|
64
64
|
"vitest": "3.2.4",
|
|
65
|
-
"@formisch/
|
|
66
|
-
"@formisch/
|
|
65
|
+
"@formisch/methods": "0.5.2",
|
|
66
|
+
"@formisch/core": "0.4.4"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"solid-js": "^1.6.0",
|
|
File without changes
|