ll-plus 2.9.16 → 2.9.17
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/components/new-modal/index.d.ts +533 -534
- package/es/components/new-modal/src/modal.vue.d.ts +533 -534
- package/es/packages/components/new-modal/src/modal.vue2.mjs +6 -25
- package/es/packages/components/new-modal/src/modal.vue2.mjs.map +1 -1
- package/index.full.js +3 -22
- package/index.full.min.js +19 -19
- package/index.full.min.js.map +1 -1
- package/index.full.min.mjs +20 -20
- package/index.full.min.mjs.map +1 -1
- package/index.full.mjs +3 -22
- package/lib/components/new-modal/index.d.ts +533 -534
- package/lib/components/new-modal/src/modal.vue.d.ts +533 -534
- package/lib/packages/components/new-modal/src/modal.vue2.js +5 -24
- package/lib/packages/components/new-modal/src/modal.vue2.js.map +1 -1
- package/package.json +1 -1
- package/theme-chalk/css/index.css +1 -1
- package/theme-chalk/css/new-modal.css +1 -1
- package/types/packages/components/new-modal/index.d.ts +533 -534
- package/types/packages/components/new-modal/src/modal.vue.d.ts +533 -534
|
@@ -384,7 +384,386 @@ export declare const LlNewModal: import("ll-plus/es/utils").SFCWithInstall<impor
|
|
|
384
384
|
handleCancel: () => void;
|
|
385
385
|
handleOk: () => void;
|
|
386
386
|
scrollTop: () => void;
|
|
387
|
-
|
|
387
|
+
readonly LlButton: import("ll-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
388
|
+
readonly label: {
|
|
389
|
+
readonly type: import("vue").PropType<string>;
|
|
390
|
+
readonly required: false;
|
|
391
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
392
|
+
__epPropKey: true;
|
|
393
|
+
};
|
|
394
|
+
readonly icon: {
|
|
395
|
+
readonly type: import("vue").PropType<{
|
|
396
|
+
readonly iconName?: string | undefined;
|
|
397
|
+
readonly color?: string | undefined;
|
|
398
|
+
readonly size?: import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown> | undefined;
|
|
399
|
+
}>;
|
|
400
|
+
readonly required: false;
|
|
401
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
402
|
+
__epPropKey: true;
|
|
403
|
+
};
|
|
404
|
+
readonly position: {
|
|
405
|
+
readonly type: import("vue").PropType<string>;
|
|
406
|
+
readonly required: false;
|
|
407
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
408
|
+
__epPropKey: true;
|
|
409
|
+
};
|
|
410
|
+
}, {
|
|
411
|
+
props: import("@vue/shared").LooseRequired<{
|
|
412
|
+
readonly label?: string | undefined;
|
|
413
|
+
readonly position?: string | undefined;
|
|
414
|
+
readonly icon?: {
|
|
415
|
+
readonly iconName?: string | undefined;
|
|
416
|
+
readonly color?: string | undefined;
|
|
417
|
+
readonly size?: import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown> | undefined;
|
|
418
|
+
} | undefined;
|
|
419
|
+
} & {}>;
|
|
420
|
+
bem: {
|
|
421
|
+
b: (blockSuffix?: string) => string;
|
|
422
|
+
e: (element?: string) => string;
|
|
423
|
+
m: (modifier?: string) => string;
|
|
424
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
425
|
+
em: (element: string, modifier: string) => string;
|
|
426
|
+
bm: (blockSuffix: string, modifier: string) => string;
|
|
427
|
+
bem: (blockSuffix: string, element: string, modifier: string) => string;
|
|
428
|
+
is: (name?: string) => string;
|
|
429
|
+
};
|
|
430
|
+
attrs: {
|
|
431
|
+
[x: string]: unknown;
|
|
432
|
+
};
|
|
433
|
+
iconDetails: import("vue").ComputedRef<{
|
|
434
|
+
readonly iconName?: string | undefined;
|
|
435
|
+
readonly color?: string | undefined;
|
|
436
|
+
readonly size?: import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown> | undefined;
|
|
437
|
+
}>;
|
|
438
|
+
hasIconOnLeft: import("vue").ComputedRef<boolean | "" | undefined>;
|
|
439
|
+
hasIconOnRight: import("vue").ComputedRef<string | false | undefined>;
|
|
440
|
+
readonly Button: {
|
|
441
|
+
new (...args: any[]): import("@vue/runtime-core").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
442
|
+
prefixCls: StringConstructor;
|
|
443
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
444
|
+
htmlType: {
|
|
445
|
+
type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
446
|
+
default: string;
|
|
447
|
+
};
|
|
448
|
+
shape: {
|
|
449
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
|
|
450
|
+
};
|
|
451
|
+
size: {
|
|
452
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
453
|
+
};
|
|
454
|
+
loading: {
|
|
455
|
+
type: import("vue").PropType<boolean | {
|
|
456
|
+
delay?: number | undefined;
|
|
457
|
+
}>;
|
|
458
|
+
default: () => boolean | {
|
|
459
|
+
delay?: number | undefined;
|
|
460
|
+
};
|
|
461
|
+
};
|
|
462
|
+
disabled: {
|
|
463
|
+
type: BooleanConstructor;
|
|
464
|
+
default: any;
|
|
465
|
+
};
|
|
466
|
+
ghost: {
|
|
467
|
+
type: BooleanConstructor;
|
|
468
|
+
default: any;
|
|
469
|
+
};
|
|
470
|
+
block: {
|
|
471
|
+
type: BooleanConstructor;
|
|
472
|
+
default: any;
|
|
473
|
+
};
|
|
474
|
+
danger: {
|
|
475
|
+
type: BooleanConstructor;
|
|
476
|
+
default: any;
|
|
477
|
+
};
|
|
478
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
479
|
+
href: StringConstructor;
|
|
480
|
+
target: StringConstructor;
|
|
481
|
+
title: StringConstructor;
|
|
482
|
+
onClick: {
|
|
483
|
+
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
484
|
+
};
|
|
485
|
+
onMousedown: {
|
|
486
|
+
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
487
|
+
};
|
|
488
|
+
}>>, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
489
|
+
prefixCls: StringConstructor;
|
|
490
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
491
|
+
htmlType: {
|
|
492
|
+
type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
493
|
+
default: string;
|
|
494
|
+
};
|
|
495
|
+
shape: {
|
|
496
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
|
|
497
|
+
};
|
|
498
|
+
size: {
|
|
499
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
500
|
+
};
|
|
501
|
+
loading: {
|
|
502
|
+
type: import("vue").PropType<boolean | {
|
|
503
|
+
delay?: number | undefined;
|
|
504
|
+
}>;
|
|
505
|
+
default: () => boolean | {
|
|
506
|
+
delay?: number | undefined;
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
disabled: {
|
|
510
|
+
type: BooleanConstructor;
|
|
511
|
+
default: any;
|
|
512
|
+
};
|
|
513
|
+
ghost: {
|
|
514
|
+
type: BooleanConstructor;
|
|
515
|
+
default: any;
|
|
516
|
+
};
|
|
517
|
+
block: {
|
|
518
|
+
type: BooleanConstructor;
|
|
519
|
+
default: any;
|
|
520
|
+
};
|
|
521
|
+
danger: {
|
|
522
|
+
type: BooleanConstructor;
|
|
523
|
+
default: any;
|
|
524
|
+
};
|
|
525
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
526
|
+
href: StringConstructor;
|
|
527
|
+
target: StringConstructor;
|
|
528
|
+
title: StringConstructor;
|
|
529
|
+
onClick: {
|
|
530
|
+
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
531
|
+
};
|
|
532
|
+
onMousedown: {
|
|
533
|
+
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
534
|
+
};
|
|
535
|
+
}>>, {
|
|
536
|
+
block: boolean;
|
|
537
|
+
disabled: boolean;
|
|
538
|
+
danger: boolean;
|
|
539
|
+
ghost: boolean;
|
|
540
|
+
htmlType: import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType;
|
|
541
|
+
loading: boolean | {
|
|
542
|
+
delay?: number | undefined;
|
|
543
|
+
};
|
|
544
|
+
}, true, {}, import("ant-design-vue/es/_util/type").CustomSlotsType<{
|
|
545
|
+
icon: any;
|
|
546
|
+
default: any;
|
|
547
|
+
}>, {
|
|
548
|
+
P: {};
|
|
549
|
+
B: {};
|
|
550
|
+
D: {};
|
|
551
|
+
C: {};
|
|
552
|
+
M: {};
|
|
553
|
+
Defaults: {};
|
|
554
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
555
|
+
prefixCls: StringConstructor;
|
|
556
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
557
|
+
htmlType: {
|
|
558
|
+
type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
559
|
+
default: string;
|
|
560
|
+
};
|
|
561
|
+
shape: {
|
|
562
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
|
|
563
|
+
};
|
|
564
|
+
size: {
|
|
565
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
566
|
+
};
|
|
567
|
+
loading: {
|
|
568
|
+
type: import("vue").PropType<boolean | {
|
|
569
|
+
delay?: number | undefined;
|
|
570
|
+
}>;
|
|
571
|
+
default: () => boolean | {
|
|
572
|
+
delay?: number | undefined;
|
|
573
|
+
};
|
|
574
|
+
};
|
|
575
|
+
disabled: {
|
|
576
|
+
type: BooleanConstructor;
|
|
577
|
+
default: any;
|
|
578
|
+
};
|
|
579
|
+
ghost: {
|
|
580
|
+
type: BooleanConstructor;
|
|
581
|
+
default: any;
|
|
582
|
+
};
|
|
583
|
+
block: {
|
|
584
|
+
type: BooleanConstructor;
|
|
585
|
+
default: any;
|
|
586
|
+
};
|
|
587
|
+
danger: {
|
|
588
|
+
type: BooleanConstructor;
|
|
589
|
+
default: any;
|
|
590
|
+
};
|
|
591
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
592
|
+
href: StringConstructor;
|
|
593
|
+
target: StringConstructor;
|
|
594
|
+
title: StringConstructor;
|
|
595
|
+
onClick: {
|
|
596
|
+
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
597
|
+
};
|
|
598
|
+
onMousedown: {
|
|
599
|
+
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
600
|
+
};
|
|
601
|
+
}>>, () => import("ant-design-vue/es/_util/type").VueNode, {}, {}, {}, {
|
|
602
|
+
block: boolean;
|
|
603
|
+
disabled: boolean;
|
|
604
|
+
danger: boolean;
|
|
605
|
+
ghost: boolean;
|
|
606
|
+
htmlType: import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType;
|
|
607
|
+
loading: boolean | {
|
|
608
|
+
delay?: number | undefined;
|
|
609
|
+
};
|
|
610
|
+
}>;
|
|
611
|
+
__isFragment?: undefined;
|
|
612
|
+
__isTeleport?: undefined;
|
|
613
|
+
__isSuspense?: undefined;
|
|
614
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
615
|
+
prefixCls: StringConstructor;
|
|
616
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
617
|
+
htmlType: {
|
|
618
|
+
type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
619
|
+
default: string;
|
|
620
|
+
};
|
|
621
|
+
shape: {
|
|
622
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
|
|
623
|
+
};
|
|
624
|
+
size: {
|
|
625
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
626
|
+
};
|
|
627
|
+
loading: {
|
|
628
|
+
type: import("vue").PropType<boolean | {
|
|
629
|
+
delay?: number | undefined;
|
|
630
|
+
}>;
|
|
631
|
+
default: () => boolean | {
|
|
632
|
+
delay?: number | undefined;
|
|
633
|
+
};
|
|
634
|
+
};
|
|
635
|
+
disabled: {
|
|
636
|
+
type: BooleanConstructor;
|
|
637
|
+
default: any;
|
|
638
|
+
};
|
|
639
|
+
ghost: {
|
|
640
|
+
type: BooleanConstructor;
|
|
641
|
+
default: any;
|
|
642
|
+
};
|
|
643
|
+
block: {
|
|
644
|
+
type: BooleanConstructor;
|
|
645
|
+
default: any;
|
|
646
|
+
};
|
|
647
|
+
danger: {
|
|
648
|
+
type: BooleanConstructor;
|
|
649
|
+
default: any;
|
|
650
|
+
};
|
|
651
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
652
|
+
href: StringConstructor;
|
|
653
|
+
target: StringConstructor;
|
|
654
|
+
title: StringConstructor;
|
|
655
|
+
onClick: {
|
|
656
|
+
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
657
|
+
};
|
|
658
|
+
onMousedown: {
|
|
659
|
+
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
660
|
+
};
|
|
661
|
+
}>>, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
662
|
+
block: boolean;
|
|
663
|
+
disabled: boolean;
|
|
664
|
+
danger: boolean;
|
|
665
|
+
ghost: boolean;
|
|
666
|
+
htmlType: import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType;
|
|
667
|
+
loading: boolean | {
|
|
668
|
+
delay?: number | undefined;
|
|
669
|
+
};
|
|
670
|
+
}, {}, string, import("ant-design-vue/es/_util/type").CustomSlotsType<{
|
|
671
|
+
icon: any;
|
|
672
|
+
default: any;
|
|
673
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]> & {
|
|
674
|
+
readonly Group: import("vue").DefineComponent<{
|
|
675
|
+
prefixCls: StringConstructor;
|
|
676
|
+
size: {
|
|
677
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
678
|
+
};
|
|
679
|
+
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
680
|
+
prefixCls: StringConstructor;
|
|
681
|
+
size: {
|
|
682
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
683
|
+
};
|
|
684
|
+
}>>, {}, {}>;
|
|
685
|
+
};
|
|
686
|
+
readonly LlIcon: import("ll-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
687
|
+
readonly iconName: {
|
|
688
|
+
readonly type: import("vue").PropType<string>;
|
|
689
|
+
readonly required: false;
|
|
690
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
691
|
+
__epPropKey: true;
|
|
692
|
+
};
|
|
693
|
+
readonly color: {
|
|
694
|
+
readonly type: import("vue").PropType<string>;
|
|
695
|
+
readonly required: false;
|
|
696
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
697
|
+
__epPropKey: true;
|
|
698
|
+
};
|
|
699
|
+
readonly size: {
|
|
700
|
+
readonly type: import("vue").PropType<import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>>;
|
|
701
|
+
readonly required: false;
|
|
702
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
703
|
+
__epPropKey: true;
|
|
704
|
+
};
|
|
705
|
+
}, {
|
|
706
|
+
props: import("@vue/shared").LooseRequired<{
|
|
707
|
+
readonly iconName?: string | undefined;
|
|
708
|
+
readonly color?: string | undefined;
|
|
709
|
+
readonly size?: import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown> | undefined;
|
|
710
|
+
} & {}>;
|
|
711
|
+
iconName: import("vue").ComputedRef<string>;
|
|
712
|
+
style: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
713
|
+
bem: {
|
|
714
|
+
b: (blockSuffix?: string) => string;
|
|
715
|
+
e: (element?: string) => string;
|
|
716
|
+
m: (modifier?: string) => string;
|
|
717
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
718
|
+
em: (element: string, modifier: string) => string;
|
|
719
|
+
bm: (blockSuffix: string, modifier: string) => string;
|
|
720
|
+
bem: (blockSuffix: string, element: string, modifier: string) => string;
|
|
721
|
+
is: (name?: string) => string;
|
|
722
|
+
};
|
|
723
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
724
|
+
readonly iconName: {
|
|
725
|
+
readonly type: import("vue").PropType<string>;
|
|
726
|
+
readonly required: false;
|
|
727
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
728
|
+
__epPropKey: true;
|
|
729
|
+
};
|
|
730
|
+
readonly color: {
|
|
731
|
+
readonly type: import("vue").PropType<string>;
|
|
732
|
+
readonly required: false;
|
|
733
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
734
|
+
__epPropKey: true;
|
|
735
|
+
};
|
|
736
|
+
readonly size: {
|
|
737
|
+
readonly type: import("vue").PropType<import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>>;
|
|
738
|
+
readonly required: false;
|
|
739
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
740
|
+
__epPropKey: true;
|
|
741
|
+
};
|
|
742
|
+
}>>, {}, {}>>;
|
|
743
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
744
|
+
readonly label: {
|
|
745
|
+
readonly type: import("vue").PropType<string>;
|
|
746
|
+
readonly required: false;
|
|
747
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
748
|
+
__epPropKey: true;
|
|
749
|
+
};
|
|
750
|
+
readonly icon: {
|
|
751
|
+
readonly type: import("vue").PropType<{
|
|
752
|
+
readonly iconName?: string | undefined;
|
|
753
|
+
readonly color?: string | undefined;
|
|
754
|
+
readonly size?: import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown> | undefined;
|
|
755
|
+
}>;
|
|
756
|
+
readonly required: false;
|
|
757
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
758
|
+
__epPropKey: true;
|
|
759
|
+
};
|
|
760
|
+
readonly position: {
|
|
761
|
+
readonly type: import("vue").PropType<string>;
|
|
762
|
+
readonly required: false;
|
|
763
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
764
|
+
__epPropKey: true;
|
|
765
|
+
};
|
|
766
|
+
}>>, {}, {}>>;
|
|
388
767
|
readonly Modal: {
|
|
389
768
|
new (...args: any[]): import("@vue/runtime-core").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
390
769
|
prefixCls: StringConstructor;
|
|
@@ -1503,180 +1882,34 @@ export declare const LlNewModal: import("ll-plus/es/utils").SFCWithInstall<impor
|
|
|
1503
1882
|
closable: {
|
|
1504
1883
|
type: BooleanConstructor;
|
|
1505
1884
|
default: any;
|
|
1506
|
-
};
|
|
1507
|
-
closeIcon: import("vue-types").VueTypeValidableDef<any>;
|
|
1508
|
-
onOk: import("vue").PropType<(e: MouseEvent) => void>;
|
|
1509
|
-
onCancel: import("vue").PropType<(e: MouseEvent) => void>;
|
|
1510
|
-
'onUpdate:visible': import("vue").PropType<(visible: boolean) => void>;
|
|
1511
|
-
'onUpdate:open': import("vue").PropType<(open: boolean) => void>;
|
|
1512
|
-
onChange: import("vue").PropType<(open: boolean) => void>;
|
|
1513
|
-
afterClose: import("vue").PropType<() => void>;
|
|
1514
|
-
centered: {
|
|
1515
|
-
type: BooleanConstructor;
|
|
1516
|
-
default: any;
|
|
1517
|
-
};
|
|
1518
|
-
width: (StringConstructor | NumberConstructor)[];
|
|
1519
|
-
footer: import("vue-types").VueTypeValidableDef<any>;
|
|
1520
|
-
okText: import("vue-types").VueTypeValidableDef<any>;
|
|
1521
|
-
okType: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").LegacyButtonType>;
|
|
1522
|
-
cancelText: import("vue-types").VueTypeValidableDef<any>;
|
|
1523
|
-
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
1524
|
-
maskClosable: {
|
|
1525
|
-
type: BooleanConstructor;
|
|
1526
|
-
default: any;
|
|
1527
|
-
};
|
|
1528
|
-
forceRender: {
|
|
1529
|
-
type: BooleanConstructor;
|
|
1530
|
-
default: any;
|
|
1531
|
-
};
|
|
1532
|
-
okButtonProps: {
|
|
1533
|
-
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
|
1534
|
-
prefixCls: StringConstructor;
|
|
1535
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
1536
|
-
htmlType: {
|
|
1537
|
-
type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
1538
|
-
default: string;
|
|
1539
|
-
};
|
|
1540
|
-
shape: {
|
|
1541
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
|
|
1542
|
-
};
|
|
1543
|
-
size: {
|
|
1544
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
1545
|
-
};
|
|
1546
|
-
loading: {
|
|
1547
|
-
type: import("vue").PropType<boolean | {
|
|
1548
|
-
delay?: number | undefined;
|
|
1549
|
-
}>;
|
|
1550
|
-
default: () => boolean | {
|
|
1551
|
-
delay?: number | undefined;
|
|
1552
|
-
};
|
|
1553
|
-
};
|
|
1554
|
-
disabled: {
|
|
1555
|
-
type: BooleanConstructor;
|
|
1556
|
-
default: any;
|
|
1557
|
-
};
|
|
1558
|
-
ghost: {
|
|
1559
|
-
type: BooleanConstructor;
|
|
1560
|
-
default: any;
|
|
1561
|
-
};
|
|
1562
|
-
block: {
|
|
1563
|
-
type: BooleanConstructor;
|
|
1564
|
-
default: any;
|
|
1565
|
-
};
|
|
1566
|
-
danger: {
|
|
1567
|
-
type: BooleanConstructor;
|
|
1568
|
-
default: any;
|
|
1569
|
-
};
|
|
1570
|
-
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
1571
|
-
href: StringConstructor;
|
|
1572
|
-
target: StringConstructor;
|
|
1573
|
-
title: StringConstructor;
|
|
1574
|
-
onClick: {
|
|
1575
|
-
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1576
|
-
};
|
|
1577
|
-
onMousedown: {
|
|
1578
|
-
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1579
|
-
};
|
|
1580
|
-
}>>>;
|
|
1581
|
-
default: Partial<import("vue").ExtractPropTypes<{
|
|
1582
|
-
prefixCls: StringConstructor;
|
|
1583
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
1584
|
-
htmlType: {
|
|
1585
|
-
type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
1586
|
-
default: string;
|
|
1587
|
-
};
|
|
1588
|
-
shape: {
|
|
1589
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
|
|
1590
|
-
};
|
|
1591
|
-
size: {
|
|
1592
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
1593
|
-
};
|
|
1594
|
-
loading: {
|
|
1595
|
-
type: import("vue").PropType<boolean | {
|
|
1596
|
-
delay?: number | undefined;
|
|
1597
|
-
}>;
|
|
1598
|
-
default: () => boolean | {
|
|
1599
|
-
delay?: number | undefined;
|
|
1600
|
-
};
|
|
1601
|
-
};
|
|
1602
|
-
disabled: {
|
|
1603
|
-
type: BooleanConstructor;
|
|
1604
|
-
default: any;
|
|
1605
|
-
};
|
|
1606
|
-
ghost: {
|
|
1607
|
-
type: BooleanConstructor;
|
|
1608
|
-
default: any;
|
|
1609
|
-
};
|
|
1610
|
-
block: {
|
|
1611
|
-
type: BooleanConstructor;
|
|
1612
|
-
default: any;
|
|
1613
|
-
};
|
|
1614
|
-
danger: {
|
|
1615
|
-
type: BooleanConstructor;
|
|
1616
|
-
default: any;
|
|
1617
|
-
};
|
|
1618
|
-
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
1619
|
-
href: StringConstructor;
|
|
1620
|
-
target: StringConstructor;
|
|
1621
|
-
title: StringConstructor;
|
|
1622
|
-
onClick: {
|
|
1623
|
-
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1624
|
-
};
|
|
1625
|
-
onMousedown: {
|
|
1626
|
-
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1627
|
-
};
|
|
1628
|
-
}>>;
|
|
1629
|
-
};
|
|
1630
|
-
cancelButtonProps: {
|
|
1631
|
-
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
|
1632
|
-
prefixCls: StringConstructor;
|
|
1633
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
1634
|
-
htmlType: {
|
|
1635
|
-
type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
1636
|
-
default: string;
|
|
1637
|
-
};
|
|
1638
|
-
shape: {
|
|
1639
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
|
|
1640
|
-
};
|
|
1641
|
-
size: {
|
|
1642
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
1643
|
-
};
|
|
1644
|
-
loading: {
|
|
1645
|
-
type: import("vue").PropType<boolean | {
|
|
1646
|
-
delay?: number | undefined;
|
|
1647
|
-
}>;
|
|
1648
|
-
default: () => boolean | {
|
|
1649
|
-
delay?: number | undefined;
|
|
1650
|
-
};
|
|
1651
|
-
};
|
|
1652
|
-
disabled: {
|
|
1653
|
-
type: BooleanConstructor;
|
|
1654
|
-
default: any;
|
|
1655
|
-
};
|
|
1656
|
-
ghost: {
|
|
1657
|
-
type: BooleanConstructor;
|
|
1658
|
-
default: any;
|
|
1659
|
-
};
|
|
1660
|
-
block: {
|
|
1661
|
-
type: BooleanConstructor;
|
|
1662
|
-
default: any;
|
|
1663
|
-
};
|
|
1664
|
-
danger: {
|
|
1665
|
-
type: BooleanConstructor;
|
|
1666
|
-
default: any;
|
|
1667
|
-
};
|
|
1668
|
-
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
1669
|
-
href: StringConstructor;
|
|
1670
|
-
target: StringConstructor;
|
|
1671
|
-
title: StringConstructor;
|
|
1672
|
-
onClick: {
|
|
1673
|
-
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1674
|
-
};
|
|
1675
|
-
onMousedown: {
|
|
1676
|
-
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1677
|
-
};
|
|
1678
|
-
}>>>;
|
|
1679
|
-
default: Partial<import("vue").ExtractPropTypes<{
|
|
1885
|
+
};
|
|
1886
|
+
closeIcon: import("vue-types").VueTypeValidableDef<any>;
|
|
1887
|
+
onOk: import("vue").PropType<(e: MouseEvent) => void>;
|
|
1888
|
+
onCancel: import("vue").PropType<(e: MouseEvent) => void>;
|
|
1889
|
+
'onUpdate:visible': import("vue").PropType<(visible: boolean) => void>;
|
|
1890
|
+
'onUpdate:open': import("vue").PropType<(open: boolean) => void>;
|
|
1891
|
+
onChange: import("vue").PropType<(open: boolean) => void>;
|
|
1892
|
+
afterClose: import("vue").PropType<() => void>;
|
|
1893
|
+
centered: {
|
|
1894
|
+
type: BooleanConstructor;
|
|
1895
|
+
default: any;
|
|
1896
|
+
};
|
|
1897
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
1898
|
+
footer: import("vue-types").VueTypeValidableDef<any>;
|
|
1899
|
+
okText: import("vue-types").VueTypeValidableDef<any>;
|
|
1900
|
+
okType: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").LegacyButtonType>;
|
|
1901
|
+
cancelText: import("vue-types").VueTypeValidableDef<any>;
|
|
1902
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
1903
|
+
maskClosable: {
|
|
1904
|
+
type: BooleanConstructor;
|
|
1905
|
+
default: any;
|
|
1906
|
+
};
|
|
1907
|
+
forceRender: {
|
|
1908
|
+
type: BooleanConstructor;
|
|
1909
|
+
default: any;
|
|
1910
|
+
};
|
|
1911
|
+
okButtonProps: {
|
|
1912
|
+
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
|
1680
1913
|
prefixCls: StringConstructor;
|
|
1681
1914
|
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
1682
1915
|
htmlType: {
|
|
@@ -1723,234 +1956,8 @@ export declare const LlNewModal: import("ll-plus/es/utils").SFCWithInstall<impor
|
|
|
1723
1956
|
onMousedown: {
|
|
1724
1957
|
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1725
1958
|
};
|
|
1726
|
-
}
|
|
1727
|
-
|
|
1728
|
-
destroyOnClose: {
|
|
1729
|
-
type: BooleanConstructor;
|
|
1730
|
-
default: any;
|
|
1731
|
-
};
|
|
1732
|
-
wrapClassName: StringConstructor;
|
|
1733
|
-
maskTransitionName: StringConstructor;
|
|
1734
|
-
transitionName: StringConstructor;
|
|
1735
|
-
getContainer: {
|
|
1736
|
-
type: import("vue").PropType<string | false | HTMLElement | (() => HTMLElement)>;
|
|
1737
|
-
default: any;
|
|
1738
|
-
};
|
|
1739
|
-
zIndex: NumberConstructor;
|
|
1740
|
-
bodyStyle: {
|
|
1741
|
-
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
1742
|
-
default: import("vue").CSSProperties;
|
|
1743
|
-
};
|
|
1744
|
-
maskStyle: {
|
|
1745
|
-
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
1746
|
-
default: import("vue").CSSProperties;
|
|
1747
|
-
};
|
|
1748
|
-
mask: {
|
|
1749
|
-
type: BooleanConstructor;
|
|
1750
|
-
default: any;
|
|
1751
|
-
};
|
|
1752
|
-
keyboard: {
|
|
1753
|
-
type: BooleanConstructor;
|
|
1754
|
-
default: any;
|
|
1755
|
-
};
|
|
1756
|
-
wrapProps: ObjectConstructor;
|
|
1757
|
-
focusTriggerAfterClose: {
|
|
1758
|
-
type: BooleanConstructor;
|
|
1759
|
-
default: any;
|
|
1760
|
-
};
|
|
1761
|
-
modalRender: import("vue").PropType<(arg: {
|
|
1762
|
-
originVNode: import("ant-design-vue/es/_util/type").VueNode;
|
|
1763
|
-
}) => import("ant-design-vue/es/_util/type").VueNode>;
|
|
1764
|
-
mousePosition: {
|
|
1765
|
-
type: import("vue").PropType<{
|
|
1766
|
-
x: number;
|
|
1767
|
-
y: number;
|
|
1768
|
-
}>;
|
|
1769
|
-
default: {
|
|
1770
|
-
x: number;
|
|
1771
|
-
y: number;
|
|
1772
|
-
};
|
|
1773
|
-
};
|
|
1774
|
-
}>>, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
1775
|
-
mask: boolean;
|
|
1776
|
-
open: boolean;
|
|
1777
|
-
visible: boolean;
|
|
1778
|
-
getContainer: string | false | HTMLElement | (() => HTMLElement);
|
|
1779
|
-
forceRender: boolean;
|
|
1780
|
-
maskClosable: boolean;
|
|
1781
|
-
keyboard: boolean;
|
|
1782
|
-
closable: boolean;
|
|
1783
|
-
centered: boolean;
|
|
1784
|
-
bodyStyle: import("vue").CSSProperties;
|
|
1785
|
-
maskStyle: import("vue").CSSProperties;
|
|
1786
|
-
destroyOnClose: boolean;
|
|
1787
|
-
mousePosition: {
|
|
1788
|
-
x: number;
|
|
1789
|
-
y: number;
|
|
1790
|
-
};
|
|
1791
|
-
focusTriggerAfterClose: boolean;
|
|
1792
|
-
confirmLoading: boolean;
|
|
1793
|
-
okButtonProps: Partial<import("vue").ExtractPropTypes<{
|
|
1794
|
-
prefixCls: StringConstructor;
|
|
1795
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
1796
|
-
htmlType: {
|
|
1797
|
-
type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
1798
|
-
default: string;
|
|
1799
|
-
};
|
|
1800
|
-
shape: {
|
|
1801
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
|
|
1802
|
-
};
|
|
1803
|
-
size: {
|
|
1804
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
1805
|
-
};
|
|
1806
|
-
loading: {
|
|
1807
|
-
type: import("vue").PropType<boolean | {
|
|
1808
|
-
delay?: number | undefined;
|
|
1809
|
-
}>;
|
|
1810
|
-
default: () => boolean | {
|
|
1811
|
-
delay?: number | undefined;
|
|
1812
|
-
};
|
|
1813
|
-
};
|
|
1814
|
-
disabled: {
|
|
1815
|
-
type: BooleanConstructor;
|
|
1816
|
-
default: any;
|
|
1817
|
-
};
|
|
1818
|
-
ghost: {
|
|
1819
|
-
type: BooleanConstructor;
|
|
1820
|
-
default: any;
|
|
1821
|
-
};
|
|
1822
|
-
block: {
|
|
1823
|
-
type: BooleanConstructor;
|
|
1824
|
-
default: any;
|
|
1825
|
-
};
|
|
1826
|
-
danger: {
|
|
1827
|
-
type: BooleanConstructor;
|
|
1828
|
-
default: any;
|
|
1829
|
-
};
|
|
1830
|
-
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
1831
|
-
href: StringConstructor;
|
|
1832
|
-
target: StringConstructor;
|
|
1833
|
-
title: StringConstructor;
|
|
1834
|
-
onClick: {
|
|
1835
|
-
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1836
|
-
};
|
|
1837
|
-
onMousedown: {
|
|
1838
|
-
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1839
|
-
};
|
|
1840
|
-
}>>;
|
|
1841
|
-
cancelButtonProps: Partial<import("vue").ExtractPropTypes<{
|
|
1842
|
-
prefixCls: StringConstructor;
|
|
1843
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
1844
|
-
htmlType: {
|
|
1845
|
-
type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
1846
|
-
default: string;
|
|
1847
|
-
};
|
|
1848
|
-
shape: {
|
|
1849
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
|
|
1850
|
-
};
|
|
1851
|
-
size: {
|
|
1852
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
1853
|
-
};
|
|
1854
|
-
loading: {
|
|
1855
|
-
type: import("vue").PropType<boolean | {
|
|
1856
|
-
delay?: number | undefined;
|
|
1857
|
-
}>;
|
|
1858
|
-
default: () => boolean | {
|
|
1859
|
-
delay?: number | undefined;
|
|
1860
|
-
};
|
|
1861
|
-
};
|
|
1862
|
-
disabled: {
|
|
1863
|
-
type: BooleanConstructor;
|
|
1864
|
-
default: any;
|
|
1865
|
-
};
|
|
1866
|
-
ghost: {
|
|
1867
|
-
type: BooleanConstructor;
|
|
1868
|
-
default: any;
|
|
1869
|
-
};
|
|
1870
|
-
block: {
|
|
1871
|
-
type: BooleanConstructor;
|
|
1872
|
-
default: any;
|
|
1873
|
-
};
|
|
1874
|
-
danger: {
|
|
1875
|
-
type: BooleanConstructor;
|
|
1876
|
-
default: any;
|
|
1877
|
-
};
|
|
1878
|
-
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
1879
|
-
href: StringConstructor;
|
|
1880
|
-
target: StringConstructor;
|
|
1881
|
-
title: StringConstructor;
|
|
1882
|
-
onClick: {
|
|
1883
|
-
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1884
|
-
};
|
|
1885
|
-
onMousedown: {
|
|
1886
|
-
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1887
|
-
};
|
|
1888
|
-
}>>;
|
|
1889
|
-
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]> & {
|
|
1890
|
-
readonly info: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
1891
|
-
readonly success: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
1892
|
-
readonly error: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
1893
|
-
readonly warn: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
1894
|
-
readonly warning: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
1895
|
-
readonly confirm: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
1896
|
-
readonly destroyAll: () => void;
|
|
1897
|
-
readonly useModal: typeof import("ant-design-vue/es/modal/useModal").default;
|
|
1898
|
-
};
|
|
1899
|
-
readonly LlButton: import("ll-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
1900
|
-
readonly label: {
|
|
1901
|
-
readonly type: import("vue").PropType<string>;
|
|
1902
|
-
readonly required: false;
|
|
1903
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1904
|
-
__epPropKey: true;
|
|
1905
|
-
};
|
|
1906
|
-
readonly icon: {
|
|
1907
|
-
readonly type: import("vue").PropType<{
|
|
1908
|
-
readonly iconName?: string | undefined;
|
|
1909
|
-
readonly color?: string | undefined;
|
|
1910
|
-
readonly size?: import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown> | undefined;
|
|
1911
|
-
}>;
|
|
1912
|
-
readonly required: false;
|
|
1913
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1914
|
-
__epPropKey: true;
|
|
1915
|
-
};
|
|
1916
|
-
readonly position: {
|
|
1917
|
-
readonly type: import("vue").PropType<string>;
|
|
1918
|
-
readonly required: false;
|
|
1919
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1920
|
-
__epPropKey: true;
|
|
1921
|
-
};
|
|
1922
|
-
}, {
|
|
1923
|
-
props: import("@vue/shared").LooseRequired<{
|
|
1924
|
-
readonly label?: string | undefined;
|
|
1925
|
-
readonly position?: string | undefined;
|
|
1926
|
-
readonly icon?: {
|
|
1927
|
-
readonly iconName?: string | undefined;
|
|
1928
|
-
readonly color?: string | undefined;
|
|
1929
|
-
readonly size?: import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown> | undefined;
|
|
1930
|
-
} | undefined;
|
|
1931
|
-
} & {}>;
|
|
1932
|
-
bem: {
|
|
1933
|
-
b: (blockSuffix?: string) => string;
|
|
1934
|
-
e: (element?: string) => string;
|
|
1935
|
-
m: (modifier?: string) => string;
|
|
1936
|
-
be: (blockSuffix?: string, element?: string) => string;
|
|
1937
|
-
em: (element: string, modifier: string) => string;
|
|
1938
|
-
bm: (blockSuffix: string, modifier: string) => string;
|
|
1939
|
-
bem: (blockSuffix: string, element: string, modifier: string) => string;
|
|
1940
|
-
is: (name?: string) => string;
|
|
1941
|
-
};
|
|
1942
|
-
attrs: {
|
|
1943
|
-
[x: string]: unknown;
|
|
1944
|
-
};
|
|
1945
|
-
iconDetails: import("vue").ComputedRef<{
|
|
1946
|
-
readonly iconName?: string | undefined;
|
|
1947
|
-
readonly color?: string | undefined;
|
|
1948
|
-
readonly size?: import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown> | undefined;
|
|
1949
|
-
}>;
|
|
1950
|
-
hasIconOnLeft: import("vue").ComputedRef<boolean | "" | undefined>;
|
|
1951
|
-
hasIconOnRight: import("vue").ComputedRef<string | false | undefined>;
|
|
1952
|
-
readonly Button: {
|
|
1953
|
-
new (...args: any[]): import("@vue/runtime-core").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
1959
|
+
}>>>;
|
|
1960
|
+
default: Partial<import("vue").ExtractPropTypes<{
|
|
1954
1961
|
prefixCls: StringConstructor;
|
|
1955
1962
|
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
1956
1963
|
htmlType: {
|
|
@@ -1997,7 +2004,10 @@ export declare const LlNewModal: import("ll-plus/es/utils").SFCWithInstall<impor
|
|
|
1997
2004
|
onMousedown: {
|
|
1998
2005
|
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
1999
2006
|
};
|
|
2000
|
-
}
|
|
2007
|
+
}>>;
|
|
2008
|
+
};
|
|
2009
|
+
cancelButtonProps: {
|
|
2010
|
+
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
|
2001
2011
|
prefixCls: StringConstructor;
|
|
2002
2012
|
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
2003
2013
|
htmlType: {
|
|
@@ -2044,26 +2054,8 @@ export declare const LlNewModal: import("ll-plus/es/utils").SFCWithInstall<impor
|
|
|
2044
2054
|
onMousedown: {
|
|
2045
2055
|
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
2046
2056
|
};
|
|
2047
|
-
}
|
|
2048
|
-
|
|
2049
|
-
disabled: boolean;
|
|
2050
|
-
danger: boolean;
|
|
2051
|
-
ghost: boolean;
|
|
2052
|
-
htmlType: import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType;
|
|
2053
|
-
loading: boolean | {
|
|
2054
|
-
delay?: number | undefined;
|
|
2055
|
-
};
|
|
2056
|
-
}, true, {}, import("ant-design-vue/es/_util/type").CustomSlotsType<{
|
|
2057
|
-
icon: any;
|
|
2058
|
-
default: any;
|
|
2059
|
-
}>, {
|
|
2060
|
-
P: {};
|
|
2061
|
-
B: {};
|
|
2062
|
-
D: {};
|
|
2063
|
-
C: {};
|
|
2064
|
-
M: {};
|
|
2065
|
-
Defaults: {};
|
|
2066
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
2057
|
+
}>>>;
|
|
2058
|
+
default: Partial<import("vue").ExtractPropTypes<{
|
|
2067
2059
|
prefixCls: StringConstructor;
|
|
2068
2060
|
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
2069
2061
|
htmlType: {
|
|
@@ -2110,20 +2102,74 @@ export declare const LlNewModal: import("ll-plus/es/utils").SFCWithInstall<impor
|
|
|
2110
2102
|
onMousedown: {
|
|
2111
2103
|
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
2112
2104
|
};
|
|
2113
|
-
}
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2105
|
+
}>>;
|
|
2106
|
+
};
|
|
2107
|
+
destroyOnClose: {
|
|
2108
|
+
type: BooleanConstructor;
|
|
2109
|
+
default: any;
|
|
2110
|
+
};
|
|
2111
|
+
wrapClassName: StringConstructor;
|
|
2112
|
+
maskTransitionName: StringConstructor;
|
|
2113
|
+
transitionName: StringConstructor;
|
|
2114
|
+
getContainer: {
|
|
2115
|
+
type: import("vue").PropType<string | false | HTMLElement | (() => HTMLElement)>;
|
|
2116
|
+
default: any;
|
|
2117
|
+
};
|
|
2118
|
+
zIndex: NumberConstructor;
|
|
2119
|
+
bodyStyle: {
|
|
2120
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
2121
|
+
default: import("vue").CSSProperties;
|
|
2122
|
+
};
|
|
2123
|
+
maskStyle: {
|
|
2124
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
2125
|
+
default: import("vue").CSSProperties;
|
|
2126
|
+
};
|
|
2127
|
+
mask: {
|
|
2128
|
+
type: BooleanConstructor;
|
|
2129
|
+
default: any;
|
|
2130
|
+
};
|
|
2131
|
+
keyboard: {
|
|
2132
|
+
type: BooleanConstructor;
|
|
2133
|
+
default: any;
|
|
2134
|
+
};
|
|
2135
|
+
wrapProps: ObjectConstructor;
|
|
2136
|
+
focusTriggerAfterClose: {
|
|
2137
|
+
type: BooleanConstructor;
|
|
2138
|
+
default: any;
|
|
2139
|
+
};
|
|
2140
|
+
modalRender: import("vue").PropType<(arg: {
|
|
2141
|
+
originVNode: import("ant-design-vue/es/_util/type").VueNode;
|
|
2142
|
+
}) => import("ant-design-vue/es/_util/type").VueNode>;
|
|
2143
|
+
mousePosition: {
|
|
2144
|
+
type: import("vue").PropType<{
|
|
2145
|
+
x: number;
|
|
2146
|
+
y: number;
|
|
2122
2147
|
}>;
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2148
|
+
default: {
|
|
2149
|
+
x: number;
|
|
2150
|
+
y: number;
|
|
2151
|
+
};
|
|
2152
|
+
};
|
|
2153
|
+
}>>, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
2154
|
+
mask: boolean;
|
|
2155
|
+
open: boolean;
|
|
2156
|
+
visible: boolean;
|
|
2157
|
+
getContainer: string | false | HTMLElement | (() => HTMLElement);
|
|
2158
|
+
forceRender: boolean;
|
|
2159
|
+
maskClosable: boolean;
|
|
2160
|
+
keyboard: boolean;
|
|
2161
|
+
closable: boolean;
|
|
2162
|
+
centered: boolean;
|
|
2163
|
+
bodyStyle: import("vue").CSSProperties;
|
|
2164
|
+
maskStyle: import("vue").CSSProperties;
|
|
2165
|
+
destroyOnClose: boolean;
|
|
2166
|
+
mousePosition: {
|
|
2167
|
+
x: number;
|
|
2168
|
+
y: number;
|
|
2169
|
+
};
|
|
2170
|
+
focusTriggerAfterClose: boolean;
|
|
2171
|
+
confirmLoading: boolean;
|
|
2172
|
+
okButtonProps: Partial<import("vue").ExtractPropTypes<{
|
|
2127
2173
|
prefixCls: StringConstructor;
|
|
2128
2174
|
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
2129
2175
|
htmlType: {
|
|
@@ -2170,112 +2216,65 @@ export declare const LlNewModal: import("ll-plus/es/utils").SFCWithInstall<impor
|
|
|
2170
2216
|
onMousedown: {
|
|
2171
2217
|
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
2172
2218
|
};
|
|
2173
|
-
}
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
delay?: number | undefined;
|
|
2219
|
+
}>>;
|
|
2220
|
+
cancelButtonProps: Partial<import("vue").ExtractPropTypes<{
|
|
2221
|
+
prefixCls: StringConstructor;
|
|
2222
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
|
|
2223
|
+
htmlType: {
|
|
2224
|
+
type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
2225
|
+
default: string;
|
|
2181
2226
|
};
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
2227
|
+
shape: {
|
|
2228
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
|
|
2229
|
+
};
|
|
2230
|
+
size: {
|
|
2231
|
+
type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
|
|
2232
|
+
};
|
|
2233
|
+
loading: {
|
|
2234
|
+
type: import("vue").PropType<boolean | {
|
|
2235
|
+
delay?: number | undefined;
|
|
2236
|
+
}>;
|
|
2237
|
+
default: () => boolean | {
|
|
2238
|
+
delay?: number | undefined;
|
|
2195
2239
|
};
|
|
2196
|
-
}>>, {}, {}>;
|
|
2197
|
-
};
|
|
2198
|
-
readonly LlIcon: import("ll-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
2199
|
-
readonly iconName: {
|
|
2200
|
-
readonly type: import("vue").PropType<string>;
|
|
2201
|
-
readonly required: false;
|
|
2202
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2203
|
-
__epPropKey: true;
|
|
2204
2240
|
};
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2209
|
-
__epPropKey: true;
|
|
2241
|
+
disabled: {
|
|
2242
|
+
type: BooleanConstructor;
|
|
2243
|
+
default: any;
|
|
2210
2244
|
};
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2215
|
-
__epPropKey: true;
|
|
2245
|
+
ghost: {
|
|
2246
|
+
type: BooleanConstructor;
|
|
2247
|
+
default: any;
|
|
2216
2248
|
};
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
readonly color?: string | undefined;
|
|
2221
|
-
readonly size?: import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown> | undefined;
|
|
2222
|
-
} & {}>;
|
|
2223
|
-
iconName: import("vue").ComputedRef<string>;
|
|
2224
|
-
style: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
2225
|
-
bem: {
|
|
2226
|
-
b: (blockSuffix?: string) => string;
|
|
2227
|
-
e: (element?: string) => string;
|
|
2228
|
-
m: (modifier?: string) => string;
|
|
2229
|
-
be: (blockSuffix?: string, element?: string) => string;
|
|
2230
|
-
em: (element: string, modifier: string) => string;
|
|
2231
|
-
bm: (blockSuffix: string, modifier: string) => string;
|
|
2232
|
-
bem: (blockSuffix: string, element: string, modifier: string) => string;
|
|
2233
|
-
is: (name?: string) => string;
|
|
2249
|
+
block: {
|
|
2250
|
+
type: BooleanConstructor;
|
|
2251
|
+
default: any;
|
|
2234
2252
|
};
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
readonly required: false;
|
|
2239
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2240
|
-
__epPropKey: true;
|
|
2253
|
+
danger: {
|
|
2254
|
+
type: BooleanConstructor;
|
|
2255
|
+
default: any;
|
|
2241
2256
|
};
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2257
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
2258
|
+
href: StringConstructor;
|
|
2259
|
+
target: StringConstructor;
|
|
2260
|
+
title: StringConstructor;
|
|
2261
|
+
onClick: {
|
|
2262
|
+
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
2247
2263
|
};
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
readonly required: false;
|
|
2251
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2252
|
-
__epPropKey: true;
|
|
2264
|
+
onMousedown: {
|
|
2265
|
+
type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
|
|
2253
2266
|
};
|
|
2254
|
-
}
|
|
2255
|
-
},
|
|
2256
|
-
readonly
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
readonly
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
readonly color?: string | undefined;
|
|
2266
|
-
readonly size?: import("ll-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown> | undefined;
|
|
2267
|
-
}>;
|
|
2268
|
-
readonly required: false;
|
|
2269
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2270
|
-
__epPropKey: true;
|
|
2271
|
-
};
|
|
2272
|
-
readonly position: {
|
|
2273
|
-
readonly type: import("vue").PropType<string>;
|
|
2274
|
-
readonly required: false;
|
|
2275
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2276
|
-
__epPropKey: true;
|
|
2277
|
-
};
|
|
2278
|
-
}>>, {}, {}>>;
|
|
2267
|
+
}>>;
|
|
2268
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]> & {
|
|
2269
|
+
readonly info: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
2270
|
+
readonly success: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
2271
|
+
readonly error: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
2272
|
+
readonly warn: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
2273
|
+
readonly warning: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
2274
|
+
readonly confirm: import("ant-design-vue/es/modal/Modal").ModalFunc;
|
|
2275
|
+
readonly destroyAll: () => void;
|
|
2276
|
+
readonly useModal: typeof import("ant-design-vue/es/modal/useModal").default;
|
|
2277
|
+
};
|
|
2279
2278
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2280
2279
|
readonly cancel: () => boolean;
|
|
2281
2280
|
readonly ok: () => boolean;
|