@deot/vc 1.0.38 → 1.0.39
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/dist/index.d.ts +1466 -378
- package/dist/index.iife.js +5697 -3207
- package/dist/index.umd.cjs +5697 -3207
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { FormRule } from '@deot/vc-components';
|
|
|
11
11
|
import { GlobalComponents } from 'vue';
|
|
12
12
|
import { GlobalDirectives } from 'vue';
|
|
13
13
|
import { JSX as JSX_2 } from 'vue/jsx-runtime';
|
|
14
|
+
import { KEY_VALUE } from 'packages/components/tree/store';
|
|
14
15
|
import { MModal } from '@deot/vc-components';
|
|
15
16
|
import { PortalLeaf } from 'packages/components/portal/portal-leaf';
|
|
16
17
|
import { PortalOptions } from 'packages/components/portal/default-options';
|
|
@@ -23,6 +24,7 @@ import { RendererNode } from 'vue';
|
|
|
23
24
|
import { ScrollerProps } from '@deot/vc-components';
|
|
24
25
|
import { SetupContext } from 'vue';
|
|
25
26
|
import { StyleValue } from 'vue';
|
|
27
|
+
import { TreeData } from 'packages/components/select/utils';
|
|
26
28
|
import { Utils } from '@deot/vc-shared';
|
|
27
29
|
import type { VcOptions } from '@deot/vc-components';
|
|
28
30
|
import { VNode } from 'vue';
|
|
@@ -550,30 +552,388 @@ export declare const Components: {
|
|
|
550
552
|
tag: string;
|
|
551
553
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
552
554
|
Cascader: DefineComponent<ExtractPropTypes< {
|
|
555
|
+
data: {
|
|
556
|
+
type: PropType<TreeData[]>;
|
|
557
|
+
default: () => never[];
|
|
558
|
+
};
|
|
559
|
+
format: {
|
|
560
|
+
type: FunctionConstructor;
|
|
561
|
+
default: (v: any[]) => string;
|
|
562
|
+
};
|
|
563
|
+
changeOnSelect: {
|
|
564
|
+
type: BooleanConstructor;
|
|
565
|
+
default: boolean;
|
|
566
|
+
};
|
|
567
|
+
autoWidth: {
|
|
568
|
+
type: BooleanConstructor;
|
|
569
|
+
default: boolean;
|
|
570
|
+
};
|
|
571
|
+
searchPlaceholder: {
|
|
572
|
+
type: StringConstructor;
|
|
573
|
+
default: string;
|
|
574
|
+
};
|
|
575
|
+
trigger: {
|
|
576
|
+
type: StringConstructor;
|
|
577
|
+
default: string;
|
|
578
|
+
};
|
|
553
579
|
tag: {
|
|
554
580
|
type: StringConstructor;
|
|
555
581
|
default: string;
|
|
556
582
|
};
|
|
557
|
-
|
|
583
|
+
placement: {
|
|
584
|
+
type: StringConstructor;
|
|
585
|
+
default: string;
|
|
586
|
+
};
|
|
587
|
+
arrow: {
|
|
588
|
+
type: BooleanConstructor;
|
|
589
|
+
default: boolean;
|
|
590
|
+
};
|
|
591
|
+
max: {
|
|
592
|
+
type: NumberConstructor;
|
|
593
|
+
default: number;
|
|
594
|
+
validator: (v: any) => boolean;
|
|
595
|
+
};
|
|
596
|
+
maxTags: NumberConstructor;
|
|
597
|
+
searchable: {
|
|
598
|
+
type: BooleanConstructor;
|
|
599
|
+
default: boolean;
|
|
600
|
+
};
|
|
601
|
+
loadData: {
|
|
602
|
+
type: FunctionConstructor;
|
|
603
|
+
};
|
|
604
|
+
extra: {
|
|
605
|
+
type: StringConstructor;
|
|
606
|
+
default: string;
|
|
607
|
+
};
|
|
608
|
+
separator: {
|
|
609
|
+
type: StringConstructor;
|
|
610
|
+
default: string;
|
|
611
|
+
};
|
|
612
|
+
numerable: {
|
|
613
|
+
type: BooleanConstructor;
|
|
614
|
+
default: boolean;
|
|
615
|
+
};
|
|
616
|
+
nullValue: {
|
|
617
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
618
|
+
default: undefined;
|
|
619
|
+
};
|
|
620
|
+
id: {
|
|
621
|
+
type: StringConstructor;
|
|
622
|
+
};
|
|
623
|
+
modelValue: PropType<string | number | any[]>;
|
|
624
|
+
disabled: {
|
|
625
|
+
type: BooleanConstructor;
|
|
626
|
+
default: boolean;
|
|
627
|
+
};
|
|
628
|
+
clearable: {
|
|
629
|
+
type: BooleanConstructor;
|
|
630
|
+
default: boolean;
|
|
631
|
+
};
|
|
632
|
+
portal: {
|
|
633
|
+
type: BooleanConstructor;
|
|
634
|
+
default: boolean;
|
|
635
|
+
};
|
|
636
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
637
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
638
|
+
data: {
|
|
639
|
+
type: PropType<TreeData[]>;
|
|
640
|
+
default: () => never[];
|
|
641
|
+
};
|
|
642
|
+
format: {
|
|
643
|
+
type: FunctionConstructor;
|
|
644
|
+
default: (v: any[]) => string;
|
|
645
|
+
};
|
|
646
|
+
changeOnSelect: {
|
|
647
|
+
type: BooleanConstructor;
|
|
648
|
+
default: boolean;
|
|
649
|
+
};
|
|
650
|
+
autoWidth: {
|
|
651
|
+
type: BooleanConstructor;
|
|
652
|
+
default: boolean;
|
|
653
|
+
};
|
|
654
|
+
searchPlaceholder: {
|
|
655
|
+
type: StringConstructor;
|
|
656
|
+
default: string;
|
|
657
|
+
};
|
|
658
|
+
trigger: {
|
|
659
|
+
type: StringConstructor;
|
|
660
|
+
default: string;
|
|
661
|
+
};
|
|
558
662
|
tag: {
|
|
559
663
|
type: StringConstructor;
|
|
560
664
|
default: string;
|
|
561
665
|
};
|
|
562
|
-
|
|
666
|
+
placement: {
|
|
667
|
+
type: StringConstructor;
|
|
668
|
+
default: string;
|
|
669
|
+
};
|
|
670
|
+
arrow: {
|
|
671
|
+
type: BooleanConstructor;
|
|
672
|
+
default: boolean;
|
|
673
|
+
};
|
|
674
|
+
max: {
|
|
675
|
+
type: NumberConstructor;
|
|
676
|
+
default: number;
|
|
677
|
+
validator: (v: any) => boolean;
|
|
678
|
+
};
|
|
679
|
+
maxTags: NumberConstructor;
|
|
680
|
+
searchable: {
|
|
681
|
+
type: BooleanConstructor;
|
|
682
|
+
default: boolean;
|
|
683
|
+
};
|
|
684
|
+
loadData: {
|
|
685
|
+
type: FunctionConstructor;
|
|
686
|
+
};
|
|
687
|
+
extra: {
|
|
688
|
+
type: StringConstructor;
|
|
689
|
+
default: string;
|
|
690
|
+
};
|
|
691
|
+
separator: {
|
|
692
|
+
type: StringConstructor;
|
|
693
|
+
default: string;
|
|
694
|
+
};
|
|
695
|
+
numerable: {
|
|
696
|
+
type: BooleanConstructor;
|
|
697
|
+
default: boolean;
|
|
698
|
+
};
|
|
699
|
+
nullValue: {
|
|
700
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
701
|
+
default: undefined;
|
|
702
|
+
};
|
|
703
|
+
id: {
|
|
704
|
+
type: StringConstructor;
|
|
705
|
+
};
|
|
706
|
+
modelValue: PropType<string | number | any[]>;
|
|
707
|
+
disabled: {
|
|
708
|
+
type: BooleanConstructor;
|
|
709
|
+
default: boolean;
|
|
710
|
+
};
|
|
711
|
+
clearable: {
|
|
712
|
+
type: BooleanConstructor;
|
|
713
|
+
default: boolean;
|
|
714
|
+
};
|
|
715
|
+
portal: {
|
|
716
|
+
type: BooleanConstructor;
|
|
717
|
+
default: boolean;
|
|
718
|
+
};
|
|
719
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
720
|
+
}>> & Readonly<{
|
|
721
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
722
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
723
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
724
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
725
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
726
|
+
}>, {
|
|
563
727
|
tag: string;
|
|
728
|
+
data: TreeData[];
|
|
729
|
+
disabled: boolean;
|
|
730
|
+
extra: string;
|
|
731
|
+
numerable: boolean;
|
|
732
|
+
separator: string;
|
|
733
|
+
max: number;
|
|
734
|
+
nullValue: string | number | Record<string, any>;
|
|
735
|
+
clearable: boolean;
|
|
736
|
+
placement: string;
|
|
737
|
+
portal: boolean;
|
|
738
|
+
arrow: boolean;
|
|
739
|
+
autoWidth: boolean;
|
|
740
|
+
trigger: string;
|
|
741
|
+
searchPlaceholder: string;
|
|
742
|
+
searchable: boolean;
|
|
743
|
+
format: Function;
|
|
744
|
+
changeOnSelect: boolean;
|
|
564
745
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
565
746
|
MCascader: DefineComponent<ExtractPropTypes< {
|
|
747
|
+
data: {
|
|
748
|
+
type: PropType<TreeData[]>;
|
|
749
|
+
default: () => never[];
|
|
750
|
+
};
|
|
751
|
+
format: {
|
|
752
|
+
type: FunctionConstructor;
|
|
753
|
+
default: (v: any[]) => string;
|
|
754
|
+
};
|
|
755
|
+
changeOnSelect: {
|
|
756
|
+
type: BooleanConstructor;
|
|
757
|
+
default: boolean;
|
|
758
|
+
};
|
|
759
|
+
autoWidth: {
|
|
760
|
+
type: BooleanConstructor;
|
|
761
|
+
default: boolean;
|
|
762
|
+
};
|
|
763
|
+
searchPlaceholder: {
|
|
764
|
+
type: StringConstructor;
|
|
765
|
+
default: string;
|
|
766
|
+
};
|
|
767
|
+
trigger: {
|
|
768
|
+
type: StringConstructor;
|
|
769
|
+
default: string;
|
|
770
|
+
};
|
|
566
771
|
tag: {
|
|
567
772
|
type: StringConstructor;
|
|
568
773
|
default: string;
|
|
569
774
|
};
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
775
|
+
placement: {
|
|
776
|
+
type: StringConstructor;
|
|
777
|
+
default: string;
|
|
778
|
+
};
|
|
779
|
+
arrow: {
|
|
780
|
+
type: BooleanConstructor;
|
|
781
|
+
default: boolean;
|
|
782
|
+
};
|
|
783
|
+
max: {
|
|
784
|
+
type: NumberConstructor;
|
|
785
|
+
default: number;
|
|
786
|
+
validator: (v: any) => boolean;
|
|
787
|
+
};
|
|
788
|
+
maxTags: NumberConstructor;
|
|
789
|
+
searchable: {
|
|
790
|
+
type: BooleanConstructor;
|
|
791
|
+
default: boolean;
|
|
792
|
+
};
|
|
793
|
+
loadData: {
|
|
794
|
+
type: FunctionConstructor;
|
|
795
|
+
};
|
|
796
|
+
extra: {
|
|
797
|
+
type: StringConstructor;
|
|
798
|
+
default: string;
|
|
799
|
+
};
|
|
800
|
+
separator: {
|
|
801
|
+
type: StringConstructor;
|
|
802
|
+
default: string;
|
|
803
|
+
};
|
|
804
|
+
numerable: {
|
|
805
|
+
type: BooleanConstructor;
|
|
806
|
+
default: boolean;
|
|
807
|
+
};
|
|
808
|
+
nullValue: {
|
|
809
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
810
|
+
default: undefined;
|
|
811
|
+
};
|
|
812
|
+
id: {
|
|
813
|
+
type: StringConstructor;
|
|
814
|
+
};
|
|
815
|
+
modelValue: PropType<string | number | any[]>;
|
|
816
|
+
disabled: {
|
|
817
|
+
type: BooleanConstructor;
|
|
818
|
+
default: boolean;
|
|
819
|
+
};
|
|
820
|
+
clearable: {
|
|
821
|
+
type: BooleanConstructor;
|
|
822
|
+
default: boolean;
|
|
823
|
+
};
|
|
824
|
+
portal: {
|
|
825
|
+
type: BooleanConstructor;
|
|
826
|
+
default: boolean;
|
|
827
|
+
};
|
|
828
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
829
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
830
|
+
data: {
|
|
831
|
+
type: PropType<TreeData[]>;
|
|
832
|
+
default: () => never[];
|
|
833
|
+
};
|
|
834
|
+
format: {
|
|
835
|
+
type: FunctionConstructor;
|
|
836
|
+
default: (v: any[]) => string;
|
|
837
|
+
};
|
|
838
|
+
changeOnSelect: {
|
|
839
|
+
type: BooleanConstructor;
|
|
840
|
+
default: boolean;
|
|
841
|
+
};
|
|
842
|
+
autoWidth: {
|
|
843
|
+
type: BooleanConstructor;
|
|
844
|
+
default: boolean;
|
|
845
|
+
};
|
|
846
|
+
searchPlaceholder: {
|
|
847
|
+
type: StringConstructor;
|
|
848
|
+
default: string;
|
|
849
|
+
};
|
|
850
|
+
trigger: {
|
|
851
|
+
type: StringConstructor;
|
|
852
|
+
default: string;
|
|
853
|
+
};
|
|
854
|
+
tag: {
|
|
855
|
+
type: StringConstructor;
|
|
856
|
+
default: string;
|
|
857
|
+
};
|
|
858
|
+
placement: {
|
|
859
|
+
type: StringConstructor;
|
|
860
|
+
default: string;
|
|
861
|
+
};
|
|
862
|
+
arrow: {
|
|
863
|
+
type: BooleanConstructor;
|
|
864
|
+
default: boolean;
|
|
865
|
+
};
|
|
866
|
+
max: {
|
|
867
|
+
type: NumberConstructor;
|
|
868
|
+
default: number;
|
|
869
|
+
validator: (v: any) => boolean;
|
|
870
|
+
};
|
|
871
|
+
maxTags: NumberConstructor;
|
|
872
|
+
searchable: {
|
|
873
|
+
type: BooleanConstructor;
|
|
874
|
+
default: boolean;
|
|
875
|
+
};
|
|
876
|
+
loadData: {
|
|
877
|
+
type: FunctionConstructor;
|
|
878
|
+
};
|
|
879
|
+
extra: {
|
|
880
|
+
type: StringConstructor;
|
|
881
|
+
default: string;
|
|
882
|
+
};
|
|
883
|
+
separator: {
|
|
884
|
+
type: StringConstructor;
|
|
885
|
+
default: string;
|
|
886
|
+
};
|
|
887
|
+
numerable: {
|
|
888
|
+
type: BooleanConstructor;
|
|
889
|
+
default: boolean;
|
|
890
|
+
};
|
|
891
|
+
nullValue: {
|
|
892
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
893
|
+
default: undefined;
|
|
894
|
+
};
|
|
895
|
+
id: {
|
|
896
|
+
type: StringConstructor;
|
|
897
|
+
};
|
|
898
|
+
modelValue: PropType<string | number | any[]>;
|
|
899
|
+
disabled: {
|
|
900
|
+
type: BooleanConstructor;
|
|
901
|
+
default: boolean;
|
|
902
|
+
};
|
|
903
|
+
clearable: {
|
|
904
|
+
type: BooleanConstructor;
|
|
905
|
+
default: boolean;
|
|
906
|
+
};
|
|
907
|
+
portal: {
|
|
908
|
+
type: BooleanConstructor;
|
|
909
|
+
default: boolean;
|
|
574
910
|
};
|
|
575
|
-
|
|
911
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
912
|
+
}>> & Readonly<{
|
|
913
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
914
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
915
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
916
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
917
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
918
|
+
}>, {
|
|
576
919
|
tag: string;
|
|
920
|
+
data: TreeData[];
|
|
921
|
+
disabled: boolean;
|
|
922
|
+
extra: string;
|
|
923
|
+
numerable: boolean;
|
|
924
|
+
separator: string;
|
|
925
|
+
max: number;
|
|
926
|
+
nullValue: string | number | Record<string, any>;
|
|
927
|
+
clearable: boolean;
|
|
928
|
+
placement: string;
|
|
929
|
+
portal: boolean;
|
|
930
|
+
arrow: boolean;
|
|
931
|
+
autoWidth: boolean;
|
|
932
|
+
trigger: string;
|
|
933
|
+
searchPlaceholder: string;
|
|
934
|
+
searchable: boolean;
|
|
935
|
+
format: Function;
|
|
936
|
+
changeOnSelect: boolean;
|
|
577
937
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
578
938
|
Chart: DefineComponent<ExtractPropTypes< {
|
|
579
939
|
options: ObjectConstructor;
|
|
@@ -974,9 +1334,9 @@ export declare const Components: {
|
|
|
974
1334
|
"onUpdate:moodelValue"?: ((...args: any[]) => any) | undefined;
|
|
975
1335
|
}>, {
|
|
976
1336
|
tag: string;
|
|
1337
|
+
styleless: boolean;
|
|
977
1338
|
alive: boolean;
|
|
978
1339
|
accordion: boolean;
|
|
979
|
-
styleless: boolean;
|
|
980
1340
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
981
1341
|
MCollapse: DefineComponent<ExtractPropTypes< {
|
|
982
1342
|
tag: {
|
|
@@ -1025,9 +1385,9 @@ export declare const Components: {
|
|
|
1025
1385
|
"onUpdate:moodelValue"?: ((...args: any[]) => any) | undefined;
|
|
1026
1386
|
}>, {
|
|
1027
1387
|
tag: string;
|
|
1388
|
+
styleless: boolean;
|
|
1028
1389
|
alive: boolean;
|
|
1029
1390
|
accordion: boolean;
|
|
1030
|
-
styleless: boolean;
|
|
1031
1391
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1032
1392
|
CollapseItem: DefineComponent<ExtractPropTypes< {
|
|
1033
1393
|
tag: {
|
|
@@ -1098,26 +1458,128 @@ export declare const Components: {
|
|
|
1098
1458
|
type: StringConstructor;
|
|
1099
1459
|
default: string;
|
|
1100
1460
|
};
|
|
1101
|
-
|
|
1461
|
+
format: {
|
|
1462
|
+
type: StringConstructor;
|
|
1463
|
+
default: string;
|
|
1464
|
+
};
|
|
1465
|
+
t: {
|
|
1466
|
+
type: NumberConstructor;
|
|
1467
|
+
default: number;
|
|
1468
|
+
};
|
|
1469
|
+
targetTime: {
|
|
1470
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1471
|
+
default: string;
|
|
1472
|
+
};
|
|
1473
|
+
serverTime: {
|
|
1474
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1475
|
+
default: string;
|
|
1476
|
+
};
|
|
1477
|
+
render: FunctionConstructor;
|
|
1478
|
+
trim: {
|
|
1479
|
+
type: BooleanConstructor;
|
|
1480
|
+
default: boolean;
|
|
1481
|
+
};
|
|
1482
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "error" | "finish")[], "change" | "error" | "finish", PublicProps, Readonly<ExtractPropTypes< {
|
|
1102
1483
|
tag: {
|
|
1103
1484
|
type: StringConstructor;
|
|
1104
1485
|
default: string;
|
|
1105
1486
|
};
|
|
1106
|
-
|
|
1487
|
+
format: {
|
|
1488
|
+
type: StringConstructor;
|
|
1489
|
+
default: string;
|
|
1490
|
+
};
|
|
1491
|
+
t: {
|
|
1492
|
+
type: NumberConstructor;
|
|
1493
|
+
default: number;
|
|
1494
|
+
};
|
|
1495
|
+
targetTime: {
|
|
1496
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1497
|
+
default: string;
|
|
1498
|
+
};
|
|
1499
|
+
serverTime: {
|
|
1500
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1501
|
+
default: string;
|
|
1502
|
+
};
|
|
1503
|
+
render: FunctionConstructor;
|
|
1504
|
+
trim: {
|
|
1505
|
+
type: BooleanConstructor;
|
|
1506
|
+
default: boolean;
|
|
1507
|
+
};
|
|
1508
|
+
}>> & Readonly<{
|
|
1509
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1510
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1511
|
+
onFinish?: ((...args: any[]) => any) | undefined;
|
|
1512
|
+
}>, {
|
|
1107
1513
|
tag: string;
|
|
1514
|
+
trim: boolean;
|
|
1515
|
+
format: string;
|
|
1516
|
+
t: number;
|
|
1517
|
+
targetTime: string | number | Date;
|
|
1518
|
+
serverTime: string | number | Date;
|
|
1108
1519
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1109
1520
|
MCountdown: DefineComponent<ExtractPropTypes< {
|
|
1110
1521
|
tag: {
|
|
1111
1522
|
type: StringConstructor;
|
|
1112
1523
|
default: string;
|
|
1113
1524
|
};
|
|
1114
|
-
|
|
1525
|
+
format: {
|
|
1526
|
+
type: StringConstructor;
|
|
1527
|
+
default: string;
|
|
1528
|
+
};
|
|
1529
|
+
t: {
|
|
1530
|
+
type: NumberConstructor;
|
|
1531
|
+
default: number;
|
|
1532
|
+
};
|
|
1533
|
+
targetTime: {
|
|
1534
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1535
|
+
default: string;
|
|
1536
|
+
};
|
|
1537
|
+
serverTime: {
|
|
1538
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1539
|
+
default: string;
|
|
1540
|
+
};
|
|
1541
|
+
render: FunctionConstructor;
|
|
1542
|
+
trim: {
|
|
1543
|
+
type: BooleanConstructor;
|
|
1544
|
+
default: boolean;
|
|
1545
|
+
};
|
|
1546
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "error" | "finish")[], "change" | "error" | "finish", PublicProps, Readonly<ExtractPropTypes< {
|
|
1115
1547
|
tag: {
|
|
1116
1548
|
type: StringConstructor;
|
|
1117
1549
|
default: string;
|
|
1118
1550
|
};
|
|
1119
|
-
|
|
1551
|
+
format: {
|
|
1552
|
+
type: StringConstructor;
|
|
1553
|
+
default: string;
|
|
1554
|
+
};
|
|
1555
|
+
t: {
|
|
1556
|
+
type: NumberConstructor;
|
|
1557
|
+
default: number;
|
|
1558
|
+
};
|
|
1559
|
+
targetTime: {
|
|
1560
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1561
|
+
default: string;
|
|
1562
|
+
};
|
|
1563
|
+
serverTime: {
|
|
1564
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1565
|
+
default: string;
|
|
1566
|
+
};
|
|
1567
|
+
render: FunctionConstructor;
|
|
1568
|
+
trim: {
|
|
1569
|
+
type: BooleanConstructor;
|
|
1570
|
+
default: boolean;
|
|
1571
|
+
};
|
|
1572
|
+
}>> & Readonly<{
|
|
1573
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1574
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1575
|
+
onFinish?: ((...args: any[]) => any) | undefined;
|
|
1576
|
+
}>, {
|
|
1120
1577
|
tag: string;
|
|
1578
|
+
trim: boolean;
|
|
1579
|
+
format: string;
|
|
1580
|
+
t: number;
|
|
1581
|
+
targetTime: string | number | Date;
|
|
1582
|
+
serverTime: string | number | Date;
|
|
1121
1583
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1122
1584
|
Customer: DefineComponent<ExtractPropTypes< {
|
|
1123
1585
|
render: {
|
|
@@ -1286,27 +1748,27 @@ export declare const Components: {
|
|
|
1286
1748
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1287
1749
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
1288
1750
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
1751
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
1289
1752
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1290
1753
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
1291
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
1292
1754
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1293
1755
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
1294
1756
|
}>, {
|
|
1295
1757
|
tag: string;
|
|
1296
1758
|
disabled: boolean;
|
|
1297
|
-
|
|
1298
|
-
|
|
1759
|
+
separator: string;
|
|
1760
|
+
nullValue: string | number | Record<string, any>;
|
|
1299
1761
|
clearable: boolean;
|
|
1762
|
+
open: boolean;
|
|
1763
|
+
multiple: boolean;
|
|
1300
1764
|
placement: string;
|
|
1765
|
+
portal: boolean;
|
|
1301
1766
|
arrow: boolean;
|
|
1302
1767
|
trigger: string;
|
|
1303
|
-
|
|
1768
|
+
changeOnSelect: boolean;
|
|
1304
1769
|
confirm: boolean;
|
|
1305
|
-
separator: string;
|
|
1306
1770
|
splitPanels: boolean;
|
|
1307
1771
|
steps: unknown[];
|
|
1308
|
-
changeOnSelect: boolean;
|
|
1309
|
-
nullValue: string | number | Record<string, any>;
|
|
1310
1772
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1311
1773
|
MDatePicker: DefineComponent<ExtractPropTypes< {
|
|
1312
1774
|
type: StringConstructor;
|
|
@@ -1445,27 +1907,27 @@ export declare const Components: {
|
|
|
1445
1907
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1446
1908
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
1447
1909
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
1910
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
1448
1911
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1449
1912
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
1450
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
1451
1913
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1452
1914
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
1453
1915
|
}>, {
|
|
1454
1916
|
tag: string;
|
|
1455
1917
|
disabled: boolean;
|
|
1456
|
-
|
|
1457
|
-
|
|
1918
|
+
separator: string;
|
|
1919
|
+
nullValue: string | number | Record<string, any>;
|
|
1458
1920
|
clearable: boolean;
|
|
1921
|
+
open: boolean;
|
|
1922
|
+
multiple: boolean;
|
|
1459
1923
|
placement: string;
|
|
1924
|
+
portal: boolean;
|
|
1460
1925
|
arrow: boolean;
|
|
1461
1926
|
trigger: string;
|
|
1462
|
-
|
|
1927
|
+
changeOnSelect: boolean;
|
|
1463
1928
|
confirm: boolean;
|
|
1464
|
-
separator: string;
|
|
1465
1929
|
splitPanels: boolean;
|
|
1466
1930
|
steps: unknown[];
|
|
1467
|
-
changeOnSelect: boolean;
|
|
1468
|
-
nullValue: string | number | Record<string, any>;
|
|
1469
1931
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1470
1932
|
Debounce: DefineComponent<ExtractPropTypes< {
|
|
1471
1933
|
wait: {
|
|
@@ -1538,30 +2000,52 @@ export declare const Components: {
|
|
|
1538
2000
|
include: RegExp;
|
|
1539
2001
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1540
2002
|
Divider: DefineComponent<ExtractPropTypes< {
|
|
1541
|
-
|
|
2003
|
+
vertical: {
|
|
2004
|
+
type: BooleanConstructor;
|
|
2005
|
+
default: boolean;
|
|
2006
|
+
};
|
|
2007
|
+
placement: {
|
|
1542
2008
|
type: StringConstructor;
|
|
1543
2009
|
default: string;
|
|
2010
|
+
validator(val: string): boolean;
|
|
1544
2011
|
};
|
|
1545
2012
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1546
|
-
|
|
2013
|
+
vertical: {
|
|
2014
|
+
type: BooleanConstructor;
|
|
2015
|
+
default: boolean;
|
|
2016
|
+
};
|
|
2017
|
+
placement: {
|
|
1547
2018
|
type: StringConstructor;
|
|
1548
2019
|
default: string;
|
|
2020
|
+
validator(val: string): boolean;
|
|
1549
2021
|
};
|
|
1550
2022
|
}>> & Readonly<{}>, {
|
|
1551
|
-
|
|
2023
|
+
vertical: boolean;
|
|
2024
|
+
placement: string;
|
|
1552
2025
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1553
2026
|
MDivider: DefineComponent<ExtractPropTypes< {
|
|
1554
|
-
|
|
2027
|
+
vertical: {
|
|
2028
|
+
type: BooleanConstructor;
|
|
2029
|
+
default: boolean;
|
|
2030
|
+
};
|
|
2031
|
+
placement: {
|
|
1555
2032
|
type: StringConstructor;
|
|
1556
2033
|
default: string;
|
|
2034
|
+
validator(val: string): boolean;
|
|
1557
2035
|
};
|
|
1558
2036
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1559
|
-
|
|
2037
|
+
vertical: {
|
|
2038
|
+
type: BooleanConstructor;
|
|
2039
|
+
default: boolean;
|
|
2040
|
+
};
|
|
2041
|
+
placement: {
|
|
1560
2042
|
type: StringConstructor;
|
|
1561
2043
|
default: string;
|
|
2044
|
+
validator(val: string): boolean;
|
|
1562
2045
|
};
|
|
1563
2046
|
}>> & Readonly<{}>, {
|
|
1564
|
-
|
|
2047
|
+
vertical: boolean;
|
|
2048
|
+
placement: string;
|
|
1565
2049
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1566
2050
|
Drawer: {
|
|
1567
2051
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
@@ -1642,10 +2126,10 @@ export declare const Components: {
|
|
|
1642
2126
|
mask: boolean;
|
|
1643
2127
|
modelValue: boolean;
|
|
1644
2128
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1645
|
-
maskClosable: boolean;
|
|
1646
2129
|
placement: string;
|
|
1647
2130
|
height: number;
|
|
1648
2131
|
width: number;
|
|
2132
|
+
maskClosable: boolean;
|
|
1649
2133
|
scrollable: boolean;
|
|
1650
2134
|
closeWithCancel: boolean;
|
|
1651
2135
|
okText: string | boolean;
|
|
@@ -1737,10 +2221,10 @@ export declare const Components: {
|
|
|
1737
2221
|
mask: boolean;
|
|
1738
2222
|
modelValue: boolean;
|
|
1739
2223
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1740
|
-
maskClosable: boolean;
|
|
1741
2224
|
placement: string;
|
|
1742
2225
|
height: number;
|
|
1743
2226
|
width: number;
|
|
2227
|
+
maskClosable: boolean;
|
|
1744
2228
|
scrollable: boolean;
|
|
1745
2229
|
closeWithCancel: boolean;
|
|
1746
2230
|
okText: string | boolean;
|
|
@@ -1829,10 +2313,10 @@ export declare const Components: {
|
|
|
1829
2313
|
mask: boolean;
|
|
1830
2314
|
modelValue: boolean;
|
|
1831
2315
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1832
|
-
maskClosable: boolean;
|
|
1833
2316
|
placement: string;
|
|
1834
2317
|
height: number;
|
|
1835
2318
|
width: number;
|
|
2319
|
+
maskClosable: boolean;
|
|
1836
2320
|
scrollable: boolean;
|
|
1837
2321
|
closeWithCancel: boolean;
|
|
1838
2322
|
okText: string | boolean;
|
|
@@ -1845,10 +2329,10 @@ export declare const Components: {
|
|
|
1845
2329
|
mask: boolean;
|
|
1846
2330
|
modelValue: boolean;
|
|
1847
2331
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1848
|
-
maskClosable: boolean;
|
|
1849
2332
|
placement: string;
|
|
1850
2333
|
height: number;
|
|
1851
2334
|
width: number;
|
|
2335
|
+
maskClosable: boolean;
|
|
1852
2336
|
scrollable: boolean;
|
|
1853
2337
|
closeWithCancel: boolean;
|
|
1854
2338
|
okText: string | boolean;
|
|
@@ -1948,10 +2432,10 @@ export declare const Components: {
|
|
|
1948
2432
|
mask: boolean;
|
|
1949
2433
|
modelValue: boolean;
|
|
1950
2434
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1951
|
-
maskClosable: boolean;
|
|
1952
2435
|
placement: string;
|
|
1953
2436
|
height: number;
|
|
1954
2437
|
width: number;
|
|
2438
|
+
maskClosable: boolean;
|
|
1955
2439
|
scrollable: boolean;
|
|
1956
2440
|
closeWithCancel: boolean;
|
|
1957
2441
|
okText: string | boolean;
|
|
@@ -2043,10 +2527,10 @@ export declare const Components: {
|
|
|
2043
2527
|
mask: boolean;
|
|
2044
2528
|
modelValue: boolean;
|
|
2045
2529
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2046
|
-
maskClosable: boolean;
|
|
2047
2530
|
placement: string;
|
|
2048
2531
|
height: number;
|
|
2049
2532
|
width: number;
|
|
2533
|
+
maskClosable: boolean;
|
|
2050
2534
|
scrollable: boolean;
|
|
2051
2535
|
closeWithCancel: boolean;
|
|
2052
2536
|
okText: string | boolean;
|
|
@@ -2135,10 +2619,10 @@ export declare const Components: {
|
|
|
2135
2619
|
mask: boolean;
|
|
2136
2620
|
modelValue: boolean;
|
|
2137
2621
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2138
|
-
maskClosable: boolean;
|
|
2139
2622
|
placement: string;
|
|
2140
2623
|
height: number;
|
|
2141
2624
|
width: number;
|
|
2625
|
+
maskClosable: boolean;
|
|
2142
2626
|
scrollable: boolean;
|
|
2143
2627
|
closeWithCancel: boolean;
|
|
2144
2628
|
okText: string | boolean;
|
|
@@ -2151,10 +2635,10 @@ export declare const Components: {
|
|
|
2151
2635
|
mask: boolean;
|
|
2152
2636
|
modelValue: boolean;
|
|
2153
2637
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2154
|
-
maskClosable: boolean;
|
|
2155
2638
|
placement: string;
|
|
2156
2639
|
height: number;
|
|
2157
2640
|
width: number;
|
|
2641
|
+
maskClosable: boolean;
|
|
2158
2642
|
scrollable: boolean;
|
|
2159
2643
|
closeWithCancel: boolean;
|
|
2160
2644
|
okText: string | boolean;
|
|
@@ -2322,10 +2806,10 @@ export declare const Components: {
|
|
|
2322
2806
|
mask: boolean;
|
|
2323
2807
|
modelValue: boolean;
|
|
2324
2808
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2325
|
-
maskClosable: boolean;
|
|
2326
2809
|
placement: string;
|
|
2327
2810
|
height: number;
|
|
2328
2811
|
width: number;
|
|
2812
|
+
maskClosable: boolean;
|
|
2329
2813
|
scrollable: boolean;
|
|
2330
2814
|
closeWithCancel: boolean;
|
|
2331
2815
|
okText: string | boolean;
|
|
@@ -2480,10 +2964,10 @@ export declare const Components: {
|
|
|
2480
2964
|
mask: boolean;
|
|
2481
2965
|
modelValue: boolean;
|
|
2482
2966
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2483
|
-
maskClosable: boolean;
|
|
2484
2967
|
placement: string;
|
|
2485
2968
|
height: number;
|
|
2486
2969
|
width: number;
|
|
2970
|
+
maskClosable: boolean;
|
|
2487
2971
|
scrollable: boolean;
|
|
2488
2972
|
closeWithCancel: boolean;
|
|
2489
2973
|
okText: string | boolean;
|
|
@@ -2864,7 +3348,7 @@ export declare const Components: {
|
|
|
2864
3348
|
styleless: boolean;
|
|
2865
3349
|
inline: boolean;
|
|
2866
3350
|
showMessage: boolean;
|
|
2867
|
-
labelPosition: "left" | "
|
|
3351
|
+
labelPosition: "left" | "right" | "top";
|
|
2868
3352
|
autocomplete: "on" | "off";
|
|
2869
3353
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2870
3354
|
MForm: DefineComponent<ExtractPropTypes< {
|
|
@@ -2959,7 +3443,7 @@ export declare const Components: {
|
|
|
2959
3443
|
styleless: boolean;
|
|
2960
3444
|
inline: boolean;
|
|
2961
3445
|
showMessage: boolean;
|
|
2962
|
-
labelPosition: "left" | "
|
|
3446
|
+
labelPosition: "left" | "right" | "top";
|
|
2963
3447
|
autocomplete: "on" | "off";
|
|
2964
3448
|
showToast: boolean;
|
|
2965
3449
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -3544,17 +4028,17 @@ export declare const Components: {
|
|
|
3544
4028
|
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
3545
4029
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
3546
4030
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
3547
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3548
4031
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
4032
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3549
4033
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
3550
4034
|
}>, {
|
|
3551
4035
|
disabled: boolean;
|
|
3552
|
-
styleless: boolean;
|
|
3553
4036
|
focusEnd: boolean;
|
|
3554
4037
|
clearable: boolean;
|
|
3555
4038
|
afloat: boolean;
|
|
3556
4039
|
allowDispatch: boolean;
|
|
3557
4040
|
bytes: boolean;
|
|
4041
|
+
styleless: boolean;
|
|
3558
4042
|
controllable: boolean;
|
|
3559
4043
|
indicator: boolean | {
|
|
3560
4044
|
inline: boolean;
|
|
@@ -3679,19 +4163,19 @@ export declare const Components: {
|
|
|
3679
4163
|
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
3680
4164
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
3681
4165
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
3682
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3683
4166
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
4167
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3684
4168
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
3685
4169
|
}>, {
|
|
3686
4170
|
disabled: boolean;
|
|
3687
|
-
right: boolean;
|
|
3688
|
-
styleless: boolean;
|
|
3689
4171
|
focusEnd: boolean;
|
|
3690
4172
|
clearable: boolean;
|
|
3691
4173
|
afloat: boolean;
|
|
3692
4174
|
allowDispatch: boolean;
|
|
3693
4175
|
bytes: boolean;
|
|
4176
|
+
styleless: boolean;
|
|
3694
4177
|
controllable: boolean;
|
|
4178
|
+
right: boolean;
|
|
3695
4179
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3696
4180
|
InputNumber: DefineComponent<ExtractPropTypes< {
|
|
3697
4181
|
min: {
|
|
@@ -3852,18 +4336,18 @@ export declare const Components: {
|
|
|
3852
4336
|
}>> & Readonly<{}>, {
|
|
3853
4337
|
output: string | Function;
|
|
3854
4338
|
disabled: boolean;
|
|
3855
|
-
|
|
4339
|
+
max: number;
|
|
4340
|
+
nullValue: string | number | Record<string, any>;
|
|
3856
4341
|
focusEnd: boolean;
|
|
3857
4342
|
clearable: boolean;
|
|
3858
4343
|
afloat: boolean;
|
|
3859
4344
|
allowDispatch: boolean;
|
|
3860
4345
|
bytes: boolean;
|
|
4346
|
+
styleless: boolean;
|
|
3861
4347
|
controllable: boolean;
|
|
3862
|
-
required: boolean;
|
|
3863
|
-
nullValue: string | number | Record<string, any>;
|
|
3864
4348
|
min: number;
|
|
3865
|
-
max: number;
|
|
3866
4349
|
step: number | boolean;
|
|
4350
|
+
required: boolean;
|
|
3867
4351
|
precision: number;
|
|
3868
4352
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3869
4353
|
MInputNumber: DefineComponent<ExtractPropTypes< {
|
|
@@ -4025,18 +4509,18 @@ export declare const Components: {
|
|
|
4025
4509
|
}>> & Readonly<{}>, {
|
|
4026
4510
|
output: string | Function;
|
|
4027
4511
|
disabled: boolean;
|
|
4028
|
-
|
|
4512
|
+
max: number;
|
|
4513
|
+
nullValue: string | number | Record<string, any>;
|
|
4029
4514
|
focusEnd: boolean;
|
|
4030
4515
|
clearable: boolean;
|
|
4031
4516
|
afloat: boolean;
|
|
4032
4517
|
allowDispatch: boolean;
|
|
4033
4518
|
bytes: boolean;
|
|
4519
|
+
styleless: boolean;
|
|
4034
4520
|
controllable: boolean;
|
|
4035
|
-
required: boolean;
|
|
4036
|
-
nullValue: string | number | Record<string, any>;
|
|
4037
4521
|
min: number;
|
|
4038
|
-
max: number;
|
|
4039
4522
|
step: number | boolean;
|
|
4523
|
+
required: boolean;
|
|
4040
4524
|
precision: number;
|
|
4041
4525
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4042
4526
|
InputSearch: DefineComponent<ExtractPropTypes< {
|
|
@@ -4149,12 +4633,12 @@ export declare const Components: {
|
|
|
4149
4633
|
};
|
|
4150
4634
|
}>> & Readonly<{}>, {
|
|
4151
4635
|
disabled: boolean;
|
|
4152
|
-
styleless: boolean;
|
|
4153
4636
|
focusEnd: boolean;
|
|
4154
4637
|
clearable: boolean;
|
|
4155
4638
|
afloat: boolean;
|
|
4156
4639
|
allowDispatch: boolean;
|
|
4157
4640
|
bytes: boolean;
|
|
4641
|
+
styleless: boolean;
|
|
4158
4642
|
controllable: boolean;
|
|
4159
4643
|
enterText: string | boolean;
|
|
4160
4644
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -4276,12 +4760,12 @@ export declare const Components: {
|
|
|
4276
4760
|
};
|
|
4277
4761
|
}>> & Readonly<{}>, {
|
|
4278
4762
|
disabled: boolean;
|
|
4279
|
-
styleless: boolean;
|
|
4280
4763
|
focusEnd: boolean;
|
|
4281
4764
|
clearable: boolean;
|
|
4282
4765
|
afloat: boolean;
|
|
4283
4766
|
allowDispatch: boolean;
|
|
4284
4767
|
bytes: boolean;
|
|
4768
|
+
styleless: boolean;
|
|
4285
4769
|
controllable: boolean;
|
|
4286
4770
|
enterText: string | boolean;
|
|
4287
4771
|
cancelText: string;
|
|
@@ -5347,8 +5831,8 @@ export declare const Components: {
|
|
|
5347
5831
|
mask: boolean;
|
|
5348
5832
|
modelValue: boolean;
|
|
5349
5833
|
mode: "alert" | "operation";
|
|
5350
|
-
maskClosable: boolean;
|
|
5351
5834
|
width: number;
|
|
5835
|
+
maskClosable: boolean;
|
|
5352
5836
|
closeWithCancel: boolean;
|
|
5353
5837
|
okText: string | boolean;
|
|
5354
5838
|
cancelText: string | boolean;
|
|
@@ -5380,9 +5864,9 @@ export declare const Components: {
|
|
|
5380
5864
|
onBeforeClose: FunctionConstructor;
|
|
5381
5865
|
}>> & Readonly<{
|
|
5382
5866
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5383
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5384
5867
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5385
|
-
|
|
5868
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5869
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], PublicProps, {
|
|
5386
5870
|
closable: boolean;
|
|
5387
5871
|
duration: number;
|
|
5388
5872
|
fixed: boolean;
|
|
@@ -5420,8 +5904,8 @@ export declare const Components: {
|
|
|
5420
5904
|
onBeforeClose: FunctionConstructor;
|
|
5421
5905
|
}>> & Readonly<{
|
|
5422
5906
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5423
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5424
5907
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5908
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5425
5909
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
5426
5910
|
closable: boolean;
|
|
5427
5911
|
duration: number;
|
|
@@ -5457,9 +5941,9 @@ export declare const Components: {
|
|
|
5457
5941
|
onBeforeClose: FunctionConstructor;
|
|
5458
5942
|
}>> & Readonly<{
|
|
5459
5943
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5460
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5461
5944
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5462
|
-
|
|
5945
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5946
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", {
|
|
5463
5947
|
closable: boolean;
|
|
5464
5948
|
duration: number;
|
|
5465
5949
|
fixed: boolean;
|
|
@@ -5564,9 +6048,9 @@ export declare const Components: {
|
|
|
5564
6048
|
onBeforeClose: FunctionConstructor;
|
|
5565
6049
|
}>> & Readonly<{
|
|
5566
6050
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5567
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5568
6051
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5569
|
-
|
|
6052
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
6053
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], PublicProps, {
|
|
5570
6054
|
closable: boolean;
|
|
5571
6055
|
duration: number;
|
|
5572
6056
|
fixed: boolean;
|
|
@@ -5604,8 +6088,8 @@ export declare const Components: {
|
|
|
5604
6088
|
onBeforeClose: FunctionConstructor;
|
|
5605
6089
|
}>> & Readonly<{
|
|
5606
6090
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5607
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5608
6091
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6092
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5609
6093
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
5610
6094
|
closable: boolean;
|
|
5611
6095
|
duration: number;
|
|
@@ -5641,9 +6125,9 @@ export declare const Components: {
|
|
|
5641
6125
|
onBeforeClose: FunctionConstructor;
|
|
5642
6126
|
}>> & Readonly<{
|
|
5643
6127
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5644
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5645
6128
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5646
|
-
|
|
6129
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
6130
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", {
|
|
5647
6131
|
closable: boolean;
|
|
5648
6132
|
duration: number;
|
|
5649
6133
|
fixed: boolean;
|
|
@@ -5826,8 +6310,8 @@ export declare const Components: {
|
|
|
5826
6310
|
"onUpdate:current"?: ((...args: any[]) => any) | undefined;
|
|
5827
6311
|
"onPage-size-change"?: ((...args: any[]) => any) | undefined;
|
|
5828
6312
|
}>, {
|
|
5829
|
-
portal: boolean;
|
|
5830
6313
|
placement: string;
|
|
6314
|
+
portal: boolean;
|
|
5831
6315
|
current: number;
|
|
5832
6316
|
count: number;
|
|
5833
6317
|
pageSize: number;
|
|
@@ -5915,8 +6399,8 @@ export declare const Components: {
|
|
|
5915
6399
|
"onUpdate:current"?: ((...args: any[]) => any) | undefined;
|
|
5916
6400
|
"onPage-size-change"?: ((...args: any[]) => any) | undefined;
|
|
5917
6401
|
}>, {
|
|
5918
|
-
portal: boolean;
|
|
5919
6402
|
placement: string;
|
|
6403
|
+
portal: boolean;
|
|
5920
6404
|
current: number;
|
|
5921
6405
|
count: number;
|
|
5922
6406
|
pageSize: number;
|
|
@@ -6168,23 +6652,24 @@ export declare const Components: {
|
|
|
6168
6652
|
Popover: {
|
|
6169
6653
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
6170
6654
|
modelValue: BooleanConstructor;
|
|
6655
|
+
always: BooleanConstructor;
|
|
6656
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
6657
|
+
animation: StringConstructor;
|
|
6658
|
+
placement: {
|
|
6659
|
+
type: StringConstructor;
|
|
6660
|
+
default: string;
|
|
6661
|
+
validator: (value: string) => boolean;
|
|
6662
|
+
};
|
|
6171
6663
|
theme: {
|
|
6172
6664
|
type: StringConstructor;
|
|
6173
6665
|
default: string;
|
|
6174
6666
|
validator: (v: string) => boolean;
|
|
6175
6667
|
};
|
|
6176
|
-
|
|
6668
|
+
getPopupContainer: FunctionConstructor;
|
|
6177
6669
|
portal: {
|
|
6178
6670
|
type: BooleanConstructor;
|
|
6179
6671
|
default: boolean;
|
|
6180
6672
|
};
|
|
6181
|
-
animation: StringConstructor;
|
|
6182
|
-
placement: {
|
|
6183
|
-
type: StringConstructor;
|
|
6184
|
-
default: string;
|
|
6185
|
-
validator: (value: string) => boolean;
|
|
6186
|
-
};
|
|
6187
|
-
getPopupContainer: FunctionConstructor;
|
|
6188
6673
|
arrow: {
|
|
6189
6674
|
type: BooleanConstructor;
|
|
6190
6675
|
default: boolean;
|
|
@@ -6193,7 +6678,6 @@ export declare const Components: {
|
|
|
6193
6678
|
type: BooleanConstructor;
|
|
6194
6679
|
default: boolean;
|
|
6195
6680
|
};
|
|
6196
|
-
always: BooleanConstructor;
|
|
6197
6681
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6198
6682
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6199
6683
|
trigger: {
|
|
@@ -6224,12 +6708,12 @@ export declare const Components: {
|
|
|
6224
6708
|
tag: string;
|
|
6225
6709
|
modelValue: boolean;
|
|
6226
6710
|
disabled: boolean;
|
|
6711
|
+
always: boolean;
|
|
6712
|
+
placement: string;
|
|
6227
6713
|
theme: string;
|
|
6228
6714
|
portal: boolean;
|
|
6229
|
-
placement: string;
|
|
6230
6715
|
arrow: boolean;
|
|
6231
6716
|
autoWidth: boolean;
|
|
6232
|
-
always: boolean;
|
|
6233
6717
|
trigger: string;
|
|
6234
6718
|
outsideClickable: boolean;
|
|
6235
6719
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
@@ -6241,23 +6725,24 @@ export declare const Components: {
|
|
|
6241
6725
|
Defaults: {};
|
|
6242
6726
|
}, Readonly<ExtractPropTypes< {
|
|
6243
6727
|
modelValue: BooleanConstructor;
|
|
6728
|
+
always: BooleanConstructor;
|
|
6729
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
6730
|
+
animation: StringConstructor;
|
|
6731
|
+
placement: {
|
|
6732
|
+
type: StringConstructor;
|
|
6733
|
+
default: string;
|
|
6734
|
+
validator: (value: string) => boolean;
|
|
6735
|
+
};
|
|
6244
6736
|
theme: {
|
|
6245
6737
|
type: StringConstructor;
|
|
6246
6738
|
default: string;
|
|
6247
6739
|
validator: (v: string) => boolean;
|
|
6248
6740
|
};
|
|
6249
|
-
|
|
6741
|
+
getPopupContainer: FunctionConstructor;
|
|
6250
6742
|
portal: {
|
|
6251
6743
|
type: BooleanConstructor;
|
|
6252
6744
|
default: boolean;
|
|
6253
6745
|
};
|
|
6254
|
-
animation: StringConstructor;
|
|
6255
|
-
placement: {
|
|
6256
|
-
type: StringConstructor;
|
|
6257
|
-
default: string;
|
|
6258
|
-
validator: (value: string) => boolean;
|
|
6259
|
-
};
|
|
6260
|
-
getPopupContainer: FunctionConstructor;
|
|
6261
6746
|
arrow: {
|
|
6262
6747
|
type: BooleanConstructor;
|
|
6263
6748
|
default: boolean;
|
|
@@ -6266,7 +6751,6 @@ export declare const Components: {
|
|
|
6266
6751
|
type: BooleanConstructor;
|
|
6267
6752
|
default: boolean;
|
|
6268
6753
|
};
|
|
6269
|
-
always: BooleanConstructor;
|
|
6270
6754
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6271
6755
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6272
6756
|
trigger: {
|
|
@@ -6297,12 +6781,12 @@ export declare const Components: {
|
|
|
6297
6781
|
tag: string;
|
|
6298
6782
|
modelValue: boolean;
|
|
6299
6783
|
disabled: boolean;
|
|
6784
|
+
always: boolean;
|
|
6785
|
+
placement: string;
|
|
6300
6786
|
theme: string;
|
|
6301
6787
|
portal: boolean;
|
|
6302
|
-
placement: string;
|
|
6303
6788
|
arrow: boolean;
|
|
6304
6789
|
autoWidth: boolean;
|
|
6305
|
-
always: boolean;
|
|
6306
6790
|
trigger: string;
|
|
6307
6791
|
outsideClickable: boolean;
|
|
6308
6792
|
}>;
|
|
@@ -6311,23 +6795,24 @@ export declare const Components: {
|
|
|
6311
6795
|
__isSuspense?: never;
|
|
6312
6796
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6313
6797
|
modelValue: BooleanConstructor;
|
|
6798
|
+
always: BooleanConstructor;
|
|
6799
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
6800
|
+
animation: StringConstructor;
|
|
6801
|
+
placement: {
|
|
6802
|
+
type: StringConstructor;
|
|
6803
|
+
default: string;
|
|
6804
|
+
validator: (value: string) => boolean;
|
|
6805
|
+
};
|
|
6314
6806
|
theme: {
|
|
6315
6807
|
type: StringConstructor;
|
|
6316
6808
|
default: string;
|
|
6317
6809
|
validator: (v: string) => boolean;
|
|
6318
6810
|
};
|
|
6319
|
-
|
|
6811
|
+
getPopupContainer: FunctionConstructor;
|
|
6320
6812
|
portal: {
|
|
6321
6813
|
type: BooleanConstructor;
|
|
6322
6814
|
default: boolean;
|
|
6323
6815
|
};
|
|
6324
|
-
animation: StringConstructor;
|
|
6325
|
-
placement: {
|
|
6326
|
-
type: StringConstructor;
|
|
6327
|
-
default: string;
|
|
6328
|
-
validator: (value: string) => boolean;
|
|
6329
|
-
};
|
|
6330
|
-
getPopupContainer: FunctionConstructor;
|
|
6331
6816
|
arrow: {
|
|
6332
6817
|
type: BooleanConstructor;
|
|
6333
6818
|
default: boolean;
|
|
@@ -6336,7 +6821,6 @@ export declare const Components: {
|
|
|
6336
6821
|
type: BooleanConstructor;
|
|
6337
6822
|
default: boolean;
|
|
6338
6823
|
};
|
|
6339
|
-
always: BooleanConstructor;
|
|
6340
6824
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6341
6825
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6342
6826
|
trigger: {
|
|
@@ -6367,12 +6851,12 @@ export declare const Components: {
|
|
|
6367
6851
|
tag: string;
|
|
6368
6852
|
modelValue: boolean;
|
|
6369
6853
|
disabled: boolean;
|
|
6854
|
+
always: boolean;
|
|
6855
|
+
placement: string;
|
|
6370
6856
|
theme: string;
|
|
6371
6857
|
portal: boolean;
|
|
6372
|
-
placement: string;
|
|
6373
6858
|
arrow: boolean;
|
|
6374
6859
|
autoWidth: boolean;
|
|
6375
|
-
always: boolean;
|
|
6376
6860
|
trigger: string;
|
|
6377
6861
|
outsideClickable: boolean;
|
|
6378
6862
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
@@ -6385,23 +6869,24 @@ export declare const Components: {
|
|
|
6385
6869
|
MPopover: {
|
|
6386
6870
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
6387
6871
|
modelValue: BooleanConstructor;
|
|
6872
|
+
always: BooleanConstructor;
|
|
6873
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
6874
|
+
animation: StringConstructor;
|
|
6875
|
+
placement: {
|
|
6876
|
+
type: StringConstructor;
|
|
6877
|
+
default: string;
|
|
6878
|
+
validator: (value: string) => boolean;
|
|
6879
|
+
};
|
|
6388
6880
|
theme: {
|
|
6389
6881
|
type: StringConstructor;
|
|
6390
6882
|
default: string;
|
|
6391
6883
|
validator: (v: string) => boolean;
|
|
6392
6884
|
};
|
|
6393
|
-
|
|
6885
|
+
getPopupContainer: FunctionConstructor;
|
|
6394
6886
|
portal: {
|
|
6395
6887
|
type: BooleanConstructor;
|
|
6396
6888
|
default: boolean;
|
|
6397
6889
|
};
|
|
6398
|
-
animation: StringConstructor;
|
|
6399
|
-
placement: {
|
|
6400
|
-
type: StringConstructor;
|
|
6401
|
-
default: string;
|
|
6402
|
-
validator: (value: string) => boolean;
|
|
6403
|
-
};
|
|
6404
|
-
getPopupContainer: FunctionConstructor;
|
|
6405
6890
|
arrow: {
|
|
6406
6891
|
type: BooleanConstructor;
|
|
6407
6892
|
default: boolean;
|
|
@@ -6410,7 +6895,6 @@ export declare const Components: {
|
|
|
6410
6895
|
type: BooleanConstructor;
|
|
6411
6896
|
default: boolean;
|
|
6412
6897
|
};
|
|
6413
|
-
always: BooleanConstructor;
|
|
6414
6898
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6415
6899
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6416
6900
|
trigger: {
|
|
@@ -6441,12 +6925,12 @@ export declare const Components: {
|
|
|
6441
6925
|
tag: string;
|
|
6442
6926
|
modelValue: boolean;
|
|
6443
6927
|
disabled: boolean;
|
|
6928
|
+
always: boolean;
|
|
6929
|
+
placement: string;
|
|
6444
6930
|
theme: string;
|
|
6445
6931
|
portal: boolean;
|
|
6446
|
-
placement: string;
|
|
6447
6932
|
arrow: boolean;
|
|
6448
6933
|
autoWidth: boolean;
|
|
6449
|
-
always: boolean;
|
|
6450
6934
|
trigger: string;
|
|
6451
6935
|
outsideClickable: boolean;
|
|
6452
6936
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
@@ -6458,23 +6942,24 @@ export declare const Components: {
|
|
|
6458
6942
|
Defaults: {};
|
|
6459
6943
|
}, Readonly<ExtractPropTypes< {
|
|
6460
6944
|
modelValue: BooleanConstructor;
|
|
6945
|
+
always: BooleanConstructor;
|
|
6946
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
6947
|
+
animation: StringConstructor;
|
|
6948
|
+
placement: {
|
|
6949
|
+
type: StringConstructor;
|
|
6950
|
+
default: string;
|
|
6951
|
+
validator: (value: string) => boolean;
|
|
6952
|
+
};
|
|
6461
6953
|
theme: {
|
|
6462
6954
|
type: StringConstructor;
|
|
6463
6955
|
default: string;
|
|
6464
6956
|
validator: (v: string) => boolean;
|
|
6465
6957
|
};
|
|
6466
|
-
|
|
6958
|
+
getPopupContainer: FunctionConstructor;
|
|
6467
6959
|
portal: {
|
|
6468
6960
|
type: BooleanConstructor;
|
|
6469
6961
|
default: boolean;
|
|
6470
6962
|
};
|
|
6471
|
-
animation: StringConstructor;
|
|
6472
|
-
placement: {
|
|
6473
|
-
type: StringConstructor;
|
|
6474
|
-
default: string;
|
|
6475
|
-
validator: (value: string) => boolean;
|
|
6476
|
-
};
|
|
6477
|
-
getPopupContainer: FunctionConstructor;
|
|
6478
6963
|
arrow: {
|
|
6479
6964
|
type: BooleanConstructor;
|
|
6480
6965
|
default: boolean;
|
|
@@ -6483,7 +6968,6 @@ export declare const Components: {
|
|
|
6483
6968
|
type: BooleanConstructor;
|
|
6484
6969
|
default: boolean;
|
|
6485
6970
|
};
|
|
6486
|
-
always: BooleanConstructor;
|
|
6487
6971
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6488
6972
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6489
6973
|
trigger: {
|
|
@@ -6514,12 +6998,12 @@ export declare const Components: {
|
|
|
6514
6998
|
tag: string;
|
|
6515
6999
|
modelValue: boolean;
|
|
6516
7000
|
disabled: boolean;
|
|
7001
|
+
always: boolean;
|
|
7002
|
+
placement: string;
|
|
6517
7003
|
theme: string;
|
|
6518
7004
|
portal: boolean;
|
|
6519
|
-
placement: string;
|
|
6520
7005
|
arrow: boolean;
|
|
6521
7006
|
autoWidth: boolean;
|
|
6522
|
-
always: boolean;
|
|
6523
7007
|
trigger: string;
|
|
6524
7008
|
outsideClickable: boolean;
|
|
6525
7009
|
}>;
|
|
@@ -6528,23 +7012,24 @@ export declare const Components: {
|
|
|
6528
7012
|
__isSuspense?: never;
|
|
6529
7013
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6530
7014
|
modelValue: BooleanConstructor;
|
|
7015
|
+
always: BooleanConstructor;
|
|
7016
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
7017
|
+
animation: StringConstructor;
|
|
7018
|
+
placement: {
|
|
7019
|
+
type: StringConstructor;
|
|
7020
|
+
default: string;
|
|
7021
|
+
validator: (value: string) => boolean;
|
|
7022
|
+
};
|
|
6531
7023
|
theme: {
|
|
6532
7024
|
type: StringConstructor;
|
|
6533
7025
|
default: string;
|
|
6534
7026
|
validator: (v: string) => boolean;
|
|
6535
7027
|
};
|
|
6536
|
-
|
|
7028
|
+
getPopupContainer: FunctionConstructor;
|
|
6537
7029
|
portal: {
|
|
6538
7030
|
type: BooleanConstructor;
|
|
6539
7031
|
default: boolean;
|
|
6540
7032
|
};
|
|
6541
|
-
animation: StringConstructor;
|
|
6542
|
-
placement: {
|
|
6543
|
-
type: StringConstructor;
|
|
6544
|
-
default: string;
|
|
6545
|
-
validator: (value: string) => boolean;
|
|
6546
|
-
};
|
|
6547
|
-
getPopupContainer: FunctionConstructor;
|
|
6548
7033
|
arrow: {
|
|
6549
7034
|
type: BooleanConstructor;
|
|
6550
7035
|
default: boolean;
|
|
@@ -6553,7 +7038,6 @@ export declare const Components: {
|
|
|
6553
7038
|
type: BooleanConstructor;
|
|
6554
7039
|
default: boolean;
|
|
6555
7040
|
};
|
|
6556
|
-
always: BooleanConstructor;
|
|
6557
7041
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6558
7042
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6559
7043
|
trigger: {
|
|
@@ -6584,12 +7068,12 @@ export declare const Components: {
|
|
|
6584
7068
|
tag: string;
|
|
6585
7069
|
modelValue: boolean;
|
|
6586
7070
|
disabled: boolean;
|
|
7071
|
+
always: boolean;
|
|
7072
|
+
placement: string;
|
|
6587
7073
|
theme: string;
|
|
6588
7074
|
portal: boolean;
|
|
6589
|
-
placement: string;
|
|
6590
7075
|
arrow: boolean;
|
|
6591
7076
|
autoWidth: boolean;
|
|
6592
|
-
always: boolean;
|
|
6593
7077
|
trigger: string;
|
|
6594
7078
|
outsideClickable: boolean;
|
|
6595
7079
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
@@ -7128,50 +7612,204 @@ export declare const Components: {
|
|
|
7128
7612
|
type: StringConstructor;
|
|
7129
7613
|
default: () => string;
|
|
7130
7614
|
};
|
|
7131
|
-
disabled: {
|
|
7615
|
+
disabled: {
|
|
7616
|
+
type: BooleanConstructor;
|
|
7617
|
+
default: boolean;
|
|
7618
|
+
};
|
|
7619
|
+
fragment: {
|
|
7620
|
+
type: BooleanConstructor;
|
|
7621
|
+
default: boolean;
|
|
7622
|
+
};
|
|
7623
|
+
}>> & Readonly<{
|
|
7624
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
7625
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7626
|
+
}>, {
|
|
7627
|
+
type: string;
|
|
7628
|
+
name: string;
|
|
7629
|
+
modelValue: string | number;
|
|
7630
|
+
disabled: boolean;
|
|
7631
|
+
vertical: boolean;
|
|
7632
|
+
fragment: boolean;
|
|
7633
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7634
|
+
Rate: DefineComponent<ExtractPropTypes< {
|
|
7635
|
+
modelValue: {
|
|
7636
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
7637
|
+
default: number;
|
|
7638
|
+
};
|
|
7639
|
+
count: {
|
|
7640
|
+
type: NumberConstructor;
|
|
7641
|
+
default: number;
|
|
7642
|
+
};
|
|
7643
|
+
color: {
|
|
7644
|
+
type: StringConstructor;
|
|
7645
|
+
default: string;
|
|
7646
|
+
};
|
|
7647
|
+
icon: {
|
|
7648
|
+
type: StringConstructor;
|
|
7649
|
+
default: string;
|
|
7650
|
+
};
|
|
7651
|
+
character: StringConstructor;
|
|
7652
|
+
half: {
|
|
7653
|
+
type: BooleanConstructor;
|
|
7654
|
+
default: boolean;
|
|
7655
|
+
};
|
|
7656
|
+
clearable: {
|
|
7657
|
+
type: BooleanConstructor;
|
|
7658
|
+
default: boolean;
|
|
7659
|
+
};
|
|
7660
|
+
disabled: {
|
|
7661
|
+
type: BooleanConstructor;
|
|
7662
|
+
default: boolean;
|
|
7663
|
+
};
|
|
7664
|
+
tooltip: {
|
|
7665
|
+
type: ArrayConstructor;
|
|
7666
|
+
default: () => never[];
|
|
7667
|
+
};
|
|
7668
|
+
iconStyle: {
|
|
7669
|
+
type: ObjectConstructor;
|
|
7670
|
+
default: () => {};
|
|
7671
|
+
};
|
|
7672
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
7673
|
+
modelValue: {
|
|
7674
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
7675
|
+
default: number;
|
|
7676
|
+
};
|
|
7677
|
+
count: {
|
|
7678
|
+
type: NumberConstructor;
|
|
7679
|
+
default: number;
|
|
7680
|
+
};
|
|
7681
|
+
color: {
|
|
7682
|
+
type: StringConstructor;
|
|
7683
|
+
default: string;
|
|
7684
|
+
};
|
|
7685
|
+
icon: {
|
|
7686
|
+
type: StringConstructor;
|
|
7687
|
+
default: string;
|
|
7688
|
+
};
|
|
7689
|
+
character: StringConstructor;
|
|
7690
|
+
half: {
|
|
7691
|
+
type: BooleanConstructor;
|
|
7692
|
+
default: boolean;
|
|
7693
|
+
};
|
|
7694
|
+
clearable: {
|
|
7695
|
+
type: BooleanConstructor;
|
|
7696
|
+
default: boolean;
|
|
7697
|
+
};
|
|
7698
|
+
disabled: {
|
|
7699
|
+
type: BooleanConstructor;
|
|
7700
|
+
default: boolean;
|
|
7701
|
+
};
|
|
7702
|
+
tooltip: {
|
|
7703
|
+
type: ArrayConstructor;
|
|
7704
|
+
default: () => never[];
|
|
7705
|
+
};
|
|
7706
|
+
iconStyle: {
|
|
7707
|
+
type: ObjectConstructor;
|
|
7708
|
+
default: () => {};
|
|
7709
|
+
};
|
|
7710
|
+
}>> & Readonly<{
|
|
7711
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
7712
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7713
|
+
}>, {
|
|
7714
|
+
modelValue: string | number;
|
|
7715
|
+
icon: string;
|
|
7716
|
+
color: string;
|
|
7717
|
+
disabled: boolean;
|
|
7718
|
+
clearable: boolean;
|
|
7719
|
+
tooltip: unknown[];
|
|
7720
|
+
count: number;
|
|
7721
|
+
half: boolean;
|
|
7722
|
+
iconStyle: Record<string, any>;
|
|
7723
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7724
|
+
MRate: DefineComponent<ExtractPropTypes< {
|
|
7725
|
+
modelValue: {
|
|
7726
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
7727
|
+
default: number;
|
|
7728
|
+
};
|
|
7729
|
+
count: {
|
|
7730
|
+
type: NumberConstructor;
|
|
7731
|
+
default: number;
|
|
7732
|
+
};
|
|
7733
|
+
color: {
|
|
7734
|
+
type: StringConstructor;
|
|
7735
|
+
default: string;
|
|
7736
|
+
};
|
|
7737
|
+
icon: {
|
|
7738
|
+
type: StringConstructor;
|
|
7739
|
+
default: string;
|
|
7740
|
+
};
|
|
7741
|
+
character: StringConstructor;
|
|
7742
|
+
half: {
|
|
7743
|
+
type: BooleanConstructor;
|
|
7744
|
+
default: boolean;
|
|
7745
|
+
};
|
|
7746
|
+
clearable: {
|
|
7747
|
+
type: BooleanConstructor;
|
|
7748
|
+
default: boolean;
|
|
7749
|
+
};
|
|
7750
|
+
disabled: {
|
|
7751
|
+
type: BooleanConstructor;
|
|
7752
|
+
default: boolean;
|
|
7753
|
+
};
|
|
7754
|
+
tooltip: {
|
|
7755
|
+
type: ArrayConstructor;
|
|
7756
|
+
default: () => never[];
|
|
7757
|
+
};
|
|
7758
|
+
iconStyle: {
|
|
7759
|
+
type: ObjectConstructor;
|
|
7760
|
+
default: () => {};
|
|
7761
|
+
};
|
|
7762
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
7763
|
+
modelValue: {
|
|
7764
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
7765
|
+
default: number;
|
|
7766
|
+
};
|
|
7767
|
+
count: {
|
|
7768
|
+
type: NumberConstructor;
|
|
7769
|
+
default: number;
|
|
7770
|
+
};
|
|
7771
|
+
color: {
|
|
7772
|
+
type: StringConstructor;
|
|
7773
|
+
default: string;
|
|
7774
|
+
};
|
|
7775
|
+
icon: {
|
|
7776
|
+
type: StringConstructor;
|
|
7777
|
+
default: string;
|
|
7778
|
+
};
|
|
7779
|
+
character: StringConstructor;
|
|
7780
|
+
half: {
|
|
7781
|
+
type: BooleanConstructor;
|
|
7782
|
+
default: boolean;
|
|
7783
|
+
};
|
|
7784
|
+
clearable: {
|
|
7132
7785
|
type: BooleanConstructor;
|
|
7133
7786
|
default: boolean;
|
|
7134
7787
|
};
|
|
7135
|
-
|
|
7788
|
+
disabled: {
|
|
7136
7789
|
type: BooleanConstructor;
|
|
7137
7790
|
default: boolean;
|
|
7138
7791
|
};
|
|
7792
|
+
tooltip: {
|
|
7793
|
+
type: ArrayConstructor;
|
|
7794
|
+
default: () => never[];
|
|
7795
|
+
};
|
|
7796
|
+
iconStyle: {
|
|
7797
|
+
type: ObjectConstructor;
|
|
7798
|
+
default: () => {};
|
|
7799
|
+
};
|
|
7139
7800
|
}>> & Readonly<{
|
|
7140
7801
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
7141
7802
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7142
7803
|
}>, {
|
|
7143
|
-
type: string;
|
|
7144
|
-
name: string;
|
|
7145
7804
|
modelValue: string | number;
|
|
7805
|
+
icon: string;
|
|
7806
|
+
color: string;
|
|
7146
7807
|
disabled: boolean;
|
|
7147
|
-
|
|
7148
|
-
|
|
7149
|
-
|
|
7150
|
-
|
|
7151
|
-
|
|
7152
|
-
type: StringConstructor;
|
|
7153
|
-
default: string;
|
|
7154
|
-
};
|
|
7155
|
-
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
7156
|
-
tag: {
|
|
7157
|
-
type: StringConstructor;
|
|
7158
|
-
default: string;
|
|
7159
|
-
};
|
|
7160
|
-
}>> & Readonly<{}>, {
|
|
7161
|
-
tag: string;
|
|
7162
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7163
|
-
MRate: DefineComponent<ExtractPropTypes< {
|
|
7164
|
-
tag: {
|
|
7165
|
-
type: StringConstructor;
|
|
7166
|
-
default: string;
|
|
7167
|
-
};
|
|
7168
|
-
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
7169
|
-
tag: {
|
|
7170
|
-
type: StringConstructor;
|
|
7171
|
-
default: string;
|
|
7172
|
-
};
|
|
7173
|
-
}>> & Readonly<{}>, {
|
|
7174
|
-
tag: string;
|
|
7808
|
+
clearable: boolean;
|
|
7809
|
+
tooltip: unknown[];
|
|
7810
|
+
count: number;
|
|
7811
|
+
half: boolean;
|
|
7812
|
+
iconStyle: Record<string, any>;
|
|
7175
7813
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7176
7814
|
RecycleList: DefineComponent<ExtractPropTypes< {
|
|
7177
7815
|
data: {
|
|
@@ -7274,9 +7912,9 @@ export declare const Components: {
|
|
|
7274
7912
|
data: unknown[];
|
|
7275
7913
|
disabled: boolean;
|
|
7276
7914
|
vertical: boolean;
|
|
7915
|
+
loadData: Function;
|
|
7277
7916
|
offset: number;
|
|
7278
7917
|
pageSize: number;
|
|
7279
|
-
loadData: Function;
|
|
7280
7918
|
cols: number;
|
|
7281
7919
|
gutter: number;
|
|
7282
7920
|
inverted: boolean;
|
|
@@ -7383,9 +8021,9 @@ export declare const Components: {
|
|
|
7383
8021
|
data: unknown[];
|
|
7384
8022
|
disabled: boolean;
|
|
7385
8023
|
vertical: boolean;
|
|
8024
|
+
loadData: Function;
|
|
7386
8025
|
offset: number;
|
|
7387
8026
|
pageSize: number;
|
|
7388
|
-
loadData: Function;
|
|
7389
8027
|
cols: number;
|
|
7390
8028
|
gutter: number;
|
|
7391
8029
|
inverted: boolean;
|
|
@@ -7761,6 +8399,7 @@ export declare const Components: {
|
|
|
7761
8399
|
default: number;
|
|
7762
8400
|
validator: (v: any) => boolean;
|
|
7763
8401
|
};
|
|
8402
|
+
maxTags: NumberConstructor;
|
|
7764
8403
|
searchable: {
|
|
7765
8404
|
type: BooleanConstructor;
|
|
7766
8405
|
default: boolean;
|
|
@@ -7835,6 +8474,7 @@ export declare const Components: {
|
|
|
7835
8474
|
default: number;
|
|
7836
8475
|
validator: (v: any) => boolean;
|
|
7837
8476
|
};
|
|
8477
|
+
maxTags: NumberConstructor;
|
|
7838
8478
|
searchable: {
|
|
7839
8479
|
type: BooleanConstructor;
|
|
7840
8480
|
default: boolean;
|
|
@@ -7878,27 +8518,27 @@ export declare const Components: {
|
|
|
7878
8518
|
}>> & Readonly<{
|
|
7879
8519
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
7880
8520
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
8521
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
7881
8522
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7882
8523
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
7883
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
7884
8524
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
7885
8525
|
}>, {
|
|
7886
8526
|
tag: string;
|
|
7887
8527
|
data: unknown[];
|
|
7888
8528
|
disabled: boolean;
|
|
7889
8529
|
extra: string;
|
|
7890
|
-
|
|
8530
|
+
numerable: boolean;
|
|
8531
|
+
separator: string;
|
|
8532
|
+
max: number;
|
|
8533
|
+
nullValue: string | number | Record<string, any>;
|
|
7891
8534
|
clearable: boolean;
|
|
7892
8535
|
placement: string;
|
|
8536
|
+
portal: boolean;
|
|
7893
8537
|
arrow: boolean;
|
|
7894
8538
|
autoWidth: boolean;
|
|
7895
8539
|
trigger: string;
|
|
7896
|
-
separator: string;
|
|
7897
|
-
nullValue: string | number | Record<string, any>;
|
|
7898
|
-
max: number;
|
|
7899
8540
|
searchPlaceholder: string;
|
|
7900
8541
|
searchable: boolean;
|
|
7901
|
-
numerable: boolean;
|
|
7902
8542
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7903
8543
|
MSelect: DefineComponent<ExtractPropTypes< {
|
|
7904
8544
|
data: {
|
|
@@ -7934,6 +8574,7 @@ export declare const Components: {
|
|
|
7934
8574
|
default: number;
|
|
7935
8575
|
validator: (v: any) => boolean;
|
|
7936
8576
|
};
|
|
8577
|
+
maxTags: NumberConstructor;
|
|
7937
8578
|
searchable: {
|
|
7938
8579
|
type: BooleanConstructor;
|
|
7939
8580
|
default: boolean;
|
|
@@ -8008,6 +8649,7 @@ export declare const Components: {
|
|
|
8008
8649
|
default: number;
|
|
8009
8650
|
validator: (v: any) => boolean;
|
|
8010
8651
|
};
|
|
8652
|
+
maxTags: NumberConstructor;
|
|
8011
8653
|
searchable: {
|
|
8012
8654
|
type: BooleanConstructor;
|
|
8013
8655
|
default: boolean;
|
|
@@ -8051,27 +8693,27 @@ export declare const Components: {
|
|
|
8051
8693
|
}>> & Readonly<{
|
|
8052
8694
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
8053
8695
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
8696
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
8054
8697
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
8055
8698
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
8056
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
8057
8699
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
8058
8700
|
}>, {
|
|
8059
8701
|
tag: string;
|
|
8060
8702
|
data: unknown[];
|
|
8061
8703
|
disabled: boolean;
|
|
8062
8704
|
extra: string;
|
|
8063
|
-
|
|
8705
|
+
numerable: boolean;
|
|
8706
|
+
separator: string;
|
|
8707
|
+
max: number;
|
|
8708
|
+
nullValue: string | number | Record<string, any>;
|
|
8064
8709
|
clearable: boolean;
|
|
8065
8710
|
placement: string;
|
|
8711
|
+
portal: boolean;
|
|
8066
8712
|
arrow: boolean;
|
|
8067
8713
|
autoWidth: boolean;
|
|
8068
8714
|
trigger: string;
|
|
8069
|
-
separator: string;
|
|
8070
|
-
nullValue: string | number | Record<string, any>;
|
|
8071
|
-
max: number;
|
|
8072
8715
|
searchPlaceholder: string;
|
|
8073
8716
|
searchable: boolean;
|
|
8074
|
-
numerable: boolean;
|
|
8075
8717
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8076
8718
|
Slider: DefineComponent<ExtractPropTypes< {
|
|
8077
8719
|
tag: {
|
|
@@ -8318,10 +8960,10 @@ export declare const Components: {
|
|
|
8318
8960
|
}>, {
|
|
8319
8961
|
modelValue: string | number | boolean;
|
|
8320
8962
|
disabled: boolean;
|
|
8321
|
-
checkedValue: string | number | boolean;
|
|
8322
|
-
uncheckedValue: string | number | boolean;
|
|
8323
8963
|
height: number;
|
|
8324
8964
|
width: number;
|
|
8965
|
+
checkedValue: string | number | boolean;
|
|
8966
|
+
uncheckedValue: string | number | boolean;
|
|
8325
8967
|
borderWidth: number;
|
|
8326
8968
|
checkedText: string;
|
|
8327
8969
|
uncheckedText: string;
|
|
@@ -8413,10 +9055,10 @@ export declare const Components: {
|
|
|
8413
9055
|
}>, {
|
|
8414
9056
|
modelValue: string | number | boolean;
|
|
8415
9057
|
disabled: boolean;
|
|
8416
|
-
checkedValue: string | number | boolean;
|
|
8417
|
-
uncheckedValue: string | number | boolean;
|
|
8418
9058
|
height: number;
|
|
8419
9059
|
width: number;
|
|
9060
|
+
checkedValue: string | number | boolean;
|
|
9061
|
+
uncheckedValue: string | number | boolean;
|
|
8420
9062
|
borderWidth: number;
|
|
8421
9063
|
checkedText: string;
|
|
8422
9064
|
uncheckedText: string;
|
|
@@ -8585,8 +9227,8 @@ export declare const Components: {
|
|
|
8585
9227
|
}>, {
|
|
8586
9228
|
data: unknown[];
|
|
8587
9229
|
border: boolean;
|
|
8588
|
-
indeterminate: boolean;
|
|
8589
9230
|
placeholder: string | Function;
|
|
9231
|
+
indeterminate: boolean;
|
|
8590
9232
|
fit: boolean;
|
|
8591
9233
|
indent: number;
|
|
8592
9234
|
lazy: boolean;
|
|
@@ -8765,8 +9407,8 @@ export declare const Components: {
|
|
|
8765
9407
|
}>, {
|
|
8766
9408
|
data: unknown[];
|
|
8767
9409
|
border: boolean;
|
|
8768
|
-
indeterminate: boolean;
|
|
8769
9410
|
placeholder: string | Function;
|
|
9411
|
+
indeterminate: boolean;
|
|
8770
9412
|
fit: boolean;
|
|
8771
9413
|
indent: number;
|
|
8772
9414
|
lazy: boolean;
|
|
@@ -9120,9 +9762,9 @@ export declare const Components: {
|
|
|
9120
9762
|
}>, {
|
|
9121
9763
|
type: string;
|
|
9122
9764
|
closable: boolean;
|
|
9123
|
-
theme: string;
|
|
9124
9765
|
afloat: boolean;
|
|
9125
9766
|
sticky: boolean;
|
|
9767
|
+
theme: string;
|
|
9126
9768
|
animated: boolean;
|
|
9127
9769
|
offsetTop: number;
|
|
9128
9770
|
barStyle: Record<string, any> | unknown[];
|
|
@@ -9585,8 +10227,8 @@ export declare const Components: {
|
|
|
9585
10227
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
9586
10228
|
onResize?: ((...args: any[]) => any) | undefined;
|
|
9587
10229
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
9588
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9589
10230
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
10231
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9590
10232
|
}>, {
|
|
9591
10233
|
disabled: boolean;
|
|
9592
10234
|
allowDispatch: boolean;
|
|
@@ -9695,8 +10337,8 @@ export declare const Components: {
|
|
|
9695
10337
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
9696
10338
|
onResize?: ((...args: any[]) => any) | undefined;
|
|
9697
10339
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
9698
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9699
10340
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
10341
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9700
10342
|
}>, {
|
|
9701
10343
|
disabled: boolean;
|
|
9702
10344
|
allowDispatch: boolean;
|
|
@@ -9870,27 +10512,27 @@ export declare const Components: {
|
|
|
9870
10512
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
9871
10513
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
9872
10514
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
10515
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
9873
10516
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9874
10517
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
9875
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
9876
10518
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
9877
10519
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
9878
10520
|
}>, {
|
|
9879
10521
|
tag: string;
|
|
9880
10522
|
disabled: boolean;
|
|
9881
|
-
|
|
9882
|
-
|
|
10523
|
+
separator: string;
|
|
10524
|
+
nullValue: string | number | Record<string, any>;
|
|
9883
10525
|
clearable: boolean;
|
|
10526
|
+
open: boolean;
|
|
10527
|
+
multiple: boolean;
|
|
9884
10528
|
placement: string;
|
|
10529
|
+
portal: boolean;
|
|
9885
10530
|
arrow: boolean;
|
|
9886
10531
|
trigger: string;
|
|
9887
|
-
|
|
10532
|
+
changeOnSelect: boolean;
|
|
9888
10533
|
confirm: boolean;
|
|
9889
|
-
separator: string;
|
|
9890
10534
|
splitPanels: boolean;
|
|
9891
10535
|
steps: unknown[];
|
|
9892
|
-
changeOnSelect: boolean;
|
|
9893
|
-
nullValue: string | number | Record<string, any>;
|
|
9894
10536
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9895
10537
|
MTimePicker: DefineComponent<ExtractPropTypes< {
|
|
9896
10538
|
type: StringConstructor;
|
|
@@ -10029,27 +10671,27 @@ export declare const Components: {
|
|
|
10029
10671
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
10030
10672
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
10031
10673
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
10674
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
10032
10675
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
10033
10676
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
10034
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
10035
10677
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
10036
10678
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
10037
10679
|
}>, {
|
|
10038
10680
|
tag: string;
|
|
10039
10681
|
disabled: boolean;
|
|
10040
|
-
|
|
10041
|
-
|
|
10682
|
+
separator: string;
|
|
10683
|
+
nullValue: string | number | Record<string, any>;
|
|
10042
10684
|
clearable: boolean;
|
|
10685
|
+
open: boolean;
|
|
10686
|
+
multiple: boolean;
|
|
10043
10687
|
placement: string;
|
|
10688
|
+
portal: boolean;
|
|
10044
10689
|
arrow: boolean;
|
|
10045
10690
|
trigger: string;
|
|
10046
|
-
|
|
10691
|
+
changeOnSelect: boolean;
|
|
10047
10692
|
confirm: boolean;
|
|
10048
|
-
separator: string;
|
|
10049
10693
|
splitPanels: boolean;
|
|
10050
10694
|
steps: unknown[];
|
|
10051
|
-
changeOnSelect: boolean;
|
|
10052
|
-
nullValue: string | number | Record<string, any>;
|
|
10053
10695
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10054
10696
|
Touch: DefineComponent<ExtractPropTypes< {
|
|
10055
10697
|
tag: {
|
|
@@ -10743,25 +11385,168 @@ export declare const Components: {
|
|
|
10743
11385
|
type: StringConstructor;
|
|
10744
11386
|
default: string;
|
|
10745
11387
|
};
|
|
10746
|
-
}>, () => VNode<RendererNode, RendererElement, {
|
|
10747
|
-
[key: string]: any;
|
|
10748
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
10749
|
-
mode: {
|
|
10750
|
-
type: PropType<"x" | "y" | "center" | "none" | string>;
|
|
10751
|
-
default: string;
|
|
10752
|
-
validator: (v: string) => boolean;
|
|
10753
|
-
};
|
|
11388
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
11389
|
+
[key: string]: any;
|
|
11390
|
+
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
11391
|
+
mode: {
|
|
11392
|
+
type: PropType<"x" | "y" | "center" | "none" | string>;
|
|
11393
|
+
default: string;
|
|
11394
|
+
validator: (v: string) => boolean;
|
|
11395
|
+
};
|
|
11396
|
+
style: {
|
|
11397
|
+
type: ObjectConstructor;
|
|
11398
|
+
default: () => {
|
|
11399
|
+
animationFillMode: string;
|
|
11400
|
+
animationTimingFunction: undefined;
|
|
11401
|
+
};
|
|
11402
|
+
};
|
|
11403
|
+
prefix: {
|
|
11404
|
+
type: StringConstructor;
|
|
11405
|
+
default: string;
|
|
11406
|
+
};
|
|
11407
|
+
duration: {
|
|
11408
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11409
|
+
default: number;
|
|
11410
|
+
};
|
|
11411
|
+
delay: {
|
|
11412
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11413
|
+
default: number;
|
|
11414
|
+
};
|
|
11415
|
+
group: BooleanConstructor;
|
|
11416
|
+
tag: {
|
|
11417
|
+
type: StringConstructor;
|
|
11418
|
+
default: undefined;
|
|
11419
|
+
};
|
|
11420
|
+
origin: {
|
|
11421
|
+
type: StringConstructor;
|
|
11422
|
+
default: string;
|
|
11423
|
+
};
|
|
11424
|
+
}>> & Readonly<{}>, {
|
|
11425
|
+
style: Record<string, any>;
|
|
11426
|
+
tag: string;
|
|
11427
|
+
duration: number | Record<string, any>;
|
|
11428
|
+
delay: number | Record<string, any>;
|
|
11429
|
+
group: boolean;
|
|
11430
|
+
origin: string;
|
|
11431
|
+
prefix: string;
|
|
11432
|
+
mode: string;
|
|
11433
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11434
|
+
MTransitionZoom: DefineComponent<ExtractPropTypes< {
|
|
11435
|
+
mode: {
|
|
11436
|
+
type: PropType<"x" | "y" | "center" | "none" | string>;
|
|
11437
|
+
default: string;
|
|
11438
|
+
validator: (v: string) => boolean;
|
|
11439
|
+
};
|
|
11440
|
+
style: {
|
|
11441
|
+
type: ObjectConstructor;
|
|
11442
|
+
default: () => {
|
|
11443
|
+
animationFillMode: string;
|
|
11444
|
+
animationTimingFunction: undefined;
|
|
11445
|
+
};
|
|
11446
|
+
};
|
|
11447
|
+
prefix: {
|
|
11448
|
+
type: StringConstructor;
|
|
11449
|
+
default: string;
|
|
11450
|
+
};
|
|
11451
|
+
duration: {
|
|
11452
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11453
|
+
default: number;
|
|
11454
|
+
};
|
|
11455
|
+
delay: {
|
|
11456
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11457
|
+
default: number;
|
|
11458
|
+
};
|
|
11459
|
+
group: BooleanConstructor;
|
|
11460
|
+
tag: {
|
|
11461
|
+
type: StringConstructor;
|
|
11462
|
+
default: undefined;
|
|
11463
|
+
};
|
|
11464
|
+
origin: {
|
|
11465
|
+
type: StringConstructor;
|
|
11466
|
+
default: string;
|
|
11467
|
+
};
|
|
11468
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
11469
|
+
[key: string]: any;
|
|
11470
|
+
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
11471
|
+
mode: {
|
|
11472
|
+
type: PropType<"x" | "y" | "center" | "none" | string>;
|
|
11473
|
+
default: string;
|
|
11474
|
+
validator: (v: string) => boolean;
|
|
11475
|
+
};
|
|
11476
|
+
style: {
|
|
11477
|
+
type: ObjectConstructor;
|
|
11478
|
+
default: () => {
|
|
11479
|
+
animationFillMode: string;
|
|
11480
|
+
animationTimingFunction: undefined;
|
|
11481
|
+
};
|
|
11482
|
+
};
|
|
11483
|
+
prefix: {
|
|
11484
|
+
type: StringConstructor;
|
|
11485
|
+
default: string;
|
|
11486
|
+
};
|
|
11487
|
+
duration: {
|
|
11488
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11489
|
+
default: number;
|
|
11490
|
+
};
|
|
11491
|
+
delay: {
|
|
11492
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11493
|
+
default: number;
|
|
11494
|
+
};
|
|
11495
|
+
group: BooleanConstructor;
|
|
11496
|
+
tag: {
|
|
11497
|
+
type: StringConstructor;
|
|
11498
|
+
default: undefined;
|
|
11499
|
+
};
|
|
11500
|
+
origin: {
|
|
11501
|
+
type: StringConstructor;
|
|
11502
|
+
default: string;
|
|
11503
|
+
};
|
|
11504
|
+
}>> & Readonly<{}>, {
|
|
11505
|
+
style: Record<string, any>;
|
|
11506
|
+
tag: string;
|
|
11507
|
+
duration: number | Record<string, any>;
|
|
11508
|
+
delay: number | Record<string, any>;
|
|
11509
|
+
group: boolean;
|
|
11510
|
+
origin: string;
|
|
11511
|
+
prefix: string;
|
|
11512
|
+
mode: string;
|
|
11513
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11514
|
+
TransitionCollapse: DefineComponent<ExtractPropTypes< {
|
|
11515
|
+
duration: {
|
|
11516
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11517
|
+
default: number;
|
|
11518
|
+
};
|
|
11519
|
+
delay: {
|
|
11520
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11521
|
+
default: number;
|
|
11522
|
+
};
|
|
11523
|
+
group: BooleanConstructor;
|
|
11524
|
+
tag: {
|
|
11525
|
+
type: StringConstructor;
|
|
11526
|
+
default: undefined;
|
|
11527
|
+
};
|
|
11528
|
+
origin: {
|
|
11529
|
+
type: StringConstructor;
|
|
11530
|
+
default: string;
|
|
11531
|
+
};
|
|
10754
11532
|
style: {
|
|
10755
11533
|
type: ObjectConstructor;
|
|
10756
11534
|
default: () => {
|
|
10757
11535
|
animationFillMode: string;
|
|
10758
|
-
animationTimingFunction:
|
|
11536
|
+
animationTimingFunction: string;
|
|
10759
11537
|
};
|
|
10760
11538
|
};
|
|
10761
11539
|
prefix: {
|
|
10762
11540
|
type: StringConstructor;
|
|
10763
11541
|
default: string;
|
|
10764
11542
|
};
|
|
11543
|
+
mode: {
|
|
11544
|
+
type: StringConstructor;
|
|
11545
|
+
default: string;
|
|
11546
|
+
};
|
|
11547
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
11548
|
+
[key: string]: any;
|
|
11549
|
+
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
10765
11550
|
duration: {
|
|
10766
11551
|
type: (ObjectConstructor | NumberConstructor)[];
|
|
10767
11552
|
default: number;
|
|
@@ -10779,33 +11564,32 @@ export declare const Components: {
|
|
|
10779
11564
|
type: StringConstructor;
|
|
10780
11565
|
default: string;
|
|
10781
11566
|
};
|
|
10782
|
-
}>> & Readonly<{}>, {
|
|
10783
|
-
style: Record<string, any>;
|
|
10784
|
-
tag: string;
|
|
10785
|
-
duration: number | Record<string, any>;
|
|
10786
|
-
delay: number | Record<string, any>;
|
|
10787
|
-
group: boolean;
|
|
10788
|
-
origin: string;
|
|
10789
|
-
prefix: string;
|
|
10790
|
-
mode: string;
|
|
10791
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10792
|
-
MTransitionZoom: DefineComponent<ExtractPropTypes< {
|
|
10793
|
-
mode: {
|
|
10794
|
-
type: PropType<"x" | "y" | "center" | "none" | string>;
|
|
10795
|
-
default: string;
|
|
10796
|
-
validator: (v: string) => boolean;
|
|
10797
|
-
};
|
|
10798
11567
|
style: {
|
|
10799
11568
|
type: ObjectConstructor;
|
|
10800
11569
|
default: () => {
|
|
10801
11570
|
animationFillMode: string;
|
|
10802
|
-
animationTimingFunction:
|
|
11571
|
+
animationTimingFunction: string;
|
|
10803
11572
|
};
|
|
10804
11573
|
};
|
|
10805
11574
|
prefix: {
|
|
10806
11575
|
type: StringConstructor;
|
|
10807
11576
|
default: string;
|
|
10808
11577
|
};
|
|
11578
|
+
mode: {
|
|
11579
|
+
type: StringConstructor;
|
|
11580
|
+
default: string;
|
|
11581
|
+
};
|
|
11582
|
+
}>> & Readonly<{}>, {
|
|
11583
|
+
style: Record<string, any>;
|
|
11584
|
+
tag: string;
|
|
11585
|
+
duration: number | Record<string, any>;
|
|
11586
|
+
delay: number | Record<string, any>;
|
|
11587
|
+
group: boolean;
|
|
11588
|
+
origin: string;
|
|
11589
|
+
prefix: string;
|
|
11590
|
+
mode: string;
|
|
11591
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11592
|
+
MTransitionCollapse: DefineComponent<ExtractPropTypes< {
|
|
10809
11593
|
duration: {
|
|
10810
11594
|
type: (ObjectConstructor | NumberConstructor)[];
|
|
10811
11595
|
default: number;
|
|
@@ -10823,25 +11607,24 @@ export declare const Components: {
|
|
|
10823
11607
|
type: StringConstructor;
|
|
10824
11608
|
default: string;
|
|
10825
11609
|
};
|
|
10826
|
-
}>, () => VNode<RendererNode, RendererElement, {
|
|
10827
|
-
[key: string]: any;
|
|
10828
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
10829
|
-
mode: {
|
|
10830
|
-
type: PropType<"x" | "y" | "center" | "none" | string>;
|
|
10831
|
-
default: string;
|
|
10832
|
-
validator: (v: string) => boolean;
|
|
10833
|
-
};
|
|
10834
11610
|
style: {
|
|
10835
11611
|
type: ObjectConstructor;
|
|
10836
11612
|
default: () => {
|
|
10837
11613
|
animationFillMode: string;
|
|
10838
|
-
animationTimingFunction:
|
|
11614
|
+
animationTimingFunction: string;
|
|
10839
11615
|
};
|
|
10840
11616
|
};
|
|
10841
11617
|
prefix: {
|
|
10842
11618
|
type: StringConstructor;
|
|
10843
11619
|
default: string;
|
|
10844
11620
|
};
|
|
11621
|
+
mode: {
|
|
11622
|
+
type: StringConstructor;
|
|
11623
|
+
default: string;
|
|
11624
|
+
};
|
|
11625
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
11626
|
+
[key: string]: any;
|
|
11627
|
+
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
10845
11628
|
duration: {
|
|
10846
11629
|
type: (ObjectConstructor | NumberConstructor)[];
|
|
10847
11630
|
default: number;
|
|
@@ -10859,6 +11642,21 @@ export declare const Components: {
|
|
|
10859
11642
|
type: StringConstructor;
|
|
10860
11643
|
default: string;
|
|
10861
11644
|
};
|
|
11645
|
+
style: {
|
|
11646
|
+
type: ObjectConstructor;
|
|
11647
|
+
default: () => {
|
|
11648
|
+
animationFillMode: string;
|
|
11649
|
+
animationTimingFunction: string;
|
|
11650
|
+
};
|
|
11651
|
+
};
|
|
11652
|
+
prefix: {
|
|
11653
|
+
type: StringConstructor;
|
|
11654
|
+
default: string;
|
|
11655
|
+
};
|
|
11656
|
+
mode: {
|
|
11657
|
+
type: StringConstructor;
|
|
11658
|
+
default: string;
|
|
11659
|
+
};
|
|
10862
11660
|
}>> & Readonly<{}>, {
|
|
10863
11661
|
style: Record<string, any>;
|
|
10864
11662
|
tag: string;
|
|
@@ -10869,187 +11667,477 @@ export declare const Components: {
|
|
|
10869
11667
|
prefix: string;
|
|
10870
11668
|
mode: string;
|
|
10871
11669
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10872
|
-
|
|
10873
|
-
|
|
10874
|
-
type:
|
|
11670
|
+
Tree: DefineComponent<ExtractPropTypes< {
|
|
11671
|
+
max: {
|
|
11672
|
+
type: NumberConstructor;
|
|
10875
11673
|
default: number;
|
|
11674
|
+
validator: (v: any) => boolean;
|
|
10876
11675
|
};
|
|
10877
|
-
|
|
10878
|
-
type:
|
|
11676
|
+
data: {
|
|
11677
|
+
type: ArrayConstructor;
|
|
11678
|
+
default: () => never[];
|
|
11679
|
+
};
|
|
11680
|
+
emptyText: {
|
|
11681
|
+
type: StringConstructor;
|
|
11682
|
+
default: string;
|
|
11683
|
+
};
|
|
11684
|
+
renderAfterExpand: {
|
|
11685
|
+
type: BooleanConstructor;
|
|
11686
|
+
default: boolean;
|
|
11687
|
+
};
|
|
11688
|
+
checkStrictly: {
|
|
11689
|
+
type: BooleanConstructor;
|
|
11690
|
+
default: boolean;
|
|
11691
|
+
};
|
|
11692
|
+
defaultExpandAll: BooleanConstructor;
|
|
11693
|
+
expandOnClickNode: {
|
|
11694
|
+
type: BooleanConstructor;
|
|
11695
|
+
default: boolean;
|
|
11696
|
+
};
|
|
11697
|
+
checkOnClickNode: BooleanConstructor;
|
|
11698
|
+
checkDescendants: {
|
|
11699
|
+
type: BooleanConstructor;
|
|
11700
|
+
default: boolean;
|
|
11701
|
+
};
|
|
11702
|
+
autoExpandParent: {
|
|
11703
|
+
type: BooleanConstructor;
|
|
11704
|
+
default: boolean;
|
|
11705
|
+
};
|
|
11706
|
+
modelValue: PropType<string | number | any[]>;
|
|
11707
|
+
expandedValues: {
|
|
11708
|
+
type: PropType<(string | number)[]>;
|
|
11709
|
+
default: () => never[];
|
|
11710
|
+
};
|
|
11711
|
+
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
11712
|
+
render: PropType<Props["render"]>;
|
|
11713
|
+
showCheckbox: {
|
|
11714
|
+
type: BooleanConstructor;
|
|
11715
|
+
default: boolean;
|
|
11716
|
+
};
|
|
11717
|
+
draggable: {
|
|
11718
|
+
type: BooleanConstructor;
|
|
11719
|
+
default: boolean;
|
|
11720
|
+
};
|
|
11721
|
+
allowDrag: FunctionConstructor;
|
|
11722
|
+
allowDrop: FunctionConstructor;
|
|
11723
|
+
lazy: {
|
|
11724
|
+
type: BooleanConstructor;
|
|
11725
|
+
default: boolean;
|
|
11726
|
+
};
|
|
11727
|
+
highlightCurrent: BooleanConstructor;
|
|
11728
|
+
loadData: FunctionConstructor;
|
|
11729
|
+
filterNode: FunctionConstructor;
|
|
11730
|
+
accordion: {
|
|
11731
|
+
type: BooleanConstructor;
|
|
11732
|
+
default: boolean;
|
|
11733
|
+
};
|
|
11734
|
+
indent: {
|
|
11735
|
+
type: NumberConstructor;
|
|
11736
|
+
default: number;
|
|
11737
|
+
};
|
|
11738
|
+
iconClass: StringConstructor;
|
|
11739
|
+
keyValue: {
|
|
11740
|
+
type: PropType<KEY_VALUE>;
|
|
11741
|
+
default: () => {
|
|
11742
|
+
children: string;
|
|
11743
|
+
label: string;
|
|
11744
|
+
value: string;
|
|
11745
|
+
disabled: string;
|
|
11746
|
+
isLeaf: string;
|
|
11747
|
+
};
|
|
11748
|
+
};
|
|
11749
|
+
allowDispatch: {
|
|
11750
|
+
type: BooleanConstructor;
|
|
11751
|
+
default: boolean;
|
|
11752
|
+
};
|
|
11753
|
+
numerable: {
|
|
11754
|
+
type: BooleanConstructor;
|
|
11755
|
+
default: boolean;
|
|
11756
|
+
};
|
|
11757
|
+
separator: {
|
|
11758
|
+
type: StringConstructor;
|
|
11759
|
+
default: string;
|
|
11760
|
+
};
|
|
11761
|
+
nullValue: {
|
|
11762
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
11763
|
+
default: undefined;
|
|
11764
|
+
};
|
|
11765
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue" | "current-change" | "node-expand" | "check-change" | "check" | "node-collapse" | "node-click" | "node-contextmenu" | "node-drag-start" | "node-drag-leave" | "node-drag-enter" | "node-drag-over" | "node-drag-end" | "node-drop")[], "change" | "update:modelValue" | "current-change" | "node-expand" | "check-change" | "check" | "node-collapse" | "node-click" | "node-contextmenu" | "node-drag-start" | "node-drag-leave" | "node-drag-enter" | "node-drag-over" | "node-drag-end" | "node-drop", PublicProps, Readonly<ExtractPropTypes< {
|
|
11766
|
+
max: {
|
|
11767
|
+
type: NumberConstructor;
|
|
11768
|
+
default: number;
|
|
11769
|
+
validator: (v: any) => boolean;
|
|
11770
|
+
};
|
|
11771
|
+
data: {
|
|
11772
|
+
type: ArrayConstructor;
|
|
11773
|
+
default: () => never[];
|
|
11774
|
+
};
|
|
11775
|
+
emptyText: {
|
|
11776
|
+
type: StringConstructor;
|
|
11777
|
+
default: string;
|
|
11778
|
+
};
|
|
11779
|
+
renderAfterExpand: {
|
|
11780
|
+
type: BooleanConstructor;
|
|
11781
|
+
default: boolean;
|
|
11782
|
+
};
|
|
11783
|
+
checkStrictly: {
|
|
11784
|
+
type: BooleanConstructor;
|
|
11785
|
+
default: boolean;
|
|
11786
|
+
};
|
|
11787
|
+
defaultExpandAll: BooleanConstructor;
|
|
11788
|
+
expandOnClickNode: {
|
|
11789
|
+
type: BooleanConstructor;
|
|
11790
|
+
default: boolean;
|
|
11791
|
+
};
|
|
11792
|
+
checkOnClickNode: BooleanConstructor;
|
|
11793
|
+
checkDescendants: {
|
|
11794
|
+
type: BooleanConstructor;
|
|
11795
|
+
default: boolean;
|
|
11796
|
+
};
|
|
11797
|
+
autoExpandParent: {
|
|
11798
|
+
type: BooleanConstructor;
|
|
11799
|
+
default: boolean;
|
|
11800
|
+
};
|
|
11801
|
+
modelValue: PropType<string | number | any[]>;
|
|
11802
|
+
expandedValues: {
|
|
11803
|
+
type: PropType<(string | number)[]>;
|
|
11804
|
+
default: () => never[];
|
|
11805
|
+
};
|
|
11806
|
+
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
11807
|
+
render: PropType<Props["render"]>;
|
|
11808
|
+
showCheckbox: {
|
|
11809
|
+
type: BooleanConstructor;
|
|
11810
|
+
default: boolean;
|
|
11811
|
+
};
|
|
11812
|
+
draggable: {
|
|
11813
|
+
type: BooleanConstructor;
|
|
11814
|
+
default: boolean;
|
|
11815
|
+
};
|
|
11816
|
+
allowDrag: FunctionConstructor;
|
|
11817
|
+
allowDrop: FunctionConstructor;
|
|
11818
|
+
lazy: {
|
|
11819
|
+
type: BooleanConstructor;
|
|
11820
|
+
default: boolean;
|
|
11821
|
+
};
|
|
11822
|
+
highlightCurrent: BooleanConstructor;
|
|
11823
|
+
loadData: FunctionConstructor;
|
|
11824
|
+
filterNode: FunctionConstructor;
|
|
11825
|
+
accordion: {
|
|
11826
|
+
type: BooleanConstructor;
|
|
11827
|
+
default: boolean;
|
|
11828
|
+
};
|
|
11829
|
+
indent: {
|
|
11830
|
+
type: NumberConstructor;
|
|
11831
|
+
default: number;
|
|
11832
|
+
};
|
|
11833
|
+
iconClass: StringConstructor;
|
|
11834
|
+
keyValue: {
|
|
11835
|
+
type: PropType<KEY_VALUE>;
|
|
11836
|
+
default: () => {
|
|
11837
|
+
children: string;
|
|
11838
|
+
label: string;
|
|
11839
|
+
value: string;
|
|
11840
|
+
disabled: string;
|
|
11841
|
+
isLeaf: string;
|
|
11842
|
+
};
|
|
11843
|
+
};
|
|
11844
|
+
allowDispatch: {
|
|
11845
|
+
type: BooleanConstructor;
|
|
11846
|
+
default: boolean;
|
|
11847
|
+
};
|
|
11848
|
+
numerable: {
|
|
11849
|
+
type: BooleanConstructor;
|
|
11850
|
+
default: boolean;
|
|
11851
|
+
};
|
|
11852
|
+
separator: {
|
|
11853
|
+
type: StringConstructor;
|
|
11854
|
+
default: string;
|
|
11855
|
+
};
|
|
11856
|
+
nullValue: {
|
|
11857
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
11858
|
+
default: undefined;
|
|
11859
|
+
};
|
|
11860
|
+
}>> & Readonly<{
|
|
11861
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
11862
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11863
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
11864
|
+
"onNode-expand"?: ((...args: any[]) => any) | undefined;
|
|
11865
|
+
"onCheck-change"?: ((...args: any[]) => any) | undefined;
|
|
11866
|
+
onCheck?: ((...args: any[]) => any) | undefined;
|
|
11867
|
+
"onNode-collapse"?: ((...args: any[]) => any) | undefined;
|
|
11868
|
+
"onNode-click"?: ((...args: any[]) => any) | undefined;
|
|
11869
|
+
"onNode-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
11870
|
+
"onNode-drag-start"?: ((...args: any[]) => any) | undefined;
|
|
11871
|
+
"onNode-drag-leave"?: ((...args: any[]) => any) | undefined;
|
|
11872
|
+
"onNode-drag-enter"?: ((...args: any[]) => any) | undefined;
|
|
11873
|
+
"onNode-drag-over"?: ((...args: any[]) => any) | undefined;
|
|
11874
|
+
"onNode-drag-end"?: ((...args: any[]) => any) | undefined;
|
|
11875
|
+
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
11876
|
+
}>, {
|
|
11877
|
+
data: unknown[];
|
|
11878
|
+
numerable: boolean;
|
|
11879
|
+
separator: string;
|
|
11880
|
+
max: number;
|
|
11881
|
+
nullValue: string | number | Record<string, any>;
|
|
11882
|
+
allowDispatch: boolean;
|
|
11883
|
+
accordion: boolean;
|
|
11884
|
+
indent: number;
|
|
11885
|
+
lazy: boolean;
|
|
11886
|
+
draggable: boolean;
|
|
11887
|
+
defaultExpandAll: boolean;
|
|
11888
|
+
emptyText: string;
|
|
11889
|
+
keyValue: {
|
|
11890
|
+
children: string;
|
|
11891
|
+
label: string;
|
|
11892
|
+
value: string;
|
|
11893
|
+
disabled: string;
|
|
11894
|
+
isLeaf: string;
|
|
11895
|
+
};
|
|
11896
|
+
expandedValues: (string | number)[];
|
|
11897
|
+
checkStrictly: boolean;
|
|
11898
|
+
autoExpandParent: boolean;
|
|
11899
|
+
checkDescendants: boolean;
|
|
11900
|
+
renderAfterExpand: boolean;
|
|
11901
|
+
expandOnClickNode: boolean;
|
|
11902
|
+
checkOnClickNode: boolean;
|
|
11903
|
+
showCheckbox: boolean;
|
|
11904
|
+
highlightCurrent: boolean;
|
|
11905
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11906
|
+
MTree: DefineComponent<ExtractPropTypes< {
|
|
11907
|
+
max: {
|
|
11908
|
+
type: NumberConstructor;
|
|
10879
11909
|
default: number;
|
|
11910
|
+
validator: (v: any) => boolean;
|
|
10880
11911
|
};
|
|
10881
|
-
|
|
10882
|
-
|
|
10883
|
-
|
|
10884
|
-
default: undefined;
|
|
11912
|
+
data: {
|
|
11913
|
+
type: ArrayConstructor;
|
|
11914
|
+
default: () => never[];
|
|
10885
11915
|
};
|
|
10886
|
-
|
|
11916
|
+
emptyText: {
|
|
10887
11917
|
type: StringConstructor;
|
|
10888
11918
|
default: string;
|
|
10889
11919
|
};
|
|
10890
|
-
|
|
10891
|
-
type:
|
|
10892
|
-
default:
|
|
10893
|
-
animationFillMode: string;
|
|
10894
|
-
animationTimingFunction: string;
|
|
11920
|
+
renderAfterExpand: {
|
|
11921
|
+
type: BooleanConstructor;
|
|
11922
|
+
default: boolean;
|
|
10895
11923
|
};
|
|
11924
|
+
checkStrictly: {
|
|
11925
|
+
type: BooleanConstructor;
|
|
11926
|
+
default: boolean;
|
|
10896
11927
|
};
|
|
10897
|
-
|
|
10898
|
-
|
|
10899
|
-
|
|
11928
|
+
defaultExpandAll: BooleanConstructor;
|
|
11929
|
+
expandOnClickNode: {
|
|
11930
|
+
type: BooleanConstructor;
|
|
11931
|
+
default: boolean;
|
|
10900
11932
|
};
|
|
10901
|
-
|
|
10902
|
-
|
|
10903
|
-
|
|
11933
|
+
checkOnClickNode: BooleanConstructor;
|
|
11934
|
+
checkDescendants: {
|
|
11935
|
+
type: BooleanConstructor;
|
|
11936
|
+
default: boolean;
|
|
10904
11937
|
};
|
|
10905
|
-
|
|
10906
|
-
|
|
10907
|
-
|
|
10908
|
-
duration: {
|
|
10909
|
-
type: (ObjectConstructor | NumberConstructor)[];
|
|
10910
|
-
default: number;
|
|
11938
|
+
autoExpandParent: {
|
|
11939
|
+
type: BooleanConstructor;
|
|
11940
|
+
default: boolean;
|
|
10911
11941
|
};
|
|
10912
|
-
|
|
10913
|
-
|
|
10914
|
-
|
|
11942
|
+
modelValue: PropType<string | number | any[]>;
|
|
11943
|
+
expandedValues: {
|
|
11944
|
+
type: PropType<(string | number)[]>;
|
|
11945
|
+
default: () => never[];
|
|
10915
11946
|
};
|
|
10916
|
-
|
|
10917
|
-
|
|
10918
|
-
|
|
10919
|
-
|
|
11947
|
+
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
11948
|
+
render: PropType<Props["render"]>;
|
|
11949
|
+
showCheckbox: {
|
|
11950
|
+
type: BooleanConstructor;
|
|
11951
|
+
default: boolean;
|
|
10920
11952
|
};
|
|
10921
|
-
|
|
10922
|
-
type:
|
|
10923
|
-
default:
|
|
11953
|
+
draggable: {
|
|
11954
|
+
type: BooleanConstructor;
|
|
11955
|
+
default: boolean;
|
|
10924
11956
|
};
|
|
10925
|
-
|
|
10926
|
-
|
|
11957
|
+
allowDrag: FunctionConstructor;
|
|
11958
|
+
allowDrop: FunctionConstructor;
|
|
11959
|
+
lazy: {
|
|
11960
|
+
type: BooleanConstructor;
|
|
11961
|
+
default: boolean;
|
|
11962
|
+
};
|
|
11963
|
+
highlightCurrent: BooleanConstructor;
|
|
11964
|
+
loadData: FunctionConstructor;
|
|
11965
|
+
filterNode: FunctionConstructor;
|
|
11966
|
+
accordion: {
|
|
11967
|
+
type: BooleanConstructor;
|
|
11968
|
+
default: boolean;
|
|
11969
|
+
};
|
|
11970
|
+
indent: {
|
|
11971
|
+
type: NumberConstructor;
|
|
11972
|
+
default: number;
|
|
11973
|
+
};
|
|
11974
|
+
iconClass: StringConstructor;
|
|
11975
|
+
keyValue: {
|
|
11976
|
+
type: PropType<KEY_VALUE>;
|
|
10927
11977
|
default: () => {
|
|
10928
|
-
|
|
10929
|
-
|
|
11978
|
+
children: string;
|
|
11979
|
+
label: string;
|
|
11980
|
+
value: string;
|
|
11981
|
+
disabled: string;
|
|
11982
|
+
isLeaf: string;
|
|
10930
11983
|
};
|
|
10931
11984
|
};
|
|
10932
|
-
|
|
10933
|
-
type:
|
|
10934
|
-
default:
|
|
11985
|
+
allowDispatch: {
|
|
11986
|
+
type: BooleanConstructor;
|
|
11987
|
+
default: boolean;
|
|
10935
11988
|
};
|
|
10936
|
-
|
|
11989
|
+
numerable: {
|
|
11990
|
+
type: BooleanConstructor;
|
|
11991
|
+
default: boolean;
|
|
11992
|
+
};
|
|
11993
|
+
separator: {
|
|
10937
11994
|
type: StringConstructor;
|
|
10938
11995
|
default: string;
|
|
10939
11996
|
};
|
|
10940
|
-
|
|
10941
|
-
|
|
10942
|
-
|
|
10943
|
-
duration: number | Record<string, any>;
|
|
10944
|
-
delay: number | Record<string, any>;
|
|
10945
|
-
group: boolean;
|
|
10946
|
-
origin: string;
|
|
10947
|
-
prefix: string;
|
|
10948
|
-
mode: string;
|
|
10949
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10950
|
-
MTransitionCollapse: DefineComponent<ExtractPropTypes< {
|
|
10951
|
-
duration: {
|
|
10952
|
-
type: (ObjectConstructor | NumberConstructor)[];
|
|
10953
|
-
default: number;
|
|
11997
|
+
nullValue: {
|
|
11998
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
11999
|
+
default: undefined;
|
|
10954
12000
|
};
|
|
10955
|
-
|
|
10956
|
-
|
|
12001
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue" | "current-change" | "node-expand" | "check-change" | "check" | "node-collapse" | "node-click" | "node-contextmenu" | "node-drag-start" | "node-drag-leave" | "node-drag-enter" | "node-drag-over" | "node-drag-end" | "node-drop")[], "change" | "update:modelValue" | "current-change" | "node-expand" | "check-change" | "check" | "node-collapse" | "node-click" | "node-contextmenu" | "node-drag-start" | "node-drag-leave" | "node-drag-enter" | "node-drag-over" | "node-drag-end" | "node-drop", PublicProps, Readonly<ExtractPropTypes< {
|
|
12002
|
+
max: {
|
|
12003
|
+
type: NumberConstructor;
|
|
10957
12004
|
default: number;
|
|
12005
|
+
validator: (v: any) => boolean;
|
|
10958
12006
|
};
|
|
10959
|
-
|
|
10960
|
-
|
|
10961
|
-
|
|
10962
|
-
default: undefined;
|
|
12007
|
+
data: {
|
|
12008
|
+
type: ArrayConstructor;
|
|
12009
|
+
default: () => never[];
|
|
10963
12010
|
};
|
|
10964
|
-
|
|
12011
|
+
emptyText: {
|
|
10965
12012
|
type: StringConstructor;
|
|
10966
12013
|
default: string;
|
|
10967
12014
|
};
|
|
10968
|
-
|
|
10969
|
-
type:
|
|
10970
|
-
default:
|
|
10971
|
-
animationFillMode: string;
|
|
10972
|
-
animationTimingFunction: string;
|
|
12015
|
+
renderAfterExpand: {
|
|
12016
|
+
type: BooleanConstructor;
|
|
12017
|
+
default: boolean;
|
|
10973
12018
|
};
|
|
12019
|
+
checkStrictly: {
|
|
12020
|
+
type: BooleanConstructor;
|
|
12021
|
+
default: boolean;
|
|
10974
12022
|
};
|
|
10975
|
-
|
|
10976
|
-
|
|
10977
|
-
|
|
12023
|
+
defaultExpandAll: BooleanConstructor;
|
|
12024
|
+
expandOnClickNode: {
|
|
12025
|
+
type: BooleanConstructor;
|
|
12026
|
+
default: boolean;
|
|
10978
12027
|
};
|
|
10979
|
-
|
|
10980
|
-
|
|
10981
|
-
|
|
12028
|
+
checkOnClickNode: BooleanConstructor;
|
|
12029
|
+
checkDescendants: {
|
|
12030
|
+
type: BooleanConstructor;
|
|
12031
|
+
default: boolean;
|
|
10982
12032
|
};
|
|
10983
|
-
|
|
10984
|
-
|
|
10985
|
-
|
|
10986
|
-
duration: {
|
|
10987
|
-
type: (ObjectConstructor | NumberConstructor)[];
|
|
10988
|
-
default: number;
|
|
12033
|
+
autoExpandParent: {
|
|
12034
|
+
type: BooleanConstructor;
|
|
12035
|
+
default: boolean;
|
|
10989
12036
|
};
|
|
10990
|
-
|
|
10991
|
-
|
|
10992
|
-
|
|
12037
|
+
modelValue: PropType<string | number | any[]>;
|
|
12038
|
+
expandedValues: {
|
|
12039
|
+
type: PropType<(string | number)[]>;
|
|
12040
|
+
default: () => never[];
|
|
10993
12041
|
};
|
|
10994
|
-
|
|
10995
|
-
|
|
10996
|
-
|
|
10997
|
-
|
|
12042
|
+
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
12043
|
+
render: PropType<Props["render"]>;
|
|
12044
|
+
showCheckbox: {
|
|
12045
|
+
type: BooleanConstructor;
|
|
12046
|
+
default: boolean;
|
|
10998
12047
|
};
|
|
10999
|
-
|
|
11000
|
-
type:
|
|
11001
|
-
default:
|
|
12048
|
+
draggable: {
|
|
12049
|
+
type: BooleanConstructor;
|
|
12050
|
+
default: boolean;
|
|
11002
12051
|
};
|
|
11003
|
-
|
|
11004
|
-
|
|
11005
|
-
|
|
11006
|
-
|
|
11007
|
-
|
|
12052
|
+
allowDrag: FunctionConstructor;
|
|
12053
|
+
allowDrop: FunctionConstructor;
|
|
12054
|
+
lazy: {
|
|
12055
|
+
type: BooleanConstructor;
|
|
12056
|
+
default: boolean;
|
|
11008
12057
|
};
|
|
12058
|
+
highlightCurrent: BooleanConstructor;
|
|
12059
|
+
loadData: FunctionConstructor;
|
|
12060
|
+
filterNode: FunctionConstructor;
|
|
12061
|
+
accordion: {
|
|
12062
|
+
type: BooleanConstructor;
|
|
12063
|
+
default: boolean;
|
|
11009
12064
|
};
|
|
11010
|
-
|
|
11011
|
-
type:
|
|
11012
|
-
default:
|
|
12065
|
+
indent: {
|
|
12066
|
+
type: NumberConstructor;
|
|
12067
|
+
default: number;
|
|
11013
12068
|
};
|
|
11014
|
-
|
|
11015
|
-
|
|
11016
|
-
|
|
12069
|
+
iconClass: StringConstructor;
|
|
12070
|
+
keyValue: {
|
|
12071
|
+
type: PropType<KEY_VALUE>;
|
|
12072
|
+
default: () => {
|
|
12073
|
+
children: string;
|
|
12074
|
+
label: string;
|
|
12075
|
+
value: string;
|
|
12076
|
+
disabled: string;
|
|
12077
|
+
isLeaf: string;
|
|
11017
12078
|
};
|
|
11018
|
-
}>> & Readonly<{}>, {
|
|
11019
|
-
style: Record<string, any>;
|
|
11020
|
-
tag: string;
|
|
11021
|
-
duration: number | Record<string, any>;
|
|
11022
|
-
delay: number | Record<string, any>;
|
|
11023
|
-
group: boolean;
|
|
11024
|
-
origin: string;
|
|
11025
|
-
prefix: string;
|
|
11026
|
-
mode: string;
|
|
11027
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11028
|
-
Tree: DefineComponent<ExtractPropTypes< {
|
|
11029
|
-
tag: {
|
|
11030
|
-
type: StringConstructor;
|
|
11031
|
-
default: string;
|
|
11032
12079
|
};
|
|
11033
|
-
|
|
11034
|
-
|
|
11035
|
-
|
|
11036
|
-
default: string;
|
|
12080
|
+
allowDispatch: {
|
|
12081
|
+
type: BooleanConstructor;
|
|
12082
|
+
default: boolean;
|
|
11037
12083
|
};
|
|
11038
|
-
|
|
11039
|
-
|
|
11040
|
-
|
|
11041
|
-
MTree: DefineComponent<ExtractPropTypes< {
|
|
11042
|
-
tag: {
|
|
11043
|
-
type: StringConstructor;
|
|
11044
|
-
default: string;
|
|
12084
|
+
numerable: {
|
|
12085
|
+
type: BooleanConstructor;
|
|
12086
|
+
default: boolean;
|
|
11045
12087
|
};
|
|
11046
|
-
|
|
11047
|
-
tag: {
|
|
12088
|
+
separator: {
|
|
11048
12089
|
type: StringConstructor;
|
|
11049
12090
|
default: string;
|
|
11050
12091
|
};
|
|
11051
|
-
|
|
11052
|
-
|
|
12092
|
+
nullValue: {
|
|
12093
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
12094
|
+
default: undefined;
|
|
12095
|
+
};
|
|
12096
|
+
}>> & Readonly<{
|
|
12097
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
12098
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12099
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
12100
|
+
"onNode-expand"?: ((...args: any[]) => any) | undefined;
|
|
12101
|
+
"onCheck-change"?: ((...args: any[]) => any) | undefined;
|
|
12102
|
+
onCheck?: ((...args: any[]) => any) | undefined;
|
|
12103
|
+
"onNode-collapse"?: ((...args: any[]) => any) | undefined;
|
|
12104
|
+
"onNode-click"?: ((...args: any[]) => any) | undefined;
|
|
12105
|
+
"onNode-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
12106
|
+
"onNode-drag-start"?: ((...args: any[]) => any) | undefined;
|
|
12107
|
+
"onNode-drag-leave"?: ((...args: any[]) => any) | undefined;
|
|
12108
|
+
"onNode-drag-enter"?: ((...args: any[]) => any) | undefined;
|
|
12109
|
+
"onNode-drag-over"?: ((...args: any[]) => any) | undefined;
|
|
12110
|
+
"onNode-drag-end"?: ((...args: any[]) => any) | undefined;
|
|
12111
|
+
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
12112
|
+
}>, {
|
|
12113
|
+
data: unknown[];
|
|
12114
|
+
numerable: boolean;
|
|
12115
|
+
separator: string;
|
|
12116
|
+
max: number;
|
|
12117
|
+
nullValue: string | number | Record<string, any>;
|
|
12118
|
+
allowDispatch: boolean;
|
|
12119
|
+
accordion: boolean;
|
|
12120
|
+
indent: number;
|
|
12121
|
+
lazy: boolean;
|
|
12122
|
+
draggable: boolean;
|
|
12123
|
+
defaultExpandAll: boolean;
|
|
12124
|
+
emptyText: string;
|
|
12125
|
+
keyValue: {
|
|
12126
|
+
children: string;
|
|
12127
|
+
label: string;
|
|
12128
|
+
value: string;
|
|
12129
|
+
disabled: string;
|
|
12130
|
+
isLeaf: string;
|
|
12131
|
+
};
|
|
12132
|
+
expandedValues: (string | number)[];
|
|
12133
|
+
checkStrictly: boolean;
|
|
12134
|
+
autoExpandParent: boolean;
|
|
12135
|
+
checkDescendants: boolean;
|
|
12136
|
+
renderAfterExpand: boolean;
|
|
12137
|
+
expandOnClickNode: boolean;
|
|
12138
|
+
checkOnClickNode: boolean;
|
|
12139
|
+
showCheckbox: boolean;
|
|
12140
|
+
highlightCurrent: boolean;
|
|
11053
12141
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11054
12142
|
Upload: DefineComponent<ExtractPropTypes< {
|
|
11055
12143
|
tag: {
|
|
@@ -11479,9 +12567,9 @@ export declare const Components: {
|
|
|
11479
12567
|
showMessage: boolean;
|
|
11480
12568
|
gallery: boolean;
|
|
11481
12569
|
sortable: boolean;
|
|
12570
|
+
keyValue: Record<string, any>;
|
|
11482
12571
|
picker: unknown[];
|
|
11483
12572
|
uploadOptions: Record<string, any>;
|
|
11484
|
-
keyValue: Record<string, any>;
|
|
11485
12573
|
imagePreviewOptions: Record<string, any>;
|
|
11486
12574
|
compressOptions: Record<string, any>;
|
|
11487
12575
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -11631,9 +12719,9 @@ export declare const Components: {
|
|
|
11631
12719
|
showMessage: boolean;
|
|
11632
12720
|
gallery: boolean;
|
|
11633
12721
|
sortable: boolean;
|
|
12722
|
+
keyValue: Record<string, any>;
|
|
11634
12723
|
picker: unknown[];
|
|
11635
12724
|
uploadOptions: Record<string, any>;
|
|
11636
|
-
keyValue: Record<string, any>;
|
|
11637
12725
|
imagePreviewOptions: Record<string, any>;
|
|
11638
12726
|
compressOptions: Record<string, any>;
|
|
11639
12727
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|