@kengic/vue 0.30.1-beta.21 → 0.30.1-beta.23

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 (49) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/kengic-vue.js +40548 -39037
  3. package/dist/partition-outlined.1bcf4f37.mjs +8 -0
  4. package/dist/profile-outlined.1059fb0d.mjs +8 -0
  5. package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.hooks.d.ts +2 -2
  6. package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.store.d.ts +29 -29
  7. package/dist/src/component/KgCircularShuttleMonitor/index.d.ts +3 -0
  8. package/dist/src/component/KgModal/KgModal.d.ts +6 -6
  9. package/dist/src/component/KgModal/{hooks/useDragToResize.d.ts → KgModal.service.d.ts} +13 -2
  10. package/dist/src/component/KgModal02/KgModal02.d.ts +591 -0
  11. package/dist/src/component/KgModal02/KgModal02.model.d.ts +1 -0
  12. package/dist/src/component/KgModal02/index.d.ts +1 -0
  13. package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Create.CircularConveyor.d.ts +36 -0
  14. package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Open.CircularConveyor.d.ts +36 -0
  15. package/dist/src/component/KgSimulator/KgSimulator.Panel.Property.d.ts +4 -0
  16. package/dist/src/component/KgSimulator/KgSimulator.Panel.Scene.d.ts +4 -0
  17. package/dist/src/component/KgSimulator/KgSimulator.Prefab.d.ts +27 -0
  18. package/dist/src/component/KgSimulator/KgSimulator.Title.d.ts +11 -0
  19. package/dist/src/component/KgSimulator/KgSimulator.Toolbar.Property.d.ts +9 -0
  20. package/dist/src/component/KgSimulator/KgSimulator.Toolbar.Scene.d.ts +9 -0
  21. package/dist/src/component/KgSimulator/KgSimulator.d.ts +1 -1
  22. package/dist/src/component/KgSimulator/KgSimulator.service.d.ts +2 -5
  23. package/dist/src/component/KgSimulator/KgSimulator.store.d.ts +84 -15
  24. package/dist/src/component/KgTable02/KgTable02.event.d.ts +13 -3
  25. package/dist/src/component/KgTable02/KgTable02.hooks.d.ts +9 -0
  26. package/dist/src/component/KgVar/{KgVarFactory.d.ts → KgVar.Factory.d.ts} +13 -12
  27. package/dist/src/component/KgVar/KgVar.d.ts +23 -17
  28. package/dist/src/component/KgVar/KgVar.event.d.ts +19 -6
  29. package/dist/src/component/KgVar/KgVar.hooks.d.ts +15 -2
  30. package/dist/src/component/KgVar/index.d.ts +1 -1
  31. package/dist/src/component/index.d.ts +2 -0
  32. package/dist/src/config/index.d.ts +9 -3
  33. package/dist/src/const/form-id.const.d.ts +8 -0
  34. package/dist/src/i18n/i18n.setup.d.ts +1 -1
  35. package/dist/src/page/index.d.ts +2 -2
  36. package/dist/src/service/http-client.d.ts +5 -1
  37. package/dist/src/util/tsx.helper.d.ts +7 -7
  38. package/package.json +1 -1
  39. package/dist/src/component/KgModal/hooks/useDragToMove.d.ts +0 -12
  40. /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.AreaSelect.d.ts +0 -0
  41. /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Canvas.d.ts +0 -0
  42. /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Canvas.service.d.ts +0 -0
  43. /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Legend.d.ts +0 -0
  44. /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Offline.d.ts +0 -0
  45. /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Setting.d.ts +0 -0
  46. /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Tab.Log.d.ts +0 -0
  47. /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.Tab.Rgv.d.ts +0 -0
  48. /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.d.ts +0 -0
  49. /package/dist/src/{page/KgPageCircularShuttleMonitor/components → component/KgCircularShuttleMonitor}/KgCircularShuttleMonitor.model.d.ts +0 -0
@@ -0,0 +1,591 @@
1
+ import { ButtonPropsPublic, DialogPropsPublic } from 'element-plus';
2
+ import { ExtractPropTypes, PropType } from 'vue';
3
+ import './KgModal02.css';
4
+ export declare const getProps: () => {
5
+ kgCancelButtonProps: {
6
+ default: () => {};
7
+ type: PropType<ButtonPropsPublic>;
8
+ };
9
+ kgOkButtonProps: {
10
+ default: () => {};
11
+ type: PropType<ButtonPropsPublic>;
12
+ };
13
+ onCancel: PropType<() => void>;
14
+ onOk: PropType<() => void>;
15
+ 'onUpdate:modelValue': PropType<(value: boolean) => void>;
16
+ appendToBody: BooleanConstructor;
17
+ appendTo: {
18
+ readonly type: PropType<string | HTMLElement>;
19
+ readonly required: false;
20
+ readonly validator: ((val: unknown) => boolean) | undefined;
21
+ __epPropKey: true;
22
+ } & {
23
+ readonly default: "body";
24
+ };
25
+ beforeClose: {
26
+ readonly type: PropType<import("element-plus").DialogBeforeCloseFn>;
27
+ readonly required: false;
28
+ readonly validator: ((val: unknown) => boolean) | undefined;
29
+ __epPropKey: true;
30
+ };
31
+ destroyOnClose: BooleanConstructor;
32
+ closeOnClickModal: {
33
+ readonly type: PropType<boolean>;
34
+ readonly required: false;
35
+ readonly validator: ((val: unknown) => boolean) | undefined;
36
+ __epPropKey: true;
37
+ } & {
38
+ readonly default: true;
39
+ };
40
+ closeOnPressEscape: {
41
+ readonly type: PropType<boolean>;
42
+ readonly required: false;
43
+ readonly validator: ((val: unknown) => boolean) | undefined;
44
+ __epPropKey: true;
45
+ } & {
46
+ readonly default: true;
47
+ };
48
+ lockScroll: {
49
+ readonly type: PropType<boolean>;
50
+ readonly required: false;
51
+ readonly validator: ((val: unknown) => boolean) | undefined;
52
+ __epPropKey: true;
53
+ } & {
54
+ readonly default: true;
55
+ };
56
+ modal: {
57
+ readonly type: PropType<boolean>;
58
+ readonly required: false;
59
+ readonly validator: ((val: unknown) => boolean) | undefined;
60
+ __epPropKey: true;
61
+ } & {
62
+ readonly default: true;
63
+ };
64
+ modalPenetrable: BooleanConstructor;
65
+ openDelay: {
66
+ readonly type: PropType<number>;
67
+ readonly required: false;
68
+ readonly validator: ((val: unknown) => boolean) | undefined;
69
+ __epPropKey: true;
70
+ } & {
71
+ readonly default: 0;
72
+ };
73
+ closeDelay: {
74
+ readonly type: PropType<number>;
75
+ readonly required: false;
76
+ readonly validator: ((val: unknown) => boolean) | undefined;
77
+ __epPropKey: true;
78
+ } & {
79
+ readonly default: 0;
80
+ };
81
+ top: {
82
+ readonly type: PropType<string>;
83
+ readonly required: false;
84
+ readonly validator: ((val: unknown) => boolean) | undefined;
85
+ __epPropKey: true;
86
+ };
87
+ modelValue: BooleanConstructor;
88
+ modalClass: StringConstructor;
89
+ headerClass: StringConstructor;
90
+ bodyClass: StringConstructor;
91
+ footerClass: StringConstructor;
92
+ width: {
93
+ readonly type: PropType<string | number>;
94
+ readonly required: false;
95
+ readonly validator: ((val: unknown) => boolean) | undefined;
96
+ __epPropKey: true;
97
+ };
98
+ zIndex: {
99
+ readonly type: PropType<number>;
100
+ readonly required: false;
101
+ readonly validator: ((val: unknown) => boolean) | undefined;
102
+ __epPropKey: true;
103
+ };
104
+ trapFocus: BooleanConstructor;
105
+ headerAriaLevel: {
106
+ readonly type: PropType<string>;
107
+ readonly required: false;
108
+ readonly validator: ((val: unknown) => boolean) | undefined;
109
+ __epPropKey: true;
110
+ } & {
111
+ readonly default: "2";
112
+ };
113
+ transition: {
114
+ readonly type: PropType<import("element-plus").DialogTransition>;
115
+ readonly required: false;
116
+ readonly validator: ((val: unknown) => boolean) | undefined;
117
+ __epPropKey: true;
118
+ } & {
119
+ readonly default: undefined;
120
+ };
121
+ center: BooleanConstructor;
122
+ alignCenter: {
123
+ readonly type: PropType<boolean>;
124
+ readonly required: false;
125
+ readonly validator: ((val: unknown) => boolean) | undefined;
126
+ __epPropKey: true;
127
+ } & {
128
+ readonly default: undefined;
129
+ };
130
+ closeIcon: {
131
+ readonly type: PropType<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
132
+ readonly required: false;
133
+ readonly validator: ((val: unknown) => boolean) | undefined;
134
+ __epPropKey: true;
135
+ };
136
+ draggable: {
137
+ readonly type: PropType<boolean>;
138
+ readonly required: false;
139
+ readonly validator: ((val: unknown) => boolean) | undefined;
140
+ __epPropKey: true;
141
+ } & {
142
+ readonly default: undefined;
143
+ };
144
+ overflow: {
145
+ readonly type: PropType<boolean>;
146
+ readonly required: false;
147
+ readonly validator: ((val: unknown) => boolean) | undefined;
148
+ __epPropKey: true;
149
+ } & {
150
+ readonly default: undefined;
151
+ };
152
+ fullscreen: BooleanConstructor;
153
+ showClose: {
154
+ readonly type: PropType<boolean>;
155
+ readonly required: false;
156
+ readonly validator: ((val: unknown) => boolean) | undefined;
157
+ __epPropKey: true;
158
+ } & {
159
+ readonly default: true;
160
+ };
161
+ title: {
162
+ readonly type: PropType<string>;
163
+ readonly required: false;
164
+ readonly validator: ((val: unknown) => boolean) | undefined;
165
+ __epPropKey: true;
166
+ } & {
167
+ readonly default: "";
168
+ };
169
+ ariaLevel: {
170
+ readonly type: PropType<string>;
171
+ readonly required: false;
172
+ readonly validator: ((val: unknown) => boolean) | undefined;
173
+ __epPropKey: true;
174
+ } & {
175
+ readonly default: "2";
176
+ };
177
+ };
178
+ export declare type KgModal02Props = Partial<ExtractPropTypes<ReturnType<typeof getProps>> & DialogPropsPublic>;
179
+ /**
180
+ * 弹窗.
181
+ */
182
+ export declare const KgModal02: import("vue").DefineComponent<{
183
+ kgCancelButtonProps: {
184
+ default: () => {};
185
+ type: PropType<ButtonPropsPublic>;
186
+ };
187
+ kgOkButtonProps: {
188
+ default: () => {};
189
+ type: PropType<ButtonPropsPublic>;
190
+ };
191
+ onCancel: PropType<() => void>;
192
+ onOk: PropType<() => void>;
193
+ 'onUpdate:modelValue': PropType<(value: boolean) => void>;
194
+ appendToBody: BooleanConstructor;
195
+ appendTo: {
196
+ readonly type: PropType<string | HTMLElement>;
197
+ readonly required: false;
198
+ readonly validator: ((val: unknown) => boolean) | undefined;
199
+ __epPropKey: true;
200
+ } & {
201
+ readonly default: "body";
202
+ };
203
+ beforeClose: {
204
+ readonly type: PropType<import("element-plus").DialogBeforeCloseFn>;
205
+ readonly required: false;
206
+ readonly validator: ((val: unknown) => boolean) | undefined;
207
+ __epPropKey: true;
208
+ };
209
+ destroyOnClose: BooleanConstructor;
210
+ closeOnClickModal: {
211
+ readonly type: PropType<boolean>;
212
+ readonly required: false;
213
+ readonly validator: ((val: unknown) => boolean) | undefined;
214
+ __epPropKey: true;
215
+ } & {
216
+ readonly default: true;
217
+ };
218
+ closeOnPressEscape: {
219
+ readonly type: PropType<boolean>;
220
+ readonly required: false;
221
+ readonly validator: ((val: unknown) => boolean) | undefined;
222
+ __epPropKey: true;
223
+ } & {
224
+ readonly default: true;
225
+ };
226
+ lockScroll: {
227
+ readonly type: PropType<boolean>;
228
+ readonly required: false;
229
+ readonly validator: ((val: unknown) => boolean) | undefined;
230
+ __epPropKey: true;
231
+ } & {
232
+ readonly default: true;
233
+ };
234
+ modal: {
235
+ readonly type: PropType<boolean>;
236
+ readonly required: false;
237
+ readonly validator: ((val: unknown) => boolean) | undefined;
238
+ __epPropKey: true;
239
+ } & {
240
+ readonly default: true;
241
+ };
242
+ modalPenetrable: BooleanConstructor;
243
+ openDelay: {
244
+ readonly type: PropType<number>;
245
+ readonly required: false;
246
+ readonly validator: ((val: unknown) => boolean) | undefined;
247
+ __epPropKey: true;
248
+ } & {
249
+ readonly default: 0;
250
+ };
251
+ closeDelay: {
252
+ readonly type: PropType<number>;
253
+ readonly required: false;
254
+ readonly validator: ((val: unknown) => boolean) | undefined;
255
+ __epPropKey: true;
256
+ } & {
257
+ readonly default: 0;
258
+ };
259
+ top: {
260
+ readonly type: PropType<string>;
261
+ readonly required: false;
262
+ readonly validator: ((val: unknown) => boolean) | undefined;
263
+ __epPropKey: true;
264
+ };
265
+ modelValue: BooleanConstructor;
266
+ modalClass: StringConstructor;
267
+ headerClass: StringConstructor;
268
+ bodyClass: StringConstructor;
269
+ footerClass: StringConstructor;
270
+ width: {
271
+ readonly type: PropType<string | number>;
272
+ readonly required: false;
273
+ readonly validator: ((val: unknown) => boolean) | undefined;
274
+ __epPropKey: true;
275
+ };
276
+ zIndex: {
277
+ readonly type: PropType<number>;
278
+ readonly required: false;
279
+ readonly validator: ((val: unknown) => boolean) | undefined;
280
+ __epPropKey: true;
281
+ };
282
+ trapFocus: BooleanConstructor;
283
+ headerAriaLevel: {
284
+ readonly type: PropType<string>;
285
+ readonly required: false;
286
+ readonly validator: ((val: unknown) => boolean) | undefined;
287
+ __epPropKey: true;
288
+ } & {
289
+ readonly default: "2";
290
+ };
291
+ transition: {
292
+ readonly type: PropType<import("element-plus").DialogTransition>;
293
+ readonly required: false;
294
+ readonly validator: ((val: unknown) => boolean) | undefined;
295
+ __epPropKey: true;
296
+ } & {
297
+ readonly default: undefined;
298
+ };
299
+ center: BooleanConstructor;
300
+ alignCenter: {
301
+ readonly type: PropType<boolean>;
302
+ readonly required: false;
303
+ readonly validator: ((val: unknown) => boolean) | undefined;
304
+ __epPropKey: true;
305
+ } & {
306
+ readonly default: undefined;
307
+ };
308
+ closeIcon: {
309
+ readonly type: PropType<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
310
+ readonly required: false;
311
+ readonly validator: ((val: unknown) => boolean) | undefined;
312
+ __epPropKey: true;
313
+ };
314
+ draggable: {
315
+ readonly type: PropType<boolean>;
316
+ readonly required: false;
317
+ readonly validator: ((val: unknown) => boolean) | undefined;
318
+ __epPropKey: true;
319
+ } & {
320
+ readonly default: undefined;
321
+ };
322
+ overflow: {
323
+ readonly type: PropType<boolean>;
324
+ readonly required: false;
325
+ readonly validator: ((val: unknown) => boolean) | undefined;
326
+ __epPropKey: true;
327
+ } & {
328
+ readonly default: undefined;
329
+ };
330
+ fullscreen: BooleanConstructor;
331
+ showClose: {
332
+ readonly type: PropType<boolean>;
333
+ readonly required: false;
334
+ readonly validator: ((val: unknown) => boolean) | undefined;
335
+ __epPropKey: true;
336
+ } & {
337
+ readonly default: true;
338
+ };
339
+ title: {
340
+ readonly type: PropType<string>;
341
+ readonly required: false;
342
+ readonly validator: ((val: unknown) => boolean) | undefined;
343
+ __epPropKey: true;
344
+ } & {
345
+ readonly default: "";
346
+ };
347
+ ariaLevel: {
348
+ readonly type: PropType<string>;
349
+ readonly required: false;
350
+ readonly validator: ((val: unknown) => boolean) | undefined;
351
+ __epPropKey: true;
352
+ } & {
353
+ readonly default: "2";
354
+ };
355
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
356
+ kgCancelButtonProps: {
357
+ default: () => {};
358
+ type: PropType<ButtonPropsPublic>;
359
+ };
360
+ kgOkButtonProps: {
361
+ default: () => {};
362
+ type: PropType<ButtonPropsPublic>;
363
+ };
364
+ onCancel: PropType<() => void>;
365
+ onOk: PropType<() => void>;
366
+ 'onUpdate:modelValue': PropType<(value: boolean) => void>;
367
+ appendToBody: BooleanConstructor;
368
+ appendTo: {
369
+ readonly type: PropType<string | HTMLElement>;
370
+ readonly required: false;
371
+ readonly validator: ((val: unknown) => boolean) | undefined;
372
+ __epPropKey: true;
373
+ } & {
374
+ readonly default: "body";
375
+ };
376
+ beforeClose: {
377
+ readonly type: PropType<import("element-plus").DialogBeforeCloseFn>;
378
+ readonly required: false;
379
+ readonly validator: ((val: unknown) => boolean) | undefined;
380
+ __epPropKey: true;
381
+ };
382
+ destroyOnClose: BooleanConstructor;
383
+ closeOnClickModal: {
384
+ readonly type: PropType<boolean>;
385
+ readonly required: false;
386
+ readonly validator: ((val: unknown) => boolean) | undefined;
387
+ __epPropKey: true;
388
+ } & {
389
+ readonly default: true;
390
+ };
391
+ closeOnPressEscape: {
392
+ readonly type: PropType<boolean>;
393
+ readonly required: false;
394
+ readonly validator: ((val: unknown) => boolean) | undefined;
395
+ __epPropKey: true;
396
+ } & {
397
+ readonly default: true;
398
+ };
399
+ lockScroll: {
400
+ readonly type: PropType<boolean>;
401
+ readonly required: false;
402
+ readonly validator: ((val: unknown) => boolean) | undefined;
403
+ __epPropKey: true;
404
+ } & {
405
+ readonly default: true;
406
+ };
407
+ modal: {
408
+ readonly type: PropType<boolean>;
409
+ readonly required: false;
410
+ readonly validator: ((val: unknown) => boolean) | undefined;
411
+ __epPropKey: true;
412
+ } & {
413
+ readonly default: true;
414
+ };
415
+ modalPenetrable: BooleanConstructor;
416
+ openDelay: {
417
+ readonly type: PropType<number>;
418
+ readonly required: false;
419
+ readonly validator: ((val: unknown) => boolean) | undefined;
420
+ __epPropKey: true;
421
+ } & {
422
+ readonly default: 0;
423
+ };
424
+ closeDelay: {
425
+ readonly type: PropType<number>;
426
+ readonly required: false;
427
+ readonly validator: ((val: unknown) => boolean) | undefined;
428
+ __epPropKey: true;
429
+ } & {
430
+ readonly default: 0;
431
+ };
432
+ top: {
433
+ readonly type: PropType<string>;
434
+ readonly required: false;
435
+ readonly validator: ((val: unknown) => boolean) | undefined;
436
+ __epPropKey: true;
437
+ };
438
+ modelValue: BooleanConstructor;
439
+ modalClass: StringConstructor;
440
+ headerClass: StringConstructor;
441
+ bodyClass: StringConstructor;
442
+ footerClass: StringConstructor;
443
+ width: {
444
+ readonly type: PropType<string | number>;
445
+ readonly required: false;
446
+ readonly validator: ((val: unknown) => boolean) | undefined;
447
+ __epPropKey: true;
448
+ };
449
+ zIndex: {
450
+ readonly type: PropType<number>;
451
+ readonly required: false;
452
+ readonly validator: ((val: unknown) => boolean) | undefined;
453
+ __epPropKey: true;
454
+ };
455
+ trapFocus: BooleanConstructor;
456
+ headerAriaLevel: {
457
+ readonly type: PropType<string>;
458
+ readonly required: false;
459
+ readonly validator: ((val: unknown) => boolean) | undefined;
460
+ __epPropKey: true;
461
+ } & {
462
+ readonly default: "2";
463
+ };
464
+ transition: {
465
+ readonly type: PropType<import("element-plus").DialogTransition>;
466
+ readonly required: false;
467
+ readonly validator: ((val: unknown) => boolean) | undefined;
468
+ __epPropKey: true;
469
+ } & {
470
+ readonly default: undefined;
471
+ };
472
+ center: BooleanConstructor;
473
+ alignCenter: {
474
+ readonly type: PropType<boolean>;
475
+ readonly required: false;
476
+ readonly validator: ((val: unknown) => boolean) | undefined;
477
+ __epPropKey: true;
478
+ } & {
479
+ readonly default: undefined;
480
+ };
481
+ closeIcon: {
482
+ readonly type: PropType<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
483
+ readonly required: false;
484
+ readonly validator: ((val: unknown) => boolean) | undefined;
485
+ __epPropKey: true;
486
+ };
487
+ draggable: {
488
+ readonly type: PropType<boolean>;
489
+ readonly required: false;
490
+ readonly validator: ((val: unknown) => boolean) | undefined;
491
+ __epPropKey: true;
492
+ } & {
493
+ readonly default: undefined;
494
+ };
495
+ overflow: {
496
+ readonly type: PropType<boolean>;
497
+ readonly required: false;
498
+ readonly validator: ((val: unknown) => boolean) | undefined;
499
+ __epPropKey: true;
500
+ } & {
501
+ readonly default: undefined;
502
+ };
503
+ fullscreen: BooleanConstructor;
504
+ showClose: {
505
+ readonly type: PropType<boolean>;
506
+ readonly required: false;
507
+ readonly validator: ((val: unknown) => boolean) | undefined;
508
+ __epPropKey: true;
509
+ } & {
510
+ readonly default: true;
511
+ };
512
+ title: {
513
+ readonly type: PropType<string>;
514
+ readonly required: false;
515
+ readonly validator: ((val: unknown) => boolean) | undefined;
516
+ __epPropKey: true;
517
+ } & {
518
+ readonly default: "";
519
+ };
520
+ ariaLevel: {
521
+ readonly type: PropType<string>;
522
+ readonly required: false;
523
+ readonly validator: ((val: unknown) => boolean) | undefined;
524
+ __epPropKey: true;
525
+ } & {
526
+ readonly default: "2";
527
+ };
528
+ }>>, {
529
+ title: string;
530
+ overflow: boolean;
531
+ transition: import("element-plus").DialogTransition;
532
+ center: boolean;
533
+ destroyOnClose: boolean;
534
+ modal: boolean;
535
+ draggable: boolean;
536
+ kgCancelButtonProps: {
537
+ readonly size?: ("" | "default" | "small" | "large") | undefined;
538
+ readonly icon?: (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | undefined;
539
+ readonly color?: string | undefined;
540
+ readonly type?: ("" | "success" | "default" | "text" | "danger" | "primary" | "warning" | "info") | undefined;
541
+ readonly link?: boolean | undefined;
542
+ readonly circle?: boolean | undefined;
543
+ readonly text?: boolean | undefined;
544
+ readonly round?: boolean | undefined;
545
+ readonly dark?: boolean | undefined;
546
+ readonly disabled?: boolean | undefined;
547
+ readonly nativeType?: ("button" | "reset" | "submit") | undefined;
548
+ readonly loading?: boolean | undefined;
549
+ readonly loadingIcon?: (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | undefined;
550
+ readonly plain?: boolean | undefined;
551
+ readonly bg?: boolean | undefined;
552
+ readonly autofocus?: boolean | undefined;
553
+ readonly autoInsertSpace?: boolean | undefined;
554
+ readonly tag?: (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | undefined;
555
+ };
556
+ kgOkButtonProps: {
557
+ readonly size?: ("" | "default" | "small" | "large") | undefined;
558
+ readonly icon?: (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | undefined;
559
+ readonly color?: string | undefined;
560
+ readonly type?: ("" | "success" | "default" | "text" | "danger" | "primary" | "warning" | "info") | undefined;
561
+ readonly link?: boolean | undefined;
562
+ readonly circle?: boolean | undefined;
563
+ readonly text?: boolean | undefined;
564
+ readonly round?: boolean | undefined;
565
+ readonly dark?: boolean | undefined;
566
+ readonly disabled?: boolean | undefined;
567
+ readonly nativeType?: ("button" | "reset" | "submit") | undefined;
568
+ readonly loading?: boolean | undefined;
569
+ readonly loadingIcon?: (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | undefined;
570
+ readonly plain?: boolean | undefined;
571
+ readonly bg?: boolean | undefined;
572
+ readonly autofocus?: boolean | undefined;
573
+ readonly autoInsertSpace?: boolean | undefined;
574
+ readonly tag?: (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | undefined;
575
+ };
576
+ appendToBody: boolean;
577
+ appendTo: string | HTMLElement;
578
+ closeOnClickModal: boolean;
579
+ closeOnPressEscape: boolean;
580
+ lockScroll: boolean;
581
+ modalPenetrable: boolean;
582
+ openDelay: number;
583
+ closeDelay: number;
584
+ modelValue: boolean;
585
+ trapFocus: boolean;
586
+ headerAriaLevel: string;
587
+ alignCenter: boolean;
588
+ fullscreen: boolean;
589
+ showClose: boolean;
590
+ ariaLevel: string;
591
+ }>;
@@ -0,0 +1 @@
1
+ export declare const sfsd: {};
@@ -0,0 +1 @@
1
+ export { KgModal02, type KgModal02Props } from './KgModal02';
@@ -0,0 +1,36 @@
1
+ import { ExtractPropTypes, PropType } from 'vue';
2
+ export declare const getProps: () => {
3
+ /**
4
+ * 是否打开弹窗.
5
+ */
6
+ kgIsVisible: {
7
+ type: PropType<boolean>;
8
+ default: boolean;
9
+ };
10
+ 'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
11
+ };
12
+ export declare type KgSimulatorMenuSceneCreateCircularConveyorProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
13
+ /**
14
+ * 模拟器--菜单--场景--新建--环线输送线.
15
+ */
16
+ export declare const KgSimulatorMenuSceneCreateCircularConveyor: import("vue").DefineComponent<{
17
+ /**
18
+ * 是否打开弹窗.
19
+ */
20
+ kgIsVisible: {
21
+ type: PropType<boolean>;
22
+ default: boolean;
23
+ };
24
+ 'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
25
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
26
+ /**
27
+ * 是否打开弹窗.
28
+ */
29
+ kgIsVisible: {
30
+ type: PropType<boolean>;
31
+ default: boolean;
32
+ };
33
+ 'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
34
+ }>>, {
35
+ kgIsVisible: boolean;
36
+ }>;
@@ -0,0 +1,36 @@
1
+ import { ExtractPropTypes, PropType } from 'vue';
2
+ export declare const getProps: () => {
3
+ /**
4
+ * 是否打开弹窗.
5
+ */
6
+ kgIsVisible: {
7
+ type: PropType<boolean>;
8
+ default: boolean;
9
+ };
10
+ 'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
11
+ };
12
+ export declare type KgSimulatorMenuSceneOpenCircularConveyorProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
13
+ /**
14
+ * 模拟器--菜单--场景--打开--环线输送线.
15
+ */
16
+ export declare const KgSimulatorMenuSceneOpenCircularConveyor: import("vue").DefineComponent<{
17
+ /**
18
+ * 是否打开弹窗.
19
+ */
20
+ kgIsVisible: {
21
+ type: PropType<boolean>;
22
+ default: boolean;
23
+ };
24
+ 'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
25
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
26
+ /**
27
+ * 是否打开弹窗.
28
+ */
29
+ kgIsVisible: {
30
+ type: PropType<boolean>;
31
+ default: boolean;
32
+ };
33
+ 'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
34
+ }>>, {
35
+ kgIsVisible: boolean;
36
+ }>;
@@ -0,0 +1,4 @@
1
+ /**
2
+ * 模拟器--面板--属性.
3
+ */
4
+ export declare const KgSimulatorPanelProperty: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
@@ -0,0 +1,4 @@
1
+ /**
2
+ * 模拟器--面板--场景.
3
+ */
4
+ export declare const KgSimulatorPanelScene: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;