@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.
Files changed (174) hide show
  1. package/dist/App.vue.d.ts +2 -1
  2. package/dist/App.vue.js +30 -0
  3. package/dist/assets/data/editor_default.d.ts +8 -1
  4. package/dist/assets/data/editor_default.js +59 -0
  5. package/dist/assets/data/editor_default_setting.d.ts +16 -0
  6. package/dist/assets/data/editor_default_setting.js +58 -0
  7. package/dist/assets/data/editor_preset.d.ts +8 -1
  8. package/dist/assets/data/editor_preset.js +51 -0
  9. package/dist/assets/data/editor_preset_menu.d.ts +9 -0
  10. package/dist/assets/data/editor_preset_menu.js +290 -0
  11. package/dist/components/editor/ControlBar/CaseManger.vue.d.ts +3 -15
  12. package/dist/components/editor/ControlBar/CaseManger.vue.js +465 -0
  13. package/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +2 -411
  14. package/dist/components/editor/ControlBar/CaseTitleEdit.vue.js +108 -0
  15. package/dist/components/editor/ControlBar/ExportImportDialog.vue.d.ts +3 -2
  16. package/dist/components/editor/ControlBar/ExportImportDialog.vue.js +280 -0
  17. package/dist/components/editor/ControlBar/MainButton.vue.d.ts +3 -2
  18. package/dist/components/editor/ControlBar/MainButton.vue.js +183 -0
  19. package/dist/components/editor/ControlBar/StepButton.vue.d.ts +2 -1
  20. package/dist/components/editor/ControlBar/StepButton.vue.js +147 -0
  21. package/dist/components/editor/ControlBar/StepRecordVisualizer.vue.d.ts +2 -1
  22. package/dist/components/editor/ControlBar/StepRecordVisualizer.vue.js +98 -0
  23. package/dist/components/editor/DrawingBoard.vue.d.ts +2 -1
  24. package/dist/components/editor/DrawingBoard.vue.js +31 -0
  25. package/dist/components/editor/MenuCard/Equipments.vue.d.ts +2 -1
  26. package/dist/components/editor/MenuCard/Equipments.vue.js +129 -0
  27. package/dist/components/editor/MenuCard/Layers.vue.d.ts +2 -1
  28. package/dist/components/editor/MenuCard/Layers.vue.js +201 -0
  29. package/dist/components/editor/MenuCard/index.vue.d.ts +2 -1
  30. package/dist/components/editor/MenuCard/index.vue.js +84 -0
  31. package/dist/components/editor/OptionCard/Equipment/Base.vue.d.ts +2 -1
  32. package/dist/components/editor/OptionCard/Equipment/Base.vue.js +96 -0
  33. package/dist/components/editor/OptionCard/Equipment/Binds.vue.d.ts +3 -0
  34. package/dist/components/editor/OptionCard/Equipment/Binds.vue.js +443 -0
  35. package/dist/components/editor/OptionCard/Equipment/Bot.vue.d.ts +3 -0
  36. package/dist/components/editor/OptionCard/Equipment/Bot.vue.js +81 -0
  37. package/dist/components/editor/OptionCard/Equipment/DataSets.vue.d.ts +2 -1
  38. package/dist/components/editor/OptionCard/Equipment/DataSets.vue.js +304 -0
  39. package/dist/components/editor/OptionCard/Equipment/DockStore.vue.d.ts +3 -0
  40. package/dist/components/editor/OptionCard/Equipment/DockStore.vue.js +597 -0
  41. package/dist/components/editor/OptionCard/Equipment/Interaction.vue.d.ts +2 -1
  42. package/dist/components/editor/OptionCard/Equipment/Interaction.vue.js +287 -0
  43. package/dist/components/editor/OptionCard/Equipment/Position.backup.vue.d.ts +3 -0
  44. package/dist/components/editor/OptionCard/Equipment/Position.backup.vue.js +440 -0
  45. package/dist/components/editor/OptionCard/Equipment/Position.vue.d.ts +2 -1
  46. package/dist/components/editor/OptionCard/Equipment/Position.vue.js +436 -0
  47. package/dist/components/editor/OptionCard/Equipment/StationSlotGroup.vue.d.ts +2 -1
  48. package/dist/components/editor/OptionCard/Equipment/StationSlotGroup.vue.js +1131 -0
  49. package/dist/components/editor/OptionCard/Equipment/Store.vue.d.ts +3 -0
  50. package/dist/components/editor/OptionCard/Equipment/Store.vue.js +453 -0
  51. package/dist/components/editor/OptionCard/Equipment/Trailer.vue.d.ts +3 -0
  52. package/dist/components/editor/OptionCard/Equipment/Trailer.vue.js +1109 -0
  53. package/dist/components/editor/OptionCard/Equipment/index.vue.d.ts +2 -1
  54. package/dist/components/editor/OptionCard/Equipment/index.vue.js +100 -0
  55. package/dist/components/editor/OptionCard/Equipment/models/MachineTool.vue.d.ts +3 -0
  56. package/dist/components/editor/OptionCard/Equipment/models/MachineTool.vue.js +99 -0
  57. package/dist/components/editor/OptionCard/Equipment/models/Rail.vue.d.ts +3 -0
  58. package/dist/components/editor/OptionCard/Equipment/models/Rail.vue.js +225 -0
  59. package/dist/components/editor/OptionCard/Equipment/models/SingleGripperRobot.vue.d.ts +3 -0
  60. package/dist/components/editor/OptionCard/Equipment/models/SingleGripperRobot.vue.js +99 -0
  61. package/dist/components/editor/OptionCard/Scene/Background.vue.d.ts +2 -1
  62. package/dist/components/editor/OptionCard/Scene/Background.vue.js +543 -0
  63. package/dist/components/editor/OptionCard/Scene/index.vue.d.ts +2 -1
  64. package/dist/components/editor/OptionCard/Scene/index.vue.js +200 -0
  65. package/dist/components/editor/OptionCard/index.vue.d.ts +2 -1
  66. package/dist/components/editor/OptionCard/index.vue.js +73 -0
  67. package/dist/components/editor/index.vue.d.ts +4 -13
  68. package/dist/components/editor/index.vue.js +156 -0
  69. package/dist/components/index.d.ts +2 -2
  70. package/dist/components/index.js +4 -25440
  71. package/dist/components/preview/index.vue.d.ts +6 -5
  72. package/dist/components/preview/index.vue.js +104 -0
  73. package/dist/composables/useStepRecord.d.ts +12 -4
  74. package/dist/composables/useStepRecord.js +135 -0
  75. package/dist/constants/options.d.ts +8 -1
  76. package/dist/constants/options.js +55 -0
  77. package/dist/controller/AppController.d.ts +10 -3
  78. package/dist/controller/AppController.js +168 -0
  79. package/dist/controller/EditorController.d.ts +9 -2
  80. package/dist/controller/EditorController.js +173 -0
  81. package/dist/index.js +1 -1
  82. package/dist/locales/en.js +5 -0
  83. package/dist/locales/i18next.d.ts +1 -1
  84. package/dist/locales/i18next.js +6 -0
  85. package/dist/locales/index.d.ts +2 -2
  86. package/dist/locales/index.js +3 -13
  87. package/dist/locales/zhCn.js +5 -0
  88. package/dist/main.d.ts +3 -0
  89. package/dist/main.js +13 -0
  90. package/dist/playground/EditPageDemo.vue.d.ts +2 -1
  91. package/dist/playground/EditPageDemo.vue.js +57 -0
  92. package/dist/playground/ViewPageDemo.vue.d.ts +2 -27
  93. package/dist/playground/ViewPageDemo.vue.js +277 -0
  94. package/dist/stores/index.js +3 -0
  95. package/dist/stores/useAppStore.d.ts +13 -6
  96. package/dist/stores/useAppStore.js +78 -0
  97. package/dist/stores/useDataStore.d.ts +18 -11
  98. package/dist/stores/useDataStore.js +116 -0
  99. package/dist/stores/useEditorStore.d.ts +27 -20
  100. package/dist/stores/useEditorStore.js +263 -0
  101. package/dist/types/app.types.d.ts +1 -1
  102. package/dist/types/app.types.js +2 -0
  103. package/dist/types/base.types.d.ts +4 -2
  104. package/dist/types/base.types.js +1 -0
  105. package/dist/types/components/config.types.d.ts +11 -3
  106. package/dist/types/components/config.types.js +1 -0
  107. package/dist/types/components/operating.types.d.ts +1 -1
  108. package/dist/types/components/operating.types.js +1 -0
  109. package/dist/types/enums.d.ts +5 -2
  110. package/dist/types/enums.js +46 -0
  111. package/dist/types/guards.d.ts +12 -2
  112. package/dist/types/guards.js +28 -0
  113. package/dist/types/index.d.ts +2 -2
  114. package/dist/types/index.js +8 -0
  115. package/dist/types/models/config.types.d.ts +74 -29
  116. package/dist/types/models/config.types.js +1 -0
  117. package/dist/types/models/operating.types.d.ts +83 -17
  118. package/dist/types/models/operating.types.js +1 -0
  119. package/dist/ui/abstract/ComponentAbs.d.ts +9 -2
  120. package/dist/ui/abstract/ComponentAbs.js +64 -0
  121. package/dist/ui/abstract/ModelAbs.d.ts +12 -2
  122. package/dist/ui/abstract/ModelAbs.js +119 -0
  123. package/dist/ui/components/Entrance.d.ts +8 -1
  124. package/dist/ui/components/Entrance.js +83 -0
  125. package/dist/ui/components/Light.d.ts +26 -3
  126. package/dist/ui/components/Light.js +167 -0
  127. package/dist/ui/components/Progress.d.ts +8 -1
  128. package/dist/ui/components/Progress.js +84 -0
  129. package/dist/ui/components/Resource.d.ts +8 -1
  130. package/dist/ui/components/Resource.js +70 -0
  131. package/dist/ui/components/StationSlot.d.ts +24 -2
  132. package/dist/ui/components/StationSlot.js +207 -0
  133. package/dist/ui/components/StationSlotGroup.d.ts +8 -1
  134. package/dist/ui/components/StationSlotGroup.js +110 -0
  135. package/dist/ui/factories/createGlass.d.ts +9 -1
  136. package/dist/ui/factories/createGlass.js +51 -0
  137. package/dist/ui/factories/createModel.d.ts +9 -2
  138. package/dist/ui/factories/createModel.js +35 -0
  139. package/dist/ui/factories/createShadow.d.ts +12 -4
  140. package/dist/ui/factories/createShadow.js +52 -0
  141. package/dist/ui/factories/createText.d.ts +7 -0
  142. package/dist/ui/factories/createText.js +46 -0
  143. package/dist/ui/models/CleaningMachine.d.ts +14 -0
  144. package/dist/ui/models/CleaningMachine.js +141 -0
  145. package/dist/ui/models/DoubleJointRobot.d.ts +23 -0
  146. package/dist/ui/models/DoubleJointRobot.js +545 -0
  147. package/dist/ui/models/LoadingStation.d.ts +16 -0
  148. package/dist/ui/models/LoadingStation.js +167 -0
  149. package/dist/ui/models/MachineTool.d.ts +5 -4
  150. package/dist/ui/models/MachineTool.js +184 -0
  151. package/dist/ui/models/MarkingMachine.d.ts +16 -0
  152. package/dist/ui/models/MarkingMachine.js +148 -0
  153. package/dist/ui/models/Rail.d.ts +15 -0
  154. package/dist/ui/models/Rail.js +117 -0
  155. package/dist/ui/models/ResourceStore.d.ts +12 -0
  156. package/dist/ui/models/ResourceStore.js +101 -0
  157. package/dist/ui/models/SingleBot.d.ts +20 -0
  158. package/dist/ui/models/SingleBot.js +202 -0
  159. package/dist/ui/models/SingleGripperRobot.d.ts +19 -0
  160. package/dist/ui/models/SingleGripperRobot.js +272 -0
  161. package/dist/ui/models/SingleJointRobot.d.ts +22 -0
  162. package/dist/ui/models/SingleJointRobot.js +346 -0
  163. package/dist/ui/shapes/NamePlate.d.ts +10 -1
  164. package/dist/ui/shapes/NamePlate.js +85 -0
  165. package/dist/ui/shapes/ScrewHole.d.ts +8 -1
  166. package/dist/ui/shapes/ScrewHole.js +57 -0
  167. package/dist/ui/shapes/Texture.d.ts +12 -3
  168. package/dist/ui/shapes/Texture.js +51 -0
  169. package/dist/ui/utils/attr.d.ts +10 -3
  170. package/dist/ui/utils/attr.js +50 -0
  171. package/dist/utils/index.js +92 -0
  172. package/dist/utils/type-guards.d.ts +1 -1
  173. package/dist/utils/type-guards.js +105 -0
  174. package/package.json +2 -2
@@ -0,0 +1,304 @@
1
+ import { ref } from 'vue';
2
+ import { storeToRefs } from 'pinia';
3
+ import { ElButton, ElDialog, ElInputTag, ElInput, ElMessage } from 'element-plus';
4
+ import { clipboard } from '@jnrs/shared';
5
+ import { useEditorStore } from '@/stores';
6
+ const editorStore = useEditorStore();
7
+ const { currentLayer } = storeToRefs(editorStore);
8
+ const dialogVisible = ref(false);
9
+ const rawData = ref();
10
+ const showDialog = () => {
11
+ dialogVisible.value = true;
12
+ rawData.value = JSON.stringify(currentLayer.value?.rawData, null, 2);
13
+ };
14
+ const saveTraySiteDialog = () => {
15
+ try {
16
+ const trimmedData = rawData.value?.trim();
17
+ if (!trimmedData && !trimmedData.startsWith('{') && !trimmedData.startsWith('[')) {
18
+ throw new Error(`数据格式错误:期望 JSON 对象,但收到以 "${trimmedData[0]}" 开头的内容`);
19
+ }
20
+ if (currentLayer.value) {
21
+ const d = JSON.parse(rawData.value);
22
+ if (!Object.hasOwn(d, 'id')) {
23
+ throw new Error('数据必须拥有 "id" 属性');
24
+ }
25
+ currentLayer.value.rawData = rawData.value ? d : {};
26
+ }
27
+ dialogVisible.value = false;
28
+ ElMessage.success('业务数据已保存');
29
+ }
30
+ catch (error) {
31
+ ElMessage({
32
+ message: error || '数据格式错误',
33
+ type: 'warning',
34
+ grouping: true,
35
+ showClose: true
36
+ });
37
+ }
38
+ };
39
+ debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
40
+ const __VLS_ctx = {
41
+ ...{},
42
+ ...{},
43
+ };
44
+ let __VLS_components;
45
+ let __VLS_directives;
46
+ if (__VLS_ctx.currentLayer) {
47
+ // @ts-ignore
48
+ [currentLayer,];
49
+ __VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
50
+ ...{ class: "form_group" },
51
+ });
52
+ __VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
53
+ ...{ class: "form_group_title" },
54
+ });
55
+ __VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
56
+ ...{ class: "keyVal" },
57
+ });
58
+ __VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
59
+ ...{ class: "key" },
60
+ });
61
+ __VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
62
+ ...{ class: "val" },
63
+ });
64
+ const __VLS_0 = {}.ElInput;
65
+ /** @type {[typeof __VLS_components.ElInput, typeof __VLS_components.elInput, typeof __VLS_components.ElInput, typeof __VLS_components.elInput, ]} */ ;
66
+ // @ts-ignore
67
+ ElInput;
68
+ // @ts-ignore
69
+ const __VLS_1 = __VLS_asFunctionalComponent(__VLS_0, new __VLS_0({
70
+ modelValue: (__VLS_ctx.currentLayer.uuid),
71
+ disabled: true,
72
+ placeholder: "未知设备,请删除",
73
+ type: "text",
74
+ size: "default",
75
+ ...{ style: "width: 100%" },
76
+ }));
77
+ const __VLS_2 = __VLS_1({
78
+ modelValue: (__VLS_ctx.currentLayer.uuid),
79
+ disabled: true,
80
+ placeholder: "未知设备,请删除",
81
+ type: "text",
82
+ size: "default",
83
+ ...{ style: "width: 100%" },
84
+ }, ...__VLS_functionalComponentArgsRest(__VLS_1));
85
+ const { default: __VLS_5 } = __VLS_3.slots;
86
+ // @ts-ignore
87
+ [currentLayer,];
88
+ {
89
+ const { append: __VLS_6 } = __VLS_3.slots;
90
+ const __VLS_7 = {}.ElButton;
91
+ /** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ;
92
+ // @ts-ignore
93
+ ElButton;
94
+ // @ts-ignore
95
+ const __VLS_8 = __VLS_asFunctionalComponent(__VLS_7, new __VLS_7({
96
+ ...{ 'onClick': {} },
97
+ type: "primary",
98
+ }));
99
+ const __VLS_9 = __VLS_8({
100
+ ...{ 'onClick': {} },
101
+ type: "primary",
102
+ }, ...__VLS_functionalComponentArgsRest(__VLS_8));
103
+ let __VLS_12;
104
+ const __VLS_13 = ({ click: {} },
105
+ { onClick: (...[$event]) => {
106
+ if (!(__VLS_ctx.currentLayer))
107
+ return;
108
+ __VLS_ctx.clipboard(__VLS_ctx.currentLayer.uuid);
109
+ // @ts-ignore
110
+ [currentLayer, clipboard,];
111
+ } });
112
+ const { default: __VLS_14 } = __VLS_10.slots;
113
+ var __VLS_10;
114
+ var __VLS_11;
115
+ }
116
+ var __VLS_3;
117
+ __VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
118
+ ...{ class: "keyVal" },
119
+ });
120
+ __VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
121
+ ...{ class: "key" },
122
+ });
123
+ __VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
124
+ ...{ class: "val" },
125
+ });
126
+ const __VLS_15 = {}.ElInputTag;
127
+ /** @type {[typeof __VLS_components.ElInputTag, typeof __VLS_components.elInputTag, ]} */ ;
128
+ // @ts-ignore
129
+ ElInputTag;
130
+ // @ts-ignore
131
+ const __VLS_16 = __VLS_asFunctionalComponent(__VLS_15, new __VLS_15({
132
+ modelValue: (__VLS_ctx.currentLayer.tags),
133
+ disabled: true,
134
+ placeholder: "无",
135
+ tagType: "primary",
136
+ size: "default",
137
+ ...{ style: "width: 100%" },
138
+ }));
139
+ const __VLS_17 = __VLS_16({
140
+ modelValue: (__VLS_ctx.currentLayer.tags),
141
+ disabled: true,
142
+ placeholder: "无",
143
+ tagType: "primary",
144
+ size: "default",
145
+ ...{ style: "width: 100%" },
146
+ }, ...__VLS_functionalComponentArgsRest(__VLS_16));
147
+ // @ts-ignore
148
+ [currentLayer,];
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
+ ...{ onClick: (...[$event]) => {
157
+ if (!(__VLS_ctx.currentLayer))
158
+ return;
159
+ __VLS_ctx.showDialog();
160
+ // @ts-ignore
161
+ [showDialog,];
162
+ } },
163
+ ...{ class: "val" },
164
+ });
165
+ const __VLS_21 = {}.ElInput;
166
+ /** @type {[typeof __VLS_components.ElInput, typeof __VLS_components.elInput, ]} */ ;
167
+ // @ts-ignore
168
+ ElInput;
169
+ // @ts-ignore
170
+ const __VLS_22 = __VLS_asFunctionalComponent(__VLS_21, new __VLS_21({
171
+ value: (JSON.stringify(__VLS_ctx.currentLayer.rawData)),
172
+ readonly: true,
173
+ placeholder: "(空)",
174
+ }));
175
+ const __VLS_23 = __VLS_22({
176
+ value: (JSON.stringify(__VLS_ctx.currentLayer.rawData)),
177
+ readonly: true,
178
+ placeholder: "(空)",
179
+ }, ...__VLS_functionalComponentArgsRest(__VLS_22));
180
+ // @ts-ignore
181
+ [currentLayer,];
182
+ }
183
+ const __VLS_27 = {}.ElDialog;
184
+ /** @type {[typeof __VLS_components.ElDialog, typeof __VLS_components.elDialog, typeof __VLS_components.ElDialog, typeof __VLS_components.elDialog, ]} */ ;
185
+ // @ts-ignore
186
+ ElDialog;
187
+ // @ts-ignore
188
+ const __VLS_28 = __VLS_asFunctionalComponent(__VLS_27, new __VLS_27({
189
+ modelValue: (__VLS_ctx.dialogVisible),
190
+ title: "配置业务数据",
191
+ width: "50%",
192
+ center: true,
193
+ appendToBody: (true),
194
+ closeOnClickModal: (false),
195
+ closeOnPressEscape: (false),
196
+ draggable: true,
197
+ overflow: true,
198
+ }));
199
+ const __VLS_29 = __VLS_28({
200
+ modelValue: (__VLS_ctx.dialogVisible),
201
+ title: "配置业务数据",
202
+ width: "50%",
203
+ center: true,
204
+ appendToBody: (true),
205
+ closeOnClickModal: (false),
206
+ closeOnPressEscape: (false),
207
+ draggable: true,
208
+ overflow: true,
209
+ }, ...__VLS_functionalComponentArgsRest(__VLS_28));
210
+ const { default: __VLS_32 } = __VLS_30.slots;
211
+ // @ts-ignore
212
+ [dialogVisible,];
213
+ __VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
214
+ ...{ class: "optionCardDialog_textarea" },
215
+ });
216
+ __VLS_asFunctionalElement(__VLS_intrinsics.p, __VLS_intrinsics.p)({
217
+ ...{ class: "optionCardDialog_title" },
218
+ });
219
+ const __VLS_33 = {}.ElInput;
220
+ /** @type {[typeof __VLS_components.ElInput, typeof __VLS_components.elInput, typeof __VLS_components.ElInput, typeof __VLS_components.elInput, ]} */ ;
221
+ // @ts-ignore
222
+ ElInput;
223
+ // @ts-ignore
224
+ const __VLS_34 = __VLS_asFunctionalComponent(__VLS_33, new __VLS_33({
225
+ modelValue: (__VLS_ctx.rawData),
226
+ type: "textarea",
227
+ autosize: ({ minRows: 10, maxRows: 20 }),
228
+ maxlength: "9999999",
229
+ showWordLimit: true,
230
+ }));
231
+ const __VLS_35 = __VLS_34({
232
+ modelValue: (__VLS_ctx.rawData),
233
+ type: "textarea",
234
+ autosize: ({ minRows: 10, maxRows: 20 }),
235
+ maxlength: "9999999",
236
+ showWordLimit: true,
237
+ }, ...__VLS_functionalComponentArgsRest(__VLS_34));
238
+ // @ts-ignore
239
+ [rawData,];
240
+ {
241
+ const { footer: __VLS_39 } = __VLS_30.slots;
242
+ __VLS_asFunctionalElement(__VLS_intrinsics.div, __VLS_intrinsics.div)({
243
+ ...{ class: "optionCardDialog_footer" },
244
+ });
245
+ const __VLS_40 = {}.ElButton;
246
+ /** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ;
247
+ // @ts-ignore
248
+ ElButton;
249
+ // @ts-ignore
250
+ const __VLS_41 = __VLS_asFunctionalComponent(__VLS_40, new __VLS_40({
251
+ ...{ 'onClick': {} },
252
+ }));
253
+ const __VLS_42 = __VLS_41({
254
+ ...{ 'onClick': {} },
255
+ }, ...__VLS_functionalComponentArgsRest(__VLS_41));
256
+ let __VLS_45;
257
+ const __VLS_46 = ({ click: {} },
258
+ { onClick: (...[$event]) => {
259
+ __VLS_ctx.dialogVisible = false;
260
+ // @ts-ignore
261
+ [dialogVisible,];
262
+ } });
263
+ const { default: __VLS_47 } = __VLS_43.slots;
264
+ var __VLS_43;
265
+ var __VLS_44;
266
+ const __VLS_48 = {}.ElButton;
267
+ /** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ;
268
+ // @ts-ignore
269
+ ElButton;
270
+ // @ts-ignore
271
+ const __VLS_49 = __VLS_asFunctionalComponent(__VLS_48, new __VLS_48({
272
+ ...{ 'onClick': {} },
273
+ type: "primary",
274
+ }));
275
+ const __VLS_50 = __VLS_49({
276
+ ...{ 'onClick': {} },
277
+ type: "primary",
278
+ }, ...__VLS_functionalComponentArgsRest(__VLS_49));
279
+ let __VLS_53;
280
+ const __VLS_54 = ({ click: {} },
281
+ { onClick: (__VLS_ctx.saveTraySiteDialog) });
282
+ const { default: __VLS_55 } = __VLS_51.slots;
283
+ // @ts-ignore
284
+ [saveTraySiteDialog,];
285
+ var __VLS_51;
286
+ var __VLS_52;
287
+ }
288
+ var __VLS_30;
289
+ /** @type {__VLS_StyleScopedClasses['form_group']} */ ;
290
+ /** @type {__VLS_StyleScopedClasses['form_group_title']} */ ;
291
+ /** @type {__VLS_StyleScopedClasses['keyVal']} */ ;
292
+ /** @type {__VLS_StyleScopedClasses['key']} */ ;
293
+ /** @type {__VLS_StyleScopedClasses['val']} */ ;
294
+ /** @type {__VLS_StyleScopedClasses['keyVal']} */ ;
295
+ /** @type {__VLS_StyleScopedClasses['key']} */ ;
296
+ /** @type {__VLS_StyleScopedClasses['val']} */ ;
297
+ /** @type {__VLS_StyleScopedClasses['keyVal']} */ ;
298
+ /** @type {__VLS_StyleScopedClasses['key']} */ ;
299
+ /** @type {__VLS_StyleScopedClasses['val']} */ ;
300
+ /** @type {__VLS_StyleScopedClasses['optionCardDialog_textarea']} */ ;
301
+ /** @type {__VLS_StyleScopedClasses['optionCardDialog_title']} */ ;
302
+ /** @type {__VLS_StyleScopedClasses['optionCardDialog_footer']} */ ;
303
+ const __VLS_export = (await import('vue')).defineComponent({});
304
+ export default {};
@@ -0,0 +1,3 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ 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>;