3h1-ui 3.0.0-next.231 → 3.0.0-next.232
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/es/index.js +3 -1
- package/es/ui/src/Modal/index.d.ts +249 -168
- package/es/ui/src/Modal/src/BasicModal.vue.d.ts +117 -77
- package/es/ui/src/Modal/src/components/Modal.d.ts +100 -60
- package/es/ui/src/Modal/src/components/ModalFooter.vue.d.ts +103 -63
- package/es/ui/src/Modal/src/props.d.ts +62 -48
- package/es/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +248 -168
- package/es/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +248 -168
- package/lib/index.js +3 -1
- package/lib/ui/src/Modal/index.d.ts +249 -168
- package/lib/ui/src/Modal/src/BasicModal.vue.d.ts +117 -77
- package/lib/ui/src/Modal/src/components/Modal.d.ts +100 -60
- package/lib/ui/src/Modal/src/components/ModalFooter.vue.d.ts +103 -63
- package/lib/ui/src/Modal/src/props.d.ts +62 -48
- package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +248 -168
- package/lib/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +248 -168
- package/package.json +3 -3
|
@@ -273,36 +273,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
273
273
|
}, {}>;
|
|
274
274
|
readonly BasicModal: {
|
|
275
275
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
276
|
-
visible: {
|
|
277
|
-
type: BooleanConstructor;
|
|
278
|
-
};
|
|
279
|
-
scrollTop: {
|
|
280
|
-
type: BooleanConstructor;
|
|
281
|
-
default: boolean;
|
|
282
|
-
};
|
|
283
|
-
height: {
|
|
284
|
-
type: NumberConstructor;
|
|
285
|
-
};
|
|
286
|
-
minHeight: {
|
|
287
|
-
type: NumberConstructor;
|
|
288
|
-
};
|
|
289
|
-
draggable: {
|
|
290
|
-
type: BooleanConstructor;
|
|
291
|
-
default: boolean;
|
|
292
|
-
};
|
|
293
|
-
centered: {
|
|
294
|
-
type: BooleanConstructor;
|
|
295
|
-
};
|
|
296
|
-
cancelText: {
|
|
297
|
-
type: StringConstructor;
|
|
298
|
-
default: string;
|
|
299
|
-
};
|
|
300
|
-
okText: {
|
|
301
|
-
type: StringConstructor;
|
|
302
|
-
default: string;
|
|
303
|
-
};
|
|
304
|
-
closeFunc: import("vue").PropType<() => Promise<boolean>>;
|
|
305
|
-
} & {
|
|
306
276
|
defaultFullscreen: {
|
|
307
277
|
type: BooleanConstructor;
|
|
308
278
|
};
|
|
@@ -314,7 +284,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
314
284
|
type: NumberConstructor;
|
|
315
285
|
default: number;
|
|
316
286
|
};
|
|
317
|
-
helpMessage:
|
|
287
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
318
288
|
useWrapper: {
|
|
319
289
|
type: BooleanConstructor;
|
|
320
290
|
default: boolean;
|
|
@@ -333,22 +303,38 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
333
303
|
type: BooleanConstructor;
|
|
334
304
|
default: boolean;
|
|
335
305
|
};
|
|
336
|
-
wrapperProps: import("
|
|
337
|
-
afterClose:
|
|
338
|
-
|
|
306
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>))[];
|
|
307
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
308
|
+
(): () => Promise<VueNode>;
|
|
309
|
+
new (): any;
|
|
310
|
+
readonly prototype: any;
|
|
311
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
312
|
+
(): () => Promise<VueNode>;
|
|
313
|
+
new (): any;
|
|
314
|
+
readonly prototype: any;
|
|
315
|
+
})[];
|
|
316
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
339
317
|
closable: {
|
|
340
318
|
type: BooleanConstructor;
|
|
341
319
|
default: boolean;
|
|
342
320
|
};
|
|
343
|
-
closeIcon:
|
|
321
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
344
322
|
confirmLoading: {
|
|
345
323
|
type: BooleanConstructor;
|
|
346
324
|
};
|
|
347
325
|
destroyOnClose: {
|
|
348
326
|
type: BooleanConstructor;
|
|
349
327
|
};
|
|
350
|
-
footer:
|
|
351
|
-
getContainer:
|
|
328
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
329
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
330
|
+
(): () => any;
|
|
331
|
+
new (): any;
|
|
332
|
+
readonly prototype: any;
|
|
333
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
334
|
+
(): () => any;
|
|
335
|
+
new (): any;
|
|
336
|
+
readonly prototype: any;
|
|
337
|
+
})[];
|
|
352
338
|
mask: {
|
|
353
339
|
type: BooleanConstructor;
|
|
354
340
|
default: boolean;
|
|
@@ -361,16 +347,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
361
347
|
type: BooleanConstructor;
|
|
362
348
|
default: boolean;
|
|
363
349
|
};
|
|
364
|
-
maskStyle: import("vue").
|
|
350
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
365
351
|
okType: {
|
|
366
352
|
type: StringConstructor;
|
|
367
353
|
default: string;
|
|
368
354
|
};
|
|
369
355
|
okButtonProps: {
|
|
370
|
-
type:
|
|
356
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
371
357
|
};
|
|
372
358
|
cancelButtonProps: {
|
|
373
|
-
type:
|
|
359
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
374
360
|
};
|
|
375
361
|
title: {
|
|
376
362
|
type: StringConstructor;
|
|
@@ -378,7 +364,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
378
364
|
visible: {
|
|
379
365
|
type: BooleanConstructor;
|
|
380
366
|
};
|
|
381
|
-
width:
|
|
367
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
382
368
|
wrapClassName: {
|
|
383
369
|
type: StringConstructor;
|
|
384
370
|
};
|
|
@@ -386,37 +372,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
386
372
|
type: NumberConstructor;
|
|
387
373
|
};
|
|
388
374
|
size: {
|
|
389
|
-
type:
|
|
375
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
390
376
|
default: string;
|
|
391
377
|
};
|
|
392
|
-
}>> & {
|
|
393
|
-
"onUpdate:visible"?: (...args: any[]) => any;
|
|
394
|
-
onCancel?: (...args: any[]) => any;
|
|
395
|
-
"onHeight-change"?: (...args: any[]) => any;
|
|
396
|
-
onOk?: (...args: any[]) => any;
|
|
397
|
-
"onVisible-change"?: (...args: any[]) => any;
|
|
398
|
-
onRegister?: (...args: any[]) => any;
|
|
399
|
-
}, {
|
|
400
|
-
prefixCls: string;
|
|
401
|
-
handleCancel: (e: Event) => Promise<void>;
|
|
402
|
-
getBindValue: import("vue").ComputedRef<Recordable<any>>;
|
|
403
|
-
getProps: import("vue").ComputedRef<Recordable<any>>;
|
|
404
|
-
handleFullScreen: (e: Event) => void;
|
|
405
|
-
fullScreenRef: import("vue").Ref<boolean>;
|
|
406
|
-
getMergeProps: import("vue").ComputedRef<Recordable<any>>;
|
|
407
|
-
handleOk: (e: Event) => void;
|
|
408
|
-
visibleRef: import("vue").Ref<boolean>;
|
|
409
|
-
omitBindValue: Object;
|
|
410
|
-
omitSlotKeys: import("vue").ComputedRef<string[]>;
|
|
411
|
-
modalWrapperRef: import("vue").Ref<any>;
|
|
412
|
-
handleExtHeight: (height: number) => void;
|
|
413
|
-
handleHeightChange: (height: string) => void;
|
|
414
|
-
handleTitleDbClick: (e: Event) => void;
|
|
415
|
-
getWrapperHeight: import("vue").ComputedRef<any>;
|
|
416
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "height-change" | "ok" | "visible-change" | "register" | "update:visible")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
417
|
-
visible: {
|
|
418
|
-
type: BooleanConstructor;
|
|
419
|
-
};
|
|
420
378
|
scrollTop: {
|
|
421
379
|
type: BooleanConstructor;
|
|
422
380
|
default: boolean;
|
|
@@ -442,8 +400,40 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
442
400
|
type: StringConstructor;
|
|
443
401
|
default: string;
|
|
444
402
|
};
|
|
445
|
-
closeFunc:
|
|
446
|
-
|
|
403
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
404
|
+
(): () => Promise<boolean>;
|
|
405
|
+
new (): any;
|
|
406
|
+
readonly prototype: any;
|
|
407
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
408
|
+
(): () => Promise<boolean>;
|
|
409
|
+
new (): any;
|
|
410
|
+
readonly prototype: any;
|
|
411
|
+
})[];
|
|
412
|
+
}>> & {
|
|
413
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
414
|
+
onCancel?: (...args: any[]) => any;
|
|
415
|
+
"onHeight-change"?: (...args: any[]) => any;
|
|
416
|
+
onOk?: (...args: any[]) => any;
|
|
417
|
+
"onVisible-change"?: (...args: any[]) => any;
|
|
418
|
+
onRegister?: (...args: any[]) => any;
|
|
419
|
+
}, {
|
|
420
|
+
prefixCls: string;
|
|
421
|
+
handleCancel: (e: Event) => Promise<void>;
|
|
422
|
+
getBindValue: import("vue").ComputedRef<Recordable<any>>;
|
|
423
|
+
getProps: import("vue").ComputedRef<Recordable<any>>;
|
|
424
|
+
handleFullScreen: (e: Event) => void;
|
|
425
|
+
fullScreenRef: import("vue").Ref<boolean>;
|
|
426
|
+
getMergeProps: import("vue").ComputedRef<Recordable<any>>;
|
|
427
|
+
handleOk: (e: Event) => void;
|
|
428
|
+
visibleRef: import("vue").Ref<boolean>;
|
|
429
|
+
omitBindValue: Object;
|
|
430
|
+
omitSlotKeys: import("vue").ComputedRef<string[]>;
|
|
431
|
+
modalWrapperRef: import("vue").Ref<any>;
|
|
432
|
+
handleExtHeight: (height: number) => void;
|
|
433
|
+
handleHeightChange: (height: string) => void;
|
|
434
|
+
handleTitleDbClick: (e: Event) => void;
|
|
435
|
+
getWrapperHeight: import("vue").ComputedRef<any>;
|
|
436
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "height-change" | "ok" | "visible-change" | "register" | "update:visible")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
447
437
|
defaultFullscreen: {
|
|
448
438
|
type: BooleanConstructor;
|
|
449
439
|
};
|
|
@@ -455,7 +445,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
455
445
|
type: NumberConstructor;
|
|
456
446
|
default: number;
|
|
457
447
|
};
|
|
458
|
-
helpMessage:
|
|
448
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
459
449
|
useWrapper: {
|
|
460
450
|
type: BooleanConstructor;
|
|
461
451
|
default: boolean;
|
|
@@ -474,22 +464,38 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
474
464
|
type: BooleanConstructor;
|
|
475
465
|
default: boolean;
|
|
476
466
|
};
|
|
477
|
-
wrapperProps: import("
|
|
478
|
-
afterClose:
|
|
479
|
-
|
|
467
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>))[];
|
|
468
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
469
|
+
(): () => Promise<VueNode>;
|
|
470
|
+
new (): any;
|
|
471
|
+
readonly prototype: any;
|
|
472
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
473
|
+
(): () => Promise<VueNode>;
|
|
474
|
+
new (): any;
|
|
475
|
+
readonly prototype: any;
|
|
476
|
+
})[];
|
|
477
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
480
478
|
closable: {
|
|
481
479
|
type: BooleanConstructor;
|
|
482
480
|
default: boolean;
|
|
483
481
|
};
|
|
484
|
-
closeIcon:
|
|
482
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
485
483
|
confirmLoading: {
|
|
486
484
|
type: BooleanConstructor;
|
|
487
485
|
};
|
|
488
486
|
destroyOnClose: {
|
|
489
487
|
type: BooleanConstructor;
|
|
490
488
|
};
|
|
491
|
-
footer:
|
|
492
|
-
getContainer:
|
|
489
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
490
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
491
|
+
(): () => any;
|
|
492
|
+
new (): any;
|
|
493
|
+
readonly prototype: any;
|
|
494
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
495
|
+
(): () => any;
|
|
496
|
+
new (): any;
|
|
497
|
+
readonly prototype: any;
|
|
498
|
+
})[];
|
|
493
499
|
mask: {
|
|
494
500
|
type: BooleanConstructor;
|
|
495
501
|
default: boolean;
|
|
@@ -502,16 +508,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
502
508
|
type: BooleanConstructor;
|
|
503
509
|
default: boolean;
|
|
504
510
|
};
|
|
505
|
-
maskStyle: import("vue").
|
|
511
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
506
512
|
okType: {
|
|
507
513
|
type: StringConstructor;
|
|
508
514
|
default: string;
|
|
509
515
|
};
|
|
510
516
|
okButtonProps: {
|
|
511
|
-
type:
|
|
517
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
512
518
|
};
|
|
513
519
|
cancelButtonProps: {
|
|
514
|
-
type:
|
|
520
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
515
521
|
};
|
|
516
522
|
title: {
|
|
517
523
|
type: StringConstructor;
|
|
@@ -519,7 +525,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
519
525
|
visible: {
|
|
520
526
|
type: BooleanConstructor;
|
|
521
527
|
};
|
|
522
|
-
width:
|
|
528
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
523
529
|
wrapClassName: {
|
|
524
530
|
type: StringConstructor;
|
|
525
531
|
};
|
|
@@ -527,9 +533,43 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
527
533
|
type: NumberConstructor;
|
|
528
534
|
};
|
|
529
535
|
size: {
|
|
530
|
-
type:
|
|
536
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
537
|
+
default: string;
|
|
538
|
+
};
|
|
539
|
+
scrollTop: {
|
|
540
|
+
type: BooleanConstructor;
|
|
541
|
+
default: boolean;
|
|
542
|
+
};
|
|
543
|
+
height: {
|
|
544
|
+
type: NumberConstructor;
|
|
545
|
+
};
|
|
546
|
+
minHeight: {
|
|
547
|
+
type: NumberConstructor;
|
|
548
|
+
};
|
|
549
|
+
draggable: {
|
|
550
|
+
type: BooleanConstructor;
|
|
551
|
+
default: boolean;
|
|
552
|
+
};
|
|
553
|
+
centered: {
|
|
554
|
+
type: BooleanConstructor;
|
|
555
|
+
};
|
|
556
|
+
cancelText: {
|
|
557
|
+
type: StringConstructor;
|
|
558
|
+
default: string;
|
|
559
|
+
};
|
|
560
|
+
okText: {
|
|
561
|
+
type: StringConstructor;
|
|
531
562
|
default: string;
|
|
532
563
|
};
|
|
564
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
565
|
+
(): () => Promise<boolean>;
|
|
566
|
+
new (): any;
|
|
567
|
+
readonly prototype: any;
|
|
568
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
569
|
+
(): () => Promise<boolean>;
|
|
570
|
+
new (): any;
|
|
571
|
+
readonly prototype: any;
|
|
572
|
+
})[];
|
|
533
573
|
}>> & {
|
|
534
574
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
535
575
|
onCancel?: (...args: any[]) => any;
|
|
@@ -567,36 +607,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
567
607
|
M: {};
|
|
568
608
|
Defaults: {};
|
|
569
609
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
570
|
-
visible: {
|
|
571
|
-
type: BooleanConstructor;
|
|
572
|
-
};
|
|
573
|
-
scrollTop: {
|
|
574
|
-
type: BooleanConstructor;
|
|
575
|
-
default: boolean;
|
|
576
|
-
};
|
|
577
|
-
height: {
|
|
578
|
-
type: NumberConstructor;
|
|
579
|
-
};
|
|
580
|
-
minHeight: {
|
|
581
|
-
type: NumberConstructor;
|
|
582
|
-
};
|
|
583
|
-
draggable: {
|
|
584
|
-
type: BooleanConstructor;
|
|
585
|
-
default: boolean;
|
|
586
|
-
};
|
|
587
|
-
centered: {
|
|
588
|
-
type: BooleanConstructor;
|
|
589
|
-
};
|
|
590
|
-
cancelText: {
|
|
591
|
-
type: StringConstructor;
|
|
592
|
-
default: string;
|
|
593
|
-
};
|
|
594
|
-
okText: {
|
|
595
|
-
type: StringConstructor;
|
|
596
|
-
default: string;
|
|
597
|
-
};
|
|
598
|
-
closeFunc: import("vue").PropType<() => Promise<boolean>>;
|
|
599
|
-
} & {
|
|
600
610
|
defaultFullscreen: {
|
|
601
611
|
type: BooleanConstructor;
|
|
602
612
|
};
|
|
@@ -608,7 +618,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
608
618
|
type: NumberConstructor;
|
|
609
619
|
default: number;
|
|
610
620
|
};
|
|
611
|
-
helpMessage:
|
|
621
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
612
622
|
useWrapper: {
|
|
613
623
|
type: BooleanConstructor;
|
|
614
624
|
default: boolean;
|
|
@@ -627,22 +637,38 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
627
637
|
type: BooleanConstructor;
|
|
628
638
|
default: boolean;
|
|
629
639
|
};
|
|
630
|
-
wrapperProps: import("
|
|
631
|
-
afterClose:
|
|
632
|
-
|
|
640
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>))[];
|
|
641
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
642
|
+
(): () => Promise<VueNode>;
|
|
643
|
+
new (): any;
|
|
644
|
+
readonly prototype: any;
|
|
645
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
646
|
+
(): () => Promise<VueNode>;
|
|
647
|
+
new (): any;
|
|
648
|
+
readonly prototype: any;
|
|
649
|
+
})[];
|
|
650
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
633
651
|
closable: {
|
|
634
652
|
type: BooleanConstructor;
|
|
635
653
|
default: boolean;
|
|
636
654
|
};
|
|
637
|
-
closeIcon:
|
|
655
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
638
656
|
confirmLoading: {
|
|
639
657
|
type: BooleanConstructor;
|
|
640
658
|
};
|
|
641
659
|
destroyOnClose: {
|
|
642
660
|
type: BooleanConstructor;
|
|
643
661
|
};
|
|
644
|
-
footer:
|
|
645
|
-
getContainer:
|
|
662
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
663
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
664
|
+
(): () => any;
|
|
665
|
+
new (): any;
|
|
666
|
+
readonly prototype: any;
|
|
667
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
668
|
+
(): () => any;
|
|
669
|
+
new (): any;
|
|
670
|
+
readonly prototype: any;
|
|
671
|
+
})[];
|
|
646
672
|
mask: {
|
|
647
673
|
type: BooleanConstructor;
|
|
648
674
|
default: boolean;
|
|
@@ -655,16 +681,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
655
681
|
type: BooleanConstructor;
|
|
656
682
|
default: boolean;
|
|
657
683
|
};
|
|
658
|
-
maskStyle: import("vue").
|
|
684
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
659
685
|
okType: {
|
|
660
686
|
type: StringConstructor;
|
|
661
687
|
default: string;
|
|
662
688
|
};
|
|
663
689
|
okButtonProps: {
|
|
664
|
-
type:
|
|
690
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
665
691
|
};
|
|
666
692
|
cancelButtonProps: {
|
|
667
|
-
type:
|
|
693
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
668
694
|
};
|
|
669
695
|
title: {
|
|
670
696
|
type: StringConstructor;
|
|
@@ -672,7 +698,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
672
698
|
visible: {
|
|
673
699
|
type: BooleanConstructor;
|
|
674
700
|
};
|
|
675
|
-
width:
|
|
701
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
676
702
|
wrapClassName: {
|
|
677
703
|
type: StringConstructor;
|
|
678
704
|
};
|
|
@@ -680,9 +706,43 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
680
706
|
type: NumberConstructor;
|
|
681
707
|
};
|
|
682
708
|
size: {
|
|
683
|
-
type:
|
|
709
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
710
|
+
default: string;
|
|
711
|
+
};
|
|
712
|
+
scrollTop: {
|
|
713
|
+
type: BooleanConstructor;
|
|
714
|
+
default: boolean;
|
|
715
|
+
};
|
|
716
|
+
height: {
|
|
717
|
+
type: NumberConstructor;
|
|
718
|
+
};
|
|
719
|
+
minHeight: {
|
|
720
|
+
type: NumberConstructor;
|
|
721
|
+
};
|
|
722
|
+
draggable: {
|
|
723
|
+
type: BooleanConstructor;
|
|
724
|
+
default: boolean;
|
|
725
|
+
};
|
|
726
|
+
centered: {
|
|
727
|
+
type: BooleanConstructor;
|
|
728
|
+
};
|
|
729
|
+
cancelText: {
|
|
730
|
+
type: StringConstructor;
|
|
731
|
+
default: string;
|
|
732
|
+
};
|
|
733
|
+
okText: {
|
|
734
|
+
type: StringConstructor;
|
|
684
735
|
default: string;
|
|
685
736
|
};
|
|
737
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
738
|
+
(): () => Promise<boolean>;
|
|
739
|
+
new (): any;
|
|
740
|
+
readonly prototype: any;
|
|
741
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
742
|
+
(): () => Promise<boolean>;
|
|
743
|
+
new (): any;
|
|
744
|
+
readonly prototype: any;
|
|
745
|
+
})[];
|
|
686
746
|
}>> & {
|
|
687
747
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
688
748
|
onCancel?: (...args: any[]) => any;
|
|
@@ -734,36 +794,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
734
794
|
__isTeleport?: never;
|
|
735
795
|
__isSuspense?: never;
|
|
736
796
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
737
|
-
visible: {
|
|
738
|
-
type: BooleanConstructor;
|
|
739
|
-
};
|
|
740
|
-
scrollTop: {
|
|
741
|
-
type: BooleanConstructor;
|
|
742
|
-
default: boolean;
|
|
743
|
-
};
|
|
744
|
-
height: {
|
|
745
|
-
type: NumberConstructor;
|
|
746
|
-
};
|
|
747
|
-
minHeight: {
|
|
748
|
-
type: NumberConstructor;
|
|
749
|
-
};
|
|
750
|
-
draggable: {
|
|
751
|
-
type: BooleanConstructor;
|
|
752
|
-
default: boolean;
|
|
753
|
-
};
|
|
754
|
-
centered: {
|
|
755
|
-
type: BooleanConstructor;
|
|
756
|
-
};
|
|
757
|
-
cancelText: {
|
|
758
|
-
type: StringConstructor;
|
|
759
|
-
default: string;
|
|
760
|
-
};
|
|
761
|
-
okText: {
|
|
762
|
-
type: StringConstructor;
|
|
763
|
-
default: string;
|
|
764
|
-
};
|
|
765
|
-
closeFunc: import("vue").PropType<() => Promise<boolean>>;
|
|
766
|
-
} & {
|
|
767
797
|
defaultFullscreen: {
|
|
768
798
|
type: BooleanConstructor;
|
|
769
799
|
};
|
|
@@ -775,7 +805,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
775
805
|
type: NumberConstructor;
|
|
776
806
|
default: number;
|
|
777
807
|
};
|
|
778
|
-
helpMessage:
|
|
808
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
779
809
|
useWrapper: {
|
|
780
810
|
type: BooleanConstructor;
|
|
781
811
|
default: boolean;
|
|
@@ -794,22 +824,38 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
794
824
|
type: BooleanConstructor;
|
|
795
825
|
default: boolean;
|
|
796
826
|
};
|
|
797
|
-
wrapperProps: import("
|
|
798
|
-
afterClose:
|
|
799
|
-
|
|
827
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>))[];
|
|
828
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
829
|
+
(): () => Promise<VueNode>;
|
|
830
|
+
new (): any;
|
|
831
|
+
readonly prototype: any;
|
|
832
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
833
|
+
(): () => Promise<VueNode>;
|
|
834
|
+
new (): any;
|
|
835
|
+
readonly prototype: any;
|
|
836
|
+
})[];
|
|
837
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
800
838
|
closable: {
|
|
801
839
|
type: BooleanConstructor;
|
|
802
840
|
default: boolean;
|
|
803
841
|
};
|
|
804
|
-
closeIcon:
|
|
842
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
805
843
|
confirmLoading: {
|
|
806
844
|
type: BooleanConstructor;
|
|
807
845
|
};
|
|
808
846
|
destroyOnClose: {
|
|
809
847
|
type: BooleanConstructor;
|
|
810
848
|
};
|
|
811
|
-
footer:
|
|
812
|
-
getContainer:
|
|
849
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
850
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
851
|
+
(): () => any;
|
|
852
|
+
new (): any;
|
|
853
|
+
readonly prototype: any;
|
|
854
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
855
|
+
(): () => any;
|
|
856
|
+
new (): any;
|
|
857
|
+
readonly prototype: any;
|
|
858
|
+
})[];
|
|
813
859
|
mask: {
|
|
814
860
|
type: BooleanConstructor;
|
|
815
861
|
default: boolean;
|
|
@@ -822,16 +868,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
822
868
|
type: BooleanConstructor;
|
|
823
869
|
default: boolean;
|
|
824
870
|
};
|
|
825
|
-
maskStyle: import("vue").
|
|
871
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
826
872
|
okType: {
|
|
827
873
|
type: StringConstructor;
|
|
828
874
|
default: string;
|
|
829
875
|
};
|
|
830
876
|
okButtonProps: {
|
|
831
|
-
type:
|
|
877
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
832
878
|
};
|
|
833
879
|
cancelButtonProps: {
|
|
834
|
-
type:
|
|
880
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
835
881
|
};
|
|
836
882
|
title: {
|
|
837
883
|
type: StringConstructor;
|
|
@@ -839,7 +885,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
839
885
|
visible: {
|
|
840
886
|
type: BooleanConstructor;
|
|
841
887
|
};
|
|
842
|
-
width:
|
|
888
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
843
889
|
wrapClassName: {
|
|
844
890
|
type: StringConstructor;
|
|
845
891
|
};
|
|
@@ -847,9 +893,43 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
847
893
|
type: NumberConstructor;
|
|
848
894
|
};
|
|
849
895
|
size: {
|
|
850
|
-
type:
|
|
896
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
897
|
+
default: string;
|
|
898
|
+
};
|
|
899
|
+
scrollTop: {
|
|
900
|
+
type: BooleanConstructor;
|
|
901
|
+
default: boolean;
|
|
902
|
+
};
|
|
903
|
+
height: {
|
|
904
|
+
type: NumberConstructor;
|
|
905
|
+
};
|
|
906
|
+
minHeight: {
|
|
907
|
+
type: NumberConstructor;
|
|
908
|
+
};
|
|
909
|
+
draggable: {
|
|
910
|
+
type: BooleanConstructor;
|
|
911
|
+
default: boolean;
|
|
912
|
+
};
|
|
913
|
+
centered: {
|
|
914
|
+
type: BooleanConstructor;
|
|
915
|
+
};
|
|
916
|
+
cancelText: {
|
|
917
|
+
type: StringConstructor;
|
|
918
|
+
default: string;
|
|
919
|
+
};
|
|
920
|
+
okText: {
|
|
921
|
+
type: StringConstructor;
|
|
851
922
|
default: string;
|
|
852
923
|
};
|
|
924
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
925
|
+
(): () => Promise<boolean>;
|
|
926
|
+
new (): any;
|
|
927
|
+
readonly prototype: any;
|
|
928
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
929
|
+
(): () => Promise<boolean>;
|
|
930
|
+
new (): any;
|
|
931
|
+
readonly prototype: any;
|
|
932
|
+
})[];
|
|
853
933
|
}>> & {
|
|
854
934
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
855
935
|
onCancel?: (...args: any[]) => any;
|