@lowdefy/engine 4.0.0-rc.8 → 4.0.0-rc.9
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/dist/Blocks.js +1 -1
- package/package.json +8 -8
package/dist/Blocks.js
CHANGED
|
@@ -190,7 +190,7 @@ let Blocks = class Blocks {
|
|
|
190
190
|
if (type.isUndefined(blockValue)) {
|
|
191
191
|
// default null value for block type
|
|
192
192
|
blockValue = type.isUndefined(block.meta.initValue) ? type.enforceType(block.meta.valueType, null) : block.meta.initValue;
|
|
193
|
-
this.context._internal.State.set(block.blockId,
|
|
193
|
+
this.context._internal.State.set(block.blockId, blockValue);
|
|
194
194
|
}
|
|
195
195
|
if (block.meta.category === 'list') {
|
|
196
196
|
// load list value into list blocks
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/engine",
|
|
3
|
-
"version": "4.0.0-rc.
|
|
3
|
+
"version": "4.0.0-rc.9",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@lowdefy/helpers": "4.0.0-rc.
|
|
40
|
-
"@lowdefy/operators": "4.0.0-rc.
|
|
39
|
+
"@lowdefy/helpers": "4.0.0-rc.9",
|
|
40
|
+
"@lowdefy/operators": "4.0.0-rc.9"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@jest/globals": "28.1.0",
|
|
44
|
-
"@lowdefy/actions-core": "4.0.0-rc.
|
|
45
|
-
"@lowdefy/build": "4.0.0-rc.
|
|
46
|
-
"@lowdefy/operators-js": "4.0.0-rc.
|
|
47
|
-
"@lowdefy/operators-mql": "4.0.0-rc.
|
|
44
|
+
"@lowdefy/actions-core": "4.0.0-rc.9",
|
|
45
|
+
"@lowdefy/build": "4.0.0-rc.9",
|
|
46
|
+
"@lowdefy/operators-js": "4.0.0-rc.9",
|
|
47
|
+
"@lowdefy/operators-mql": "4.0.0-rc.9",
|
|
48
48
|
"@swc/cli": "0.1.59",
|
|
49
49
|
"@swc/core": "1.3.24",
|
|
50
50
|
"@swc/jest": "0.2.24",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "d20e6ac424643feca527a732dc2b0710713c8243"
|
|
57
57
|
}
|