@bscjc/webui 0.0.7 → 0.0.9
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/JcDatePicker/index.d.ts +64 -0
- package/dist/components/JcDatePicker/index.vue.d.ts +58 -0
- package/dist/components/JcInputComplex/index.d.ts +53 -0
- package/dist/components/JcInputComplex/index.vue.d.ts +47 -0
- package/dist/components/JcInputSwitch/index.d.ts +53 -0
- package/dist/components/JcInputSwitch/index.vue.d.ts +47 -0
- package/dist/components/JcMoreQueryContain/index.d.ts +214 -0
- package/dist/components/JcMoreQueryContain/index.vue.d.ts +96 -0
- package/dist/components/JcSelectQuery/index.d.ts +196 -0
- package/dist/components/JcSelectQuery/index.vue.d.ts +112 -0
- package/dist/components/JcTagQuery/index.d.ts +4 -0
- package/dist/components/JcTagQuery/index.vue.d.ts +2 -0
- package/dist/components/index.d.ts +6 -0
- package/dist/es/index.mjs +1147 -1237
- package/dist/hooks/useQuery.d.ts +11 -0
- package/dist/hooks/useQueryStore.d.ts +36 -0
- package/dist/index.css +3 -1
- package/dist/index.d.ts +9 -0
- package/dist/lib/index.cjs +8 -8
- package/dist/tsconfig.app.tsbuildinfo +1 -0
- package/dist/types/components.d.ts +19 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/scss.d.ts +19 -0
- package/package.json +11 -5
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import type { 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, {}, any>>;
|
|
64
|
+
export default JcDatePicker;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import type { 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, {}, any>;
|
|
58
|
+
export default _default;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { Plugin } from "vue";
|
|
2
|
+
type SFCWithInstall<T> = T & Plugin;
|
|
3
|
+
export declare const JcInputComplex: 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
|
+
size: {
|
|
13
|
+
type: import("vue").PropType<"small" | "default" | "large">;
|
|
14
|
+
default: string;
|
|
15
|
+
validator: (value: string) => boolean;
|
|
16
|
+
};
|
|
17
|
+
width: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
}>, {
|
|
22
|
+
[x: string]: any;
|
|
23
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
+
fieldChange: (...args: any[]) => void;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
+
fieldList: {
|
|
27
|
+
type: import("vue").PropType<Array<{
|
|
28
|
+
label: string;
|
|
29
|
+
value: string;
|
|
30
|
+
}>>;
|
|
31
|
+
require: boolean;
|
|
32
|
+
default: () => never[];
|
|
33
|
+
};
|
|
34
|
+
size: {
|
|
35
|
+
type: import("vue").PropType<"small" | "default" | "large">;
|
|
36
|
+
default: string;
|
|
37
|
+
validator: (value: string) => boolean;
|
|
38
|
+
};
|
|
39
|
+
width: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{
|
|
44
|
+
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
45
|
+
}>, {
|
|
46
|
+
size: "small" | "default" | "large";
|
|
47
|
+
width: string;
|
|
48
|
+
fieldList: {
|
|
49
|
+
label: string;
|
|
50
|
+
value: string;
|
|
51
|
+
}[];
|
|
52
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
|
53
|
+
export default JcInputComplex;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { 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
|
+
size: {
|
|
13
|
+
type: PropType<"small" | "default" | "large">;
|
|
14
|
+
default: string;
|
|
15
|
+
validator: (value: string) => boolean;
|
|
16
|
+
};
|
|
17
|
+
width: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
}>, {
|
|
22
|
+
[x: string]: any;
|
|
23
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
+
fieldChange: (...args: any[]) => void;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
+
fieldList: {
|
|
27
|
+
type: PropType<Array<fieldType>>;
|
|
28
|
+
require: boolean;
|
|
29
|
+
default: () => never[];
|
|
30
|
+
};
|
|
31
|
+
size: {
|
|
32
|
+
type: PropType<"small" | "default" | "large">;
|
|
33
|
+
default: string;
|
|
34
|
+
validator: (value: string) => boolean;
|
|
35
|
+
};
|
|
36
|
+
width: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
}>> & Readonly<{
|
|
41
|
+
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
}>, {
|
|
43
|
+
size: "small" | "default" | "large";
|
|
44
|
+
width: string;
|
|
45
|
+
fieldList: fieldType[];
|
|
46
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
47
|
+
export default _default;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { Plugin } from "vue";
|
|
2
|
+
type SFCWithInstall<T> = T & Plugin;
|
|
3
|
+
export declare const JcInputSwitch: SFCWithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
fieldList: {
|
|
5
|
+
type: import("vue").PropType<Array<{
|
|
6
|
+
label: string;
|
|
7
|
+
value: string;
|
|
8
|
+
}>>;
|
|
9
|
+
required: true;
|
|
10
|
+
default: () => never[];
|
|
11
|
+
};
|
|
12
|
+
size: {
|
|
13
|
+
type: import("vue").PropType<"small" | "default" | "large">;
|
|
14
|
+
default: string;
|
|
15
|
+
validator: (value: string) => boolean;
|
|
16
|
+
};
|
|
17
|
+
width: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
}>, {
|
|
22
|
+
[x: string]: any;
|
|
23
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
+
fieldChange: (...args: any[]) => void;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
+
fieldList: {
|
|
27
|
+
type: import("vue").PropType<Array<{
|
|
28
|
+
label: string;
|
|
29
|
+
value: string;
|
|
30
|
+
}>>;
|
|
31
|
+
required: true;
|
|
32
|
+
default: () => never[];
|
|
33
|
+
};
|
|
34
|
+
size: {
|
|
35
|
+
type: import("vue").PropType<"small" | "default" | "large">;
|
|
36
|
+
default: string;
|
|
37
|
+
validator: (value: string) => boolean;
|
|
38
|
+
};
|
|
39
|
+
width: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{
|
|
44
|
+
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
45
|
+
}>, {
|
|
46
|
+
size: "small" | "default" | "large";
|
|
47
|
+
width: string;
|
|
48
|
+
fieldList: {
|
|
49
|
+
label: string;
|
|
50
|
+
value: string;
|
|
51
|
+
}[];
|
|
52
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
|
53
|
+
export default JcInputSwitch;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { type 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
|
+
required: true;
|
|
10
|
+
default: () => never[];
|
|
11
|
+
};
|
|
12
|
+
size: {
|
|
13
|
+
type: PropType<"small" | "default" | "large">;
|
|
14
|
+
default: string;
|
|
15
|
+
validator: (value: string) => boolean;
|
|
16
|
+
};
|
|
17
|
+
width: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
}>, {
|
|
22
|
+
[x: string]: any;
|
|
23
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
+
fieldChange: (...args: any[]) => void;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
+
fieldList: {
|
|
27
|
+
type: PropType<Array<fieldType>>;
|
|
28
|
+
required: true;
|
|
29
|
+
default: () => never[];
|
|
30
|
+
};
|
|
31
|
+
size: {
|
|
32
|
+
type: PropType<"small" | "default" | "large">;
|
|
33
|
+
default: string;
|
|
34
|
+
validator: (value: string) => boolean;
|
|
35
|
+
};
|
|
36
|
+
width: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
}>> & Readonly<{
|
|
41
|
+
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
}>, {
|
|
43
|
+
size: "small" | "default" | "large";
|
|
44
|
+
width: string;
|
|
45
|
+
fieldList: fieldType[];
|
|
46
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
47
|
+
export default _default;
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
import type { Plugin } from "vue";
|
|
2
|
+
type SFCWithInstall<T> = T & Plugin;
|
|
3
|
+
export declare const JcMoreQueryContain: SFCWithInstall<{
|
|
4
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
5
|
+
fieldList: {
|
|
6
|
+
type: {
|
|
7
|
+
(arrayLength: number): {
|
|
8
|
+
label: string;
|
|
9
|
+
value: string;
|
|
10
|
+
}[];
|
|
11
|
+
(...items: {
|
|
12
|
+
label: string;
|
|
13
|
+
value: string;
|
|
14
|
+
}[]): {
|
|
15
|
+
label: string;
|
|
16
|
+
value: string;
|
|
17
|
+
}[];
|
|
18
|
+
new (arrayLength: number): {
|
|
19
|
+
label: string;
|
|
20
|
+
value: string;
|
|
21
|
+
}[];
|
|
22
|
+
new (...items: {
|
|
23
|
+
label: string;
|
|
24
|
+
value: string;
|
|
25
|
+
}[]): {
|
|
26
|
+
label: string;
|
|
27
|
+
value: string;
|
|
28
|
+
}[];
|
|
29
|
+
isArray(arg: any): arg is any[];
|
|
30
|
+
readonly prototype: any[];
|
|
31
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
32
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
33
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
34
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
35
|
+
of<T>(...items: T[]): T[];
|
|
36
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
37
|
+
};
|
|
38
|
+
require: boolean;
|
|
39
|
+
default: () => never[];
|
|
40
|
+
};
|
|
41
|
+
customTagObj: {
|
|
42
|
+
type: import("vue").PropType<{
|
|
43
|
+
[key: string]: string;
|
|
44
|
+
}>;
|
|
45
|
+
default: () => {};
|
|
46
|
+
};
|
|
47
|
+
width: {
|
|
48
|
+
type: NumberConstructor;
|
|
49
|
+
default: number;
|
|
50
|
+
};
|
|
51
|
+
size: {
|
|
52
|
+
type: import("vue").PropType<"small" | "default" | "large">;
|
|
53
|
+
default: string;
|
|
54
|
+
validator: (value: string) => boolean;
|
|
55
|
+
};
|
|
56
|
+
}>> & Readonly<{}>, {
|
|
57
|
+
[x: string]: any;
|
|
58
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
59
|
+
size: "small" | "default" | "large";
|
|
60
|
+
width: number;
|
|
61
|
+
fieldList: {
|
|
62
|
+
label: string;
|
|
63
|
+
value: string;
|
|
64
|
+
}[];
|
|
65
|
+
customTagObj: {
|
|
66
|
+
[key: string]: string;
|
|
67
|
+
};
|
|
68
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
69
|
+
P: {};
|
|
70
|
+
B: {};
|
|
71
|
+
D: {};
|
|
72
|
+
C: {};
|
|
73
|
+
M: {};
|
|
74
|
+
Defaults: {};
|
|
75
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
76
|
+
fieldList: {
|
|
77
|
+
type: {
|
|
78
|
+
(arrayLength: number): {
|
|
79
|
+
label: string;
|
|
80
|
+
value: string;
|
|
81
|
+
}[];
|
|
82
|
+
(...items: {
|
|
83
|
+
label: string;
|
|
84
|
+
value: string;
|
|
85
|
+
}[]): {
|
|
86
|
+
label: string;
|
|
87
|
+
value: string;
|
|
88
|
+
}[];
|
|
89
|
+
new (arrayLength: number): {
|
|
90
|
+
label: string;
|
|
91
|
+
value: string;
|
|
92
|
+
}[];
|
|
93
|
+
new (...items: {
|
|
94
|
+
label: string;
|
|
95
|
+
value: string;
|
|
96
|
+
}[]): {
|
|
97
|
+
label: string;
|
|
98
|
+
value: string;
|
|
99
|
+
}[];
|
|
100
|
+
isArray(arg: any): arg is any[];
|
|
101
|
+
readonly prototype: any[];
|
|
102
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
103
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
104
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
105
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
106
|
+
of<T>(...items: T[]): T[];
|
|
107
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
108
|
+
};
|
|
109
|
+
require: boolean;
|
|
110
|
+
default: () => never[];
|
|
111
|
+
};
|
|
112
|
+
customTagObj: {
|
|
113
|
+
type: import("vue").PropType<{
|
|
114
|
+
[key: string]: string;
|
|
115
|
+
}>;
|
|
116
|
+
default: () => {};
|
|
117
|
+
};
|
|
118
|
+
width: {
|
|
119
|
+
type: NumberConstructor;
|
|
120
|
+
default: number;
|
|
121
|
+
};
|
|
122
|
+
size: {
|
|
123
|
+
type: import("vue").PropType<"small" | "default" | "large">;
|
|
124
|
+
default: string;
|
|
125
|
+
validator: (value: string) => boolean;
|
|
126
|
+
};
|
|
127
|
+
}>> & Readonly<{}>, {
|
|
128
|
+
[x: string]: any;
|
|
129
|
+
}, {}, {}, {}, {
|
|
130
|
+
size: "small" | "default" | "large";
|
|
131
|
+
width: number;
|
|
132
|
+
fieldList: {
|
|
133
|
+
label: string;
|
|
134
|
+
value: string;
|
|
135
|
+
}[];
|
|
136
|
+
customTagObj: {
|
|
137
|
+
[key: string]: string;
|
|
138
|
+
};
|
|
139
|
+
}>;
|
|
140
|
+
__isFragment?: never;
|
|
141
|
+
__isTeleport?: never;
|
|
142
|
+
__isSuspense?: never;
|
|
143
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
144
|
+
fieldList: {
|
|
145
|
+
type: {
|
|
146
|
+
(arrayLength: number): {
|
|
147
|
+
label: string;
|
|
148
|
+
value: string;
|
|
149
|
+
}[];
|
|
150
|
+
(...items: {
|
|
151
|
+
label: string;
|
|
152
|
+
value: string;
|
|
153
|
+
}[]): {
|
|
154
|
+
label: string;
|
|
155
|
+
value: string;
|
|
156
|
+
}[];
|
|
157
|
+
new (arrayLength: number): {
|
|
158
|
+
label: string;
|
|
159
|
+
value: string;
|
|
160
|
+
}[];
|
|
161
|
+
new (...items: {
|
|
162
|
+
label: string;
|
|
163
|
+
value: string;
|
|
164
|
+
}[]): {
|
|
165
|
+
label: string;
|
|
166
|
+
value: string;
|
|
167
|
+
}[];
|
|
168
|
+
isArray(arg: any): arg is any[];
|
|
169
|
+
readonly prototype: any[];
|
|
170
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
171
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
172
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
173
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
174
|
+
of<T>(...items: T[]): T[];
|
|
175
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
176
|
+
};
|
|
177
|
+
require: boolean;
|
|
178
|
+
default: () => never[];
|
|
179
|
+
};
|
|
180
|
+
customTagObj: {
|
|
181
|
+
type: import("vue").PropType<{
|
|
182
|
+
[key: string]: string;
|
|
183
|
+
}>;
|
|
184
|
+
default: () => {};
|
|
185
|
+
};
|
|
186
|
+
width: {
|
|
187
|
+
type: NumberConstructor;
|
|
188
|
+
default: number;
|
|
189
|
+
};
|
|
190
|
+
size: {
|
|
191
|
+
type: import("vue").PropType<"small" | "default" | "large">;
|
|
192
|
+
default: string;
|
|
193
|
+
validator: (value: string) => boolean;
|
|
194
|
+
};
|
|
195
|
+
}>> & Readonly<{}>, {
|
|
196
|
+
[x: string]: any;
|
|
197
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
198
|
+
size: "small" | "default" | "large";
|
|
199
|
+
width: number;
|
|
200
|
+
fieldList: {
|
|
201
|
+
label: string;
|
|
202
|
+
value: string;
|
|
203
|
+
}[];
|
|
204
|
+
customTagObj: {
|
|
205
|
+
[key: string]: string;
|
|
206
|
+
};
|
|
207
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
208
|
+
$slots: {
|
|
209
|
+
default?: (props: {
|
|
210
|
+
scopeForm: any;
|
|
211
|
+
}) => any;
|
|
212
|
+
};
|
|
213
|
+
})>;
|
|
214
|
+
export default JcMoreQueryContain;
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
type fieldType = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_15: {
|
|
7
|
+
scopeForm: any;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_Slots = {} & {
|
|
10
|
+
default?: (props: typeof __VLS_15) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
|
+
fieldList: {
|
|
14
|
+
type: {
|
|
15
|
+
(arrayLength: number): fieldType[];
|
|
16
|
+
(...items: fieldType[]): fieldType[];
|
|
17
|
+
new (arrayLength: number): fieldType[];
|
|
18
|
+
new (...items: fieldType[]): fieldType[];
|
|
19
|
+
isArray(arg: any): arg is any[];
|
|
20
|
+
readonly prototype: any[];
|
|
21
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
22
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
23
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
24
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
25
|
+
of<T>(...items: T[]): T[];
|
|
26
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
27
|
+
};
|
|
28
|
+
require: boolean;
|
|
29
|
+
default: () => never[];
|
|
30
|
+
};
|
|
31
|
+
customTagObj: {
|
|
32
|
+
type: PropType<{
|
|
33
|
+
[key: string]: string;
|
|
34
|
+
}>;
|
|
35
|
+
default: () => {};
|
|
36
|
+
};
|
|
37
|
+
width: {
|
|
38
|
+
type: NumberConstructor;
|
|
39
|
+
default: number;
|
|
40
|
+
};
|
|
41
|
+
size: {
|
|
42
|
+
type: PropType<"small" | "default" | "large">;
|
|
43
|
+
default: string;
|
|
44
|
+
validator: (value: string) => boolean;
|
|
45
|
+
};
|
|
46
|
+
}>, {
|
|
47
|
+
[x: string]: any;
|
|
48
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
|
+
fieldList: {
|
|
50
|
+
type: {
|
|
51
|
+
(arrayLength: number): fieldType[];
|
|
52
|
+
(...items: fieldType[]): fieldType[];
|
|
53
|
+
new (arrayLength: number): fieldType[];
|
|
54
|
+
new (...items: fieldType[]): fieldType[];
|
|
55
|
+
isArray(arg: any): arg is any[];
|
|
56
|
+
readonly prototype: any[];
|
|
57
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
58
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
59
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
60
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
61
|
+
of<T>(...items: T[]): T[];
|
|
62
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
63
|
+
};
|
|
64
|
+
require: boolean;
|
|
65
|
+
default: () => never[];
|
|
66
|
+
};
|
|
67
|
+
customTagObj: {
|
|
68
|
+
type: PropType<{
|
|
69
|
+
[key: string]: string;
|
|
70
|
+
}>;
|
|
71
|
+
default: () => {};
|
|
72
|
+
};
|
|
73
|
+
width: {
|
|
74
|
+
type: NumberConstructor;
|
|
75
|
+
default: number;
|
|
76
|
+
};
|
|
77
|
+
size: {
|
|
78
|
+
type: PropType<"small" | "default" | "large">;
|
|
79
|
+
default: string;
|
|
80
|
+
validator: (value: string) => boolean;
|
|
81
|
+
};
|
|
82
|
+
}>> & Readonly<{}>, {
|
|
83
|
+
size: "small" | "default" | "large";
|
|
84
|
+
width: number;
|
|
85
|
+
fieldList: fieldType[];
|
|
86
|
+
customTagObj: {
|
|
87
|
+
[key: string]: string;
|
|
88
|
+
};
|
|
89
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
90
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
91
|
+
export default _default;
|
|
92
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
93
|
+
new (): {
|
|
94
|
+
$slots: S;
|
|
95
|
+
};
|
|
96
|
+
};
|