@bscjc/webui 0.0.18 → 0.0.20
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/types/components/JcDatePicker/index.d.ts +66 -0
- package/dist/types/components/JcDatePicker/index.vue.d.ts +60 -0
- package/dist/types/components/JcInputComplex/index.d.ts +1354 -0
- package/dist/types/components/JcInputComplex/index.vue.d.ts +1348 -0
- package/dist/types/components/JcInputSwitch/index.d.ts +550 -0
- package/dist/types/components/JcInputSwitch/index.vue.d.ts +544 -0
- package/dist/types/components/JcListLayout/index.d.ts +22 -0
- package/dist/types/components/JcListLayout/index.vue.d.ts +19 -0
- package/dist/types/components/JcMoreQueryContain/index.d.ts +759 -0
- package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +1191 -0
- package/dist/types/components/JcSelectQuery/index.d.ts +1002 -0
- package/dist/types/components/JcSelectQuery/index.vue.d.ts +1728 -0
- package/dist/types/components/JcTagQuery/index.d.ts +4 -0
- package/dist/types/components/JcTagQuery/index.vue.d.ts +2 -0
- package/dist/types/components/index.d.ts +7 -0
- package/dist/types/hooks/useQuery.d.ts +14 -0
- package/dist/types/hooks/useQueryStore.d.ts +50 -0
- package/dist/types/index.d.ts +9 -0
- package/package.json +2 -9
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Plugin } from 'vue';
|
|
2
|
+
type SFCWithInstall<T> = T & Plugin;
|
|
3
|
+
export declare const JcDatePicker: SFCWithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
fieldList: {
|
|
5
|
+
type: import('vue').PropType<Array<{
|
|
6
|
+
label: string;
|
|
7
|
+
value: string;
|
|
8
|
+
}>>;
|
|
9
|
+
require: boolean;
|
|
10
|
+
default: () => never[];
|
|
11
|
+
};
|
|
12
|
+
type: {
|
|
13
|
+
type: import('vue').PropType<"daterange" | "monthrange">;
|
|
14
|
+
default: string;
|
|
15
|
+
validator: (value: string) => boolean;
|
|
16
|
+
};
|
|
17
|
+
size: {
|
|
18
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
19
|
+
default: string;
|
|
20
|
+
validator: (value: string) => boolean;
|
|
21
|
+
};
|
|
22
|
+
width: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
}>, {
|
|
27
|
+
[x: string]: Function;
|
|
28
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
+
fieldChange: (...args: any[]) => void;
|
|
30
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
31
|
+
fieldList: {
|
|
32
|
+
type: import('vue').PropType<Array<{
|
|
33
|
+
label: string;
|
|
34
|
+
value: string;
|
|
35
|
+
}>>;
|
|
36
|
+
require: boolean;
|
|
37
|
+
default: () => never[];
|
|
38
|
+
};
|
|
39
|
+
type: {
|
|
40
|
+
type: import('vue').PropType<"daterange" | "monthrange">;
|
|
41
|
+
default: string;
|
|
42
|
+
validator: (value: string) => boolean;
|
|
43
|
+
};
|
|
44
|
+
size: {
|
|
45
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
46
|
+
default: string;
|
|
47
|
+
validator: (value: string) => boolean;
|
|
48
|
+
};
|
|
49
|
+
width: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
}>> & Readonly<{
|
|
54
|
+
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
55
|
+
}>, {
|
|
56
|
+
size: "small" | "default" | "large";
|
|
57
|
+
width: string;
|
|
58
|
+
type: "daterange" | "monthrange";
|
|
59
|
+
fieldList: {
|
|
60
|
+
label: string;
|
|
61
|
+
value: string;
|
|
62
|
+
}[];
|
|
63
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
64
|
+
datePickerRef: unknown;
|
|
65
|
+
}, HTMLDivElement>>;
|
|
66
|
+
export default JcDatePicker;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
type fieldType = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
7
|
+
fieldList: {
|
|
8
|
+
type: PropType<Array<fieldType>>;
|
|
9
|
+
require: boolean;
|
|
10
|
+
default: () => never[];
|
|
11
|
+
};
|
|
12
|
+
type: {
|
|
13
|
+
type: PropType<"daterange" | "monthrange">;
|
|
14
|
+
default: string;
|
|
15
|
+
validator: (value: string) => boolean;
|
|
16
|
+
};
|
|
17
|
+
size: {
|
|
18
|
+
type: PropType<"small" | "default" | "large">;
|
|
19
|
+
default: string;
|
|
20
|
+
validator: (value: string) => boolean;
|
|
21
|
+
};
|
|
22
|
+
width: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
}>, {
|
|
27
|
+
[x: string]: Function;
|
|
28
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
+
fieldChange: (...args: any[]) => void;
|
|
30
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
31
|
+
fieldList: {
|
|
32
|
+
type: PropType<Array<fieldType>>;
|
|
33
|
+
require: boolean;
|
|
34
|
+
default: () => never[];
|
|
35
|
+
};
|
|
36
|
+
type: {
|
|
37
|
+
type: PropType<"daterange" | "monthrange">;
|
|
38
|
+
default: string;
|
|
39
|
+
validator: (value: string) => boolean;
|
|
40
|
+
};
|
|
41
|
+
size: {
|
|
42
|
+
type: PropType<"small" | "default" | "large">;
|
|
43
|
+
default: string;
|
|
44
|
+
validator: (value: string) => boolean;
|
|
45
|
+
};
|
|
46
|
+
width: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
}>> & Readonly<{
|
|
51
|
+
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
52
|
+
}>, {
|
|
53
|
+
size: "small" | "default" | "large";
|
|
54
|
+
width: string;
|
|
55
|
+
type: "daterange" | "monthrange";
|
|
56
|
+
fieldList: fieldType[];
|
|
57
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
58
|
+
datePickerRef: unknown;
|
|
59
|
+
}, HTMLDivElement>;
|
|
60
|
+
export default _default;
|