@bscjc/webui 1.4.0 → 1.4.2
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/components/JcCascader/index.d.ts +25 -187
- package/dist/components/JcCascader/index.vue.d.ts +37 -100
- package/dist/components/JcColumnConfig/index.d.ts +10 -94
- package/dist/components/JcColumnConfig/index.vue.d.ts +24 -63
- package/dist/components/JcColumnConfig/types.d.ts +2 -0
- package/dist/components/JcColumnConfig/useColumnConfig.d.ts +2 -0
- package/dist/components/JcDatePicker/index.d.ts +24 -105
- package/dist/components/JcDatePicker/index.vue.d.ts +26 -58
- package/dist/components/JcImportButton/index.d.ts +14 -41
- package/dist/components/JcImportButton/index.vue.d.ts +19 -26
- package/dist/components/JcImportDialog/index.d.ts +14 -74
- package/dist/components/JcImportDialog/index.vue.d.ts +25 -48
- package/dist/components/JcInputComplex/index.d.ts +48 -90
- package/dist/components/JcInputComplex/index.vue.d.ts +32 -48
- package/dist/components/JcInputSwitch/index.d.ts +42 -90
- package/dist/components/JcInputSwitch/index.vue.d.ts +30 -48
- package/dist/components/JcMoreQueryContain/index.d.ts +14 -197
- package/dist/components/JcMoreQueryContain/index.vue.d.ts +23 -88
- package/dist/components/JcSelectQuery/index.d.ts +19 -178
- package/dist/components/JcSelectQuery/index.vue.d.ts +37 -106
- package/dist/components/JcTagQuery/index.d.ts +4 -19
- package/dist/components/JcTagQuery/index.vue.d.ts +7 -12
- package/dist/es/index.mjs +2032 -2066
- package/dist/index.css +2 -2
- package/dist/index.d.ts +3 -1
- package/dist/lib/index.cjs +8 -8
- package/dist/types/components/JcCascader/index.d.ts +25 -187
- package/dist/types/components/JcCascader/index.vue.d.ts +37 -100
- package/dist/types/components/JcColumnConfig/index.d.ts +10 -94
- package/dist/types/components/JcColumnConfig/index.vue.d.ts +24 -63
- package/dist/types/components/JcColumnConfig/types.d.ts +2 -0
- package/dist/types/components/JcColumnConfig/useColumnConfig.d.ts +2 -0
- package/dist/types/components/JcDatePicker/index.d.ts +24 -105
- package/dist/types/components/JcDatePicker/index.vue.d.ts +26 -58
- package/dist/types/components/JcImportButton/index.d.ts +14 -41
- package/dist/types/components/JcImportButton/index.vue.d.ts +19 -26
- package/dist/types/components/JcImportDialog/index.d.ts +14 -74
- package/dist/types/components/JcImportDialog/index.vue.d.ts +25 -48
- package/dist/types/components/JcInputComplex/index.d.ts +51 -93
- package/dist/types/components/JcInputComplex/index.vue.d.ts +126 -141
- package/dist/types/components/JcInputSwitch/index.d.ts +45 -93
- package/dist/types/components/JcInputSwitch/index.vue.d.ts +74 -91
- package/dist/types/components/JcMoreQueryContain/index.d.ts +14 -197
- package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +108 -172
- package/dist/types/components/JcSelectQuery/index.d.ts +19 -178
- package/dist/types/components/JcSelectQuery/index.vue.d.ts +137 -206
- package/dist/types/components/JcTagQuery/index.d.ts +4 -19
- package/dist/types/components/JcTagQuery/index.vue.d.ts +7 -12
- package/dist/types/index.d.ts +3 -1
- package/package.json +2 -2
|
@@ -1,73 +1,20 @@
|
|
|
1
1
|
export declare const JcSelectQuery: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
default: string;
|
|
7
|
-
};
|
|
8
|
-
options: {
|
|
9
|
-
type: import('vue').PropType<Array<{
|
|
10
|
-
label: string;
|
|
11
|
-
value: string;
|
|
12
|
-
}>> | never[];
|
|
13
|
-
default: () => never[];
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
allowCreate: {
|
|
17
|
-
type: BooleanConstructor;
|
|
18
|
-
default: boolean;
|
|
19
|
-
};
|
|
20
|
-
keyField: {
|
|
21
|
-
type: any;
|
|
22
|
-
default: () => string[];
|
|
23
|
-
};
|
|
24
|
-
width: {
|
|
25
|
-
type: StringConstructor;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
|
-
size: {
|
|
29
|
-
type: import('vue').PropType<"small" | "default" | "large">;
|
|
30
|
-
default: string;
|
|
31
|
-
validator: (value: string) => boolean;
|
|
32
|
-
};
|
|
33
|
-
footerBtnName: {
|
|
34
|
-
type: StringConstructor;
|
|
35
|
-
default: string;
|
|
36
|
-
};
|
|
37
|
-
maxScrollHeight: {
|
|
38
|
-
type: StringConstructor;
|
|
39
|
-
default: string;
|
|
40
|
-
};
|
|
41
|
-
isNeedFooter: {
|
|
42
|
-
type: BooleanConstructor;
|
|
43
|
-
default: boolean;
|
|
44
|
-
};
|
|
45
|
-
isNeedOnlySelect: {
|
|
46
|
-
type: BooleanConstructor;
|
|
47
|
-
default: boolean;
|
|
48
|
-
};
|
|
49
|
-
injectionKey: {
|
|
50
|
-
type: StringConstructor;
|
|
51
|
-
default: string;
|
|
52
|
-
};
|
|
53
|
-
}>> & Readonly<{}>, {
|
|
54
|
-
[x: string]: string | Function | string[];
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./index.vue').Props> & Readonly<{}>, {
|
|
3
|
+
focus: () => void | undefined;
|
|
4
|
+
blur: () => void | undefined;
|
|
5
|
+
selectedLabel: string | string[] | undefined;
|
|
55
6
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
56
7
|
size: "small" | "default" | "large";
|
|
57
8
|
injectionKey: string;
|
|
58
|
-
|
|
59
|
-
options: {
|
|
60
|
-
label: string;
|
|
61
|
-
value: string;
|
|
62
|
-
}[];
|
|
9
|
+
options: import('./index.vue').SelectQueryItem[];
|
|
63
10
|
allowCreate: boolean;
|
|
64
|
-
keyField:
|
|
11
|
+
keyField: string[];
|
|
65
12
|
width: string;
|
|
66
13
|
footerBtnName: string;
|
|
67
14
|
maxScrollHeight: string;
|
|
68
15
|
isNeedFooter: boolean;
|
|
69
16
|
isNeedOnlySelect: boolean;
|
|
70
|
-
},
|
|
17
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
71
18
|
selectRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
72
19
|
ariaLabel: StringConstructor;
|
|
73
20
|
emptyValues: ArrayConstructor;
|
|
@@ -880,69 +827,16 @@ export declare const JcSelectQuery: {
|
|
|
880
827
|
C: {};
|
|
881
828
|
M: {};
|
|
882
829
|
Defaults: {};
|
|
883
|
-
}, Readonly<import('vue').
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
default: string;
|
|
888
|
-
};
|
|
889
|
-
options: {
|
|
890
|
-
type: import('vue').PropType<Array<{
|
|
891
|
-
label: string;
|
|
892
|
-
value: string;
|
|
893
|
-
}>> | never[];
|
|
894
|
-
default: () => never[];
|
|
895
|
-
required: true;
|
|
896
|
-
};
|
|
897
|
-
allowCreate: {
|
|
898
|
-
type: BooleanConstructor;
|
|
899
|
-
default: boolean;
|
|
900
|
-
};
|
|
901
|
-
keyField: {
|
|
902
|
-
type: any;
|
|
903
|
-
default: () => string[];
|
|
904
|
-
};
|
|
905
|
-
width: {
|
|
906
|
-
type: StringConstructor;
|
|
907
|
-
default: string;
|
|
908
|
-
};
|
|
909
|
-
size: {
|
|
910
|
-
type: import('vue').PropType<"small" | "default" | "large">;
|
|
911
|
-
default: string;
|
|
912
|
-
validator: (value: string) => boolean;
|
|
913
|
-
};
|
|
914
|
-
footerBtnName: {
|
|
915
|
-
type: StringConstructor;
|
|
916
|
-
default: string;
|
|
917
|
-
};
|
|
918
|
-
maxScrollHeight: {
|
|
919
|
-
type: StringConstructor;
|
|
920
|
-
default: string;
|
|
921
|
-
};
|
|
922
|
-
isNeedFooter: {
|
|
923
|
-
type: BooleanConstructor;
|
|
924
|
-
default: boolean;
|
|
925
|
-
};
|
|
926
|
-
isNeedOnlySelect: {
|
|
927
|
-
type: BooleanConstructor;
|
|
928
|
-
default: boolean;
|
|
929
|
-
};
|
|
930
|
-
injectionKey: {
|
|
931
|
-
type: StringConstructor;
|
|
932
|
-
default: string;
|
|
933
|
-
};
|
|
934
|
-
}>> & Readonly<{}>, {
|
|
935
|
-
[x: string]: string | Function | string[];
|
|
830
|
+
}, Readonly<import('./index.vue').Props> & Readonly<{}>, {
|
|
831
|
+
focus: () => void | undefined;
|
|
832
|
+
blur: () => void | undefined;
|
|
833
|
+
selectedLabel: string | string[] | undefined;
|
|
936
834
|
}, {}, {}, {}, {
|
|
937
835
|
size: "small" | "default" | "large";
|
|
938
836
|
injectionKey: string;
|
|
939
|
-
|
|
940
|
-
options: {
|
|
941
|
-
label: string;
|
|
942
|
-
value: string;
|
|
943
|
-
}[];
|
|
837
|
+
options: import('./index.vue').SelectQueryItem[];
|
|
944
838
|
allowCreate: boolean;
|
|
945
|
-
keyField:
|
|
839
|
+
keyField: string[];
|
|
946
840
|
width: string;
|
|
947
841
|
footerBtnName: string;
|
|
948
842
|
maxScrollHeight: string;
|
|
@@ -952,69 +846,16 @@ export declare const JcSelectQuery: {
|
|
|
952
846
|
__isFragment?: never;
|
|
953
847
|
__isTeleport?: never;
|
|
954
848
|
__isSuspense?: never;
|
|
955
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('vue').
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
default: string;
|
|
960
|
-
};
|
|
961
|
-
options: {
|
|
962
|
-
type: import('vue').PropType<Array<{
|
|
963
|
-
label: string;
|
|
964
|
-
value: string;
|
|
965
|
-
}>> | never[];
|
|
966
|
-
default: () => never[];
|
|
967
|
-
required: true;
|
|
968
|
-
};
|
|
969
|
-
allowCreate: {
|
|
970
|
-
type: BooleanConstructor;
|
|
971
|
-
default: boolean;
|
|
972
|
-
};
|
|
973
|
-
keyField: {
|
|
974
|
-
type: any;
|
|
975
|
-
default: () => string[];
|
|
976
|
-
};
|
|
977
|
-
width: {
|
|
978
|
-
type: StringConstructor;
|
|
979
|
-
default: string;
|
|
980
|
-
};
|
|
981
|
-
size: {
|
|
982
|
-
type: import('vue').PropType<"small" | "default" | "large">;
|
|
983
|
-
default: string;
|
|
984
|
-
validator: (value: string) => boolean;
|
|
985
|
-
};
|
|
986
|
-
footerBtnName: {
|
|
987
|
-
type: StringConstructor;
|
|
988
|
-
default: string;
|
|
989
|
-
};
|
|
990
|
-
maxScrollHeight: {
|
|
991
|
-
type: StringConstructor;
|
|
992
|
-
default: string;
|
|
993
|
-
};
|
|
994
|
-
isNeedFooter: {
|
|
995
|
-
type: BooleanConstructor;
|
|
996
|
-
default: boolean;
|
|
997
|
-
};
|
|
998
|
-
isNeedOnlySelect: {
|
|
999
|
-
type: BooleanConstructor;
|
|
1000
|
-
default: boolean;
|
|
1001
|
-
};
|
|
1002
|
-
injectionKey: {
|
|
1003
|
-
type: StringConstructor;
|
|
1004
|
-
default: string;
|
|
1005
|
-
};
|
|
1006
|
-
}>> & Readonly<{}>, {
|
|
1007
|
-
[x: string]: string | Function | string[];
|
|
849
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./index.vue').Props> & Readonly<{}>, {
|
|
850
|
+
focus: () => void | undefined;
|
|
851
|
+
blur: () => void | undefined;
|
|
852
|
+
selectedLabel: string | string[] | undefined;
|
|
1008
853
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1009
854
|
size: "small" | "default" | "large";
|
|
1010
855
|
injectionKey: string;
|
|
1011
|
-
|
|
1012
|
-
options: {
|
|
1013
|
-
label: string;
|
|
1014
|
-
value: string;
|
|
1015
|
-
}[];
|
|
856
|
+
options: import('./index.vue').SelectQueryItem[];
|
|
1016
857
|
allowCreate: boolean;
|
|
1017
|
-
keyField:
|
|
858
|
+
keyField: string[];
|
|
1018
859
|
width: string;
|
|
1019
860
|
footerBtnName: string;
|
|
1020
861
|
maxScrollHeight: string;
|