@valbuild/react 0.68.0 → 0.69.1
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/package.json +4 -4
- package/stega/dist/valbuild-react-stega.browser.esm.js +1 -1
- package/stega/dist/valbuild-react-stega.cjs.dev.js +1 -1
- package/stega/dist/valbuild-react-stega.cjs.prod.js +1 -1
- package/stega/dist/valbuild-react-stega.esm.js +1 -1
- package/stega/dist/valbuild-react-stega.worker.esm.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@valbuild/react",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.69.1",
|
4
4
|
"private": false,
|
5
5
|
"description": "Val - React internal helpers",
|
6
6
|
"sideEffects": false,
|
@@ -9,9 +9,9 @@
|
|
9
9
|
"test": "jest"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
|
-
"@valbuild/core": "~0.
|
13
|
-
"@valbuild/shared": "~0.
|
14
|
-
"@valbuild/ui": "~0.
|
12
|
+
"@valbuild/core": "~0.69.1",
|
13
|
+
"@valbuild/shared": "~0.69.1",
|
14
|
+
"@valbuild/ui": "~0.69.1",
|
15
15
|
"@vercel/stega": "^0.1.0",
|
16
16
|
"base64-arraybuffer": "^1.0.2"
|
17
17
|
},
|
@@ -268,7 +268,7 @@ function stegaEncode(input, opts) {
|
|
268
268
|
var selectorPath = Internal.getValPath(sourceOrSelector);
|
269
269
|
if (selectorPath) {
|
270
270
|
var newSchema = Internal.getSchema(sourceOrSelector);
|
271
|
-
return rec(opts.getModule && opts.getModule(selectorPath)
|
271
|
+
return rec(opts.getModule && opts.getModule(selectorPath) !== undefined ? opts.getModule(selectorPath) : Internal.getSource(sourceOrSelector), opts.disabled ? undefined : {
|
272
272
|
path: selectorPath,
|
273
273
|
schema: newSchema === null || newSchema === void 0 ? void 0 : newSchema.serialize()
|
274
274
|
});
|
@@ -278,7 +278,7 @@ function stegaEncode(input, opts) {
|
|
278
278
|
var selectorPath = core.Internal.getValPath(sourceOrSelector);
|
279
279
|
if (selectorPath) {
|
280
280
|
var newSchema = core.Internal.getSchema(sourceOrSelector);
|
281
|
-
return rec(opts.getModule && opts.getModule(selectorPath)
|
281
|
+
return rec(opts.getModule && opts.getModule(selectorPath) !== undefined ? opts.getModule(selectorPath) : core.Internal.getSource(sourceOrSelector), opts.disabled ? undefined : {
|
282
282
|
path: selectorPath,
|
283
283
|
schema: newSchema === null || newSchema === void 0 ? void 0 : newSchema.serialize()
|
284
284
|
});
|
@@ -278,7 +278,7 @@ function stegaEncode(input, opts) {
|
|
278
278
|
var selectorPath = core.Internal.getValPath(sourceOrSelector);
|
279
279
|
if (selectorPath) {
|
280
280
|
var newSchema = core.Internal.getSchema(sourceOrSelector);
|
281
|
-
return rec(opts.getModule && opts.getModule(selectorPath)
|
281
|
+
return rec(opts.getModule && opts.getModule(selectorPath) !== undefined ? opts.getModule(selectorPath) : core.Internal.getSource(sourceOrSelector), opts.disabled ? undefined : {
|
282
282
|
path: selectorPath,
|
283
283
|
schema: newSchema === null || newSchema === void 0 ? void 0 : newSchema.serialize()
|
284
284
|
});
|
@@ -268,7 +268,7 @@ function stegaEncode(input, opts) {
|
|
268
268
|
var selectorPath = Internal.getValPath(sourceOrSelector);
|
269
269
|
if (selectorPath) {
|
270
270
|
var newSchema = Internal.getSchema(sourceOrSelector);
|
271
|
-
return rec(opts.getModule && opts.getModule(selectorPath)
|
271
|
+
return rec(opts.getModule && opts.getModule(selectorPath) !== undefined ? opts.getModule(selectorPath) : Internal.getSource(sourceOrSelector), opts.disabled ? undefined : {
|
272
272
|
path: selectorPath,
|
273
273
|
schema: newSchema === null || newSchema === void 0 ? void 0 : newSchema.serialize()
|
274
274
|
});
|
@@ -268,7 +268,7 @@ function stegaEncode(input, opts) {
|
|
268
268
|
var selectorPath = Internal.getValPath(sourceOrSelector);
|
269
269
|
if (selectorPath) {
|
270
270
|
var newSchema = Internal.getSchema(sourceOrSelector);
|
271
|
-
return rec(opts.getModule && opts.getModule(selectorPath)
|
271
|
+
return rec(opts.getModule && opts.getModule(selectorPath) !== undefined ? opts.getModule(selectorPath) : Internal.getSource(sourceOrSelector), opts.disabled ? undefined : {
|
272
272
|
path: selectorPath,
|
273
273
|
schema: newSchema === null || newSchema === void 0 ? void 0 : newSchema.serialize()
|
274
274
|
});
|