@cloudbase/lowcode-builder 1.6.0 → 1.6.2
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/lib/builder/mp/util.js
CHANGED
|
@@ -299,7 +299,7 @@ function createDataBinds(ctx, widgets) {
|
|
|
299
299
|
}
|
|
300
300
|
if (style) {
|
|
301
301
|
const styleExpression = _waDisplay
|
|
302
|
-
? `{...widgetProps.${id}.style, ...(\n${style === null || style === void 0 ? void 0 : style.expression}\n)
|
|
302
|
+
? `((display)=>{ const style = {...widgetProps.${id}.style, ...(\n${style === null || style === void 0 ? void 0 : style.expression}\n)}; if(!display) {style.display = "none"}; return style })((()=>{${_waDisplay === null || _waDisplay === void 0 ? void 0 : _waDisplay.imports}\n return (\n${_waDisplay === null || _waDisplay === void 0 ? void 0 : _waDisplay.expression}\n)})())`
|
|
303
303
|
: `{...widgetProps.${id}.style, ...(\n${style === null || style === void 0 ? void 0 : style.expression}\n)}`;
|
|
304
304
|
dataBinds[id].style = {
|
|
305
305
|
...style,
|
|
@@ -307,7 +307,7 @@ function createDataBinds(ctx, widgets) {
|
|
|
307
307
|
};
|
|
308
308
|
}
|
|
309
309
|
else if (_waDisplay) {
|
|
310
|
-
const styleExpression = `{...widgetProps.${id}.style
|
|
310
|
+
const styleExpression = `((display)=>{ const style = {...widgetProps.${id}.style}; if(!display) {style.display = "none"}; return style })((\n${_waDisplay === null || _waDisplay === void 0 ? void 0 : _waDisplay.expression}\n))`;
|
|
311
311
|
dataBinds[id].style = {
|
|
312
312
|
..._waDisplay,
|
|
313
313
|
expression: processCssUnit === 'rpx' ? `px2rpx(${styleExpression})` : styleExpression,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/lowcode-builder",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "云开发 Tencent CloudBase Framework Low Code Plugin,将低码配置生成完整项目并一键部署云开发资源。",
|
|
5
5
|
"author": "yhsunshining@gmail.com",
|
|
6
6
|
"homepage": "https://github.com/TencentCloudBase/cloudbase-framework#readme",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"url": "https://github.com/TencentCloudBase/cloudbase-framework/issues"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@cloudbase/cals": "^1.0.
|
|
42
|
-
"@cloudbase/lowcode-generator": "^1.6.
|
|
41
|
+
"@cloudbase/cals": "^1.0.2",
|
|
42
|
+
"@cloudbase/lowcode-generator": "^1.6.3",
|
|
43
43
|
"axios": "^0.21.0",
|
|
44
44
|
"browserfs": "^1.4.3",
|
|
45
45
|
"browserify-zlib": "^0.2.0",
|
|
@@ -521,7 +521,7 @@
|
|
|
521
521
|
crossorigin="anonymous"
|
|
522
522
|
src="<%=
|
|
523
523
|
cdnEndpoints.cdngo
|
|
524
|
-
%>/lcap/lcap-resource-cdngo/-/release/_npm/@cloudbase/weda-cloud-sdk@1.0.
|
|
524
|
+
%>/lcap/lcap-resource-cdngo/-/release/_npm/@cloudbase/weda-cloud-sdk@1.0.29/dist/h5.browser.js"
|
|
525
525
|
></script>
|
|
526
526
|
<script>
|
|
527
527
|
// zxing polifill
|
|
@@ -543,7 +543,7 @@
|
|
|
543
543
|
crossorigin
|
|
544
544
|
src="<%=
|
|
545
545
|
cdnEndpoints.cdngo
|
|
546
|
-
%>/lcap/lcap-resource-cdngo/-/0.1.4/_files/static/weda-render/main.
|
|
546
|
+
%>/lcap/lcap-resource-cdngo/-/0.1.4/_files/static/weda-render/main.2da087be313ecb72121b.bundle.js"
|
|
547
547
|
></script>
|
|
548
548
|
</body>
|
|
549
549
|
</html>
|
package/template/mp/package.json
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"@cloudbase/js-sdk": "2.5.6-beta.1",<%
|
|
7
7
|
} %>
|
|
8
8
|
"@cloudbase/oauth": "0.1.1-alpha.5",
|
|
9
|
-
"@cloudbase/weda-client": "1.0.
|
|
10
|
-
"@cloudbase/weda-cloud-sdk": "1.0.
|
|
9
|
+
"@cloudbase/weda-client": "1.0.1",
|
|
10
|
+
"@cloudbase/weda-cloud-sdk": "1.0.29",
|
|
11
11
|
"mobx": "^5.15.4",
|
|
12
12
|
"lodash.get": "^4.4.2",
|
|
13
13
|
"lodash.set": "^4.3.2",
|