@bscjc/webui 1.1.3 → 1.2.1
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 +9 -0
- package/dist/components/JcCascader/index.vue.d.ts +9 -0
- package/dist/components/JcDatePicker/index.d.ts +9 -0
- package/dist/components/JcDatePicker/index.vue.d.ts +9 -0
- package/dist/components/JcInputComplex/index.d.ts +9 -0
- package/dist/components/JcInputComplex/index.vue.d.ts +9 -0
- package/dist/components/JcInputSwitch/index.d.ts +9 -0
- package/dist/components/JcInputSwitch/index.vue.d.ts +9 -0
- package/dist/components/JcMoreQueryContain/index.d.ts +15 -0
- package/dist/components/JcMoreQueryContain/index.vue.d.ts +9 -0
- package/dist/components/JcSelectQuery/index.d.ts +15 -0
- package/dist/components/JcSelectQuery/index.vue.d.ts +9 -0
- package/dist/components/JcTagQuery/index.d.ts +13 -1
- package/dist/components/JcTagQuery/index.vue.d.ts +13 -1
- package/dist/es/index.mjs +1543 -1509
- package/dist/hooks/useQuery.d.ts +1 -1
- package/dist/hooks/useQueryStore.d.ts +34 -31
- package/dist/index.css +2 -2
- package/dist/lib/index.cjs +8 -8
- package/dist/types/components/JcCascader/index.d.ts +9 -0
- package/dist/types/components/JcCascader/index.vue.d.ts +9 -0
- package/dist/types/components/JcDatePicker/index.d.ts +9 -0
- package/dist/types/components/JcDatePicker/index.vue.d.ts +9 -0
- package/dist/types/components/JcInputComplex/index.d.ts +9 -0
- package/dist/types/components/JcInputComplex/index.vue.d.ts +9 -0
- package/dist/types/components/JcInputSwitch/index.d.ts +9 -0
- package/dist/types/components/JcInputSwitch/index.vue.d.ts +9 -0
- package/dist/types/components/JcMoreQueryContain/index.d.ts +15 -0
- package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +9 -0
- package/dist/types/components/JcSelectQuery/index.d.ts +15 -0
- package/dist/types/components/JcSelectQuery/index.vue.d.ts +9 -0
- package/dist/types/components/JcTagQuery/index.d.ts +13 -1
- package/dist/types/components/JcTagQuery/index.vue.d.ts +13 -1
- package/dist/types/hooks/useQuery.d.ts +1 -1
- package/dist/types/hooks/useQueryStore.d.ts +34 -31
- package/package.json +2 -2
|
@@ -46,6 +46,10 @@ export declare const JcCascader: SFCWithInstall<import("vue").DefineComponent<im
|
|
|
46
46
|
type: BooleanConstructor;
|
|
47
47
|
default: boolean;
|
|
48
48
|
};
|
|
49
|
+
injectionKey: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
49
53
|
}>, {
|
|
50
54
|
[x: string]: any;
|
|
51
55
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -94,8 +98,13 @@ export declare const JcCascader: SFCWithInstall<import("vue").DefineComponent<im
|
|
|
94
98
|
type: BooleanConstructor;
|
|
95
99
|
default: boolean;
|
|
96
100
|
};
|
|
101
|
+
injectionKey: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
97
105
|
}>> & Readonly<{}>, {
|
|
98
106
|
size: "small" | "default" | "large";
|
|
107
|
+
injectionKey: string;
|
|
99
108
|
field: string;
|
|
100
109
|
options: {
|
|
101
110
|
label: string;
|
|
@@ -47,6 +47,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
47
47
|
type: BooleanConstructor;
|
|
48
48
|
default: boolean;
|
|
49
49
|
};
|
|
50
|
+
injectionKey: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
50
54
|
}>, {
|
|
51
55
|
[x: string]: any;
|
|
52
56
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -88,8 +92,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
88
92
|
type: BooleanConstructor;
|
|
89
93
|
default: boolean;
|
|
90
94
|
};
|
|
95
|
+
injectionKey: {
|
|
96
|
+
type: StringConstructor;
|
|
97
|
+
default: string;
|
|
98
|
+
};
|
|
91
99
|
}>> & Readonly<{}>, {
|
|
92
100
|
size: "small" | "default" | "large";
|
|
101
|
+
injectionKey: string;
|
|
93
102
|
field: string;
|
|
94
103
|
options: CascaderItem[];
|
|
95
104
|
keyField: any;
|
|
@@ -23,6 +23,10 @@ export declare const JcDatePicker: SFCWithInstall<import("vue").DefineComponent<
|
|
|
23
23
|
type: StringConstructor;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
|
+
injectionKey: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
26
30
|
}>, {
|
|
27
31
|
[x: string]: Function;
|
|
28
32
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -50,10 +54,15 @@ export declare const JcDatePicker: SFCWithInstall<import("vue").DefineComponent<
|
|
|
50
54
|
type: StringConstructor;
|
|
51
55
|
default: string;
|
|
52
56
|
};
|
|
57
|
+
injectionKey: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
53
61
|
}>> & Readonly<{
|
|
54
62
|
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
55
63
|
}>, {
|
|
56
64
|
size: "small" | "default" | "large";
|
|
65
|
+
injectionKey: string;
|
|
57
66
|
width: string;
|
|
58
67
|
type: "daterange" | "monthrange";
|
|
59
68
|
fieldList: {
|
|
@@ -23,6 +23,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
23
23
|
type: StringConstructor;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
|
+
injectionKey: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
26
30
|
}>, {
|
|
27
31
|
[x: string]: Function;
|
|
28
32
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -47,10 +51,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
47
51
|
type: StringConstructor;
|
|
48
52
|
default: string;
|
|
49
53
|
};
|
|
54
|
+
injectionKey: {
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
50
58
|
}>> & Readonly<{
|
|
51
59
|
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
52
60
|
}>, {
|
|
53
61
|
size: "small" | "default" | "large";
|
|
62
|
+
injectionKey: string;
|
|
54
63
|
width: string;
|
|
55
64
|
type: "daterange" | "monthrange";
|
|
56
65
|
fieldList: fieldType[];
|
|
@@ -18,6 +18,10 @@ export declare const JcInputComplex: SFCWithInstall<import("vue").DefineComponen
|
|
|
18
18
|
type: StringConstructor;
|
|
19
19
|
default: string;
|
|
20
20
|
};
|
|
21
|
+
injectionKey: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
21
25
|
}>, {
|
|
22
26
|
[x: string]: any;
|
|
23
27
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -40,10 +44,15 @@ export declare const JcInputComplex: SFCWithInstall<import("vue").DefineComponen
|
|
|
40
44
|
type: StringConstructor;
|
|
41
45
|
default: string;
|
|
42
46
|
};
|
|
47
|
+
injectionKey: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
43
51
|
}>> & Readonly<{
|
|
44
52
|
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
45
53
|
}>, {
|
|
46
54
|
size: "small" | "default" | "large";
|
|
55
|
+
injectionKey: string;
|
|
47
56
|
width: string;
|
|
48
57
|
fieldList: {
|
|
49
58
|
label: string;
|
|
@@ -18,6 +18,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
18
18
|
type: StringConstructor;
|
|
19
19
|
default: string;
|
|
20
20
|
};
|
|
21
|
+
injectionKey: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
21
25
|
}>, {
|
|
22
26
|
[x: string]: any;
|
|
23
27
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -37,10 +41,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
37
41
|
type: StringConstructor;
|
|
38
42
|
default: string;
|
|
39
43
|
};
|
|
44
|
+
injectionKey: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
40
48
|
}>> & Readonly<{
|
|
41
49
|
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
42
50
|
}>, {
|
|
43
51
|
size: "small" | "default" | "large";
|
|
52
|
+
injectionKey: string;
|
|
44
53
|
width: string;
|
|
45
54
|
fieldList: fieldType[];
|
|
46
55
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -18,6 +18,10 @@ export declare const JcInputSwitch: SFCWithInstall<import("vue").DefineComponent
|
|
|
18
18
|
type: StringConstructor;
|
|
19
19
|
default: string;
|
|
20
20
|
};
|
|
21
|
+
injectionKey: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
21
25
|
}>, {
|
|
22
26
|
[x: string]: any;
|
|
23
27
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -40,10 +44,15 @@ export declare const JcInputSwitch: SFCWithInstall<import("vue").DefineComponent
|
|
|
40
44
|
type: StringConstructor;
|
|
41
45
|
default: string;
|
|
42
46
|
};
|
|
47
|
+
injectionKey: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
43
51
|
}>> & Readonly<{
|
|
44
52
|
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
45
53
|
}>, {
|
|
46
54
|
size: "small" | "default" | "large";
|
|
55
|
+
injectionKey: string;
|
|
47
56
|
width: string;
|
|
48
57
|
fieldList: {
|
|
49
58
|
label: string;
|
|
@@ -18,6 +18,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
18
18
|
type: StringConstructor;
|
|
19
19
|
default: string;
|
|
20
20
|
};
|
|
21
|
+
injectionKey: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
21
25
|
}>, {
|
|
22
26
|
[x: string]: any;
|
|
23
27
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -37,10 +41,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
37
41
|
type: StringConstructor;
|
|
38
42
|
default: string;
|
|
39
43
|
};
|
|
44
|
+
injectionKey: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
40
48
|
}>> & Readonly<{
|
|
41
49
|
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
42
50
|
}>, {
|
|
43
51
|
size: "small" | "default" | "large";
|
|
52
|
+
injectionKey: string;
|
|
44
53
|
width: string;
|
|
45
54
|
fieldList: fieldType[];
|
|
46
55
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -53,10 +53,15 @@ export declare const JcMoreQueryContain: SFCWithInstall<{
|
|
|
53
53
|
default: string;
|
|
54
54
|
validator: (value: string) => boolean;
|
|
55
55
|
};
|
|
56
|
+
injectionKey: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
56
60
|
}>> & Readonly<{}>, {
|
|
57
61
|
[x: string]: any;
|
|
58
62
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
59
63
|
size: "small" | "default" | "large";
|
|
64
|
+
injectionKey: string;
|
|
60
65
|
width: number;
|
|
61
66
|
fieldList: {
|
|
62
67
|
label: string;
|
|
@@ -124,10 +129,15 @@ export declare const JcMoreQueryContain: SFCWithInstall<{
|
|
|
124
129
|
default: string;
|
|
125
130
|
validator: (value: string) => boolean;
|
|
126
131
|
};
|
|
132
|
+
injectionKey: {
|
|
133
|
+
type: StringConstructor;
|
|
134
|
+
default: string;
|
|
135
|
+
};
|
|
127
136
|
}>> & Readonly<{}>, {
|
|
128
137
|
[x: string]: any;
|
|
129
138
|
}, {}, {}, {}, {
|
|
130
139
|
size: "small" | "default" | "large";
|
|
140
|
+
injectionKey: string;
|
|
131
141
|
width: number;
|
|
132
142
|
fieldList: {
|
|
133
143
|
label: string;
|
|
@@ -192,10 +202,15 @@ export declare const JcMoreQueryContain: SFCWithInstall<{
|
|
|
192
202
|
default: string;
|
|
193
203
|
validator: (value: string) => boolean;
|
|
194
204
|
};
|
|
205
|
+
injectionKey: {
|
|
206
|
+
type: StringConstructor;
|
|
207
|
+
default: string;
|
|
208
|
+
};
|
|
195
209
|
}>> & Readonly<{}>, {
|
|
196
210
|
[x: string]: any;
|
|
197
211
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
198
212
|
size: "small" | "default" | "large";
|
|
213
|
+
injectionKey: string;
|
|
199
214
|
width: number;
|
|
200
215
|
fieldList: {
|
|
201
216
|
label: string;
|
|
@@ -43,6 +43,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
43
43
|
default: string;
|
|
44
44
|
validator: (value: string) => boolean;
|
|
45
45
|
};
|
|
46
|
+
injectionKey: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
46
50
|
}>, {
|
|
47
51
|
[x: string]: any;
|
|
48
52
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -79,8 +83,13 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
79
83
|
default: string;
|
|
80
84
|
validator: (value: string) => boolean;
|
|
81
85
|
};
|
|
86
|
+
injectionKey: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
default: string;
|
|
89
|
+
};
|
|
82
90
|
}>> & Readonly<{}>, {
|
|
83
91
|
size: "small" | "default" | "large";
|
|
92
|
+
injectionKey: string;
|
|
84
93
|
width: number;
|
|
85
94
|
fieldList: fieldType[];
|
|
86
95
|
customTagObj: {
|
|
@@ -48,10 +48,15 @@ export declare const JcSelectQuery: SFCWithInstall<{
|
|
|
48
48
|
type: BooleanConstructor;
|
|
49
49
|
default: boolean;
|
|
50
50
|
};
|
|
51
|
+
injectionKey: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
51
55
|
}>> & Readonly<{}>, {
|
|
52
56
|
[x: string]: string | Function | string[];
|
|
53
57
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
54
58
|
size: "small" | "default" | "large";
|
|
59
|
+
injectionKey: string;
|
|
55
60
|
field: string;
|
|
56
61
|
options: {
|
|
57
62
|
label: string;
|
|
@@ -118,10 +123,15 @@ export declare const JcSelectQuery: SFCWithInstall<{
|
|
|
118
123
|
type: BooleanConstructor;
|
|
119
124
|
default: boolean;
|
|
120
125
|
};
|
|
126
|
+
injectionKey: {
|
|
127
|
+
type: StringConstructor;
|
|
128
|
+
default: string;
|
|
129
|
+
};
|
|
121
130
|
}>> & Readonly<{}>, {
|
|
122
131
|
[x: string]: string | Function | string[];
|
|
123
132
|
}, {}, {}, {}, {
|
|
124
133
|
size: "small" | "default" | "large";
|
|
134
|
+
injectionKey: string;
|
|
125
135
|
field: string;
|
|
126
136
|
options: {
|
|
127
137
|
label: string;
|
|
@@ -185,10 +195,15 @@ export declare const JcSelectQuery: SFCWithInstall<{
|
|
|
185
195
|
type: BooleanConstructor;
|
|
186
196
|
default: boolean;
|
|
187
197
|
};
|
|
198
|
+
injectionKey: {
|
|
199
|
+
type: StringConstructor;
|
|
200
|
+
default: string;
|
|
201
|
+
};
|
|
188
202
|
}>> & Readonly<{}>, {
|
|
189
203
|
[x: string]: string | Function | string[];
|
|
190
204
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
191
205
|
size: "small" | "default" | "large";
|
|
206
|
+
injectionKey: string;
|
|
192
207
|
field: string;
|
|
193
208
|
options: {
|
|
194
209
|
label: string;
|
|
@@ -54,6 +54,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
54
54
|
type: BooleanConstructor;
|
|
55
55
|
default: boolean;
|
|
56
56
|
};
|
|
57
|
+
injectionKey: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
57
61
|
}>, {
|
|
58
62
|
[x: string]: string | Function | string[];
|
|
59
63
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -100,8 +104,13 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
100
104
|
type: BooleanConstructor;
|
|
101
105
|
default: boolean;
|
|
102
106
|
};
|
|
107
|
+
injectionKey: {
|
|
108
|
+
type: StringConstructor;
|
|
109
|
+
default: string;
|
|
110
|
+
};
|
|
103
111
|
}>> & Readonly<{}>, {
|
|
104
112
|
size: "small" | "default" | "large";
|
|
113
|
+
injectionKey: string;
|
|
105
114
|
field: string;
|
|
106
115
|
options: Item[];
|
|
107
116
|
allowCreate: boolean;
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
import type { Plugin } from "vue";
|
|
2
2
|
type SFCWithInstall<T> = T & Plugin;
|
|
3
|
-
export declare const JcTagQuery: SFCWithInstall<import("vue").DefineComponent<
|
|
3
|
+
export declare const JcTagQuery: SFCWithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
injectionKey: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
injectionKey: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {
|
|
14
|
+
injectionKey: string;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
|
4
16
|
export default JcTagQuery;
|
|
@@ -1,2 +1,14 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
injectionKey: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
injectionKey: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>> & Readonly<{}>, {
|
|
12
|
+
injectionKey: string;
|
|
13
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
14
|
export default _default;
|