@opentinyvue/vue-design-saas 3.27.0 → 3.28.0
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/index.d.ts +491 -20
- package/index.js +137 -10
- package/package.json +5 -5
- package/src/alert/index.d.ts +38 -2
- package/src/base-select/index.d.ts +112 -0
- package/src/collapse-item/index.d.ts +38 -2
- package/src/dropdown/index.d.ts +38 -2
- package/src/dropdown-item/index.d.ts +38 -2
- package/src/filter-box/index.d.ts +38 -2
- package/src/grid/index.d.ts +76 -4
- package/src/popconfirm/index.d.ts +38 -2
- package/src/select/index.d.ts +76 -4
- package/src/select-wrapper/index.d.ts +112 -0
|
@@ -1,8 +1,44 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
icons: {
|
|
3
|
-
leftWardArrow: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
3
|
+
leftWardArrow: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
4
|
+
shape: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
firstColor: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
secondColor: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
underlay: {
|
|
17
|
+
type: ObjectConstructor;
|
|
18
|
+
};
|
|
19
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
4
20
|
[key: string]: any;
|
|
5
|
-
}>,
|
|
21
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
22
|
+
shape: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
firstColor: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
secondColor: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
underlay: {
|
|
35
|
+
type: ObjectConstructor;
|
|
36
|
+
};
|
|
37
|
+
}>>, {
|
|
38
|
+
shape: string;
|
|
39
|
+
firstColor: string;
|
|
40
|
+
secondColor: string;
|
|
41
|
+
}, {}>>;
|
|
6
42
|
};
|
|
7
43
|
renderless: (props: any, hooks: any, { emit, dispatch, vm }: {
|
|
8
44
|
emit: any;
|
|
@@ -1,8 +1,44 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
icons: {
|
|
3
|
-
expandButton: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
3
|
+
expandButton: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
4
|
+
shape: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
firstColor: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
secondColor: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
underlay: {
|
|
17
|
+
type: ObjectConstructor;
|
|
18
|
+
};
|
|
19
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
4
20
|
[key: string]: any;
|
|
5
|
-
}>,
|
|
21
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
22
|
+
shape: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
firstColor: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
secondColor: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
underlay: {
|
|
35
|
+
type: ObjectConstructor;
|
|
36
|
+
};
|
|
37
|
+
}>>, {
|
|
38
|
+
shape: string;
|
|
39
|
+
firstColor: string;
|
|
40
|
+
secondColor: string;
|
|
41
|
+
}, {}>>;
|
|
6
42
|
};
|
|
7
43
|
};
|
|
8
44
|
export default _default;
|
package/src/grid/index.d.ts
CHANGED
|
@@ -8,12 +8,84 @@ declare const _default: {
|
|
|
8
8
|
};
|
|
9
9
|
icons: {
|
|
10
10
|
sortDefault: null;
|
|
11
|
-
sortAsc: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
11
|
+
sortAsc: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
12
|
+
shape: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
firstColor: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
secondColor: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
underlay: {
|
|
25
|
+
type: ObjectConstructor;
|
|
26
|
+
};
|
|
27
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
12
28
|
[key: string]: any;
|
|
13
|
-
}>,
|
|
14
|
-
|
|
29
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
30
|
+
shape: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
firstColor: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
secondColor: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
underlay: {
|
|
43
|
+
type: ObjectConstructor;
|
|
44
|
+
};
|
|
45
|
+
}>>, {
|
|
46
|
+
shape: string;
|
|
47
|
+
firstColor: string;
|
|
48
|
+
secondColor: string;
|
|
49
|
+
}, {}>>;
|
|
50
|
+
sortDesc: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
51
|
+
shape: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
firstColor: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
secondColor: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
underlay: {
|
|
64
|
+
type: ObjectConstructor;
|
|
65
|
+
};
|
|
66
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
15
67
|
[key: string]: any;
|
|
16
|
-
}>,
|
|
68
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
69
|
+
shape: {
|
|
70
|
+
type: StringConstructor;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
firstColor: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
secondColor: {
|
|
78
|
+
type: StringConstructor;
|
|
79
|
+
default: string;
|
|
80
|
+
};
|
|
81
|
+
underlay: {
|
|
82
|
+
type: ObjectConstructor;
|
|
83
|
+
};
|
|
84
|
+
}>>, {
|
|
85
|
+
shape: string;
|
|
86
|
+
firstColor: string;
|
|
87
|
+
secondColor: string;
|
|
88
|
+
}, {}>>;
|
|
17
89
|
};
|
|
18
90
|
};
|
|
19
91
|
export default _default;
|
|
@@ -1,8 +1,44 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
icons: {
|
|
3
|
-
warning: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
3
|
+
warning: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
4
|
+
shape: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
firstColor: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
secondColor: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
underlay: {
|
|
17
|
+
type: ObjectConstructor;
|
|
18
|
+
};
|
|
19
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
4
20
|
[key: string]: any;
|
|
5
|
-
}>,
|
|
21
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
22
|
+
shape: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
firstColor: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
secondColor: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
underlay: {
|
|
35
|
+
type: ObjectConstructor;
|
|
36
|
+
};
|
|
37
|
+
}>>, {
|
|
38
|
+
shape: string;
|
|
39
|
+
firstColor: string;
|
|
40
|
+
secondColor: string;
|
|
41
|
+
}, {}>>;
|
|
6
42
|
};
|
|
7
43
|
};
|
|
8
44
|
export default _default;
|
package/src/select/index.d.ts
CHANGED
|
@@ -4,12 +4,84 @@ declare const _default: {
|
|
|
4
4
|
limit: number;
|
|
5
5
|
};
|
|
6
6
|
icons: {
|
|
7
|
-
dropdownIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
7
|
+
dropdownIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
8
|
+
shape: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
firstColor: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
secondColor: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
underlay: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
};
|
|
23
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
8
24
|
[key: string]: any;
|
|
9
|
-
}>,
|
|
10
|
-
|
|
25
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
26
|
+
shape: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
firstColor: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
secondColor: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
underlay: {
|
|
39
|
+
type: ObjectConstructor;
|
|
40
|
+
};
|
|
41
|
+
}>>, {
|
|
42
|
+
shape: string;
|
|
43
|
+
firstColor: string;
|
|
44
|
+
secondColor: string;
|
|
45
|
+
}, {}>>;
|
|
46
|
+
addIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
47
|
+
shape: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
firstColor: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
secondColor: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
underlay: {
|
|
60
|
+
type: ObjectConstructor;
|
|
61
|
+
};
|
|
62
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
11
63
|
[key: string]: any;
|
|
12
|
-
}>,
|
|
64
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
65
|
+
shape: {
|
|
66
|
+
type: StringConstructor;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
firstColor: {
|
|
70
|
+
type: StringConstructor;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
secondColor: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
underlay: {
|
|
78
|
+
type: ObjectConstructor;
|
|
79
|
+
};
|
|
80
|
+
}>>, {
|
|
81
|
+
shape: string;
|
|
82
|
+
firstColor: string;
|
|
83
|
+
secondColor: string;
|
|
84
|
+
}, {}>>;
|
|
13
85
|
loadingIcon: string;
|
|
14
86
|
};
|
|
15
87
|
state: {
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
baseOpts: {
|
|
3
|
+
optionHeight: number;
|
|
4
|
+
limit: number;
|
|
5
|
+
};
|
|
6
|
+
icons: {
|
|
7
|
+
dropdownIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
8
|
+
shape: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
firstColor: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
secondColor: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
underlay: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
};
|
|
23
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
24
|
+
[key: string]: any;
|
|
25
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
26
|
+
shape: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
firstColor: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
secondColor: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
underlay: {
|
|
39
|
+
type: ObjectConstructor;
|
|
40
|
+
};
|
|
41
|
+
}>>, {
|
|
42
|
+
shape: string;
|
|
43
|
+
firstColor: string;
|
|
44
|
+
secondColor: string;
|
|
45
|
+
}, {}>>;
|
|
46
|
+
addIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
47
|
+
shape: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
firstColor: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
secondColor: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
underlay: {
|
|
60
|
+
type: ObjectConstructor;
|
|
61
|
+
};
|
|
62
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
65
|
+
shape: {
|
|
66
|
+
type: StringConstructor;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
firstColor: {
|
|
70
|
+
type: StringConstructor;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
secondColor: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
underlay: {
|
|
78
|
+
type: ObjectConstructor;
|
|
79
|
+
};
|
|
80
|
+
}>>, {
|
|
81
|
+
shape: string;
|
|
82
|
+
firstColor: string;
|
|
83
|
+
secondColor: string;
|
|
84
|
+
}, {}>>;
|
|
85
|
+
loadingIcon: string;
|
|
86
|
+
};
|
|
87
|
+
state: {
|
|
88
|
+
sizeMap: {
|
|
89
|
+
default: number;
|
|
90
|
+
mini: number;
|
|
91
|
+
small: number;
|
|
92
|
+
medium: number;
|
|
93
|
+
};
|
|
94
|
+
spacingHeight: number;
|
|
95
|
+
initialInputHeight: number;
|
|
96
|
+
autoHideDownIcon: boolean;
|
|
97
|
+
delayBlur: boolean;
|
|
98
|
+
};
|
|
99
|
+
props: {
|
|
100
|
+
tagType: string;
|
|
101
|
+
stopPropagation: boolean;
|
|
102
|
+
};
|
|
103
|
+
renderless: (props: any, hooks: any, { emit }: {
|
|
104
|
+
emit: any;
|
|
105
|
+
}, api: any) => {
|
|
106
|
+
computedCollapseTagSize: () => string;
|
|
107
|
+
toggleCheckAll: (filtered: any) => void;
|
|
108
|
+
computedShowTagText: () => any;
|
|
109
|
+
isTagClosable: (item: any) => boolean;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
export default _default;
|