@jnrs/lingshu-smart 2.2.6 → 2.2.8
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/App.vue.d.ts +2 -1
- package/dist/App.vue.js +30 -0
- package/dist/assets/data/editor_default.d.ts +8 -1
- package/dist/assets/data/editor_default.js +59 -0
- package/dist/assets/data/editor_default_setting.d.ts +16 -0
- package/dist/assets/data/editor_default_setting.js +58 -0
- package/dist/assets/data/editor_preset.d.ts +8 -1
- package/dist/assets/data/editor_preset.js +51 -0
- package/dist/assets/data/editor_preset_menu.d.ts +9 -0
- package/dist/assets/data/editor_preset_menu.js +290 -0
- package/dist/components/editor/ControlBar/CaseManger.vue.d.ts +3 -15
- package/dist/components/editor/ControlBar/CaseManger.vue.js +465 -0
- package/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +2 -411
- package/dist/components/editor/ControlBar/CaseTitleEdit.vue.js +108 -0
- package/dist/components/editor/ControlBar/ExportImportDialog.vue.d.ts +3 -2
- package/dist/components/editor/ControlBar/ExportImportDialog.vue.js +280 -0
- package/dist/components/editor/ControlBar/MainButton.vue.d.ts +3 -2
- package/dist/components/editor/ControlBar/MainButton.vue.js +183 -0
- package/dist/components/editor/ControlBar/StepButton.vue.d.ts +2 -1
- package/dist/components/editor/ControlBar/StepButton.vue.js +147 -0
- package/dist/components/editor/ControlBar/StepRecordVisualizer.vue.d.ts +2 -1
- package/dist/components/editor/ControlBar/StepRecordVisualizer.vue.js +98 -0
- package/dist/components/editor/DrawingBoard.vue.d.ts +2 -1
- package/dist/components/editor/DrawingBoard.vue.js +31 -0
- package/dist/components/editor/MenuCard/Equipments.vue.d.ts +2 -1
- package/dist/components/editor/MenuCard/Equipments.vue.js +129 -0
- package/dist/components/editor/MenuCard/Layers.vue.d.ts +2 -1
- package/dist/components/editor/MenuCard/Layers.vue.js +201 -0
- package/dist/components/editor/MenuCard/index.vue.d.ts +2 -1
- package/dist/components/editor/MenuCard/index.vue.js +84 -0
- package/dist/components/editor/OptionCard/Equipment/Base.vue.d.ts +2 -1
- package/dist/components/editor/OptionCard/Equipment/Base.vue.js +96 -0
- package/dist/components/editor/OptionCard/Equipment/Binds.vue.d.ts +3 -0
- package/dist/components/editor/OptionCard/Equipment/Binds.vue.js +443 -0
- package/dist/components/editor/OptionCard/Equipment/Bot.vue.d.ts +3 -0
- package/dist/components/editor/OptionCard/Equipment/Bot.vue.js +81 -0
- package/dist/components/editor/OptionCard/Equipment/DataSets.vue.d.ts +2 -1
- package/dist/components/editor/OptionCard/Equipment/DataSets.vue.js +304 -0
- package/dist/components/editor/OptionCard/Equipment/DockStore.vue.d.ts +3 -0
- package/dist/components/editor/OptionCard/Equipment/DockStore.vue.js +597 -0
- package/dist/components/editor/OptionCard/Equipment/Interaction.vue.d.ts +2 -1
- package/dist/components/editor/OptionCard/Equipment/Interaction.vue.js +287 -0
- package/dist/components/editor/OptionCard/Equipment/Position.backup.vue.d.ts +3 -0
- package/dist/components/editor/OptionCard/Equipment/Position.backup.vue.js +440 -0
- package/dist/components/editor/OptionCard/Equipment/Position.vue.d.ts +2 -1
- package/dist/components/editor/OptionCard/Equipment/Position.vue.js +436 -0
- package/dist/components/editor/OptionCard/Equipment/StationSlotGroup.vue.d.ts +2 -1
- package/dist/components/editor/OptionCard/Equipment/StationSlotGroup.vue.js +1131 -0
- package/dist/components/editor/OptionCard/Equipment/Store.vue.d.ts +3 -0
- package/dist/components/editor/OptionCard/Equipment/Store.vue.js +453 -0
- package/dist/components/editor/OptionCard/Equipment/Trailer.vue.d.ts +3 -0
- package/dist/components/editor/OptionCard/Equipment/Trailer.vue.js +1109 -0
- package/dist/components/editor/OptionCard/Equipment/index.vue.d.ts +2 -1
- package/dist/components/editor/OptionCard/Equipment/index.vue.js +100 -0
- package/dist/components/editor/OptionCard/Equipment/models/MachineTool.vue.d.ts +3 -0
- package/dist/components/editor/OptionCard/Equipment/models/MachineTool.vue.js +99 -0
- package/dist/components/editor/OptionCard/Equipment/models/Rail.vue.d.ts +3 -0
- package/dist/components/editor/OptionCard/Equipment/models/Rail.vue.js +225 -0
- package/dist/components/editor/OptionCard/Equipment/models/SingleGripperRobot.vue.d.ts +3 -0
- package/dist/components/editor/OptionCard/Equipment/models/SingleGripperRobot.vue.js +99 -0
- package/dist/components/editor/OptionCard/Scene/Background.vue.d.ts +2 -1
- package/dist/components/editor/OptionCard/Scene/Background.vue.js +543 -0
- package/dist/components/editor/OptionCard/Scene/index.vue.d.ts +2 -1
- package/dist/components/editor/OptionCard/Scene/index.vue.js +200 -0
- package/dist/components/editor/OptionCard/index.vue.d.ts +2 -1
- package/dist/components/editor/OptionCard/index.vue.js +73 -0
- package/dist/components/editor/index.vue.d.ts +4 -13
- package/dist/components/editor/index.vue.js +156 -0
- package/dist/components/index.d.ts +2 -2
- package/dist/components/index.js +4 -25440
- package/dist/components/preview/index.vue.d.ts +6 -5
- package/dist/components/preview/index.vue.js +104 -0
- package/dist/composables/useStepRecord.d.ts +12 -4
- package/dist/composables/useStepRecord.js +135 -0
- package/dist/constants/options.d.ts +8 -1
- package/dist/constants/options.js +55 -0
- package/dist/controller/AppController.d.ts +10 -3
- package/dist/controller/AppController.js +168 -0
- package/dist/controller/EditorController.d.ts +9 -2
- package/dist/controller/EditorController.js +173 -0
- package/dist/index.js +1 -1
- package/dist/locales/en.js +5 -0
- package/dist/locales/i18next.d.ts +1 -1
- package/dist/locales/i18next.js +6 -0
- package/dist/locales/index.d.ts +2 -2
- package/dist/locales/index.js +3 -13
- package/dist/locales/zhCn.js +5 -0
- package/dist/main.d.ts +3 -0
- package/dist/main.js +13 -0
- package/dist/playground/EditPageDemo.vue.d.ts +2 -1
- package/dist/playground/EditPageDemo.vue.js +57 -0
- package/dist/playground/ViewPageDemo.vue.d.ts +2 -27
- package/dist/playground/ViewPageDemo.vue.js +277 -0
- package/dist/stores/index.js +3 -0
- package/dist/stores/useAppStore.d.ts +13 -6
- package/dist/stores/useAppStore.js +78 -0
- package/dist/stores/useDataStore.d.ts +18 -11
- package/dist/stores/useDataStore.js +116 -0
- package/dist/stores/useEditorStore.d.ts +27 -20
- package/dist/stores/useEditorStore.js +263 -0
- package/dist/types/app.types.d.ts +1 -1
- package/dist/types/app.types.js +2 -0
- package/dist/types/base.types.d.ts +4 -2
- package/dist/types/base.types.js +1 -0
- package/dist/types/components/config.types.d.ts +11 -3
- package/dist/types/components/config.types.js +1 -0
- package/dist/types/components/operating.types.d.ts +1 -1
- package/dist/types/components/operating.types.js +1 -0
- package/dist/types/enums.d.ts +5 -2
- package/dist/types/enums.js +46 -0
- package/dist/types/guards.d.ts +12 -2
- package/dist/types/guards.js +28 -0
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +8 -0
- package/dist/types/models/config.types.d.ts +74 -29
- package/dist/types/models/config.types.js +1 -0
- package/dist/types/models/operating.types.d.ts +83 -17
- package/dist/types/models/operating.types.js +1 -0
- package/dist/ui/abstract/ComponentAbs.d.ts +9 -2
- package/dist/ui/abstract/ComponentAbs.js +64 -0
- package/dist/ui/abstract/ModelAbs.d.ts +12 -2
- package/dist/ui/abstract/ModelAbs.js +119 -0
- package/dist/ui/components/Entrance.d.ts +8 -1
- package/dist/ui/components/Entrance.js +83 -0
- package/dist/ui/components/Light.d.ts +26 -3
- package/dist/ui/components/Light.js +167 -0
- package/dist/ui/components/Progress.d.ts +8 -1
- package/dist/ui/components/Progress.js +84 -0
- package/dist/ui/components/Resource.d.ts +8 -1
- package/dist/ui/components/Resource.js +70 -0
- package/dist/ui/components/StationSlot.d.ts +24 -2
- package/dist/ui/components/StationSlot.js +207 -0
- package/dist/ui/components/StationSlotGroup.d.ts +8 -1
- package/dist/ui/components/StationSlotGroup.js +110 -0
- package/dist/ui/factories/createGlass.d.ts +9 -1
- package/dist/ui/factories/createGlass.js +51 -0
- package/dist/ui/factories/createModel.d.ts +9 -2
- package/dist/ui/factories/createModel.js +35 -0
- package/dist/ui/factories/createShadow.d.ts +12 -4
- package/dist/ui/factories/createShadow.js +52 -0
- package/dist/ui/factories/createText.d.ts +7 -0
- package/dist/ui/factories/createText.js +46 -0
- package/dist/ui/models/CleaningMachine.d.ts +14 -0
- package/dist/ui/models/CleaningMachine.js +141 -0
- package/dist/ui/models/DoubleJointRobot.d.ts +23 -0
- package/dist/ui/models/DoubleJointRobot.js +545 -0
- package/dist/ui/models/LoadingStation.d.ts +16 -0
- package/dist/ui/models/LoadingStation.js +167 -0
- package/dist/ui/models/MachineTool.d.ts +5 -4
- package/dist/ui/models/MachineTool.js +184 -0
- package/dist/ui/models/MarkingMachine.d.ts +16 -0
- package/dist/ui/models/MarkingMachine.js +148 -0
- package/dist/ui/models/Rail.d.ts +15 -0
- package/dist/ui/models/Rail.js +117 -0
- package/dist/ui/models/ResourceStore.d.ts +12 -0
- package/dist/ui/models/ResourceStore.js +101 -0
- package/dist/ui/models/SingleBot.d.ts +20 -0
- package/dist/ui/models/SingleBot.js +202 -0
- package/dist/ui/models/SingleGripperRobot.d.ts +19 -0
- package/dist/ui/models/SingleGripperRobot.js +272 -0
- package/dist/ui/models/SingleJointRobot.d.ts +22 -0
- package/dist/ui/models/SingleJointRobot.js +346 -0
- package/dist/ui/shapes/NamePlate.d.ts +10 -1
- package/dist/ui/shapes/NamePlate.js +85 -0
- package/dist/ui/shapes/ScrewHole.d.ts +8 -1
- package/dist/ui/shapes/ScrewHole.js +57 -0
- package/dist/ui/shapes/Texture.d.ts +12 -3
- package/dist/ui/shapes/Texture.js +51 -0
- package/dist/ui/utils/attr.d.ts +10 -3
- package/dist/ui/utils/attr.js +50 -0
- package/dist/utils/index.js +92 -0
- package/dist/utils/type-guards.d.ts +1 -1
- package/dist/utils/type-guards.js +105 -0
- package/package.json +2 -2
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
import { computed } from 'vue';
|
|
2
|
+
import { storeToRefs } from 'pinia';
|
|
3
|
+
import { ElSwitch } from 'element-plus';
|
|
4
|
+
import { useEditorStore } from '@/stores';
|
|
5
|
+
const editorStore = useEditorStore();
|
|
6
|
+
const { currentLayer } = storeToRefs(editorStore);
|
|
7
|
+
// 可见
|
|
8
|
+
const visibleTrue = computed(() => {
|
|
9
|
+
return currentLayer.value?.visible === true;
|
|
10
|
+
});
|
|
11
|
+
// 可交互
|
|
12
|
+
const hittableTrue = computed(() => {
|
|
13
|
+
return currentLayer.value?.hittable === true;
|
|
14
|
+
});
|
|
15
|
+
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
16
|
+
const __VLS_ctx = {
|
|
17
|
+
...{},
|
|
18
|
+
...{},
|
|
19
|
+
};
|
|
20
|
+
let __VLS_components;
|
|
21
|
+
let __VLS_directives;
|
|
22
|
+
if (__VLS_ctx.currentLayer) {
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
[currentLayer,];
|
|
25
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
26
|
+
...{ class: "form_group" },
|
|
27
|
+
});
|
|
28
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
29
|
+
...{ class: "form_group_title" },
|
|
30
|
+
});
|
|
31
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
32
|
+
...{ class: "keyVal" },
|
|
33
|
+
});
|
|
34
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
35
|
+
...{ class: "key" },
|
|
36
|
+
});
|
|
37
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
38
|
+
...{ class: "val" },
|
|
39
|
+
});
|
|
40
|
+
const __VLS_0 = {}.ElSwitch;
|
|
41
|
+
/** @type {[typeof __VLS_components.ElSwitch, typeof __VLS_components.elSwitch, ]} */ ;
|
|
42
|
+
// @ts-ignore
|
|
43
|
+
ElSwitch;
|
|
44
|
+
// @ts-ignore
|
|
45
|
+
const __VLS_1 = __VLS_asFunctionalComponent(__VLS_0, new __VLS_0({
|
|
46
|
+
modelValue: (__VLS_ctx.currentLayer.visible),
|
|
47
|
+
inlinePrompt: true,
|
|
48
|
+
activeText: "是",
|
|
49
|
+
inactiveText: "否",
|
|
50
|
+
activeValue: (true),
|
|
51
|
+
inactiveValue: (false),
|
|
52
|
+
width: "50",
|
|
53
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
54
|
+
}));
|
|
55
|
+
const __VLS_2 = __VLS_1({
|
|
56
|
+
modelValue: (__VLS_ctx.currentLayer.visible),
|
|
57
|
+
inlinePrompt: true,
|
|
58
|
+
activeText: "是",
|
|
59
|
+
inactiveText: "否",
|
|
60
|
+
activeValue: (true),
|
|
61
|
+
inactiveValue: (false),
|
|
62
|
+
width: "50",
|
|
63
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
64
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_1));
|
|
65
|
+
// @ts-ignore
|
|
66
|
+
[currentLayer,];
|
|
67
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
68
|
+
...{ class: "keyVal" },
|
|
69
|
+
});
|
|
70
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
71
|
+
...{ class: "key" },
|
|
72
|
+
});
|
|
73
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.span, __VLS_intrinsics.span)({
|
|
74
|
+
...{ class: "unit" },
|
|
75
|
+
});
|
|
76
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
77
|
+
...{ class: "val" },
|
|
78
|
+
});
|
|
79
|
+
const __VLS_6 = {}.ElSwitch;
|
|
80
|
+
/** @type {[typeof __VLS_components.ElSwitch, typeof __VLS_components.elSwitch, ]} */ ;
|
|
81
|
+
// @ts-ignore
|
|
82
|
+
ElSwitch;
|
|
83
|
+
// @ts-ignore
|
|
84
|
+
const __VLS_7 = __VLS_asFunctionalComponent(__VLS_6, new __VLS_6({
|
|
85
|
+
modelValue: (__VLS_ctx.currentLayer.hittable),
|
|
86
|
+
inlinePrompt: true,
|
|
87
|
+
activeText: "是",
|
|
88
|
+
inactiveText: "否",
|
|
89
|
+
activeValue: (true),
|
|
90
|
+
inactiveValue: (false),
|
|
91
|
+
width: "50",
|
|
92
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
93
|
+
disabled: (!__VLS_ctx.visibleTrue),
|
|
94
|
+
}));
|
|
95
|
+
const __VLS_8 = __VLS_7({
|
|
96
|
+
modelValue: (__VLS_ctx.currentLayer.hittable),
|
|
97
|
+
inlinePrompt: true,
|
|
98
|
+
activeText: "是",
|
|
99
|
+
inactiveText: "否",
|
|
100
|
+
activeValue: (true),
|
|
101
|
+
inactiveValue: (false),
|
|
102
|
+
width: "50",
|
|
103
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
104
|
+
disabled: (!__VLS_ctx.visibleTrue),
|
|
105
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_7));
|
|
106
|
+
// @ts-ignore
|
|
107
|
+
[currentLayer, visibleTrue,];
|
|
108
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
109
|
+
...{ class: "keyVal" },
|
|
110
|
+
});
|
|
111
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
112
|
+
...{ class: "key" },
|
|
113
|
+
});
|
|
114
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.span, __VLS_intrinsics.span)({
|
|
115
|
+
...{ class: "unit" },
|
|
116
|
+
});
|
|
117
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
118
|
+
...{ class: "val" },
|
|
119
|
+
});
|
|
120
|
+
const __VLS_12 = {}.ElSwitch;
|
|
121
|
+
/** @type {[typeof __VLS_components.ElSwitch, typeof __VLS_components.elSwitch, ]} */ ;
|
|
122
|
+
// @ts-ignore
|
|
123
|
+
ElSwitch;
|
|
124
|
+
// @ts-ignore
|
|
125
|
+
const __VLS_13 = __VLS_asFunctionalComponent(__VLS_12, new __VLS_12({
|
|
126
|
+
modelValue: (__VLS_ctx.currentLayer.hitSelf),
|
|
127
|
+
inlinePrompt: true,
|
|
128
|
+
activeText: "是",
|
|
129
|
+
inactiveText: "否",
|
|
130
|
+
activeValue: (true),
|
|
131
|
+
inactiveValue: (false),
|
|
132
|
+
width: "50",
|
|
133
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
134
|
+
disabled: (!__VLS_ctx.visibleTrue || !__VLS_ctx.hittableTrue),
|
|
135
|
+
}));
|
|
136
|
+
const __VLS_14 = __VLS_13({
|
|
137
|
+
modelValue: (__VLS_ctx.currentLayer.hitSelf),
|
|
138
|
+
inlinePrompt: true,
|
|
139
|
+
activeText: "是",
|
|
140
|
+
inactiveText: "否",
|
|
141
|
+
activeValue: (true),
|
|
142
|
+
inactiveValue: (false),
|
|
143
|
+
width: "50",
|
|
144
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
145
|
+
disabled: (!__VLS_ctx.visibleTrue || !__VLS_ctx.hittableTrue),
|
|
146
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_13));
|
|
147
|
+
// @ts-ignore
|
|
148
|
+
[currentLayer, visibleTrue, hittableTrue,];
|
|
149
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
150
|
+
...{ class: "keyVal" },
|
|
151
|
+
});
|
|
152
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
153
|
+
...{ class: "key" },
|
|
154
|
+
});
|
|
155
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
156
|
+
...{ class: "val" },
|
|
157
|
+
});
|
|
158
|
+
const __VLS_18 = {}.ElSwitch;
|
|
159
|
+
/** @type {[typeof __VLS_components.ElSwitch, typeof __VLS_components.elSwitch, ]} */ ;
|
|
160
|
+
// @ts-ignore
|
|
161
|
+
ElSwitch;
|
|
162
|
+
// @ts-ignore
|
|
163
|
+
const __VLS_19 = __VLS_asFunctionalComponent(__VLS_18, new __VLS_18({
|
|
164
|
+
modelValue: (__VLS_ctx.currentLayer.clickable),
|
|
165
|
+
inlinePrompt: true,
|
|
166
|
+
activeText: "是",
|
|
167
|
+
inactiveText: "否",
|
|
168
|
+
activeValue: (true),
|
|
169
|
+
inactiveValue: (false),
|
|
170
|
+
width: "50",
|
|
171
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
172
|
+
disabled: (!__VLS_ctx.visibleTrue || !__VLS_ctx.hittableTrue),
|
|
173
|
+
}));
|
|
174
|
+
const __VLS_20 = __VLS_19({
|
|
175
|
+
modelValue: (__VLS_ctx.currentLayer.clickable),
|
|
176
|
+
inlinePrompt: true,
|
|
177
|
+
activeText: "是",
|
|
178
|
+
inactiveText: "否",
|
|
179
|
+
activeValue: (true),
|
|
180
|
+
inactiveValue: (false),
|
|
181
|
+
width: "50",
|
|
182
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
183
|
+
disabled: (!__VLS_ctx.visibleTrue || !__VLS_ctx.hittableTrue),
|
|
184
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_19));
|
|
185
|
+
// @ts-ignore
|
|
186
|
+
[currentLayer, visibleTrue, hittableTrue,];
|
|
187
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
188
|
+
...{ class: "keyVal" },
|
|
189
|
+
});
|
|
190
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
191
|
+
...{ class: "key" },
|
|
192
|
+
});
|
|
193
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
194
|
+
...{ class: "val" },
|
|
195
|
+
});
|
|
196
|
+
const __VLS_24 = {}.ElSwitch;
|
|
197
|
+
/** @type {[typeof __VLS_components.ElSwitch, typeof __VLS_components.elSwitch, ]} */ ;
|
|
198
|
+
// @ts-ignore
|
|
199
|
+
ElSwitch;
|
|
200
|
+
// @ts-ignore
|
|
201
|
+
const __VLS_25 = __VLS_asFunctionalComponent(__VLS_24, new __VLS_24({
|
|
202
|
+
modelValue: (__VLS_ctx.currentLayer.menuClickable),
|
|
203
|
+
inlinePrompt: true,
|
|
204
|
+
activeText: "是",
|
|
205
|
+
inactiveText: "否",
|
|
206
|
+
activeValue: (true),
|
|
207
|
+
inactiveValue: (false),
|
|
208
|
+
width: "50",
|
|
209
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
210
|
+
disabled: (!__VLS_ctx.visibleTrue || !__VLS_ctx.hittableTrue),
|
|
211
|
+
}));
|
|
212
|
+
const __VLS_26 = __VLS_25({
|
|
213
|
+
modelValue: (__VLS_ctx.currentLayer.menuClickable),
|
|
214
|
+
inlinePrompt: true,
|
|
215
|
+
activeText: "是",
|
|
216
|
+
inactiveText: "否",
|
|
217
|
+
activeValue: (true),
|
|
218
|
+
inactiveValue: (false),
|
|
219
|
+
width: "50",
|
|
220
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
221
|
+
disabled: (!__VLS_ctx.visibleTrue || !__VLS_ctx.hittableTrue),
|
|
222
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_25));
|
|
223
|
+
// @ts-ignore
|
|
224
|
+
[currentLayer, visibleTrue, hittableTrue,];
|
|
225
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
226
|
+
...{ class: "keyVal" },
|
|
227
|
+
});
|
|
228
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
229
|
+
...{ class: "key" },
|
|
230
|
+
});
|
|
231
|
+
__VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
|
|
232
|
+
...{ class: "val" },
|
|
233
|
+
});
|
|
234
|
+
const __VLS_30 = {}.ElSwitch;
|
|
235
|
+
/** @type {[typeof __VLS_components.ElSwitch, typeof __VLS_components.elSwitch, ]} */ ;
|
|
236
|
+
// @ts-ignore
|
|
237
|
+
ElSwitch;
|
|
238
|
+
// @ts-ignore
|
|
239
|
+
const __VLS_31 = __VLS_asFunctionalComponent(__VLS_30, new __VLS_30({
|
|
240
|
+
modelValue: (__VLS_ctx.currentLayer.draggable),
|
|
241
|
+
inlinePrompt: true,
|
|
242
|
+
activeText: "是",
|
|
243
|
+
inactiveText: "否",
|
|
244
|
+
activeValue: (true),
|
|
245
|
+
inactiveValue: (false),
|
|
246
|
+
width: "50",
|
|
247
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
248
|
+
disabled: (!__VLS_ctx.visibleTrue || !__VLS_ctx.hittableTrue),
|
|
249
|
+
}));
|
|
250
|
+
const __VLS_32 = __VLS_31({
|
|
251
|
+
modelValue: (__VLS_ctx.currentLayer.draggable),
|
|
252
|
+
inlinePrompt: true,
|
|
253
|
+
activeText: "是",
|
|
254
|
+
inactiveText: "否",
|
|
255
|
+
activeValue: (true),
|
|
256
|
+
inactiveValue: (false),
|
|
257
|
+
width: "50",
|
|
258
|
+
...{ style: "--el-switch-on-color: rgb(124, 220, 183); --el-switch-off-color: rgb(215, 55, 50)" },
|
|
259
|
+
disabled: (!__VLS_ctx.visibleTrue || !__VLS_ctx.hittableTrue),
|
|
260
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_31));
|
|
261
|
+
// @ts-ignore
|
|
262
|
+
[currentLayer, visibleTrue, hittableTrue,];
|
|
263
|
+
}
|
|
264
|
+
/** @type {__VLS_StyleScopedClasses['form_group']} */ ;
|
|
265
|
+
/** @type {__VLS_StyleScopedClasses['form_group_title']} */ ;
|
|
266
|
+
/** @type {__VLS_StyleScopedClasses['keyVal']} */ ;
|
|
267
|
+
/** @type {__VLS_StyleScopedClasses['key']} */ ;
|
|
268
|
+
/** @type {__VLS_StyleScopedClasses['val']} */ ;
|
|
269
|
+
/** @type {__VLS_StyleScopedClasses['keyVal']} */ ;
|
|
270
|
+
/** @type {__VLS_StyleScopedClasses['key']} */ ;
|
|
271
|
+
/** @type {__VLS_StyleScopedClasses['unit']} */ ;
|
|
272
|
+
/** @type {__VLS_StyleScopedClasses['val']} */ ;
|
|
273
|
+
/** @type {__VLS_StyleScopedClasses['keyVal']} */ ;
|
|
274
|
+
/** @type {__VLS_StyleScopedClasses['key']} */ ;
|
|
275
|
+
/** @type {__VLS_StyleScopedClasses['unit']} */ ;
|
|
276
|
+
/** @type {__VLS_StyleScopedClasses['val']} */ ;
|
|
277
|
+
/** @type {__VLS_StyleScopedClasses['keyVal']} */ ;
|
|
278
|
+
/** @type {__VLS_StyleScopedClasses['key']} */ ;
|
|
279
|
+
/** @type {__VLS_StyleScopedClasses['val']} */ ;
|
|
280
|
+
/** @type {__VLS_StyleScopedClasses['keyVal']} */ ;
|
|
281
|
+
/** @type {__VLS_StyleScopedClasses['key']} */ ;
|
|
282
|
+
/** @type {__VLS_StyleScopedClasses['val']} */ ;
|
|
283
|
+
/** @type {__VLS_StyleScopedClasses['keyVal']} */ ;
|
|
284
|
+
/** @type {__VLS_StyleScopedClasses['key']} */ ;
|
|
285
|
+
/** @type {__VLS_StyleScopedClasses['val']} */ ;
|
|
286
|
+
const __VLS_export = (await import('vue')).defineComponent({});
|
|
287
|
+
export default {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|