ts-glitter 13.4.6 → 13.4.7
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/lowcode/Entry.js +1 -1
- package/lowcode/Entry.ts +1 -1
- package/lowcode/glitterBundle/plugins/editor-elem.js +726 -592
- package/lowcode/glitterBundle/plugins/editor-elem.ts +1533 -1277
- package/lowcode/official_view_component/official/component.js +5 -0
- package/lowcode/official_view_component/official/component.ts +5 -0
- package/package.json +1 -1
|
@@ -1048,6 +1048,11 @@ font-weight: 700;" onclick="${gvc.event(() => {
|
|
|
1048
1048
|
const array_string = [html `
|
|
1049
1049
|
<div class="hoverF2 d-flex align-items-center p-3 guide-user-editor-8"
|
|
1050
1050
|
onclick="${gvc.event(() => {
|
|
1051
|
+
if (vm_c.toggle) {
|
|
1052
|
+
vm_c.toggle = false;
|
|
1053
|
+
gvc.notifyDataChange(vm_c.id);
|
|
1054
|
+
return;
|
|
1055
|
+
}
|
|
1051
1056
|
setting_option.map((dd) => {
|
|
1052
1057
|
if (dd.vm_c.toggle) {
|
|
1053
1058
|
dd.vm_c.toggle = false;
|
|
@@ -1076,6 +1076,11 @@ font-weight: 700;" onclick="${gvc.event(() => {
|
|
|
1076
1076
|
const array_string = [html`
|
|
1077
1077
|
<div class="hoverF2 d-flex align-items-center p-3 guide-user-editor-8"
|
|
1078
1078
|
onclick="${gvc.event(() => {
|
|
1079
|
+
if( vm_c.toggle){
|
|
1080
|
+
vm_c.toggle=false
|
|
1081
|
+
gvc.notifyDataChange(vm_c.id)
|
|
1082
|
+
return
|
|
1083
|
+
}
|
|
1079
1084
|
(setting_option as any).map((dd: any) => {
|
|
1080
1085
|
if (dd.vm_c.toggle) {
|
|
1081
1086
|
dd.vm_c.toggle = false
|