@vc-shell/framework 1.1.39 → 1.1.40
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/CHANGELOG.md +9 -0
- package/dist/framework.js +1 -1
- package/dist/{index-aVtGNj6A.js → index-B2RWMePi.js} +1 -1
- package/dist/{index-D6UGtozM.js → index-BAOBYTxv.js} +1 -1
- package/dist/{index-C1SnCxF_.js → index-BVZ7ITWk.js} +1 -1
- package/dist/{index-DawL8TtG.js → index-C-NGshsT.js} +1 -1
- package/dist/{index-kCPa67RI.js → index-CNmagx1Y.js} +1 -1
- package/dist/{index-Cal7ggzV.js → index-CgwF5LKi.js} +1 -1
- package/dist/{index-DfRPeXpk.js → index-CgzhIDHU.js} +1 -1
- package/dist/{index-CG1o0S3d.js → index-D58L3xkh.js} +1 -1
- package/dist/{index-Ct4swSYd.js → index-DEubScbm.js} +1 -1
- package/dist/{index-5ZS3JrDU.js → index-DHtGcfen.js} +19 -19
- package/dist/{index-Dh0KD5hP.js → index-DL9X15TB.js} +1 -1
- package/dist/{index-B9cIr1zZ.js → index-DjvWRavy.js} +1 -1
- package/dist/{index-Duy_QA-o.js → index-NypPe4C-.js} +1 -1
- package/dist/{index-Cy1TZEcM.js → index-dHHKh9VT.js} +1 -1
- package/dist/{index-nCEw48yM.js → index-jjVbrwZ7.js} +1 -1
- package/dist/{index-CBD6Yh8s.js → index-nrkGQAk1.js} +1 -1
- package/dist/{index-DV2VMX_-.js → index-v8WySS31.js} +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts.map +1 -1
- package/package.json +4 -4
- package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue +2 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vc-widget-container.vue.d.ts","sourceRoot":"","sources":["../../../../../../../ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vc-widget-container.vue.d.ts","sourceRoot":"","sources":["../../../../../../../ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue"],"names":[],"mappings":"AA0IA,UAAU,KAAK;IACb,OAAO,EAAE,MAAM,CAAC;CACjB;;AAwFD,wBAMG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/framework",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.40",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/framework.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -70,9 +70,9 @@
|
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@fullhuman/postcss-purgecss": "^7.0.2",
|
|
72
72
|
"@types/dompurify": "^3.0.5",
|
|
73
|
-
"@vc-shell/api-client-generator": "^1.1.
|
|
74
|
-
"@vc-shell/config-generator": "^1.1.
|
|
75
|
-
"@vc-shell/ts-config": "^1.1.
|
|
73
|
+
"@vc-shell/api-client-generator": "^1.1.40",
|
|
74
|
+
"@vc-shell/config-generator": "^1.1.40",
|
|
75
|
+
"@vc-shell/ts-config": "^1.1.40",
|
|
76
76
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
77
77
|
"@vue/test-utils": "^2.4.5",
|
|
78
78
|
"cypress-signalr-mock": "^1.5.0",
|
package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue
CHANGED
|
@@ -36,6 +36,8 @@ const visibleWidgets = computed(() =>
|
|
|
36
36
|
return widget.isVisible(bladeInstance);
|
|
37
37
|
} else if (typeof widget.isVisible === "boolean") {
|
|
38
38
|
return widget.isVisible;
|
|
39
|
+
} else if (widget.isVisible === undefined) {
|
|
40
|
+
return true; // Show widget by default if isVisible is not specified
|
|
39
41
|
}
|
|
40
42
|
return toValue(widget.isVisible);
|
|
41
43
|
}),
|