@kengic/vue 0.30.1-beta.20 → 0.30.1-beta.22

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 (44) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/kengic-vue.js +56381 -54664
  3. package/dist/palette-swatch-variant.f7258843.mjs +8 -0
  4. package/dist/src/component/KgCanvas/KgCanvas.event.d.ts +15 -3
  5. package/dist/src/component/KgCanvas/KgCanvas.hooks.d.ts +7 -1
  6. package/dist/src/component/KgLayoutHeader/{components/KgLayoutHeaderLocale.d.ts → KgLayoutHeader.Locale.d.ts} +1 -1
  7. package/dist/src/component/KgLayoutHeader/index.d.ts +1 -1
  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.Canvas.d.ts +11 -0
  14. package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Open.CircularConveyor.d.ts +36 -0
  15. package/dist/src/component/KgSimulator/KgSimulator.Prefab.d.ts +27 -0
  16. package/dist/src/component/KgSimulator/KgSimulator.d.ts +1 -1
  17. package/dist/src/component/KgSimulator/KgSimulator.icons.d.ts +4 -0
  18. package/dist/src/component/KgSimulator/KgSimulator.model.d.ts +355 -0
  19. package/dist/src/component/KgSimulator/KgSimulator.service.d.ts +3 -29
  20. package/dist/src/component/KgSimulator/KgSimulator.store.d.ts +45 -3
  21. package/dist/src/component/KgTable/{components/KgTable.BodyCell.d.ts → KgTable.BodyCell.d.ts} +1 -1
  22. package/dist/src/component/KgTable/{components/setting/KgTable.Setting.service.d.ts → KgTable.Setting.service.d.ts} +1 -1
  23. package/dist/src/component/KgTable02/KgTable02.BodyCell.d.ts +32 -3
  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 +1 -0
  32. package/dist/src/config/index.d.ts +9 -3
  33. package/dist/src/const/const.model.d.ts +6 -2
  34. package/dist/src/const/form-id.const.d.ts +8 -0
  35. package/dist/src/i18n/i18n.setup.d.ts +1 -1
  36. package/dist/src/page/KgPageCircularShuttleMonitor/components/KgCircularShuttleMonitor.store.d.ts +1 -1
  37. package/dist/src/service/http-client.d.ts +5 -1
  38. package/dist/src/util/tsx.helper.d.ts +7 -7
  39. package/package.json +2 -2
  40. package/dist/src/component/KgModal/hooks/useDragToMove.d.ts +0 -12
  41. /package/dist/src/component/KgTable/{components/KgTable.HeadCell.d.ts → KgTable.HeadCell.d.ts} +0 -0
  42. /package/dist/src/component/KgTable/{components/KgTable.Info.d.ts → KgTable.Info.d.ts} +0 -0
  43. /package/dist/src/component/KgTable/{components/setting/KgTable.Setting.VarGridMaster.SaveAs.d.ts → KgTable.Setting.VarGridMaster.SaveAs.d.ts} +0 -0
  44. /package/dist/src/component/KgTable/{components/setting/KgTable.Setting.d.ts → KgTable.Setting.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,11 @@
1
+ import { ExtractPropTypes } from 'vue';
2
+ import './KgSimulator.css';
3
+ import './KgSimulator.icons';
4
+ export declare const getProps: () => any;
5
+ export declare type KgSimulatorCanvasProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
6
+ /**
7
+ * 模拟器--画布.
8
+ */
9
+ export declare const KgSimulatorCanvas: import("vue").DefineComponent<any, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
10
+ [x: string]: any;
11
+ }>;
@@ -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
+ }>;
@@ -23,6 +23,15 @@ export declare const getProps: () => {
23
23
  type: PropType<string>;
24
24
  required: boolean;
25
25
  };
26
+ /**
27
+ * 预制组件类型.
28
+ *
29
+ * @see NODE_KEY
30
+ */
31
+ kgType: {
32
+ type: PropType<string>;
33
+ required: boolean;
34
+ };
26
35
  };
27
36
  export declare type KgSimulatorPrefabProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
28
37
  /**
@@ -52,6 +61,15 @@ export declare const KgSimulatorPrefab: import("vue").DefineComponent<{
52
61
  type: PropType<string>;
53
62
  required: boolean;
54
63
  };
64
+ /**
65
+ * 预制组件类型.
66
+ *
67
+ * @see NODE_KEY
68
+ */
69
+ kgType: {
70
+ type: PropType<string>;
71
+ required: boolean;
72
+ };
55
73
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
56
74
  /**
57
75
  * 图标.
@@ -76,6 +94,15 @@ export declare const KgSimulatorPrefab: import("vue").DefineComponent<{
76
94
  type: PropType<string>;
77
95
  required: boolean;
78
96
  };
97
+ /**
98
+ * 预制组件类型.
99
+ *
100
+ * @see NODE_KEY
101
+ */
102
+ kgType: {
103
+ type: PropType<string>;
104
+ required: boolean;
105
+ };
79
106
  }>>, {
80
107
  kgIconWidth: number;
81
108
  }>;
@@ -12,7 +12,7 @@ export declare const getProps: () => {
12
12
  };
13
13
  export declare type KgSimulatorToolbarProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
14
14
  /**
15
- * 模拟器, 仿真模拟器, 环形输送机模拟器, 环线穿梭车模拟器.
15
+ * 模拟器, 仿真模拟器, 环形输送线模拟器, 环形穿梭车模拟器.
16
16
  */
17
17
  export declare const KgSimulator: import("vue").DefineComponent<{
18
18
  /**