@deot/vc 1.0.38 → 1.0.40
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 +1484 -380
- package/dist/index.iife.js +5716 -3189
- package/dist/index.umd.cjs +5716 -3189
- 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,396 @@ 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
|
+
renderOption: Render;
|
|
572
|
+
renderOptionGroup: Render;
|
|
573
|
+
searchPlaceholder: {
|
|
574
|
+
type: StringConstructor;
|
|
575
|
+
default: string;
|
|
576
|
+
};
|
|
577
|
+
trigger: {
|
|
578
|
+
type: StringConstructor;
|
|
579
|
+
default: string;
|
|
580
|
+
};
|
|
553
581
|
tag: {
|
|
554
582
|
type: StringConstructor;
|
|
555
583
|
default: string;
|
|
556
584
|
};
|
|
557
|
-
|
|
585
|
+
placement: {
|
|
586
|
+
type: StringConstructor;
|
|
587
|
+
default: string;
|
|
588
|
+
};
|
|
589
|
+
arrow: {
|
|
590
|
+
type: BooleanConstructor;
|
|
591
|
+
default: boolean;
|
|
592
|
+
};
|
|
593
|
+
max: {
|
|
594
|
+
type: NumberConstructor;
|
|
595
|
+
default: number;
|
|
596
|
+
validator: (v: any) => boolean;
|
|
597
|
+
};
|
|
598
|
+
maxTags: NumberConstructor;
|
|
599
|
+
searchable: {
|
|
600
|
+
type: BooleanConstructor;
|
|
601
|
+
default: boolean;
|
|
602
|
+
};
|
|
603
|
+
loadData: {
|
|
604
|
+
type: FunctionConstructor;
|
|
605
|
+
};
|
|
606
|
+
extra: {
|
|
607
|
+
type: StringConstructor;
|
|
608
|
+
default: string;
|
|
609
|
+
};
|
|
610
|
+
separator: {
|
|
611
|
+
type: StringConstructor;
|
|
612
|
+
default: string;
|
|
613
|
+
};
|
|
614
|
+
numerable: {
|
|
615
|
+
type: BooleanConstructor;
|
|
616
|
+
default: boolean;
|
|
617
|
+
};
|
|
618
|
+
nullValue: {
|
|
619
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
620
|
+
default: undefined;
|
|
621
|
+
};
|
|
622
|
+
id: {
|
|
623
|
+
type: StringConstructor;
|
|
624
|
+
};
|
|
625
|
+
modelValue: PropType<string | number | any[]>;
|
|
626
|
+
disabled: {
|
|
627
|
+
type: BooleanConstructor;
|
|
628
|
+
default: boolean;
|
|
629
|
+
};
|
|
630
|
+
clearable: {
|
|
631
|
+
type: BooleanConstructor;
|
|
632
|
+
default: boolean;
|
|
633
|
+
};
|
|
634
|
+
portal: {
|
|
635
|
+
type: BooleanConstructor;
|
|
636
|
+
default: boolean;
|
|
637
|
+
};
|
|
638
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
639
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
640
|
+
data: {
|
|
641
|
+
type: PropType<TreeData[]>;
|
|
642
|
+
default: () => never[];
|
|
643
|
+
};
|
|
644
|
+
format: {
|
|
645
|
+
type: FunctionConstructor;
|
|
646
|
+
default: (v: any[]) => string;
|
|
647
|
+
};
|
|
648
|
+
changeOnSelect: {
|
|
649
|
+
type: BooleanConstructor;
|
|
650
|
+
default: boolean;
|
|
651
|
+
};
|
|
652
|
+
autoWidth: {
|
|
653
|
+
type: BooleanConstructor;
|
|
654
|
+
default: boolean;
|
|
655
|
+
};
|
|
656
|
+
renderOption: Render;
|
|
657
|
+
renderOptionGroup: Render;
|
|
658
|
+
searchPlaceholder: {
|
|
659
|
+
type: StringConstructor;
|
|
660
|
+
default: string;
|
|
661
|
+
};
|
|
662
|
+
trigger: {
|
|
663
|
+
type: StringConstructor;
|
|
664
|
+
default: string;
|
|
665
|
+
};
|
|
558
666
|
tag: {
|
|
559
667
|
type: StringConstructor;
|
|
560
668
|
default: string;
|
|
561
669
|
};
|
|
562
|
-
|
|
670
|
+
placement: {
|
|
671
|
+
type: StringConstructor;
|
|
672
|
+
default: string;
|
|
673
|
+
};
|
|
674
|
+
arrow: {
|
|
675
|
+
type: BooleanConstructor;
|
|
676
|
+
default: boolean;
|
|
677
|
+
};
|
|
678
|
+
max: {
|
|
679
|
+
type: NumberConstructor;
|
|
680
|
+
default: number;
|
|
681
|
+
validator: (v: any) => boolean;
|
|
682
|
+
};
|
|
683
|
+
maxTags: NumberConstructor;
|
|
684
|
+
searchable: {
|
|
685
|
+
type: BooleanConstructor;
|
|
686
|
+
default: boolean;
|
|
687
|
+
};
|
|
688
|
+
loadData: {
|
|
689
|
+
type: FunctionConstructor;
|
|
690
|
+
};
|
|
691
|
+
extra: {
|
|
692
|
+
type: StringConstructor;
|
|
693
|
+
default: string;
|
|
694
|
+
};
|
|
695
|
+
separator: {
|
|
696
|
+
type: StringConstructor;
|
|
697
|
+
default: string;
|
|
698
|
+
};
|
|
699
|
+
numerable: {
|
|
700
|
+
type: BooleanConstructor;
|
|
701
|
+
default: boolean;
|
|
702
|
+
};
|
|
703
|
+
nullValue: {
|
|
704
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
705
|
+
default: undefined;
|
|
706
|
+
};
|
|
707
|
+
id: {
|
|
708
|
+
type: StringConstructor;
|
|
709
|
+
};
|
|
710
|
+
modelValue: PropType<string | number | any[]>;
|
|
711
|
+
disabled: {
|
|
712
|
+
type: BooleanConstructor;
|
|
713
|
+
default: boolean;
|
|
714
|
+
};
|
|
715
|
+
clearable: {
|
|
716
|
+
type: BooleanConstructor;
|
|
717
|
+
default: boolean;
|
|
718
|
+
};
|
|
719
|
+
portal: {
|
|
720
|
+
type: BooleanConstructor;
|
|
721
|
+
default: boolean;
|
|
722
|
+
};
|
|
723
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
724
|
+
}>> & Readonly<{
|
|
725
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
726
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
727
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
728
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
729
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
730
|
+
}>, {
|
|
563
731
|
tag: string;
|
|
732
|
+
data: TreeData[];
|
|
733
|
+
disabled: boolean;
|
|
734
|
+
extra: string;
|
|
735
|
+
numerable: boolean;
|
|
736
|
+
separator: string;
|
|
737
|
+
max: number;
|
|
738
|
+
nullValue: string | number | Record<string, any>;
|
|
739
|
+
clearable: boolean;
|
|
740
|
+
placement: string;
|
|
741
|
+
portal: boolean;
|
|
742
|
+
arrow: boolean;
|
|
743
|
+
autoWidth: boolean;
|
|
744
|
+
trigger: string;
|
|
745
|
+
searchPlaceholder: string;
|
|
746
|
+
searchable: boolean;
|
|
747
|
+
format: Function;
|
|
748
|
+
changeOnSelect: boolean;
|
|
564
749
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
565
750
|
MCascader: DefineComponent<ExtractPropTypes< {
|
|
751
|
+
data: {
|
|
752
|
+
type: PropType<TreeData[]>;
|
|
753
|
+
default: () => never[];
|
|
754
|
+
};
|
|
755
|
+
format: {
|
|
756
|
+
type: FunctionConstructor;
|
|
757
|
+
default: (v: any[]) => string;
|
|
758
|
+
};
|
|
759
|
+
changeOnSelect: {
|
|
760
|
+
type: BooleanConstructor;
|
|
761
|
+
default: boolean;
|
|
762
|
+
};
|
|
763
|
+
autoWidth: {
|
|
764
|
+
type: BooleanConstructor;
|
|
765
|
+
default: boolean;
|
|
766
|
+
};
|
|
767
|
+
renderOption: Render;
|
|
768
|
+
renderOptionGroup: Render;
|
|
769
|
+
searchPlaceholder: {
|
|
770
|
+
type: StringConstructor;
|
|
771
|
+
default: string;
|
|
772
|
+
};
|
|
773
|
+
trigger: {
|
|
774
|
+
type: StringConstructor;
|
|
775
|
+
default: string;
|
|
776
|
+
};
|
|
566
777
|
tag: {
|
|
567
778
|
type: StringConstructor;
|
|
568
779
|
default: string;
|
|
569
780
|
};
|
|
570
|
-
|
|
781
|
+
placement: {
|
|
782
|
+
type: StringConstructor;
|
|
783
|
+
default: string;
|
|
784
|
+
};
|
|
785
|
+
arrow: {
|
|
786
|
+
type: BooleanConstructor;
|
|
787
|
+
default: boolean;
|
|
788
|
+
};
|
|
789
|
+
max: {
|
|
790
|
+
type: NumberConstructor;
|
|
791
|
+
default: number;
|
|
792
|
+
validator: (v: any) => boolean;
|
|
793
|
+
};
|
|
794
|
+
maxTags: NumberConstructor;
|
|
795
|
+
searchable: {
|
|
796
|
+
type: BooleanConstructor;
|
|
797
|
+
default: boolean;
|
|
798
|
+
};
|
|
799
|
+
loadData: {
|
|
800
|
+
type: FunctionConstructor;
|
|
801
|
+
};
|
|
802
|
+
extra: {
|
|
803
|
+
type: StringConstructor;
|
|
804
|
+
default: string;
|
|
805
|
+
};
|
|
806
|
+
separator: {
|
|
807
|
+
type: StringConstructor;
|
|
808
|
+
default: string;
|
|
809
|
+
};
|
|
810
|
+
numerable: {
|
|
811
|
+
type: BooleanConstructor;
|
|
812
|
+
default: boolean;
|
|
813
|
+
};
|
|
814
|
+
nullValue: {
|
|
815
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
816
|
+
default: undefined;
|
|
817
|
+
};
|
|
818
|
+
id: {
|
|
819
|
+
type: StringConstructor;
|
|
820
|
+
};
|
|
821
|
+
modelValue: PropType<string | number | any[]>;
|
|
822
|
+
disabled: {
|
|
823
|
+
type: BooleanConstructor;
|
|
824
|
+
default: boolean;
|
|
825
|
+
};
|
|
826
|
+
clearable: {
|
|
827
|
+
type: BooleanConstructor;
|
|
828
|
+
default: boolean;
|
|
829
|
+
};
|
|
830
|
+
portal: {
|
|
831
|
+
type: BooleanConstructor;
|
|
832
|
+
default: boolean;
|
|
833
|
+
};
|
|
834
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
835
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
836
|
+
data: {
|
|
837
|
+
type: PropType<TreeData[]>;
|
|
838
|
+
default: () => never[];
|
|
839
|
+
};
|
|
840
|
+
format: {
|
|
841
|
+
type: FunctionConstructor;
|
|
842
|
+
default: (v: any[]) => string;
|
|
843
|
+
};
|
|
844
|
+
changeOnSelect: {
|
|
845
|
+
type: BooleanConstructor;
|
|
846
|
+
default: boolean;
|
|
847
|
+
};
|
|
848
|
+
autoWidth: {
|
|
849
|
+
type: BooleanConstructor;
|
|
850
|
+
default: boolean;
|
|
851
|
+
};
|
|
852
|
+
renderOption: Render;
|
|
853
|
+
renderOptionGroup: Render;
|
|
854
|
+
searchPlaceholder: {
|
|
855
|
+
type: StringConstructor;
|
|
856
|
+
default: string;
|
|
857
|
+
};
|
|
858
|
+
trigger: {
|
|
859
|
+
type: StringConstructor;
|
|
860
|
+
default: string;
|
|
861
|
+
};
|
|
571
862
|
tag: {
|
|
572
863
|
type: StringConstructor;
|
|
573
864
|
default: string;
|
|
574
865
|
};
|
|
575
|
-
|
|
866
|
+
placement: {
|
|
867
|
+
type: StringConstructor;
|
|
868
|
+
default: string;
|
|
869
|
+
};
|
|
870
|
+
arrow: {
|
|
871
|
+
type: BooleanConstructor;
|
|
872
|
+
default: boolean;
|
|
873
|
+
};
|
|
874
|
+
max: {
|
|
875
|
+
type: NumberConstructor;
|
|
876
|
+
default: number;
|
|
877
|
+
validator: (v: any) => boolean;
|
|
878
|
+
};
|
|
879
|
+
maxTags: NumberConstructor;
|
|
880
|
+
searchable: {
|
|
881
|
+
type: BooleanConstructor;
|
|
882
|
+
default: boolean;
|
|
883
|
+
};
|
|
884
|
+
loadData: {
|
|
885
|
+
type: FunctionConstructor;
|
|
886
|
+
};
|
|
887
|
+
extra: {
|
|
888
|
+
type: StringConstructor;
|
|
889
|
+
default: string;
|
|
890
|
+
};
|
|
891
|
+
separator: {
|
|
892
|
+
type: StringConstructor;
|
|
893
|
+
default: string;
|
|
894
|
+
};
|
|
895
|
+
numerable: {
|
|
896
|
+
type: BooleanConstructor;
|
|
897
|
+
default: boolean;
|
|
898
|
+
};
|
|
899
|
+
nullValue: {
|
|
900
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
901
|
+
default: undefined;
|
|
902
|
+
};
|
|
903
|
+
id: {
|
|
904
|
+
type: StringConstructor;
|
|
905
|
+
};
|
|
906
|
+
modelValue: PropType<string | number | any[]>;
|
|
907
|
+
disabled: {
|
|
908
|
+
type: BooleanConstructor;
|
|
909
|
+
default: boolean;
|
|
910
|
+
};
|
|
911
|
+
clearable: {
|
|
912
|
+
type: BooleanConstructor;
|
|
913
|
+
default: boolean;
|
|
914
|
+
};
|
|
915
|
+
portal: {
|
|
916
|
+
type: BooleanConstructor;
|
|
917
|
+
default: boolean;
|
|
918
|
+
};
|
|
919
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
920
|
+
}>> & Readonly<{
|
|
921
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
922
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
923
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
924
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
925
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
926
|
+
}>, {
|
|
576
927
|
tag: string;
|
|
928
|
+
data: TreeData[];
|
|
929
|
+
disabled: boolean;
|
|
930
|
+
extra: string;
|
|
931
|
+
numerable: boolean;
|
|
932
|
+
separator: string;
|
|
933
|
+
max: number;
|
|
934
|
+
nullValue: string | number | Record<string, any>;
|
|
935
|
+
clearable: boolean;
|
|
936
|
+
placement: string;
|
|
937
|
+
portal: boolean;
|
|
938
|
+
arrow: boolean;
|
|
939
|
+
autoWidth: boolean;
|
|
940
|
+
trigger: string;
|
|
941
|
+
searchPlaceholder: string;
|
|
942
|
+
searchable: boolean;
|
|
943
|
+
format: Function;
|
|
944
|
+
changeOnSelect: boolean;
|
|
577
945
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
578
946
|
Chart: DefineComponent<ExtractPropTypes< {
|
|
579
947
|
options: ObjectConstructor;
|
|
@@ -974,9 +1342,9 @@ export declare const Components: {
|
|
|
974
1342
|
"onUpdate:moodelValue"?: ((...args: any[]) => any) | undefined;
|
|
975
1343
|
}>, {
|
|
976
1344
|
tag: string;
|
|
1345
|
+
styleless: boolean;
|
|
977
1346
|
alive: boolean;
|
|
978
1347
|
accordion: boolean;
|
|
979
|
-
styleless: boolean;
|
|
980
1348
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
981
1349
|
MCollapse: DefineComponent<ExtractPropTypes< {
|
|
982
1350
|
tag: {
|
|
@@ -1025,9 +1393,9 @@ export declare const Components: {
|
|
|
1025
1393
|
"onUpdate:moodelValue"?: ((...args: any[]) => any) | undefined;
|
|
1026
1394
|
}>, {
|
|
1027
1395
|
tag: string;
|
|
1396
|
+
styleless: boolean;
|
|
1028
1397
|
alive: boolean;
|
|
1029
1398
|
accordion: boolean;
|
|
1030
|
-
styleless: boolean;
|
|
1031
1399
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1032
1400
|
CollapseItem: DefineComponent<ExtractPropTypes< {
|
|
1033
1401
|
tag: {
|
|
@@ -1098,26 +1466,128 @@ export declare const Components: {
|
|
|
1098
1466
|
type: StringConstructor;
|
|
1099
1467
|
default: string;
|
|
1100
1468
|
};
|
|
1101
|
-
|
|
1469
|
+
format: {
|
|
1470
|
+
type: StringConstructor;
|
|
1471
|
+
default: string;
|
|
1472
|
+
};
|
|
1473
|
+
t: {
|
|
1474
|
+
type: NumberConstructor;
|
|
1475
|
+
default: number;
|
|
1476
|
+
};
|
|
1477
|
+
targetTime: {
|
|
1478
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1479
|
+
default: string;
|
|
1480
|
+
};
|
|
1481
|
+
serverTime: {
|
|
1482
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1483
|
+
default: string;
|
|
1484
|
+
};
|
|
1485
|
+
render: FunctionConstructor;
|
|
1486
|
+
trim: {
|
|
1487
|
+
type: BooleanConstructor;
|
|
1488
|
+
default: boolean;
|
|
1489
|
+
};
|
|
1490
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "error" | "finish")[], "change" | "error" | "finish", PublicProps, Readonly<ExtractPropTypes< {
|
|
1102
1491
|
tag: {
|
|
1103
1492
|
type: StringConstructor;
|
|
1104
1493
|
default: string;
|
|
1105
1494
|
};
|
|
1106
|
-
|
|
1495
|
+
format: {
|
|
1496
|
+
type: StringConstructor;
|
|
1497
|
+
default: string;
|
|
1498
|
+
};
|
|
1499
|
+
t: {
|
|
1500
|
+
type: NumberConstructor;
|
|
1501
|
+
default: number;
|
|
1502
|
+
};
|
|
1503
|
+
targetTime: {
|
|
1504
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1505
|
+
default: string;
|
|
1506
|
+
};
|
|
1507
|
+
serverTime: {
|
|
1508
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1509
|
+
default: string;
|
|
1510
|
+
};
|
|
1511
|
+
render: FunctionConstructor;
|
|
1512
|
+
trim: {
|
|
1513
|
+
type: BooleanConstructor;
|
|
1514
|
+
default: boolean;
|
|
1515
|
+
};
|
|
1516
|
+
}>> & Readonly<{
|
|
1517
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1518
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1519
|
+
onFinish?: ((...args: any[]) => any) | undefined;
|
|
1520
|
+
}>, {
|
|
1107
1521
|
tag: string;
|
|
1522
|
+
trim: boolean;
|
|
1523
|
+
format: string;
|
|
1524
|
+
t: number;
|
|
1525
|
+
targetTime: string | number | Date;
|
|
1526
|
+
serverTime: string | number | Date;
|
|
1108
1527
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1109
1528
|
MCountdown: DefineComponent<ExtractPropTypes< {
|
|
1110
1529
|
tag: {
|
|
1111
1530
|
type: StringConstructor;
|
|
1112
1531
|
default: string;
|
|
1113
1532
|
};
|
|
1114
|
-
|
|
1533
|
+
format: {
|
|
1534
|
+
type: StringConstructor;
|
|
1535
|
+
default: string;
|
|
1536
|
+
};
|
|
1537
|
+
t: {
|
|
1538
|
+
type: NumberConstructor;
|
|
1539
|
+
default: number;
|
|
1540
|
+
};
|
|
1541
|
+
targetTime: {
|
|
1542
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1543
|
+
default: string;
|
|
1544
|
+
};
|
|
1545
|
+
serverTime: {
|
|
1546
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1547
|
+
default: string;
|
|
1548
|
+
};
|
|
1549
|
+
render: FunctionConstructor;
|
|
1550
|
+
trim: {
|
|
1551
|
+
type: BooleanConstructor;
|
|
1552
|
+
default: boolean;
|
|
1553
|
+
};
|
|
1554
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "error" | "finish")[], "change" | "error" | "finish", PublicProps, Readonly<ExtractPropTypes< {
|
|
1115
1555
|
tag: {
|
|
1116
1556
|
type: StringConstructor;
|
|
1117
1557
|
default: string;
|
|
1118
1558
|
};
|
|
1119
|
-
|
|
1559
|
+
format: {
|
|
1560
|
+
type: StringConstructor;
|
|
1561
|
+
default: string;
|
|
1562
|
+
};
|
|
1563
|
+
t: {
|
|
1564
|
+
type: NumberConstructor;
|
|
1565
|
+
default: number;
|
|
1566
|
+
};
|
|
1567
|
+
targetTime: {
|
|
1568
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1569
|
+
default: string;
|
|
1570
|
+
};
|
|
1571
|
+
serverTime: {
|
|
1572
|
+
type: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
1573
|
+
default: string;
|
|
1574
|
+
};
|
|
1575
|
+
render: FunctionConstructor;
|
|
1576
|
+
trim: {
|
|
1577
|
+
type: BooleanConstructor;
|
|
1578
|
+
default: boolean;
|
|
1579
|
+
};
|
|
1580
|
+
}>> & Readonly<{
|
|
1581
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1582
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1583
|
+
onFinish?: ((...args: any[]) => any) | undefined;
|
|
1584
|
+
}>, {
|
|
1120
1585
|
tag: string;
|
|
1586
|
+
trim: boolean;
|
|
1587
|
+
format: string;
|
|
1588
|
+
t: number;
|
|
1589
|
+
targetTime: string | number | Date;
|
|
1590
|
+
serverTime: string | number | Date;
|
|
1121
1591
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1122
1592
|
Customer: DefineComponent<ExtractPropTypes< {
|
|
1123
1593
|
render: {
|
|
@@ -1286,27 +1756,27 @@ export declare const Components: {
|
|
|
1286
1756
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1287
1757
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
1288
1758
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
1759
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
1289
1760
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1290
1761
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
1291
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
1292
1762
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1293
1763
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
1294
1764
|
}>, {
|
|
1295
1765
|
tag: string;
|
|
1296
1766
|
disabled: boolean;
|
|
1297
|
-
|
|
1298
|
-
|
|
1767
|
+
separator: string;
|
|
1768
|
+
nullValue: string | number | Record<string, any>;
|
|
1299
1769
|
clearable: boolean;
|
|
1770
|
+
open: boolean;
|
|
1771
|
+
multiple: boolean;
|
|
1300
1772
|
placement: string;
|
|
1773
|
+
portal: boolean;
|
|
1301
1774
|
arrow: boolean;
|
|
1302
1775
|
trigger: string;
|
|
1303
|
-
|
|
1776
|
+
changeOnSelect: boolean;
|
|
1304
1777
|
confirm: boolean;
|
|
1305
|
-
separator: string;
|
|
1306
1778
|
splitPanels: boolean;
|
|
1307
1779
|
steps: unknown[];
|
|
1308
|
-
changeOnSelect: boolean;
|
|
1309
|
-
nullValue: string | number | Record<string, any>;
|
|
1310
1780
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1311
1781
|
MDatePicker: DefineComponent<ExtractPropTypes< {
|
|
1312
1782
|
type: StringConstructor;
|
|
@@ -1445,27 +1915,27 @@ export declare const Components: {
|
|
|
1445
1915
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1446
1916
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
1447
1917
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
1918
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
1448
1919
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1449
1920
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
1450
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
1451
1921
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1452
1922
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
1453
1923
|
}>, {
|
|
1454
1924
|
tag: string;
|
|
1455
1925
|
disabled: boolean;
|
|
1456
|
-
|
|
1457
|
-
|
|
1926
|
+
separator: string;
|
|
1927
|
+
nullValue: string | number | Record<string, any>;
|
|
1458
1928
|
clearable: boolean;
|
|
1929
|
+
open: boolean;
|
|
1930
|
+
multiple: boolean;
|
|
1459
1931
|
placement: string;
|
|
1932
|
+
portal: boolean;
|
|
1460
1933
|
arrow: boolean;
|
|
1461
1934
|
trigger: string;
|
|
1462
|
-
|
|
1935
|
+
changeOnSelect: boolean;
|
|
1463
1936
|
confirm: boolean;
|
|
1464
|
-
separator: string;
|
|
1465
1937
|
splitPanels: boolean;
|
|
1466
1938
|
steps: unknown[];
|
|
1467
|
-
changeOnSelect: boolean;
|
|
1468
|
-
nullValue: string | number | Record<string, any>;
|
|
1469
1939
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1470
1940
|
Debounce: DefineComponent<ExtractPropTypes< {
|
|
1471
1941
|
wait: {
|
|
@@ -1538,30 +2008,52 @@ export declare const Components: {
|
|
|
1538
2008
|
include: RegExp;
|
|
1539
2009
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1540
2010
|
Divider: DefineComponent<ExtractPropTypes< {
|
|
1541
|
-
|
|
2011
|
+
vertical: {
|
|
2012
|
+
type: BooleanConstructor;
|
|
2013
|
+
default: boolean;
|
|
2014
|
+
};
|
|
2015
|
+
placement: {
|
|
1542
2016
|
type: StringConstructor;
|
|
1543
2017
|
default: string;
|
|
2018
|
+
validator(val: string): boolean;
|
|
1544
2019
|
};
|
|
1545
2020
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1546
|
-
|
|
2021
|
+
vertical: {
|
|
2022
|
+
type: BooleanConstructor;
|
|
2023
|
+
default: boolean;
|
|
2024
|
+
};
|
|
2025
|
+
placement: {
|
|
1547
2026
|
type: StringConstructor;
|
|
1548
2027
|
default: string;
|
|
2028
|
+
validator(val: string): boolean;
|
|
1549
2029
|
};
|
|
1550
2030
|
}>> & Readonly<{}>, {
|
|
1551
|
-
|
|
2031
|
+
vertical: boolean;
|
|
2032
|
+
placement: string;
|
|
1552
2033
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1553
2034
|
MDivider: DefineComponent<ExtractPropTypes< {
|
|
1554
|
-
|
|
2035
|
+
vertical: {
|
|
2036
|
+
type: BooleanConstructor;
|
|
2037
|
+
default: boolean;
|
|
2038
|
+
};
|
|
2039
|
+
placement: {
|
|
1555
2040
|
type: StringConstructor;
|
|
1556
2041
|
default: string;
|
|
2042
|
+
validator(val: string): boolean;
|
|
1557
2043
|
};
|
|
1558
2044
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1559
|
-
|
|
2045
|
+
vertical: {
|
|
2046
|
+
type: BooleanConstructor;
|
|
2047
|
+
default: boolean;
|
|
2048
|
+
};
|
|
2049
|
+
placement: {
|
|
1560
2050
|
type: StringConstructor;
|
|
1561
2051
|
default: string;
|
|
2052
|
+
validator(val: string): boolean;
|
|
1562
2053
|
};
|
|
1563
2054
|
}>> & Readonly<{}>, {
|
|
1564
|
-
|
|
2055
|
+
vertical: boolean;
|
|
2056
|
+
placement: string;
|
|
1565
2057
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1566
2058
|
Drawer: {
|
|
1567
2059
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
@@ -1642,10 +2134,10 @@ export declare const Components: {
|
|
|
1642
2134
|
mask: boolean;
|
|
1643
2135
|
modelValue: boolean;
|
|
1644
2136
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1645
|
-
maskClosable: boolean;
|
|
1646
2137
|
placement: string;
|
|
1647
2138
|
height: number;
|
|
1648
2139
|
width: number;
|
|
2140
|
+
maskClosable: boolean;
|
|
1649
2141
|
scrollable: boolean;
|
|
1650
2142
|
closeWithCancel: boolean;
|
|
1651
2143
|
okText: string | boolean;
|
|
@@ -1737,10 +2229,10 @@ export declare const Components: {
|
|
|
1737
2229
|
mask: boolean;
|
|
1738
2230
|
modelValue: boolean;
|
|
1739
2231
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1740
|
-
maskClosable: boolean;
|
|
1741
2232
|
placement: string;
|
|
1742
2233
|
height: number;
|
|
1743
2234
|
width: number;
|
|
2235
|
+
maskClosable: boolean;
|
|
1744
2236
|
scrollable: boolean;
|
|
1745
2237
|
closeWithCancel: boolean;
|
|
1746
2238
|
okText: string | boolean;
|
|
@@ -1829,10 +2321,10 @@ export declare const Components: {
|
|
|
1829
2321
|
mask: boolean;
|
|
1830
2322
|
modelValue: boolean;
|
|
1831
2323
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1832
|
-
maskClosable: boolean;
|
|
1833
2324
|
placement: string;
|
|
1834
2325
|
height: number;
|
|
1835
2326
|
width: number;
|
|
2327
|
+
maskClosable: boolean;
|
|
1836
2328
|
scrollable: boolean;
|
|
1837
2329
|
closeWithCancel: boolean;
|
|
1838
2330
|
okText: string | boolean;
|
|
@@ -1845,10 +2337,10 @@ export declare const Components: {
|
|
|
1845
2337
|
mask: boolean;
|
|
1846
2338
|
modelValue: boolean;
|
|
1847
2339
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1848
|
-
maskClosable: boolean;
|
|
1849
2340
|
placement: string;
|
|
1850
2341
|
height: number;
|
|
1851
2342
|
width: number;
|
|
2343
|
+
maskClosable: boolean;
|
|
1852
2344
|
scrollable: boolean;
|
|
1853
2345
|
closeWithCancel: boolean;
|
|
1854
2346
|
okText: string | boolean;
|
|
@@ -1948,10 +2440,10 @@ export declare const Components: {
|
|
|
1948
2440
|
mask: boolean;
|
|
1949
2441
|
modelValue: boolean;
|
|
1950
2442
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1951
|
-
maskClosable: boolean;
|
|
1952
2443
|
placement: string;
|
|
1953
2444
|
height: number;
|
|
1954
2445
|
width: number;
|
|
2446
|
+
maskClosable: boolean;
|
|
1955
2447
|
scrollable: boolean;
|
|
1956
2448
|
closeWithCancel: boolean;
|
|
1957
2449
|
okText: string | boolean;
|
|
@@ -2043,10 +2535,10 @@ export declare const Components: {
|
|
|
2043
2535
|
mask: boolean;
|
|
2044
2536
|
modelValue: boolean;
|
|
2045
2537
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2046
|
-
maskClosable: boolean;
|
|
2047
2538
|
placement: string;
|
|
2048
2539
|
height: number;
|
|
2049
2540
|
width: number;
|
|
2541
|
+
maskClosable: boolean;
|
|
2050
2542
|
scrollable: boolean;
|
|
2051
2543
|
closeWithCancel: boolean;
|
|
2052
2544
|
okText: string | boolean;
|
|
@@ -2135,10 +2627,10 @@ export declare const Components: {
|
|
|
2135
2627
|
mask: boolean;
|
|
2136
2628
|
modelValue: boolean;
|
|
2137
2629
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2138
|
-
maskClosable: boolean;
|
|
2139
2630
|
placement: string;
|
|
2140
2631
|
height: number;
|
|
2141
2632
|
width: number;
|
|
2633
|
+
maskClosable: boolean;
|
|
2142
2634
|
scrollable: boolean;
|
|
2143
2635
|
closeWithCancel: boolean;
|
|
2144
2636
|
okText: string | boolean;
|
|
@@ -2151,10 +2643,10 @@ export declare const Components: {
|
|
|
2151
2643
|
mask: boolean;
|
|
2152
2644
|
modelValue: boolean;
|
|
2153
2645
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2154
|
-
maskClosable: boolean;
|
|
2155
2646
|
placement: string;
|
|
2156
2647
|
height: number;
|
|
2157
2648
|
width: number;
|
|
2649
|
+
maskClosable: boolean;
|
|
2158
2650
|
scrollable: boolean;
|
|
2159
2651
|
closeWithCancel: boolean;
|
|
2160
2652
|
okText: string | boolean;
|
|
@@ -2322,10 +2814,10 @@ export declare const Components: {
|
|
|
2322
2814
|
mask: boolean;
|
|
2323
2815
|
modelValue: boolean;
|
|
2324
2816
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2325
|
-
maskClosable: boolean;
|
|
2326
2817
|
placement: string;
|
|
2327
2818
|
height: number;
|
|
2328
2819
|
width: number;
|
|
2820
|
+
maskClosable: boolean;
|
|
2329
2821
|
scrollable: boolean;
|
|
2330
2822
|
closeWithCancel: boolean;
|
|
2331
2823
|
okText: string | boolean;
|
|
@@ -2480,10 +2972,10 @@ export declare const Components: {
|
|
|
2480
2972
|
mask: boolean;
|
|
2481
2973
|
modelValue: boolean;
|
|
2482
2974
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2483
|
-
maskClosable: boolean;
|
|
2484
2975
|
placement: string;
|
|
2485
2976
|
height: number;
|
|
2486
2977
|
width: number;
|
|
2978
|
+
maskClosable: boolean;
|
|
2487
2979
|
scrollable: boolean;
|
|
2488
2980
|
closeWithCancel: boolean;
|
|
2489
2981
|
okText: string | boolean;
|
|
@@ -2864,7 +3356,7 @@ export declare const Components: {
|
|
|
2864
3356
|
styleless: boolean;
|
|
2865
3357
|
inline: boolean;
|
|
2866
3358
|
showMessage: boolean;
|
|
2867
|
-
labelPosition: "left" | "
|
|
3359
|
+
labelPosition: "left" | "right" | "top";
|
|
2868
3360
|
autocomplete: "on" | "off";
|
|
2869
3361
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2870
3362
|
MForm: DefineComponent<ExtractPropTypes< {
|
|
@@ -2959,7 +3451,7 @@ export declare const Components: {
|
|
|
2959
3451
|
styleless: boolean;
|
|
2960
3452
|
inline: boolean;
|
|
2961
3453
|
showMessage: boolean;
|
|
2962
|
-
labelPosition: "left" | "
|
|
3454
|
+
labelPosition: "left" | "right" | "top";
|
|
2963
3455
|
autocomplete: "on" | "off";
|
|
2964
3456
|
showToast: boolean;
|
|
2965
3457
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -3544,17 +4036,17 @@ export declare const Components: {
|
|
|
3544
4036
|
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
3545
4037
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
3546
4038
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
3547
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3548
4039
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
4040
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3549
4041
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
3550
4042
|
}>, {
|
|
3551
4043
|
disabled: boolean;
|
|
3552
|
-
styleless: boolean;
|
|
3553
4044
|
focusEnd: boolean;
|
|
3554
4045
|
clearable: boolean;
|
|
3555
4046
|
afloat: boolean;
|
|
3556
4047
|
allowDispatch: boolean;
|
|
3557
4048
|
bytes: boolean;
|
|
4049
|
+
styleless: boolean;
|
|
3558
4050
|
controllable: boolean;
|
|
3559
4051
|
indicator: boolean | {
|
|
3560
4052
|
inline: boolean;
|
|
@@ -3679,19 +4171,19 @@ export declare const Components: {
|
|
|
3679
4171
|
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
3680
4172
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
3681
4173
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
3682
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3683
4174
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
4175
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3684
4176
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
3685
4177
|
}>, {
|
|
3686
4178
|
disabled: boolean;
|
|
3687
|
-
right: boolean;
|
|
3688
|
-
styleless: boolean;
|
|
3689
4179
|
focusEnd: boolean;
|
|
3690
4180
|
clearable: boolean;
|
|
3691
4181
|
afloat: boolean;
|
|
3692
4182
|
allowDispatch: boolean;
|
|
3693
4183
|
bytes: boolean;
|
|
4184
|
+
styleless: boolean;
|
|
3694
4185
|
controllable: boolean;
|
|
4186
|
+
right: boolean;
|
|
3695
4187
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3696
4188
|
InputNumber: DefineComponent<ExtractPropTypes< {
|
|
3697
4189
|
min: {
|
|
@@ -3852,18 +4344,18 @@ export declare const Components: {
|
|
|
3852
4344
|
}>> & Readonly<{}>, {
|
|
3853
4345
|
output: string | Function;
|
|
3854
4346
|
disabled: boolean;
|
|
3855
|
-
|
|
4347
|
+
max: number;
|
|
4348
|
+
nullValue: string | number | Record<string, any>;
|
|
3856
4349
|
focusEnd: boolean;
|
|
3857
4350
|
clearable: boolean;
|
|
3858
4351
|
afloat: boolean;
|
|
3859
4352
|
allowDispatch: boolean;
|
|
3860
4353
|
bytes: boolean;
|
|
4354
|
+
styleless: boolean;
|
|
3861
4355
|
controllable: boolean;
|
|
3862
|
-
required: boolean;
|
|
3863
|
-
nullValue: string | number | Record<string, any>;
|
|
3864
4356
|
min: number;
|
|
3865
|
-
max: number;
|
|
3866
4357
|
step: number | boolean;
|
|
4358
|
+
required: boolean;
|
|
3867
4359
|
precision: number;
|
|
3868
4360
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3869
4361
|
MInputNumber: DefineComponent<ExtractPropTypes< {
|
|
@@ -4025,18 +4517,18 @@ export declare const Components: {
|
|
|
4025
4517
|
}>> & Readonly<{}>, {
|
|
4026
4518
|
output: string | Function;
|
|
4027
4519
|
disabled: boolean;
|
|
4028
|
-
|
|
4520
|
+
max: number;
|
|
4521
|
+
nullValue: string | number | Record<string, any>;
|
|
4029
4522
|
focusEnd: boolean;
|
|
4030
4523
|
clearable: boolean;
|
|
4031
4524
|
afloat: boolean;
|
|
4032
4525
|
allowDispatch: boolean;
|
|
4033
4526
|
bytes: boolean;
|
|
4527
|
+
styleless: boolean;
|
|
4034
4528
|
controllable: boolean;
|
|
4035
|
-
required: boolean;
|
|
4036
|
-
nullValue: string | number | Record<string, any>;
|
|
4037
4529
|
min: number;
|
|
4038
|
-
max: number;
|
|
4039
4530
|
step: number | boolean;
|
|
4531
|
+
required: boolean;
|
|
4040
4532
|
precision: number;
|
|
4041
4533
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4042
4534
|
InputSearch: DefineComponent<ExtractPropTypes< {
|
|
@@ -4149,12 +4641,12 @@ export declare const Components: {
|
|
|
4149
4641
|
};
|
|
4150
4642
|
}>> & Readonly<{}>, {
|
|
4151
4643
|
disabled: boolean;
|
|
4152
|
-
styleless: boolean;
|
|
4153
4644
|
focusEnd: boolean;
|
|
4154
4645
|
clearable: boolean;
|
|
4155
4646
|
afloat: boolean;
|
|
4156
4647
|
allowDispatch: boolean;
|
|
4157
4648
|
bytes: boolean;
|
|
4649
|
+
styleless: boolean;
|
|
4158
4650
|
controllable: boolean;
|
|
4159
4651
|
enterText: string | boolean;
|
|
4160
4652
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -4276,12 +4768,12 @@ export declare const Components: {
|
|
|
4276
4768
|
};
|
|
4277
4769
|
}>> & Readonly<{}>, {
|
|
4278
4770
|
disabled: boolean;
|
|
4279
|
-
styleless: boolean;
|
|
4280
4771
|
focusEnd: boolean;
|
|
4281
4772
|
clearable: boolean;
|
|
4282
4773
|
afloat: boolean;
|
|
4283
4774
|
allowDispatch: boolean;
|
|
4284
4775
|
bytes: boolean;
|
|
4776
|
+
styleless: boolean;
|
|
4285
4777
|
controllable: boolean;
|
|
4286
4778
|
enterText: string | boolean;
|
|
4287
4779
|
cancelText: string;
|
|
@@ -5347,8 +5839,8 @@ export declare const Components: {
|
|
|
5347
5839
|
mask: boolean;
|
|
5348
5840
|
modelValue: boolean;
|
|
5349
5841
|
mode: "alert" | "operation";
|
|
5350
|
-
maskClosable: boolean;
|
|
5351
5842
|
width: number;
|
|
5843
|
+
maskClosable: boolean;
|
|
5352
5844
|
closeWithCancel: boolean;
|
|
5353
5845
|
okText: string | boolean;
|
|
5354
5846
|
cancelText: string | boolean;
|
|
@@ -5380,9 +5872,9 @@ export declare const Components: {
|
|
|
5380
5872
|
onBeforeClose: FunctionConstructor;
|
|
5381
5873
|
}>> & Readonly<{
|
|
5382
5874
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5383
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5384
5875
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5385
|
-
|
|
5876
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5877
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], PublicProps, {
|
|
5386
5878
|
closable: boolean;
|
|
5387
5879
|
duration: number;
|
|
5388
5880
|
fixed: boolean;
|
|
@@ -5420,8 +5912,8 @@ export declare const Components: {
|
|
|
5420
5912
|
onBeforeClose: FunctionConstructor;
|
|
5421
5913
|
}>> & Readonly<{
|
|
5422
5914
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5423
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5424
5915
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5916
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5425
5917
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
5426
5918
|
closable: boolean;
|
|
5427
5919
|
duration: number;
|
|
@@ -5457,9 +5949,9 @@ export declare const Components: {
|
|
|
5457
5949
|
onBeforeClose: FunctionConstructor;
|
|
5458
5950
|
}>> & Readonly<{
|
|
5459
5951
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5460
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5461
5952
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5462
|
-
|
|
5953
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5954
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", {
|
|
5463
5955
|
closable: boolean;
|
|
5464
5956
|
duration: number;
|
|
5465
5957
|
fixed: boolean;
|
|
@@ -5564,9 +6056,9 @@ export declare const Components: {
|
|
|
5564
6056
|
onBeforeClose: FunctionConstructor;
|
|
5565
6057
|
}>> & Readonly<{
|
|
5566
6058
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5567
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5568
6059
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5569
|
-
|
|
6060
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
6061
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], PublicProps, {
|
|
5570
6062
|
closable: boolean;
|
|
5571
6063
|
duration: number;
|
|
5572
6064
|
fixed: boolean;
|
|
@@ -5604,8 +6096,8 @@ export declare const Components: {
|
|
|
5604
6096
|
onBeforeClose: FunctionConstructor;
|
|
5605
6097
|
}>> & Readonly<{
|
|
5606
6098
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5607
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5608
6099
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6100
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5609
6101
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
5610
6102
|
closable: boolean;
|
|
5611
6103
|
duration: number;
|
|
@@ -5641,9 +6133,9 @@ export declare const Components: {
|
|
|
5641
6133
|
onBeforeClose: FunctionConstructor;
|
|
5642
6134
|
}>> & Readonly<{
|
|
5643
6135
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5644
|
-
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5645
6136
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5646
|
-
|
|
6137
|
+
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
6138
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", {
|
|
5647
6139
|
closable: boolean;
|
|
5648
6140
|
duration: number;
|
|
5649
6141
|
fixed: boolean;
|
|
@@ -5826,8 +6318,8 @@ export declare const Components: {
|
|
|
5826
6318
|
"onUpdate:current"?: ((...args: any[]) => any) | undefined;
|
|
5827
6319
|
"onPage-size-change"?: ((...args: any[]) => any) | undefined;
|
|
5828
6320
|
}>, {
|
|
5829
|
-
portal: boolean;
|
|
5830
6321
|
placement: string;
|
|
6322
|
+
portal: boolean;
|
|
5831
6323
|
current: number;
|
|
5832
6324
|
count: number;
|
|
5833
6325
|
pageSize: number;
|
|
@@ -5915,8 +6407,8 @@ export declare const Components: {
|
|
|
5915
6407
|
"onUpdate:current"?: ((...args: any[]) => any) | undefined;
|
|
5916
6408
|
"onPage-size-change"?: ((...args: any[]) => any) | undefined;
|
|
5917
6409
|
}>, {
|
|
5918
|
-
portal: boolean;
|
|
5919
6410
|
placement: string;
|
|
6411
|
+
portal: boolean;
|
|
5920
6412
|
current: number;
|
|
5921
6413
|
count: number;
|
|
5922
6414
|
pageSize: number;
|
|
@@ -6168,23 +6660,24 @@ export declare const Components: {
|
|
|
6168
6660
|
Popover: {
|
|
6169
6661
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
6170
6662
|
modelValue: BooleanConstructor;
|
|
6663
|
+
always: BooleanConstructor;
|
|
6664
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
6665
|
+
animation: StringConstructor;
|
|
6666
|
+
placement: {
|
|
6667
|
+
type: StringConstructor;
|
|
6668
|
+
default: string;
|
|
6669
|
+
validator: (value: string) => boolean;
|
|
6670
|
+
};
|
|
6171
6671
|
theme: {
|
|
6172
6672
|
type: StringConstructor;
|
|
6173
6673
|
default: string;
|
|
6174
6674
|
validator: (v: string) => boolean;
|
|
6175
6675
|
};
|
|
6176
|
-
|
|
6676
|
+
getPopupContainer: FunctionConstructor;
|
|
6177
6677
|
portal: {
|
|
6178
6678
|
type: BooleanConstructor;
|
|
6179
6679
|
default: boolean;
|
|
6180
6680
|
};
|
|
6181
|
-
animation: StringConstructor;
|
|
6182
|
-
placement: {
|
|
6183
|
-
type: StringConstructor;
|
|
6184
|
-
default: string;
|
|
6185
|
-
validator: (value: string) => boolean;
|
|
6186
|
-
};
|
|
6187
|
-
getPopupContainer: FunctionConstructor;
|
|
6188
6681
|
arrow: {
|
|
6189
6682
|
type: BooleanConstructor;
|
|
6190
6683
|
default: boolean;
|
|
@@ -6193,7 +6686,6 @@ export declare const Components: {
|
|
|
6193
6686
|
type: BooleanConstructor;
|
|
6194
6687
|
default: boolean;
|
|
6195
6688
|
};
|
|
6196
|
-
always: BooleanConstructor;
|
|
6197
6689
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6198
6690
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6199
6691
|
trigger: {
|
|
@@ -6224,12 +6716,12 @@ export declare const Components: {
|
|
|
6224
6716
|
tag: string;
|
|
6225
6717
|
modelValue: boolean;
|
|
6226
6718
|
disabled: boolean;
|
|
6719
|
+
always: boolean;
|
|
6720
|
+
placement: string;
|
|
6227
6721
|
theme: string;
|
|
6228
6722
|
portal: boolean;
|
|
6229
|
-
placement: string;
|
|
6230
6723
|
arrow: boolean;
|
|
6231
6724
|
autoWidth: boolean;
|
|
6232
|
-
always: boolean;
|
|
6233
6725
|
trigger: string;
|
|
6234
6726
|
outsideClickable: boolean;
|
|
6235
6727
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
@@ -6241,23 +6733,24 @@ export declare const Components: {
|
|
|
6241
6733
|
Defaults: {};
|
|
6242
6734
|
}, Readonly<ExtractPropTypes< {
|
|
6243
6735
|
modelValue: BooleanConstructor;
|
|
6244
|
-
|
|
6245
|
-
type: StringConstructor;
|
|
6246
|
-
default: string;
|
|
6247
|
-
validator: (v: string) => boolean;
|
|
6248
|
-
};
|
|
6736
|
+
always: BooleanConstructor;
|
|
6249
6737
|
content: (StringConstructor | FunctionConstructor)[];
|
|
6250
|
-
portal: {
|
|
6251
|
-
type: BooleanConstructor;
|
|
6252
|
-
default: boolean;
|
|
6253
|
-
};
|
|
6254
6738
|
animation: StringConstructor;
|
|
6255
6739
|
placement: {
|
|
6256
6740
|
type: StringConstructor;
|
|
6257
6741
|
default: string;
|
|
6258
6742
|
validator: (value: string) => boolean;
|
|
6259
6743
|
};
|
|
6744
|
+
theme: {
|
|
6745
|
+
type: StringConstructor;
|
|
6746
|
+
default: string;
|
|
6747
|
+
validator: (v: string) => boolean;
|
|
6748
|
+
};
|
|
6260
6749
|
getPopupContainer: FunctionConstructor;
|
|
6750
|
+
portal: {
|
|
6751
|
+
type: BooleanConstructor;
|
|
6752
|
+
default: boolean;
|
|
6753
|
+
};
|
|
6261
6754
|
arrow: {
|
|
6262
6755
|
type: BooleanConstructor;
|
|
6263
6756
|
default: boolean;
|
|
@@ -6266,7 +6759,6 @@ export declare const Components: {
|
|
|
6266
6759
|
type: BooleanConstructor;
|
|
6267
6760
|
default: boolean;
|
|
6268
6761
|
};
|
|
6269
|
-
always: BooleanConstructor;
|
|
6270
6762
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6271
6763
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6272
6764
|
trigger: {
|
|
@@ -6297,12 +6789,12 @@ export declare const Components: {
|
|
|
6297
6789
|
tag: string;
|
|
6298
6790
|
modelValue: boolean;
|
|
6299
6791
|
disabled: boolean;
|
|
6792
|
+
always: boolean;
|
|
6793
|
+
placement: string;
|
|
6300
6794
|
theme: string;
|
|
6301
6795
|
portal: boolean;
|
|
6302
|
-
placement: string;
|
|
6303
6796
|
arrow: boolean;
|
|
6304
6797
|
autoWidth: boolean;
|
|
6305
|
-
always: boolean;
|
|
6306
6798
|
trigger: string;
|
|
6307
6799
|
outsideClickable: boolean;
|
|
6308
6800
|
}>;
|
|
@@ -6311,23 +6803,24 @@ export declare const Components: {
|
|
|
6311
6803
|
__isSuspense?: never;
|
|
6312
6804
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6313
6805
|
modelValue: BooleanConstructor;
|
|
6806
|
+
always: BooleanConstructor;
|
|
6807
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
6808
|
+
animation: StringConstructor;
|
|
6809
|
+
placement: {
|
|
6810
|
+
type: StringConstructor;
|
|
6811
|
+
default: string;
|
|
6812
|
+
validator: (value: string) => boolean;
|
|
6813
|
+
};
|
|
6314
6814
|
theme: {
|
|
6315
6815
|
type: StringConstructor;
|
|
6316
6816
|
default: string;
|
|
6317
6817
|
validator: (v: string) => boolean;
|
|
6318
6818
|
};
|
|
6319
|
-
|
|
6819
|
+
getPopupContainer: FunctionConstructor;
|
|
6320
6820
|
portal: {
|
|
6321
6821
|
type: BooleanConstructor;
|
|
6322
6822
|
default: boolean;
|
|
6323
6823
|
};
|
|
6324
|
-
animation: StringConstructor;
|
|
6325
|
-
placement: {
|
|
6326
|
-
type: StringConstructor;
|
|
6327
|
-
default: string;
|
|
6328
|
-
validator: (value: string) => boolean;
|
|
6329
|
-
};
|
|
6330
|
-
getPopupContainer: FunctionConstructor;
|
|
6331
6824
|
arrow: {
|
|
6332
6825
|
type: BooleanConstructor;
|
|
6333
6826
|
default: boolean;
|
|
@@ -6336,7 +6829,6 @@ export declare const Components: {
|
|
|
6336
6829
|
type: BooleanConstructor;
|
|
6337
6830
|
default: boolean;
|
|
6338
6831
|
};
|
|
6339
|
-
always: BooleanConstructor;
|
|
6340
6832
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6341
6833
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6342
6834
|
trigger: {
|
|
@@ -6367,12 +6859,12 @@ export declare const Components: {
|
|
|
6367
6859
|
tag: string;
|
|
6368
6860
|
modelValue: boolean;
|
|
6369
6861
|
disabled: boolean;
|
|
6862
|
+
always: boolean;
|
|
6863
|
+
placement: string;
|
|
6370
6864
|
theme: string;
|
|
6371
6865
|
portal: boolean;
|
|
6372
|
-
placement: string;
|
|
6373
6866
|
arrow: boolean;
|
|
6374
6867
|
autoWidth: boolean;
|
|
6375
|
-
always: boolean;
|
|
6376
6868
|
trigger: string;
|
|
6377
6869
|
outsideClickable: boolean;
|
|
6378
6870
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
@@ -6385,23 +6877,24 @@ export declare const Components: {
|
|
|
6385
6877
|
MPopover: {
|
|
6386
6878
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
6387
6879
|
modelValue: BooleanConstructor;
|
|
6880
|
+
always: BooleanConstructor;
|
|
6881
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
6882
|
+
animation: StringConstructor;
|
|
6883
|
+
placement: {
|
|
6884
|
+
type: StringConstructor;
|
|
6885
|
+
default: string;
|
|
6886
|
+
validator: (value: string) => boolean;
|
|
6887
|
+
};
|
|
6388
6888
|
theme: {
|
|
6389
6889
|
type: StringConstructor;
|
|
6390
6890
|
default: string;
|
|
6391
6891
|
validator: (v: string) => boolean;
|
|
6392
6892
|
};
|
|
6393
|
-
|
|
6893
|
+
getPopupContainer: FunctionConstructor;
|
|
6394
6894
|
portal: {
|
|
6395
6895
|
type: BooleanConstructor;
|
|
6396
6896
|
default: boolean;
|
|
6397
6897
|
};
|
|
6398
|
-
animation: StringConstructor;
|
|
6399
|
-
placement: {
|
|
6400
|
-
type: StringConstructor;
|
|
6401
|
-
default: string;
|
|
6402
|
-
validator: (value: string) => boolean;
|
|
6403
|
-
};
|
|
6404
|
-
getPopupContainer: FunctionConstructor;
|
|
6405
6898
|
arrow: {
|
|
6406
6899
|
type: BooleanConstructor;
|
|
6407
6900
|
default: boolean;
|
|
@@ -6410,7 +6903,6 @@ export declare const Components: {
|
|
|
6410
6903
|
type: BooleanConstructor;
|
|
6411
6904
|
default: boolean;
|
|
6412
6905
|
};
|
|
6413
|
-
always: BooleanConstructor;
|
|
6414
6906
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6415
6907
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6416
6908
|
trigger: {
|
|
@@ -6441,12 +6933,12 @@ export declare const Components: {
|
|
|
6441
6933
|
tag: string;
|
|
6442
6934
|
modelValue: boolean;
|
|
6443
6935
|
disabled: boolean;
|
|
6936
|
+
always: boolean;
|
|
6937
|
+
placement: string;
|
|
6444
6938
|
theme: string;
|
|
6445
6939
|
portal: boolean;
|
|
6446
|
-
placement: string;
|
|
6447
6940
|
arrow: boolean;
|
|
6448
6941
|
autoWidth: boolean;
|
|
6449
|
-
always: boolean;
|
|
6450
6942
|
trigger: string;
|
|
6451
6943
|
outsideClickable: boolean;
|
|
6452
6944
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
@@ -6458,23 +6950,24 @@ export declare const Components: {
|
|
|
6458
6950
|
Defaults: {};
|
|
6459
6951
|
}, Readonly<ExtractPropTypes< {
|
|
6460
6952
|
modelValue: BooleanConstructor;
|
|
6953
|
+
always: BooleanConstructor;
|
|
6954
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
6955
|
+
animation: StringConstructor;
|
|
6956
|
+
placement: {
|
|
6957
|
+
type: StringConstructor;
|
|
6958
|
+
default: string;
|
|
6959
|
+
validator: (value: string) => boolean;
|
|
6960
|
+
};
|
|
6461
6961
|
theme: {
|
|
6462
6962
|
type: StringConstructor;
|
|
6463
6963
|
default: string;
|
|
6464
6964
|
validator: (v: string) => boolean;
|
|
6465
6965
|
};
|
|
6466
|
-
|
|
6966
|
+
getPopupContainer: FunctionConstructor;
|
|
6467
6967
|
portal: {
|
|
6468
6968
|
type: BooleanConstructor;
|
|
6469
6969
|
default: boolean;
|
|
6470
6970
|
};
|
|
6471
|
-
animation: StringConstructor;
|
|
6472
|
-
placement: {
|
|
6473
|
-
type: StringConstructor;
|
|
6474
|
-
default: string;
|
|
6475
|
-
validator: (value: string) => boolean;
|
|
6476
|
-
};
|
|
6477
|
-
getPopupContainer: FunctionConstructor;
|
|
6478
6971
|
arrow: {
|
|
6479
6972
|
type: BooleanConstructor;
|
|
6480
6973
|
default: boolean;
|
|
@@ -6483,7 +6976,6 @@ export declare const Components: {
|
|
|
6483
6976
|
type: BooleanConstructor;
|
|
6484
6977
|
default: boolean;
|
|
6485
6978
|
};
|
|
6486
|
-
always: BooleanConstructor;
|
|
6487
6979
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6488
6980
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6489
6981
|
trigger: {
|
|
@@ -6514,12 +7006,12 @@ export declare const Components: {
|
|
|
6514
7006
|
tag: string;
|
|
6515
7007
|
modelValue: boolean;
|
|
6516
7008
|
disabled: boolean;
|
|
7009
|
+
always: boolean;
|
|
7010
|
+
placement: string;
|
|
6517
7011
|
theme: string;
|
|
6518
7012
|
portal: boolean;
|
|
6519
|
-
placement: string;
|
|
6520
7013
|
arrow: boolean;
|
|
6521
7014
|
autoWidth: boolean;
|
|
6522
|
-
always: boolean;
|
|
6523
7015
|
trigger: string;
|
|
6524
7016
|
outsideClickable: boolean;
|
|
6525
7017
|
}>;
|
|
@@ -6528,23 +7020,24 @@ export declare const Components: {
|
|
|
6528
7020
|
__isSuspense?: never;
|
|
6529
7021
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6530
7022
|
modelValue: BooleanConstructor;
|
|
7023
|
+
always: BooleanConstructor;
|
|
7024
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
7025
|
+
animation: StringConstructor;
|
|
7026
|
+
placement: {
|
|
7027
|
+
type: StringConstructor;
|
|
7028
|
+
default: string;
|
|
7029
|
+
validator: (value: string) => boolean;
|
|
7030
|
+
};
|
|
6531
7031
|
theme: {
|
|
6532
7032
|
type: StringConstructor;
|
|
6533
7033
|
default: string;
|
|
6534
7034
|
validator: (v: string) => boolean;
|
|
6535
7035
|
};
|
|
6536
|
-
|
|
7036
|
+
getPopupContainer: FunctionConstructor;
|
|
6537
7037
|
portal: {
|
|
6538
7038
|
type: BooleanConstructor;
|
|
6539
7039
|
default: boolean;
|
|
6540
7040
|
};
|
|
6541
|
-
animation: StringConstructor;
|
|
6542
|
-
placement: {
|
|
6543
|
-
type: StringConstructor;
|
|
6544
|
-
default: string;
|
|
6545
|
-
validator: (value: string) => boolean;
|
|
6546
|
-
};
|
|
6547
|
-
getPopupContainer: FunctionConstructor;
|
|
6548
7041
|
arrow: {
|
|
6549
7042
|
type: BooleanConstructor;
|
|
6550
7043
|
default: boolean;
|
|
@@ -6553,7 +7046,6 @@ export declare const Components: {
|
|
|
6553
7046
|
type: BooleanConstructor;
|
|
6554
7047
|
default: boolean;
|
|
6555
7048
|
};
|
|
6556
|
-
always: BooleanConstructor;
|
|
6557
7049
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
6558
7050
|
portalStyle: (ObjectConstructor | StringConstructor)[];
|
|
6559
7051
|
trigger: {
|
|
@@ -6584,12 +7076,12 @@ export declare const Components: {
|
|
|
6584
7076
|
tag: string;
|
|
6585
7077
|
modelValue: boolean;
|
|
6586
7078
|
disabled: boolean;
|
|
7079
|
+
always: boolean;
|
|
7080
|
+
placement: string;
|
|
6587
7081
|
theme: string;
|
|
6588
7082
|
portal: boolean;
|
|
6589
|
-
placement: string;
|
|
6590
7083
|
arrow: boolean;
|
|
6591
7084
|
autoWidth: boolean;
|
|
6592
|
-
always: boolean;
|
|
6593
7085
|
trigger: string;
|
|
6594
7086
|
outsideClickable: boolean;
|
|
6595
7087
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
@@ -7124,54 +7616,208 @@ export declare const Components: {
|
|
|
7124
7616
|
type: BooleanConstructor;
|
|
7125
7617
|
default: boolean;
|
|
7126
7618
|
};
|
|
7127
|
-
name: {
|
|
7128
|
-
type: StringConstructor;
|
|
7129
|
-
default: () => string;
|
|
7130
|
-
};
|
|
7619
|
+
name: {
|
|
7620
|
+
type: StringConstructor;
|
|
7621
|
+
default: () => string;
|
|
7622
|
+
};
|
|
7623
|
+
disabled: {
|
|
7624
|
+
type: BooleanConstructor;
|
|
7625
|
+
default: boolean;
|
|
7626
|
+
};
|
|
7627
|
+
fragment: {
|
|
7628
|
+
type: BooleanConstructor;
|
|
7629
|
+
default: boolean;
|
|
7630
|
+
};
|
|
7631
|
+
}>> & Readonly<{
|
|
7632
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
7633
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7634
|
+
}>, {
|
|
7635
|
+
type: string;
|
|
7636
|
+
name: string;
|
|
7637
|
+
modelValue: string | number;
|
|
7638
|
+
disabled: boolean;
|
|
7639
|
+
vertical: boolean;
|
|
7640
|
+
fragment: boolean;
|
|
7641
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7642
|
+
Rate: DefineComponent<ExtractPropTypes< {
|
|
7643
|
+
modelValue: {
|
|
7644
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
7645
|
+
default: number;
|
|
7646
|
+
};
|
|
7647
|
+
count: {
|
|
7648
|
+
type: NumberConstructor;
|
|
7649
|
+
default: number;
|
|
7650
|
+
};
|
|
7651
|
+
color: {
|
|
7652
|
+
type: StringConstructor;
|
|
7653
|
+
default: string;
|
|
7654
|
+
};
|
|
7655
|
+
icon: {
|
|
7656
|
+
type: StringConstructor;
|
|
7657
|
+
default: string;
|
|
7658
|
+
};
|
|
7659
|
+
character: StringConstructor;
|
|
7660
|
+
half: {
|
|
7661
|
+
type: BooleanConstructor;
|
|
7662
|
+
default: boolean;
|
|
7663
|
+
};
|
|
7664
|
+
clearable: {
|
|
7665
|
+
type: BooleanConstructor;
|
|
7666
|
+
default: boolean;
|
|
7667
|
+
};
|
|
7668
|
+
disabled: {
|
|
7669
|
+
type: BooleanConstructor;
|
|
7670
|
+
default: boolean;
|
|
7671
|
+
};
|
|
7672
|
+
tooltip: {
|
|
7673
|
+
type: ArrayConstructor;
|
|
7674
|
+
default: () => never[];
|
|
7675
|
+
};
|
|
7676
|
+
iconStyle: {
|
|
7677
|
+
type: ObjectConstructor;
|
|
7678
|
+
default: () => {};
|
|
7679
|
+
};
|
|
7680
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
7681
|
+
modelValue: {
|
|
7682
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
7683
|
+
default: number;
|
|
7684
|
+
};
|
|
7685
|
+
count: {
|
|
7686
|
+
type: NumberConstructor;
|
|
7687
|
+
default: number;
|
|
7688
|
+
};
|
|
7689
|
+
color: {
|
|
7690
|
+
type: StringConstructor;
|
|
7691
|
+
default: string;
|
|
7692
|
+
};
|
|
7693
|
+
icon: {
|
|
7694
|
+
type: StringConstructor;
|
|
7695
|
+
default: string;
|
|
7696
|
+
};
|
|
7697
|
+
character: StringConstructor;
|
|
7698
|
+
half: {
|
|
7699
|
+
type: BooleanConstructor;
|
|
7700
|
+
default: boolean;
|
|
7701
|
+
};
|
|
7702
|
+
clearable: {
|
|
7703
|
+
type: BooleanConstructor;
|
|
7704
|
+
default: boolean;
|
|
7705
|
+
};
|
|
7706
|
+
disabled: {
|
|
7707
|
+
type: BooleanConstructor;
|
|
7708
|
+
default: boolean;
|
|
7709
|
+
};
|
|
7710
|
+
tooltip: {
|
|
7711
|
+
type: ArrayConstructor;
|
|
7712
|
+
default: () => never[];
|
|
7713
|
+
};
|
|
7714
|
+
iconStyle: {
|
|
7715
|
+
type: ObjectConstructor;
|
|
7716
|
+
default: () => {};
|
|
7717
|
+
};
|
|
7718
|
+
}>> & Readonly<{
|
|
7719
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
7720
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7721
|
+
}>, {
|
|
7722
|
+
modelValue: string | number;
|
|
7723
|
+
icon: string;
|
|
7724
|
+
color: string;
|
|
7725
|
+
disabled: boolean;
|
|
7726
|
+
clearable: boolean;
|
|
7727
|
+
tooltip: unknown[];
|
|
7728
|
+
count: number;
|
|
7729
|
+
half: boolean;
|
|
7730
|
+
iconStyle: Record<string, any>;
|
|
7731
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7732
|
+
MRate: DefineComponent<ExtractPropTypes< {
|
|
7733
|
+
modelValue: {
|
|
7734
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
7735
|
+
default: number;
|
|
7736
|
+
};
|
|
7737
|
+
count: {
|
|
7738
|
+
type: NumberConstructor;
|
|
7739
|
+
default: number;
|
|
7740
|
+
};
|
|
7741
|
+
color: {
|
|
7742
|
+
type: StringConstructor;
|
|
7743
|
+
default: string;
|
|
7744
|
+
};
|
|
7745
|
+
icon: {
|
|
7746
|
+
type: StringConstructor;
|
|
7747
|
+
default: string;
|
|
7748
|
+
};
|
|
7749
|
+
character: StringConstructor;
|
|
7750
|
+
half: {
|
|
7751
|
+
type: BooleanConstructor;
|
|
7752
|
+
default: boolean;
|
|
7753
|
+
};
|
|
7754
|
+
clearable: {
|
|
7755
|
+
type: BooleanConstructor;
|
|
7756
|
+
default: boolean;
|
|
7757
|
+
};
|
|
7758
|
+
disabled: {
|
|
7759
|
+
type: BooleanConstructor;
|
|
7760
|
+
default: boolean;
|
|
7761
|
+
};
|
|
7762
|
+
tooltip: {
|
|
7763
|
+
type: ArrayConstructor;
|
|
7764
|
+
default: () => never[];
|
|
7765
|
+
};
|
|
7766
|
+
iconStyle: {
|
|
7767
|
+
type: ObjectConstructor;
|
|
7768
|
+
default: () => {};
|
|
7769
|
+
};
|
|
7770
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
7771
|
+
modelValue: {
|
|
7772
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
7773
|
+
default: number;
|
|
7774
|
+
};
|
|
7775
|
+
count: {
|
|
7776
|
+
type: NumberConstructor;
|
|
7777
|
+
default: number;
|
|
7778
|
+
};
|
|
7779
|
+
color: {
|
|
7780
|
+
type: StringConstructor;
|
|
7781
|
+
default: string;
|
|
7782
|
+
};
|
|
7783
|
+
icon: {
|
|
7784
|
+
type: StringConstructor;
|
|
7785
|
+
default: string;
|
|
7786
|
+
};
|
|
7787
|
+
character: StringConstructor;
|
|
7788
|
+
half: {
|
|
7789
|
+
type: BooleanConstructor;
|
|
7790
|
+
default: boolean;
|
|
7791
|
+
};
|
|
7792
|
+
clearable: {
|
|
7793
|
+
type: BooleanConstructor;
|
|
7794
|
+
default: boolean;
|
|
7795
|
+
};
|
|
7131
7796
|
disabled: {
|
|
7132
7797
|
type: BooleanConstructor;
|
|
7133
7798
|
default: boolean;
|
|
7134
7799
|
};
|
|
7135
|
-
|
|
7136
|
-
type:
|
|
7137
|
-
default:
|
|
7800
|
+
tooltip: {
|
|
7801
|
+
type: ArrayConstructor;
|
|
7802
|
+
default: () => never[];
|
|
7803
|
+
};
|
|
7804
|
+
iconStyle: {
|
|
7805
|
+
type: ObjectConstructor;
|
|
7806
|
+
default: () => {};
|
|
7138
7807
|
};
|
|
7139
7808
|
}>> & Readonly<{
|
|
7140
7809
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
7141
7810
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7142
7811
|
}>, {
|
|
7143
|
-
type: string;
|
|
7144
|
-
name: string;
|
|
7145
7812
|
modelValue: string | number;
|
|
7813
|
+
icon: string;
|
|
7814
|
+
color: string;
|
|
7146
7815
|
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;
|
|
7816
|
+
clearable: boolean;
|
|
7817
|
+
tooltip: unknown[];
|
|
7818
|
+
count: number;
|
|
7819
|
+
half: boolean;
|
|
7820
|
+
iconStyle: Record<string, any>;
|
|
7175
7821
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7176
7822
|
RecycleList: DefineComponent<ExtractPropTypes< {
|
|
7177
7823
|
data: {
|
|
@@ -7274,9 +7920,9 @@ export declare const Components: {
|
|
|
7274
7920
|
data: unknown[];
|
|
7275
7921
|
disabled: boolean;
|
|
7276
7922
|
vertical: boolean;
|
|
7923
|
+
loadData: Function;
|
|
7277
7924
|
offset: number;
|
|
7278
7925
|
pageSize: number;
|
|
7279
|
-
loadData: Function;
|
|
7280
7926
|
cols: number;
|
|
7281
7927
|
gutter: number;
|
|
7282
7928
|
inverted: boolean;
|
|
@@ -7383,9 +8029,9 @@ export declare const Components: {
|
|
|
7383
8029
|
data: unknown[];
|
|
7384
8030
|
disabled: boolean;
|
|
7385
8031
|
vertical: boolean;
|
|
8032
|
+
loadData: Function;
|
|
7386
8033
|
offset: number;
|
|
7387
8034
|
pageSize: number;
|
|
7388
|
-
loadData: Function;
|
|
7389
8035
|
cols: number;
|
|
7390
8036
|
gutter: number;
|
|
7391
8037
|
inverted: boolean;
|
|
@@ -7728,6 +8374,8 @@ export declare const Components: {
|
|
|
7728
8374
|
showBar: boolean;
|
|
7729
8375
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7730
8376
|
Select: DefineComponent<ExtractPropTypes< {
|
|
8377
|
+
renderOption: Render;
|
|
8378
|
+
renderOptionGroup: Render;
|
|
7731
8379
|
data: {
|
|
7732
8380
|
type: ArrayConstructor;
|
|
7733
8381
|
default: () => never[];
|
|
@@ -7761,6 +8409,7 @@ export declare const Components: {
|
|
|
7761
8409
|
default: number;
|
|
7762
8410
|
validator: (v: any) => boolean;
|
|
7763
8411
|
};
|
|
8412
|
+
maxTags: NumberConstructor;
|
|
7764
8413
|
searchable: {
|
|
7765
8414
|
type: BooleanConstructor;
|
|
7766
8415
|
default: boolean;
|
|
@@ -7802,6 +8451,8 @@ export declare const Components: {
|
|
|
7802
8451
|
};
|
|
7803
8452
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
7804
8453
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
8454
|
+
renderOption: Render;
|
|
8455
|
+
renderOptionGroup: Render;
|
|
7805
8456
|
data: {
|
|
7806
8457
|
type: ArrayConstructor;
|
|
7807
8458
|
default: () => never[];
|
|
@@ -7835,6 +8486,7 @@ export declare const Components: {
|
|
|
7835
8486
|
default: number;
|
|
7836
8487
|
validator: (v: any) => boolean;
|
|
7837
8488
|
};
|
|
8489
|
+
maxTags: NumberConstructor;
|
|
7838
8490
|
searchable: {
|
|
7839
8491
|
type: BooleanConstructor;
|
|
7840
8492
|
default: boolean;
|
|
@@ -7878,29 +8530,31 @@ export declare const Components: {
|
|
|
7878
8530
|
}>> & Readonly<{
|
|
7879
8531
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
7880
8532
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
8533
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
7881
8534
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7882
8535
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
7883
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
7884
8536
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
7885
8537
|
}>, {
|
|
7886
8538
|
tag: string;
|
|
7887
8539
|
data: unknown[];
|
|
7888
8540
|
disabled: boolean;
|
|
7889
8541
|
extra: string;
|
|
7890
|
-
|
|
8542
|
+
numerable: boolean;
|
|
8543
|
+
separator: string;
|
|
8544
|
+
max: number;
|
|
8545
|
+
nullValue: string | number | Record<string, any>;
|
|
7891
8546
|
clearable: boolean;
|
|
7892
8547
|
placement: string;
|
|
8548
|
+
portal: boolean;
|
|
7893
8549
|
arrow: boolean;
|
|
7894
8550
|
autoWidth: boolean;
|
|
7895
8551
|
trigger: string;
|
|
7896
|
-
separator: string;
|
|
7897
|
-
nullValue: string | number | Record<string, any>;
|
|
7898
|
-
max: number;
|
|
7899
8552
|
searchPlaceholder: string;
|
|
7900
8553
|
searchable: boolean;
|
|
7901
|
-
numerable: boolean;
|
|
7902
8554
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7903
8555
|
MSelect: DefineComponent<ExtractPropTypes< {
|
|
8556
|
+
renderOption: Render;
|
|
8557
|
+
renderOptionGroup: Render;
|
|
7904
8558
|
data: {
|
|
7905
8559
|
type: ArrayConstructor;
|
|
7906
8560
|
default: () => never[];
|
|
@@ -7934,6 +8588,7 @@ export declare const Components: {
|
|
|
7934
8588
|
default: number;
|
|
7935
8589
|
validator: (v: any) => boolean;
|
|
7936
8590
|
};
|
|
8591
|
+
maxTags: NumberConstructor;
|
|
7937
8592
|
searchable: {
|
|
7938
8593
|
type: BooleanConstructor;
|
|
7939
8594
|
default: boolean;
|
|
@@ -7975,6 +8630,8 @@ export declare const Components: {
|
|
|
7975
8630
|
};
|
|
7976
8631
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
7977
8632
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
8633
|
+
renderOption: Render;
|
|
8634
|
+
renderOptionGroup: Render;
|
|
7978
8635
|
data: {
|
|
7979
8636
|
type: ArrayConstructor;
|
|
7980
8637
|
default: () => never[];
|
|
@@ -8008,6 +8665,7 @@ export declare const Components: {
|
|
|
8008
8665
|
default: number;
|
|
8009
8666
|
validator: (v: any) => boolean;
|
|
8010
8667
|
};
|
|
8668
|
+
maxTags: NumberConstructor;
|
|
8011
8669
|
searchable: {
|
|
8012
8670
|
type: BooleanConstructor;
|
|
8013
8671
|
default: boolean;
|
|
@@ -8051,27 +8709,27 @@ export declare const Components: {
|
|
|
8051
8709
|
}>> & Readonly<{
|
|
8052
8710
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
8053
8711
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
8712
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
8054
8713
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
8055
8714
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
8056
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
8057
8715
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
8058
8716
|
}>, {
|
|
8059
8717
|
tag: string;
|
|
8060
8718
|
data: unknown[];
|
|
8061
8719
|
disabled: boolean;
|
|
8062
8720
|
extra: string;
|
|
8063
|
-
|
|
8721
|
+
numerable: boolean;
|
|
8722
|
+
separator: string;
|
|
8723
|
+
max: number;
|
|
8724
|
+
nullValue: string | number | Record<string, any>;
|
|
8064
8725
|
clearable: boolean;
|
|
8065
8726
|
placement: string;
|
|
8727
|
+
portal: boolean;
|
|
8066
8728
|
arrow: boolean;
|
|
8067
8729
|
autoWidth: boolean;
|
|
8068
8730
|
trigger: string;
|
|
8069
|
-
separator: string;
|
|
8070
|
-
nullValue: string | number | Record<string, any>;
|
|
8071
|
-
max: number;
|
|
8072
8731
|
searchPlaceholder: string;
|
|
8073
8732
|
searchable: boolean;
|
|
8074
|
-
numerable: boolean;
|
|
8075
8733
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8076
8734
|
Slider: DefineComponent<ExtractPropTypes< {
|
|
8077
8735
|
tag: {
|
|
@@ -8318,10 +8976,10 @@ export declare const Components: {
|
|
|
8318
8976
|
}>, {
|
|
8319
8977
|
modelValue: string | number | boolean;
|
|
8320
8978
|
disabled: boolean;
|
|
8321
|
-
checkedValue: string | number | boolean;
|
|
8322
|
-
uncheckedValue: string | number | boolean;
|
|
8323
8979
|
height: number;
|
|
8324
8980
|
width: number;
|
|
8981
|
+
checkedValue: string | number | boolean;
|
|
8982
|
+
uncheckedValue: string | number | boolean;
|
|
8325
8983
|
borderWidth: number;
|
|
8326
8984
|
checkedText: string;
|
|
8327
8985
|
uncheckedText: string;
|
|
@@ -8413,10 +9071,10 @@ export declare const Components: {
|
|
|
8413
9071
|
}>, {
|
|
8414
9072
|
modelValue: string | number | boolean;
|
|
8415
9073
|
disabled: boolean;
|
|
8416
|
-
checkedValue: string | number | boolean;
|
|
8417
|
-
uncheckedValue: string | number | boolean;
|
|
8418
9074
|
height: number;
|
|
8419
9075
|
width: number;
|
|
9076
|
+
checkedValue: string | number | boolean;
|
|
9077
|
+
uncheckedValue: string | number | boolean;
|
|
8420
9078
|
borderWidth: number;
|
|
8421
9079
|
checkedText: string;
|
|
8422
9080
|
uncheckedText: string;
|
|
@@ -8585,8 +9243,8 @@ export declare const Components: {
|
|
|
8585
9243
|
}>, {
|
|
8586
9244
|
data: unknown[];
|
|
8587
9245
|
border: boolean;
|
|
8588
|
-
indeterminate: boolean;
|
|
8589
9246
|
placeholder: string | Function;
|
|
9247
|
+
indeterminate: boolean;
|
|
8590
9248
|
fit: boolean;
|
|
8591
9249
|
indent: number;
|
|
8592
9250
|
lazy: boolean;
|
|
@@ -8765,8 +9423,8 @@ export declare const Components: {
|
|
|
8765
9423
|
}>, {
|
|
8766
9424
|
data: unknown[];
|
|
8767
9425
|
border: boolean;
|
|
8768
|
-
indeterminate: boolean;
|
|
8769
9426
|
placeholder: string | Function;
|
|
9427
|
+
indeterminate: boolean;
|
|
8770
9428
|
fit: boolean;
|
|
8771
9429
|
indent: number;
|
|
8772
9430
|
lazy: boolean;
|
|
@@ -9120,9 +9778,9 @@ export declare const Components: {
|
|
|
9120
9778
|
}>, {
|
|
9121
9779
|
type: string;
|
|
9122
9780
|
closable: boolean;
|
|
9123
|
-
theme: string;
|
|
9124
9781
|
afloat: boolean;
|
|
9125
9782
|
sticky: boolean;
|
|
9783
|
+
theme: string;
|
|
9126
9784
|
animated: boolean;
|
|
9127
9785
|
offsetTop: number;
|
|
9128
9786
|
barStyle: Record<string, any> | unknown[];
|
|
@@ -9585,8 +10243,8 @@ export declare const Components: {
|
|
|
9585
10243
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
9586
10244
|
onResize?: ((...args: any[]) => any) | undefined;
|
|
9587
10245
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
9588
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9589
10246
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
10247
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9590
10248
|
}>, {
|
|
9591
10249
|
disabled: boolean;
|
|
9592
10250
|
allowDispatch: boolean;
|
|
@@ -9695,8 +10353,8 @@ export declare const Components: {
|
|
|
9695
10353
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
9696
10354
|
onResize?: ((...args: any[]) => any) | undefined;
|
|
9697
10355
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
9698
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9699
10356
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
10357
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9700
10358
|
}>, {
|
|
9701
10359
|
disabled: boolean;
|
|
9702
10360
|
allowDispatch: boolean;
|
|
@@ -9870,27 +10528,27 @@ export declare const Components: {
|
|
|
9870
10528
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
9871
10529
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
9872
10530
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
10531
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
9873
10532
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9874
10533
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
9875
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
9876
10534
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
9877
10535
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
9878
10536
|
}>, {
|
|
9879
10537
|
tag: string;
|
|
9880
10538
|
disabled: boolean;
|
|
9881
|
-
|
|
9882
|
-
|
|
10539
|
+
separator: string;
|
|
10540
|
+
nullValue: string | number | Record<string, any>;
|
|
9883
10541
|
clearable: boolean;
|
|
10542
|
+
open: boolean;
|
|
10543
|
+
multiple: boolean;
|
|
9884
10544
|
placement: string;
|
|
10545
|
+
portal: boolean;
|
|
9885
10546
|
arrow: boolean;
|
|
9886
10547
|
trigger: string;
|
|
9887
|
-
|
|
10548
|
+
changeOnSelect: boolean;
|
|
9888
10549
|
confirm: boolean;
|
|
9889
|
-
separator: string;
|
|
9890
10550
|
splitPanels: boolean;
|
|
9891
10551
|
steps: unknown[];
|
|
9892
|
-
changeOnSelect: boolean;
|
|
9893
|
-
nullValue: string | number | Record<string, any>;
|
|
9894
10552
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9895
10553
|
MTimePicker: DefineComponent<ExtractPropTypes< {
|
|
9896
10554
|
type: StringConstructor;
|
|
@@ -10029,27 +10687,27 @@ export declare const Components: {
|
|
|
10029
10687
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
10030
10688
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
10031
10689
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
10690
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
10032
10691
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
10033
10692
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
10034
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
10035
10693
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
10036
10694
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
10037
10695
|
}>, {
|
|
10038
10696
|
tag: string;
|
|
10039
10697
|
disabled: boolean;
|
|
10040
|
-
|
|
10041
|
-
|
|
10698
|
+
separator: string;
|
|
10699
|
+
nullValue: string | number | Record<string, any>;
|
|
10042
10700
|
clearable: boolean;
|
|
10701
|
+
open: boolean;
|
|
10702
|
+
multiple: boolean;
|
|
10043
10703
|
placement: string;
|
|
10704
|
+
portal: boolean;
|
|
10044
10705
|
arrow: boolean;
|
|
10045
10706
|
trigger: string;
|
|
10046
|
-
|
|
10707
|
+
changeOnSelect: boolean;
|
|
10047
10708
|
confirm: boolean;
|
|
10048
|
-
separator: string;
|
|
10049
10709
|
splitPanels: boolean;
|
|
10050
10710
|
steps: unknown[];
|
|
10051
|
-
changeOnSelect: boolean;
|
|
10052
|
-
nullValue: string | number | Record<string, any>;
|
|
10053
10711
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10054
10712
|
Touch: DefineComponent<ExtractPropTypes< {
|
|
10055
10713
|
tag: {
|
|
@@ -10743,25 +11401,168 @@ export declare const Components: {
|
|
|
10743
11401
|
type: StringConstructor;
|
|
10744
11402
|
default: string;
|
|
10745
11403
|
};
|
|
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
|
-
};
|
|
11404
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
11405
|
+
[key: string]: any;
|
|
11406
|
+
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
11407
|
+
mode: {
|
|
11408
|
+
type: PropType<"x" | "y" | "center" | "none" | string>;
|
|
11409
|
+
default: string;
|
|
11410
|
+
validator: (v: string) => boolean;
|
|
11411
|
+
};
|
|
11412
|
+
style: {
|
|
11413
|
+
type: ObjectConstructor;
|
|
11414
|
+
default: () => {
|
|
11415
|
+
animationFillMode: string;
|
|
11416
|
+
animationTimingFunction: undefined;
|
|
11417
|
+
};
|
|
11418
|
+
};
|
|
11419
|
+
prefix: {
|
|
11420
|
+
type: StringConstructor;
|
|
11421
|
+
default: string;
|
|
11422
|
+
};
|
|
11423
|
+
duration: {
|
|
11424
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11425
|
+
default: number;
|
|
11426
|
+
};
|
|
11427
|
+
delay: {
|
|
11428
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11429
|
+
default: number;
|
|
11430
|
+
};
|
|
11431
|
+
group: BooleanConstructor;
|
|
11432
|
+
tag: {
|
|
11433
|
+
type: StringConstructor;
|
|
11434
|
+
default: undefined;
|
|
11435
|
+
};
|
|
11436
|
+
origin: {
|
|
11437
|
+
type: StringConstructor;
|
|
11438
|
+
default: string;
|
|
11439
|
+
};
|
|
11440
|
+
}>> & Readonly<{}>, {
|
|
11441
|
+
style: Record<string, any>;
|
|
11442
|
+
tag: string;
|
|
11443
|
+
duration: number | Record<string, any>;
|
|
11444
|
+
delay: number | Record<string, any>;
|
|
11445
|
+
group: boolean;
|
|
11446
|
+
origin: string;
|
|
11447
|
+
prefix: string;
|
|
11448
|
+
mode: string;
|
|
11449
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11450
|
+
MTransitionZoom: DefineComponent<ExtractPropTypes< {
|
|
11451
|
+
mode: {
|
|
11452
|
+
type: PropType<"x" | "y" | "center" | "none" | string>;
|
|
11453
|
+
default: string;
|
|
11454
|
+
validator: (v: string) => boolean;
|
|
11455
|
+
};
|
|
11456
|
+
style: {
|
|
11457
|
+
type: ObjectConstructor;
|
|
11458
|
+
default: () => {
|
|
11459
|
+
animationFillMode: string;
|
|
11460
|
+
animationTimingFunction: undefined;
|
|
11461
|
+
};
|
|
11462
|
+
};
|
|
11463
|
+
prefix: {
|
|
11464
|
+
type: StringConstructor;
|
|
11465
|
+
default: string;
|
|
11466
|
+
};
|
|
11467
|
+
duration: {
|
|
11468
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11469
|
+
default: number;
|
|
11470
|
+
};
|
|
11471
|
+
delay: {
|
|
11472
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11473
|
+
default: number;
|
|
11474
|
+
};
|
|
11475
|
+
group: BooleanConstructor;
|
|
11476
|
+
tag: {
|
|
11477
|
+
type: StringConstructor;
|
|
11478
|
+
default: undefined;
|
|
11479
|
+
};
|
|
11480
|
+
origin: {
|
|
11481
|
+
type: StringConstructor;
|
|
11482
|
+
default: string;
|
|
11483
|
+
};
|
|
11484
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
11485
|
+
[key: string]: any;
|
|
11486
|
+
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
11487
|
+
mode: {
|
|
11488
|
+
type: PropType<"x" | "y" | "center" | "none" | string>;
|
|
11489
|
+
default: string;
|
|
11490
|
+
validator: (v: string) => boolean;
|
|
11491
|
+
};
|
|
11492
|
+
style: {
|
|
11493
|
+
type: ObjectConstructor;
|
|
11494
|
+
default: () => {
|
|
11495
|
+
animationFillMode: string;
|
|
11496
|
+
animationTimingFunction: undefined;
|
|
11497
|
+
};
|
|
11498
|
+
};
|
|
11499
|
+
prefix: {
|
|
11500
|
+
type: StringConstructor;
|
|
11501
|
+
default: string;
|
|
11502
|
+
};
|
|
11503
|
+
duration: {
|
|
11504
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11505
|
+
default: number;
|
|
11506
|
+
};
|
|
11507
|
+
delay: {
|
|
11508
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11509
|
+
default: number;
|
|
11510
|
+
};
|
|
11511
|
+
group: BooleanConstructor;
|
|
11512
|
+
tag: {
|
|
11513
|
+
type: StringConstructor;
|
|
11514
|
+
default: undefined;
|
|
11515
|
+
};
|
|
11516
|
+
origin: {
|
|
11517
|
+
type: StringConstructor;
|
|
11518
|
+
default: string;
|
|
11519
|
+
};
|
|
11520
|
+
}>> & Readonly<{}>, {
|
|
11521
|
+
style: Record<string, any>;
|
|
11522
|
+
tag: string;
|
|
11523
|
+
duration: number | Record<string, any>;
|
|
11524
|
+
delay: number | Record<string, any>;
|
|
11525
|
+
group: boolean;
|
|
11526
|
+
origin: string;
|
|
11527
|
+
prefix: string;
|
|
11528
|
+
mode: string;
|
|
11529
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11530
|
+
TransitionCollapse: DefineComponent<ExtractPropTypes< {
|
|
11531
|
+
duration: {
|
|
11532
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11533
|
+
default: number;
|
|
11534
|
+
};
|
|
11535
|
+
delay: {
|
|
11536
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11537
|
+
default: number;
|
|
11538
|
+
};
|
|
11539
|
+
group: BooleanConstructor;
|
|
11540
|
+
tag: {
|
|
11541
|
+
type: StringConstructor;
|
|
11542
|
+
default: undefined;
|
|
11543
|
+
};
|
|
11544
|
+
origin: {
|
|
11545
|
+
type: StringConstructor;
|
|
11546
|
+
default: string;
|
|
11547
|
+
};
|
|
10754
11548
|
style: {
|
|
10755
11549
|
type: ObjectConstructor;
|
|
10756
11550
|
default: () => {
|
|
10757
11551
|
animationFillMode: string;
|
|
10758
|
-
animationTimingFunction:
|
|
11552
|
+
animationTimingFunction: string;
|
|
10759
11553
|
};
|
|
10760
11554
|
};
|
|
10761
11555
|
prefix: {
|
|
10762
11556
|
type: StringConstructor;
|
|
10763
11557
|
default: string;
|
|
10764
11558
|
};
|
|
11559
|
+
mode: {
|
|
11560
|
+
type: StringConstructor;
|
|
11561
|
+
default: string;
|
|
11562
|
+
};
|
|
11563
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
11564
|
+
[key: string]: any;
|
|
11565
|
+
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
10765
11566
|
duration: {
|
|
10766
11567
|
type: (ObjectConstructor | NumberConstructor)[];
|
|
10767
11568
|
default: number;
|
|
@@ -10779,33 +11580,32 @@ export declare const Components: {
|
|
|
10779
11580
|
type: StringConstructor;
|
|
10780
11581
|
default: string;
|
|
10781
11582
|
};
|
|
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
11583
|
style: {
|
|
10799
11584
|
type: ObjectConstructor;
|
|
10800
11585
|
default: () => {
|
|
10801
11586
|
animationFillMode: string;
|
|
10802
|
-
animationTimingFunction:
|
|
11587
|
+
animationTimingFunction: string;
|
|
10803
11588
|
};
|
|
10804
11589
|
};
|
|
10805
11590
|
prefix: {
|
|
10806
11591
|
type: StringConstructor;
|
|
10807
11592
|
default: string;
|
|
10808
11593
|
};
|
|
11594
|
+
mode: {
|
|
11595
|
+
type: StringConstructor;
|
|
11596
|
+
default: string;
|
|
11597
|
+
};
|
|
11598
|
+
}>> & Readonly<{}>, {
|
|
11599
|
+
style: Record<string, any>;
|
|
11600
|
+
tag: string;
|
|
11601
|
+
duration: number | Record<string, any>;
|
|
11602
|
+
delay: number | Record<string, any>;
|
|
11603
|
+
group: boolean;
|
|
11604
|
+
origin: string;
|
|
11605
|
+
prefix: string;
|
|
11606
|
+
mode: string;
|
|
11607
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11608
|
+
MTransitionCollapse: DefineComponent<ExtractPropTypes< {
|
|
10809
11609
|
duration: {
|
|
10810
11610
|
type: (ObjectConstructor | NumberConstructor)[];
|
|
10811
11611
|
default: number;
|
|
@@ -10823,25 +11623,24 @@ export declare const Components: {
|
|
|
10823
11623
|
type: StringConstructor;
|
|
10824
11624
|
default: string;
|
|
10825
11625
|
};
|
|
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
11626
|
style: {
|
|
10835
11627
|
type: ObjectConstructor;
|
|
10836
11628
|
default: () => {
|
|
10837
11629
|
animationFillMode: string;
|
|
10838
|
-
animationTimingFunction:
|
|
11630
|
+
animationTimingFunction: string;
|
|
10839
11631
|
};
|
|
10840
11632
|
};
|
|
10841
11633
|
prefix: {
|
|
10842
11634
|
type: StringConstructor;
|
|
10843
11635
|
default: string;
|
|
10844
11636
|
};
|
|
11637
|
+
mode: {
|
|
11638
|
+
type: StringConstructor;
|
|
11639
|
+
default: string;
|
|
11640
|
+
};
|
|
11641
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
11642
|
+
[key: string]: any;
|
|
11643
|
+
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
10845
11644
|
duration: {
|
|
10846
11645
|
type: (ObjectConstructor | NumberConstructor)[];
|
|
10847
11646
|
default: number;
|
|
@@ -10859,6 +11658,21 @@ export declare const Components: {
|
|
|
10859
11658
|
type: StringConstructor;
|
|
10860
11659
|
default: string;
|
|
10861
11660
|
};
|
|
11661
|
+
style: {
|
|
11662
|
+
type: ObjectConstructor;
|
|
11663
|
+
default: () => {
|
|
11664
|
+
animationFillMode: string;
|
|
11665
|
+
animationTimingFunction: string;
|
|
11666
|
+
};
|
|
11667
|
+
};
|
|
11668
|
+
prefix: {
|
|
11669
|
+
type: StringConstructor;
|
|
11670
|
+
default: string;
|
|
11671
|
+
};
|
|
11672
|
+
mode: {
|
|
11673
|
+
type: StringConstructor;
|
|
11674
|
+
default: string;
|
|
11675
|
+
};
|
|
10862
11676
|
}>> & Readonly<{}>, {
|
|
10863
11677
|
style: Record<string, any>;
|
|
10864
11678
|
tag: string;
|
|
@@ -10869,187 +11683,477 @@ export declare const Components: {
|
|
|
10869
11683
|
prefix: string;
|
|
10870
11684
|
mode: string;
|
|
10871
11685
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10872
|
-
|
|
10873
|
-
|
|
10874
|
-
type:
|
|
11686
|
+
Tree: DefineComponent<ExtractPropTypes< {
|
|
11687
|
+
max: {
|
|
11688
|
+
type: NumberConstructor;
|
|
10875
11689
|
default: number;
|
|
11690
|
+
validator: (v: any) => boolean;
|
|
10876
11691
|
};
|
|
10877
|
-
|
|
10878
|
-
type:
|
|
11692
|
+
data: {
|
|
11693
|
+
type: ArrayConstructor;
|
|
11694
|
+
default: () => never[];
|
|
11695
|
+
};
|
|
11696
|
+
emptyText: {
|
|
11697
|
+
type: StringConstructor;
|
|
11698
|
+
default: string;
|
|
11699
|
+
};
|
|
11700
|
+
checkStrictly: {
|
|
11701
|
+
type: BooleanConstructor;
|
|
11702
|
+
default: boolean;
|
|
11703
|
+
};
|
|
11704
|
+
defaultExpandAll: BooleanConstructor;
|
|
11705
|
+
expandOnClickNode: {
|
|
11706
|
+
type: BooleanConstructor;
|
|
11707
|
+
default: boolean;
|
|
11708
|
+
};
|
|
11709
|
+
checkOnClickNode: BooleanConstructor;
|
|
11710
|
+
checkDescendants: {
|
|
11711
|
+
type: BooleanConstructor;
|
|
11712
|
+
default: boolean;
|
|
11713
|
+
};
|
|
11714
|
+
autoExpandParent: {
|
|
11715
|
+
type: BooleanConstructor;
|
|
11716
|
+
default: boolean;
|
|
11717
|
+
};
|
|
11718
|
+
modelValue: PropType<string | number | any[]>;
|
|
11719
|
+
expandedValues: {
|
|
11720
|
+
type: PropType<(string | number)[]>;
|
|
11721
|
+
default: () => never[];
|
|
11722
|
+
};
|
|
11723
|
+
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
11724
|
+
draggable: {
|
|
11725
|
+
type: BooleanConstructor;
|
|
11726
|
+
default: boolean;
|
|
11727
|
+
};
|
|
11728
|
+
allowDrag: FunctionConstructor;
|
|
11729
|
+
allowDrop: FunctionConstructor;
|
|
11730
|
+
lazy: {
|
|
11731
|
+
type: BooleanConstructor;
|
|
11732
|
+
default: boolean;
|
|
11733
|
+
};
|
|
11734
|
+
highlightCurrent: BooleanConstructor;
|
|
11735
|
+
loadData: FunctionConstructor;
|
|
11736
|
+
filterNode: FunctionConstructor;
|
|
11737
|
+
indent: {
|
|
11738
|
+
type: NumberConstructor;
|
|
11739
|
+
default: number;
|
|
11740
|
+
};
|
|
11741
|
+
iconClass: StringConstructor;
|
|
11742
|
+
keyValue: {
|
|
11743
|
+
type: PropType<KEY_VALUE>;
|
|
11744
|
+
default: () => {
|
|
11745
|
+
children: string;
|
|
11746
|
+
label: string;
|
|
11747
|
+
value: string;
|
|
11748
|
+
disabled: string;
|
|
11749
|
+
isLeaf: string;
|
|
11750
|
+
};
|
|
11751
|
+
};
|
|
11752
|
+
allowDispatch: {
|
|
11753
|
+
type: BooleanConstructor;
|
|
11754
|
+
default: boolean;
|
|
11755
|
+
};
|
|
11756
|
+
accordion: {
|
|
11757
|
+
type: BooleanConstructor;
|
|
11758
|
+
default: boolean;
|
|
11759
|
+
};
|
|
11760
|
+
renderNodeLabel: Render;
|
|
11761
|
+
renderNodeAfterExpand: {
|
|
11762
|
+
type: BooleanConstructor;
|
|
11763
|
+
default: boolean;
|
|
11764
|
+
};
|
|
11765
|
+
showCheckbox: {
|
|
11766
|
+
type: BooleanConstructor;
|
|
11767
|
+
default: boolean;
|
|
11768
|
+
};
|
|
11769
|
+
numerable: {
|
|
11770
|
+
type: BooleanConstructor;
|
|
11771
|
+
default: boolean;
|
|
11772
|
+
};
|
|
11773
|
+
separator: {
|
|
11774
|
+
type: StringConstructor;
|
|
11775
|
+
default: string;
|
|
11776
|
+
};
|
|
11777
|
+
nullValue: {
|
|
11778
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
11779
|
+
default: undefined;
|
|
11780
|
+
};
|
|
11781
|
+
}>, () => 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< {
|
|
11782
|
+
max: {
|
|
11783
|
+
type: NumberConstructor;
|
|
11784
|
+
default: number;
|
|
11785
|
+
validator: (v: any) => boolean;
|
|
11786
|
+
};
|
|
11787
|
+
data: {
|
|
11788
|
+
type: ArrayConstructor;
|
|
11789
|
+
default: () => never[];
|
|
11790
|
+
};
|
|
11791
|
+
emptyText: {
|
|
11792
|
+
type: StringConstructor;
|
|
11793
|
+
default: string;
|
|
11794
|
+
};
|
|
11795
|
+
checkStrictly: {
|
|
11796
|
+
type: BooleanConstructor;
|
|
11797
|
+
default: boolean;
|
|
11798
|
+
};
|
|
11799
|
+
defaultExpandAll: BooleanConstructor;
|
|
11800
|
+
expandOnClickNode: {
|
|
11801
|
+
type: BooleanConstructor;
|
|
11802
|
+
default: boolean;
|
|
11803
|
+
};
|
|
11804
|
+
checkOnClickNode: BooleanConstructor;
|
|
11805
|
+
checkDescendants: {
|
|
11806
|
+
type: BooleanConstructor;
|
|
11807
|
+
default: boolean;
|
|
11808
|
+
};
|
|
11809
|
+
autoExpandParent: {
|
|
11810
|
+
type: BooleanConstructor;
|
|
11811
|
+
default: boolean;
|
|
11812
|
+
};
|
|
11813
|
+
modelValue: PropType<string | number | any[]>;
|
|
11814
|
+
expandedValues: {
|
|
11815
|
+
type: PropType<(string | number)[]>;
|
|
11816
|
+
default: () => never[];
|
|
11817
|
+
};
|
|
11818
|
+
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
11819
|
+
draggable: {
|
|
11820
|
+
type: BooleanConstructor;
|
|
11821
|
+
default: boolean;
|
|
11822
|
+
};
|
|
11823
|
+
allowDrag: FunctionConstructor;
|
|
11824
|
+
allowDrop: FunctionConstructor;
|
|
11825
|
+
lazy: {
|
|
11826
|
+
type: BooleanConstructor;
|
|
11827
|
+
default: boolean;
|
|
11828
|
+
};
|
|
11829
|
+
highlightCurrent: BooleanConstructor;
|
|
11830
|
+
loadData: FunctionConstructor;
|
|
11831
|
+
filterNode: FunctionConstructor;
|
|
11832
|
+
indent: {
|
|
11833
|
+
type: NumberConstructor;
|
|
11834
|
+
default: number;
|
|
11835
|
+
};
|
|
11836
|
+
iconClass: StringConstructor;
|
|
11837
|
+
keyValue: {
|
|
11838
|
+
type: PropType<KEY_VALUE>;
|
|
11839
|
+
default: () => {
|
|
11840
|
+
children: string;
|
|
11841
|
+
label: string;
|
|
11842
|
+
value: string;
|
|
11843
|
+
disabled: string;
|
|
11844
|
+
isLeaf: string;
|
|
11845
|
+
};
|
|
11846
|
+
};
|
|
11847
|
+
allowDispatch: {
|
|
11848
|
+
type: BooleanConstructor;
|
|
11849
|
+
default: boolean;
|
|
11850
|
+
};
|
|
11851
|
+
accordion: {
|
|
11852
|
+
type: BooleanConstructor;
|
|
11853
|
+
default: boolean;
|
|
11854
|
+
};
|
|
11855
|
+
renderNodeLabel: Render;
|
|
11856
|
+
renderNodeAfterExpand: {
|
|
11857
|
+
type: BooleanConstructor;
|
|
11858
|
+
default: boolean;
|
|
11859
|
+
};
|
|
11860
|
+
showCheckbox: {
|
|
11861
|
+
type: BooleanConstructor;
|
|
11862
|
+
default: boolean;
|
|
11863
|
+
};
|
|
11864
|
+
numerable: {
|
|
11865
|
+
type: BooleanConstructor;
|
|
11866
|
+
default: boolean;
|
|
11867
|
+
};
|
|
11868
|
+
separator: {
|
|
11869
|
+
type: StringConstructor;
|
|
11870
|
+
default: string;
|
|
11871
|
+
};
|
|
11872
|
+
nullValue: {
|
|
11873
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
11874
|
+
default: undefined;
|
|
11875
|
+
};
|
|
11876
|
+
}>> & Readonly<{
|
|
11877
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
11878
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11879
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
11880
|
+
"onNode-expand"?: ((...args: any[]) => any) | undefined;
|
|
11881
|
+
"onCheck-change"?: ((...args: any[]) => any) | undefined;
|
|
11882
|
+
onCheck?: ((...args: any[]) => any) | undefined;
|
|
11883
|
+
"onNode-collapse"?: ((...args: any[]) => any) | undefined;
|
|
11884
|
+
"onNode-click"?: ((...args: any[]) => any) | undefined;
|
|
11885
|
+
"onNode-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
11886
|
+
"onNode-drag-start"?: ((...args: any[]) => any) | undefined;
|
|
11887
|
+
"onNode-drag-leave"?: ((...args: any[]) => any) | undefined;
|
|
11888
|
+
"onNode-drag-enter"?: ((...args: any[]) => any) | undefined;
|
|
11889
|
+
"onNode-drag-over"?: ((...args: any[]) => any) | undefined;
|
|
11890
|
+
"onNode-drag-end"?: ((...args: any[]) => any) | undefined;
|
|
11891
|
+
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
11892
|
+
}>, {
|
|
11893
|
+
data: unknown[];
|
|
11894
|
+
numerable: boolean;
|
|
11895
|
+
separator: string;
|
|
11896
|
+
max: number;
|
|
11897
|
+
nullValue: string | number | Record<string, any>;
|
|
11898
|
+
allowDispatch: boolean;
|
|
11899
|
+
accordion: boolean;
|
|
11900
|
+
indent: number;
|
|
11901
|
+
lazy: boolean;
|
|
11902
|
+
draggable: boolean;
|
|
11903
|
+
defaultExpandAll: boolean;
|
|
11904
|
+
emptyText: string;
|
|
11905
|
+
keyValue: {
|
|
11906
|
+
children: string;
|
|
11907
|
+
label: string;
|
|
11908
|
+
value: string;
|
|
11909
|
+
disabled: string;
|
|
11910
|
+
isLeaf: string;
|
|
11911
|
+
};
|
|
11912
|
+
expandedValues: (string | number)[];
|
|
11913
|
+
checkStrictly: boolean;
|
|
11914
|
+
autoExpandParent: boolean;
|
|
11915
|
+
checkDescendants: boolean;
|
|
11916
|
+
renderNodeAfterExpand: boolean;
|
|
11917
|
+
showCheckbox: boolean;
|
|
11918
|
+
expandOnClickNode: boolean;
|
|
11919
|
+
checkOnClickNode: boolean;
|
|
11920
|
+
highlightCurrent: boolean;
|
|
11921
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11922
|
+
MTree: DefineComponent<ExtractPropTypes< {
|
|
11923
|
+
max: {
|
|
11924
|
+
type: NumberConstructor;
|
|
10879
11925
|
default: number;
|
|
11926
|
+
validator: (v: any) => boolean;
|
|
10880
11927
|
};
|
|
10881
|
-
|
|
10882
|
-
|
|
10883
|
-
|
|
10884
|
-
default: undefined;
|
|
11928
|
+
data: {
|
|
11929
|
+
type: ArrayConstructor;
|
|
11930
|
+
default: () => never[];
|
|
10885
11931
|
};
|
|
10886
|
-
|
|
11932
|
+
emptyText: {
|
|
10887
11933
|
type: StringConstructor;
|
|
10888
11934
|
default: string;
|
|
10889
11935
|
};
|
|
10890
|
-
|
|
10891
|
-
type:
|
|
10892
|
-
default:
|
|
10893
|
-
animationFillMode: string;
|
|
10894
|
-
animationTimingFunction: string;
|
|
11936
|
+
checkStrictly: {
|
|
11937
|
+
type: BooleanConstructor;
|
|
11938
|
+
default: boolean;
|
|
10895
11939
|
};
|
|
11940
|
+
defaultExpandAll: BooleanConstructor;
|
|
11941
|
+
expandOnClickNode: {
|
|
11942
|
+
type: BooleanConstructor;
|
|
11943
|
+
default: boolean;
|
|
10896
11944
|
};
|
|
10897
|
-
|
|
10898
|
-
|
|
10899
|
-
|
|
11945
|
+
checkOnClickNode: BooleanConstructor;
|
|
11946
|
+
checkDescendants: {
|
|
11947
|
+
type: BooleanConstructor;
|
|
11948
|
+
default: boolean;
|
|
10900
11949
|
};
|
|
10901
|
-
|
|
10902
|
-
type:
|
|
10903
|
-
default:
|
|
11950
|
+
autoExpandParent: {
|
|
11951
|
+
type: BooleanConstructor;
|
|
11952
|
+
default: boolean;
|
|
10904
11953
|
};
|
|
10905
|
-
|
|
10906
|
-
|
|
10907
|
-
|
|
10908
|
-
|
|
10909
|
-
type: (ObjectConstructor | NumberConstructor)[];
|
|
10910
|
-
default: number;
|
|
11954
|
+
modelValue: PropType<string | number | any[]>;
|
|
11955
|
+
expandedValues: {
|
|
11956
|
+
type: PropType<(string | number)[]>;
|
|
11957
|
+
default: () => never[];
|
|
10911
11958
|
};
|
|
10912
|
-
|
|
10913
|
-
|
|
10914
|
-
|
|
11959
|
+
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
11960
|
+
draggable: {
|
|
11961
|
+
type: BooleanConstructor;
|
|
11962
|
+
default: boolean;
|
|
10915
11963
|
};
|
|
10916
|
-
|
|
10917
|
-
|
|
10918
|
-
|
|
10919
|
-
|
|
11964
|
+
allowDrag: FunctionConstructor;
|
|
11965
|
+
allowDrop: FunctionConstructor;
|
|
11966
|
+
lazy: {
|
|
11967
|
+
type: BooleanConstructor;
|
|
11968
|
+
default: boolean;
|
|
10920
11969
|
};
|
|
10921
|
-
|
|
10922
|
-
|
|
10923
|
-
|
|
11970
|
+
highlightCurrent: BooleanConstructor;
|
|
11971
|
+
loadData: FunctionConstructor;
|
|
11972
|
+
filterNode: FunctionConstructor;
|
|
11973
|
+
indent: {
|
|
11974
|
+
type: NumberConstructor;
|
|
11975
|
+
default: number;
|
|
10924
11976
|
};
|
|
10925
|
-
|
|
10926
|
-
|
|
11977
|
+
iconClass: StringConstructor;
|
|
11978
|
+
keyValue: {
|
|
11979
|
+
type: PropType<KEY_VALUE>;
|
|
10927
11980
|
default: () => {
|
|
10928
|
-
|
|
10929
|
-
|
|
11981
|
+
children: string;
|
|
11982
|
+
label: string;
|
|
11983
|
+
value: string;
|
|
11984
|
+
disabled: string;
|
|
11985
|
+
isLeaf: string;
|
|
10930
11986
|
};
|
|
10931
11987
|
};
|
|
10932
|
-
|
|
10933
|
-
type:
|
|
10934
|
-
default:
|
|
11988
|
+
allowDispatch: {
|
|
11989
|
+
type: BooleanConstructor;
|
|
11990
|
+
default: boolean;
|
|
10935
11991
|
};
|
|
10936
|
-
|
|
11992
|
+
accordion: {
|
|
11993
|
+
type: BooleanConstructor;
|
|
11994
|
+
default: boolean;
|
|
11995
|
+
};
|
|
11996
|
+
renderNodeLabel: Render;
|
|
11997
|
+
renderNodeAfterExpand: {
|
|
11998
|
+
type: BooleanConstructor;
|
|
11999
|
+
default: boolean;
|
|
12000
|
+
};
|
|
12001
|
+
showCheckbox: {
|
|
12002
|
+
type: BooleanConstructor;
|
|
12003
|
+
default: boolean;
|
|
12004
|
+
};
|
|
12005
|
+
numerable: {
|
|
12006
|
+
type: BooleanConstructor;
|
|
12007
|
+
default: boolean;
|
|
12008
|
+
};
|
|
12009
|
+
separator: {
|
|
10937
12010
|
type: StringConstructor;
|
|
10938
12011
|
default: string;
|
|
10939
12012
|
};
|
|
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;
|
|
12013
|
+
nullValue: {
|
|
12014
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
12015
|
+
default: undefined;
|
|
10954
12016
|
};
|
|
10955
|
-
|
|
10956
|
-
|
|
12017
|
+
}>, () => 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< {
|
|
12018
|
+
max: {
|
|
12019
|
+
type: NumberConstructor;
|
|
10957
12020
|
default: number;
|
|
12021
|
+
validator: (v: any) => boolean;
|
|
10958
12022
|
};
|
|
10959
|
-
|
|
10960
|
-
|
|
10961
|
-
|
|
10962
|
-
default: undefined;
|
|
12023
|
+
data: {
|
|
12024
|
+
type: ArrayConstructor;
|
|
12025
|
+
default: () => never[];
|
|
10963
12026
|
};
|
|
10964
|
-
|
|
12027
|
+
emptyText: {
|
|
10965
12028
|
type: StringConstructor;
|
|
10966
12029
|
default: string;
|
|
10967
12030
|
};
|
|
10968
|
-
|
|
10969
|
-
type:
|
|
10970
|
-
default:
|
|
10971
|
-
animationFillMode: string;
|
|
10972
|
-
animationTimingFunction: string;
|
|
12031
|
+
checkStrictly: {
|
|
12032
|
+
type: BooleanConstructor;
|
|
12033
|
+
default: boolean;
|
|
10973
12034
|
};
|
|
12035
|
+
defaultExpandAll: BooleanConstructor;
|
|
12036
|
+
expandOnClickNode: {
|
|
12037
|
+
type: BooleanConstructor;
|
|
12038
|
+
default: boolean;
|
|
10974
12039
|
};
|
|
10975
|
-
|
|
10976
|
-
|
|
10977
|
-
|
|
12040
|
+
checkOnClickNode: BooleanConstructor;
|
|
12041
|
+
checkDescendants: {
|
|
12042
|
+
type: BooleanConstructor;
|
|
12043
|
+
default: boolean;
|
|
10978
12044
|
};
|
|
10979
|
-
|
|
10980
|
-
type:
|
|
10981
|
-
default:
|
|
12045
|
+
autoExpandParent: {
|
|
12046
|
+
type: BooleanConstructor;
|
|
12047
|
+
default: boolean;
|
|
10982
12048
|
};
|
|
10983
|
-
|
|
10984
|
-
|
|
10985
|
-
|
|
10986
|
-
|
|
10987
|
-
type: (ObjectConstructor | NumberConstructor)[];
|
|
10988
|
-
default: number;
|
|
12049
|
+
modelValue: PropType<string | number | any[]>;
|
|
12050
|
+
expandedValues: {
|
|
12051
|
+
type: PropType<(string | number)[]>;
|
|
12052
|
+
default: () => never[];
|
|
10989
12053
|
};
|
|
10990
|
-
|
|
10991
|
-
|
|
10992
|
-
|
|
12054
|
+
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
12055
|
+
draggable: {
|
|
12056
|
+
type: BooleanConstructor;
|
|
12057
|
+
default: boolean;
|
|
10993
12058
|
};
|
|
10994
|
-
|
|
10995
|
-
|
|
10996
|
-
|
|
10997
|
-
|
|
12059
|
+
allowDrag: FunctionConstructor;
|
|
12060
|
+
allowDrop: FunctionConstructor;
|
|
12061
|
+
lazy: {
|
|
12062
|
+
type: BooleanConstructor;
|
|
12063
|
+
default: boolean;
|
|
10998
12064
|
};
|
|
10999
|
-
|
|
11000
|
-
|
|
11001
|
-
|
|
12065
|
+
highlightCurrent: BooleanConstructor;
|
|
12066
|
+
loadData: FunctionConstructor;
|
|
12067
|
+
filterNode: FunctionConstructor;
|
|
12068
|
+
indent: {
|
|
12069
|
+
type: NumberConstructor;
|
|
12070
|
+
default: number;
|
|
11002
12071
|
};
|
|
11003
|
-
|
|
11004
|
-
|
|
12072
|
+
iconClass: StringConstructor;
|
|
12073
|
+
keyValue: {
|
|
12074
|
+
type: PropType<KEY_VALUE>;
|
|
11005
12075
|
default: () => {
|
|
11006
|
-
|
|
11007
|
-
|
|
12076
|
+
children: string;
|
|
12077
|
+
label: string;
|
|
12078
|
+
value: string;
|
|
12079
|
+
disabled: string;
|
|
12080
|
+
isLeaf: string;
|
|
11008
12081
|
};
|
|
11009
12082
|
};
|
|
11010
|
-
|
|
11011
|
-
type:
|
|
11012
|
-
default:
|
|
12083
|
+
allowDispatch: {
|
|
12084
|
+
type: BooleanConstructor;
|
|
12085
|
+
default: boolean;
|
|
11013
12086
|
};
|
|
11014
|
-
|
|
11015
|
-
type:
|
|
11016
|
-
default:
|
|
12087
|
+
accordion: {
|
|
12088
|
+
type: BooleanConstructor;
|
|
12089
|
+
default: boolean;
|
|
11017
12090
|
};
|
|
11018
|
-
|
|
11019
|
-
|
|
11020
|
-
|
|
11021
|
-
|
|
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;
|
|
12091
|
+
renderNodeLabel: Render;
|
|
12092
|
+
renderNodeAfterExpand: {
|
|
12093
|
+
type: BooleanConstructor;
|
|
12094
|
+
default: boolean;
|
|
11032
12095
|
};
|
|
11033
|
-
|
|
11034
|
-
|
|
11035
|
-
|
|
11036
|
-
default: string;
|
|
12096
|
+
showCheckbox: {
|
|
12097
|
+
type: BooleanConstructor;
|
|
12098
|
+
default: boolean;
|
|
11037
12099
|
};
|
|
11038
|
-
|
|
11039
|
-
|
|
11040
|
-
|
|
11041
|
-
MTree: DefineComponent<ExtractPropTypes< {
|
|
11042
|
-
tag: {
|
|
11043
|
-
type: StringConstructor;
|
|
11044
|
-
default: string;
|
|
12100
|
+
numerable: {
|
|
12101
|
+
type: BooleanConstructor;
|
|
12102
|
+
default: boolean;
|
|
11045
12103
|
};
|
|
11046
|
-
|
|
11047
|
-
tag: {
|
|
12104
|
+
separator: {
|
|
11048
12105
|
type: StringConstructor;
|
|
11049
12106
|
default: string;
|
|
11050
12107
|
};
|
|
11051
|
-
|
|
11052
|
-
|
|
12108
|
+
nullValue: {
|
|
12109
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
12110
|
+
default: undefined;
|
|
12111
|
+
};
|
|
12112
|
+
}>> & Readonly<{
|
|
12113
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
12114
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12115
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
12116
|
+
"onNode-expand"?: ((...args: any[]) => any) | undefined;
|
|
12117
|
+
"onCheck-change"?: ((...args: any[]) => any) | undefined;
|
|
12118
|
+
onCheck?: ((...args: any[]) => any) | undefined;
|
|
12119
|
+
"onNode-collapse"?: ((...args: any[]) => any) | undefined;
|
|
12120
|
+
"onNode-click"?: ((...args: any[]) => any) | undefined;
|
|
12121
|
+
"onNode-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
12122
|
+
"onNode-drag-start"?: ((...args: any[]) => any) | undefined;
|
|
12123
|
+
"onNode-drag-leave"?: ((...args: any[]) => any) | undefined;
|
|
12124
|
+
"onNode-drag-enter"?: ((...args: any[]) => any) | undefined;
|
|
12125
|
+
"onNode-drag-over"?: ((...args: any[]) => any) | undefined;
|
|
12126
|
+
"onNode-drag-end"?: ((...args: any[]) => any) | undefined;
|
|
12127
|
+
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
12128
|
+
}>, {
|
|
12129
|
+
data: unknown[];
|
|
12130
|
+
numerable: boolean;
|
|
12131
|
+
separator: string;
|
|
12132
|
+
max: number;
|
|
12133
|
+
nullValue: string | number | Record<string, any>;
|
|
12134
|
+
allowDispatch: boolean;
|
|
12135
|
+
accordion: boolean;
|
|
12136
|
+
indent: number;
|
|
12137
|
+
lazy: boolean;
|
|
12138
|
+
draggable: boolean;
|
|
12139
|
+
defaultExpandAll: boolean;
|
|
12140
|
+
emptyText: string;
|
|
12141
|
+
keyValue: {
|
|
12142
|
+
children: string;
|
|
12143
|
+
label: string;
|
|
12144
|
+
value: string;
|
|
12145
|
+
disabled: string;
|
|
12146
|
+
isLeaf: string;
|
|
12147
|
+
};
|
|
12148
|
+
expandedValues: (string | number)[];
|
|
12149
|
+
checkStrictly: boolean;
|
|
12150
|
+
autoExpandParent: boolean;
|
|
12151
|
+
checkDescendants: boolean;
|
|
12152
|
+
renderNodeAfterExpand: boolean;
|
|
12153
|
+
showCheckbox: boolean;
|
|
12154
|
+
expandOnClickNode: boolean;
|
|
12155
|
+
checkOnClickNode: boolean;
|
|
12156
|
+
highlightCurrent: boolean;
|
|
11053
12157
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11054
12158
|
Upload: DefineComponent<ExtractPropTypes< {
|
|
11055
12159
|
tag: {
|
|
@@ -11479,9 +12583,9 @@ export declare const Components: {
|
|
|
11479
12583
|
showMessage: boolean;
|
|
11480
12584
|
gallery: boolean;
|
|
11481
12585
|
sortable: boolean;
|
|
12586
|
+
keyValue: Record<string, any>;
|
|
11482
12587
|
picker: unknown[];
|
|
11483
12588
|
uploadOptions: Record<string, any>;
|
|
11484
|
-
keyValue: Record<string, any>;
|
|
11485
12589
|
imagePreviewOptions: Record<string, any>;
|
|
11486
12590
|
compressOptions: Record<string, any>;
|
|
11487
12591
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -11631,9 +12735,9 @@ export declare const Components: {
|
|
|
11631
12735
|
showMessage: boolean;
|
|
11632
12736
|
gallery: boolean;
|
|
11633
12737
|
sortable: boolean;
|
|
12738
|
+
keyValue: Record<string, any>;
|
|
11634
12739
|
picker: unknown[];
|
|
11635
12740
|
uploadOptions: Record<string, any>;
|
|
11636
|
-
keyValue: Record<string, any>;
|
|
11637
12741
|
imagePreviewOptions: Record<string, any>;
|
|
11638
12742
|
compressOptions: Record<string, any>;
|
|
11639
12743
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|