@effect-app/vue-components 4.0.0-beta.159 → 4.0.0-beta.160
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.
|
@@ -20,7 +20,7 @@ import { makeRunPromise as C } from "@effect-app/vue/runtime";
|
|
|
20
20
|
//#region src/components/OmegaForm/useOmegaForm.ts
|
|
21
21
|
var w = Symbol("OmegaForm"), T = C(y.empty()), E = (y, C, w) => {
|
|
22
22
|
if (!y) throw Error("Schema is required");
|
|
23
|
-
let { trans: E } = e(), D = r(y), O = o(a(D, E), E), k = b.
|
|
23
|
+
let { trans: E } = e(), D = r(y), O = o(a(D, E), E), k = b.decodeUnknownEffectConcurrently(D), { meta: A, unionMeta: j } = t(D), M = { form: void 0 }, N = i({
|
|
24
24
|
meta: A,
|
|
25
25
|
persistency: w?.persistency,
|
|
26
26
|
preventWindowExit: w?.preventWindowExit,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/vue-components",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.160",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@mdi/js": "^7.4.47",
|
|
6
6
|
"effect": "^4.0.0-beta.59",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"vue-toastification": "^2.0.0-rc.5",
|
|
34
34
|
"vue-tsc": "^3.2.7",
|
|
35
35
|
"vuetify": "^4.0.6",
|
|
36
|
-
"@effect-app/eslint-shared-config": "0.6.0-beta.
|
|
36
|
+
"@effect-app/eslint-shared-config": "0.6.0-beta.18"
|
|
37
37
|
},
|
|
38
38
|
"files": [
|
|
39
39
|
"src",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"highlight.js": "^11.11.1",
|
|
58
58
|
"mitt": "^3.0.1",
|
|
59
59
|
"vue3-highlightjs": "^1.0.5",
|
|
60
|
-
"@effect-app/vue": "4.0.0-beta.
|
|
61
|
-
"effect-app": "4.0.0-beta.
|
|
60
|
+
"@effect-app/vue": "4.0.0-beta.160",
|
|
61
|
+
"effect-app": "4.0.0-beta.160"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"check": "vue-tsc",
|
|
@@ -54,7 +54,7 @@ export const useOmegaForm = <
|
|
|
54
54
|
localizedSchema as any,
|
|
55
55
|
trans
|
|
56
56
|
)
|
|
57
|
-
const decode = S.
|
|
57
|
+
const decode = S.decodeUnknownEffectConcurrently(formCompatibleSchema)
|
|
58
58
|
|
|
59
59
|
const { meta, unionMeta } = generateMetaFromSchema(formCompatibleSchema)
|
|
60
60
|
|