@opentiny/vue-dropdown-item 3.13.0-alpha.1 → 3.14.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 +13 -0
- package/lib/index.js +1 -1
- package/package.json +9 -7
- package/src/index.d.ts +235 -0
- package/src/mobile-first.vue.d.ts +56 -0
- package/src/mobile.vue.d.ts +66 -0
- package/src/pc.vue.d.ts +88 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2022 - present TinyVue Authors.
|
|
3
|
+
* Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd.
|
|
4
|
+
*
|
|
5
|
+
* Use of this source code is governed by an MIT-style license.
|
|
6
|
+
*
|
|
7
|
+
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
|
|
8
|
+
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
|
|
9
|
+
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
import DropdownItem from './src/index';
|
|
13
|
+
export default DropdownItem;
|
package/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/vue-dropdown-item",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.14.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentiny/vue-common": "3.
|
|
11
|
-
"@opentiny/vue-icon": "3.
|
|
12
|
-
"@opentiny/vue-renderless": "3.
|
|
13
|
-
"@opentiny/vue-popup": "3.
|
|
14
|
-
"@opentiny/vue-button": "3.
|
|
15
|
-
"@opentiny/vue-tooltip": "3.
|
|
10
|
+
"@opentiny/vue-common": "~3.14.0",
|
|
11
|
+
"@opentiny/vue-icon": "~3.14.0",
|
|
12
|
+
"@opentiny/vue-renderless": "~3.14.0",
|
|
13
|
+
"@opentiny/vue-popup": "~3.14.0",
|
|
14
|
+
"@opentiny/vue-button": "~3.14.0",
|
|
15
|
+
"@opentiny/vue-tooltip": "~3.14.0",
|
|
16
|
+
"@opentiny/vue-theme-mobile": "~3.14.0",
|
|
17
|
+
"@opentiny/vue-theme": "~3.14.0"
|
|
16
18
|
},
|
|
17
19
|
"license": "MIT",
|
|
18
20
|
"types": "index.d.ts",
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2022 - present TinyVue Authors.
|
|
3
|
+
* Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd.
|
|
4
|
+
*
|
|
5
|
+
* Use of this source code is governed by an MIT-style license.
|
|
6
|
+
*
|
|
7
|
+
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
|
|
8
|
+
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
|
|
9
|
+
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
export declare const $constants: {
|
|
13
|
+
ICON_MAP: {
|
|
14
|
+
leftWardArrow: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export declare const dropdownItemProps: {
|
|
18
|
+
_constants: {
|
|
19
|
+
type: ObjectConstructor;
|
|
20
|
+
default: () => {
|
|
21
|
+
ICON_MAP: {
|
|
22
|
+
leftWardArrow: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
icon: (ObjectConstructor | StringConstructor)[];
|
|
27
|
+
disabled: BooleanConstructor;
|
|
28
|
+
divided: BooleanConstructor;
|
|
29
|
+
itemData: {
|
|
30
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
title: StringConstructor;
|
|
34
|
+
label: StringConstructor;
|
|
35
|
+
level: StringConstructor;
|
|
36
|
+
titleClass: StringConstructor;
|
|
37
|
+
options: {
|
|
38
|
+
type: ArrayConstructor;
|
|
39
|
+
default: () => never[];
|
|
40
|
+
};
|
|
41
|
+
type: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
selected: {
|
|
46
|
+
type: BooleanConstructor;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
selectedField: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
multiStage: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
currentIndex: {
|
|
58
|
+
type: NumberConstructor;
|
|
59
|
+
default: () => number;
|
|
60
|
+
};
|
|
61
|
+
appendToBody: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
65
|
+
textField: {
|
|
66
|
+
type: StringConstructor;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
tip: {
|
|
70
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
tipPosition: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
tiny_mode: StringConstructor;
|
|
78
|
+
tiny_mode_root: BooleanConstructor;
|
|
79
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
80
|
+
tiny_renderless: FunctionConstructor;
|
|
81
|
+
tiny_theme: StringConstructor;
|
|
82
|
+
tiny_chart_theme: ObjectConstructor;
|
|
83
|
+
};
|
|
84
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
85
|
+
_constants: {
|
|
86
|
+
type: ObjectConstructor;
|
|
87
|
+
default: () => {
|
|
88
|
+
ICON_MAP: {
|
|
89
|
+
leftWardArrow: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
icon: (ObjectConstructor | StringConstructor)[];
|
|
94
|
+
disabled: BooleanConstructor;
|
|
95
|
+
divided: BooleanConstructor;
|
|
96
|
+
itemData: {
|
|
97
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
98
|
+
default: string;
|
|
99
|
+
};
|
|
100
|
+
title: StringConstructor;
|
|
101
|
+
label: StringConstructor;
|
|
102
|
+
level: StringConstructor;
|
|
103
|
+
titleClass: StringConstructor;
|
|
104
|
+
options: {
|
|
105
|
+
type: ArrayConstructor;
|
|
106
|
+
default: () => never[];
|
|
107
|
+
};
|
|
108
|
+
type: {
|
|
109
|
+
type: StringConstructor;
|
|
110
|
+
default: string;
|
|
111
|
+
};
|
|
112
|
+
selected: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
default: boolean;
|
|
115
|
+
};
|
|
116
|
+
selectedField: {
|
|
117
|
+
type: StringConstructor;
|
|
118
|
+
default: string;
|
|
119
|
+
};
|
|
120
|
+
multiStage: {
|
|
121
|
+
type: BooleanConstructor;
|
|
122
|
+
default: boolean;
|
|
123
|
+
};
|
|
124
|
+
currentIndex: {
|
|
125
|
+
type: NumberConstructor;
|
|
126
|
+
default: () => number;
|
|
127
|
+
};
|
|
128
|
+
appendToBody: {
|
|
129
|
+
type: BooleanConstructor;
|
|
130
|
+
default: boolean;
|
|
131
|
+
};
|
|
132
|
+
textField: {
|
|
133
|
+
type: StringConstructor;
|
|
134
|
+
default: string;
|
|
135
|
+
};
|
|
136
|
+
tip: {
|
|
137
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
138
|
+
default: string;
|
|
139
|
+
};
|
|
140
|
+
tipPosition: {
|
|
141
|
+
type: StringConstructor;
|
|
142
|
+
default: string;
|
|
143
|
+
};
|
|
144
|
+
tiny_mode: StringConstructor;
|
|
145
|
+
tiny_mode_root: BooleanConstructor;
|
|
146
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
147
|
+
tiny_renderless: FunctionConstructor;
|
|
148
|
+
tiny_theme: StringConstructor;
|
|
149
|
+
tiny_chart_theme: ObjectConstructor;
|
|
150
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
151
|
+
[key: string]: any;
|
|
152
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
153
|
+
_constants: {
|
|
154
|
+
type: ObjectConstructor;
|
|
155
|
+
default: () => {
|
|
156
|
+
ICON_MAP: {
|
|
157
|
+
leftWardArrow: string;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
icon: (ObjectConstructor | StringConstructor)[];
|
|
162
|
+
disabled: BooleanConstructor;
|
|
163
|
+
divided: BooleanConstructor;
|
|
164
|
+
itemData: {
|
|
165
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
166
|
+
default: string;
|
|
167
|
+
};
|
|
168
|
+
title: StringConstructor;
|
|
169
|
+
label: StringConstructor;
|
|
170
|
+
level: StringConstructor;
|
|
171
|
+
titleClass: StringConstructor;
|
|
172
|
+
options: {
|
|
173
|
+
type: ArrayConstructor;
|
|
174
|
+
default: () => never[];
|
|
175
|
+
};
|
|
176
|
+
type: {
|
|
177
|
+
type: StringConstructor;
|
|
178
|
+
default: string;
|
|
179
|
+
};
|
|
180
|
+
selected: {
|
|
181
|
+
type: BooleanConstructor;
|
|
182
|
+
default: boolean;
|
|
183
|
+
};
|
|
184
|
+
selectedField: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
multiStage: {
|
|
189
|
+
type: BooleanConstructor;
|
|
190
|
+
default: boolean;
|
|
191
|
+
};
|
|
192
|
+
currentIndex: {
|
|
193
|
+
type: NumberConstructor;
|
|
194
|
+
default: () => number;
|
|
195
|
+
};
|
|
196
|
+
appendToBody: {
|
|
197
|
+
type: BooleanConstructor;
|
|
198
|
+
default: boolean;
|
|
199
|
+
};
|
|
200
|
+
textField: {
|
|
201
|
+
type: StringConstructor;
|
|
202
|
+
default: string;
|
|
203
|
+
};
|
|
204
|
+
tip: {
|
|
205
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
206
|
+
default: string;
|
|
207
|
+
};
|
|
208
|
+
tipPosition: {
|
|
209
|
+
type: StringConstructor;
|
|
210
|
+
default: string;
|
|
211
|
+
};
|
|
212
|
+
tiny_mode: StringConstructor;
|
|
213
|
+
tiny_mode_root: BooleanConstructor;
|
|
214
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
215
|
+
tiny_renderless: FunctionConstructor;
|
|
216
|
+
tiny_theme: StringConstructor;
|
|
217
|
+
tiny_chart_theme: ObjectConstructor;
|
|
218
|
+
}>>, {
|
|
219
|
+
type: string;
|
|
220
|
+
selected: boolean;
|
|
221
|
+
disabled: boolean;
|
|
222
|
+
tiny_mode_root: boolean;
|
|
223
|
+
_constants: Record<string, any>;
|
|
224
|
+
multiStage: boolean;
|
|
225
|
+
options: unknown[];
|
|
226
|
+
textField: string;
|
|
227
|
+
divided: boolean;
|
|
228
|
+
itemData: string | Record<string, any>;
|
|
229
|
+
selectedField: string;
|
|
230
|
+
currentIndex: number;
|
|
231
|
+
appendToBody: boolean;
|
|
232
|
+
tip: string | Function;
|
|
233
|
+
tipPosition: string;
|
|
234
|
+
}, {}>;
|
|
235
|
+
export default _default;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
label?: any;
|
|
3
|
+
selected?: any;
|
|
4
|
+
disabled?: any;
|
|
5
|
+
tiny_mode?: any;
|
|
6
|
+
tiny_mode_root?: any;
|
|
7
|
+
tiny_template?: any;
|
|
8
|
+
tiny_renderless?: any;
|
|
9
|
+
_constants?: any;
|
|
10
|
+
tiny_theme?: any;
|
|
11
|
+
tiny_chart_theme?: any;
|
|
12
|
+
icon?: any;
|
|
13
|
+
itemData?: any;
|
|
14
|
+
level?: any;
|
|
15
|
+
currentIndex?: any;
|
|
16
|
+
}>, any, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("confirm" | "change" | "update:modelValue" | "close" | "reset" | "open" | "closed" | "opened")[], "confirm" | "change" | "update:modelValue" | "close" | "reset" | "open" | "closed" | "opened", import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
17
|
+
label?: any;
|
|
18
|
+
selected?: any;
|
|
19
|
+
disabled?: any;
|
|
20
|
+
tiny_mode?: any;
|
|
21
|
+
tiny_mode_root?: any;
|
|
22
|
+
tiny_template?: any;
|
|
23
|
+
tiny_renderless?: any;
|
|
24
|
+
_constants?: any;
|
|
25
|
+
tiny_theme?: any;
|
|
26
|
+
tiny_chart_theme?: any;
|
|
27
|
+
icon?: any;
|
|
28
|
+
itemData?: any;
|
|
29
|
+
level?: any;
|
|
30
|
+
currentIndex?: any;
|
|
31
|
+
}>>> & {
|
|
32
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
34
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
35
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
36
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
37
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
38
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
onOpened?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
}, {
|
|
41
|
+
readonly label?: any;
|
|
42
|
+
readonly selected?: any;
|
|
43
|
+
readonly disabled?: any;
|
|
44
|
+
readonly tiny_mode?: any;
|
|
45
|
+
readonly tiny_mode_root?: any;
|
|
46
|
+
readonly tiny_template?: any;
|
|
47
|
+
readonly tiny_renderless?: any;
|
|
48
|
+
readonly _constants?: any;
|
|
49
|
+
readonly tiny_theme?: any;
|
|
50
|
+
readonly tiny_chart_theme?: any;
|
|
51
|
+
readonly icon?: any;
|
|
52
|
+
readonly itemData?: any;
|
|
53
|
+
readonly level?: any;
|
|
54
|
+
readonly currentIndex?: any;
|
|
55
|
+
}, {}>;
|
|
56
|
+
export default _default;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
type?: any;
|
|
3
|
+
title?: any;
|
|
4
|
+
disabled?: any;
|
|
5
|
+
tiny_mode?: any;
|
|
6
|
+
tiny_mode_root?: any;
|
|
7
|
+
tiny_template?: any;
|
|
8
|
+
tiny_renderless?: any;
|
|
9
|
+
_constants?: any;
|
|
10
|
+
tiny_theme?: any;
|
|
11
|
+
tiny_chart_theme?: any;
|
|
12
|
+
modelValue?: any;
|
|
13
|
+
options?: any;
|
|
14
|
+
icon?: any;
|
|
15
|
+
titleClass?: any;
|
|
16
|
+
}>, {
|
|
17
|
+
t: (this: any, path: any, options?: any) => any;
|
|
18
|
+
vm: any;
|
|
19
|
+
f: (props: any, attrs?: {}) => {};
|
|
20
|
+
a: (attrs: any, filters: any, include: any) => {};
|
|
21
|
+
d: (props: any) => void;
|
|
22
|
+
dp: (props: any) => void;
|
|
23
|
+
gcls: (key: any) => any;
|
|
24
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("confirm" | "change" | "item-click" | "update:modelValue" | "close" | "click" | "reset" | "open" | "closed" | "opened")[], "confirm" | "change" | "item-click" | "update:modelValue" | "close" | "click" | "reset" | "open" | "closed" | "opened", import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
25
|
+
type?: any;
|
|
26
|
+
title?: any;
|
|
27
|
+
disabled?: any;
|
|
28
|
+
tiny_mode?: any;
|
|
29
|
+
tiny_mode_root?: any;
|
|
30
|
+
tiny_template?: any;
|
|
31
|
+
tiny_renderless?: any;
|
|
32
|
+
_constants?: any;
|
|
33
|
+
tiny_theme?: any;
|
|
34
|
+
tiny_chart_theme?: any;
|
|
35
|
+
modelValue?: any;
|
|
36
|
+
options?: any;
|
|
37
|
+
icon?: any;
|
|
38
|
+
titleClass?: any;
|
|
39
|
+
}>>> & {
|
|
40
|
+
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
43
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
44
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
45
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
46
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
47
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
48
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
49
|
+
onOpened?: ((...args: any[]) => any) | undefined;
|
|
50
|
+
}, {
|
|
51
|
+
readonly type?: any;
|
|
52
|
+
readonly title?: any;
|
|
53
|
+
readonly disabled?: any;
|
|
54
|
+
readonly tiny_mode?: any;
|
|
55
|
+
readonly tiny_mode_root?: any;
|
|
56
|
+
readonly tiny_template?: any;
|
|
57
|
+
readonly tiny_renderless?: any;
|
|
58
|
+
readonly _constants?: any;
|
|
59
|
+
readonly tiny_theme?: any;
|
|
60
|
+
readonly tiny_chart_theme?: any;
|
|
61
|
+
readonly modelValue?: any;
|
|
62
|
+
readonly options?: any;
|
|
63
|
+
readonly icon?: any;
|
|
64
|
+
readonly titleClass?: any;
|
|
65
|
+
}, {}>;
|
|
66
|
+
export default _default;
|
package/src/pc.vue.d.ts
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import type { IDropdownItemApi } from '@opentiny/vue-renderless/types/dropdown-item.type';
|
|
2
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
3
|
+
type?: any;
|
|
4
|
+
label?: any;
|
|
5
|
+
title?: any;
|
|
6
|
+
selected?: any;
|
|
7
|
+
disabled?: any;
|
|
8
|
+
tiny_mode?: any;
|
|
9
|
+
tiny_mode_root?: any;
|
|
10
|
+
tiny_template?: any;
|
|
11
|
+
tiny_renderless?: any;
|
|
12
|
+
_constants?: any;
|
|
13
|
+
tiny_theme?: any;
|
|
14
|
+
tiny_chart_theme?: any;
|
|
15
|
+
multiStage?: any;
|
|
16
|
+
options?: any;
|
|
17
|
+
textField?: any;
|
|
18
|
+
icon?: any;
|
|
19
|
+
divided?: any;
|
|
20
|
+
itemData?: any;
|
|
21
|
+
titleClass?: any;
|
|
22
|
+
selectedField?: any;
|
|
23
|
+
currentIndex?: any;
|
|
24
|
+
appendToBody?: any;
|
|
25
|
+
tip?: any;
|
|
26
|
+
tipPosition?: any;
|
|
27
|
+
}>, IDropdownItemApi, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("confirm" | "change" | "item-click" | "update:modelValue" | "close" | "reset" | "open" | "closed" | "opened")[], "confirm" | "change" | "item-click" | "update:modelValue" | "close" | "reset" | "open" | "closed" | "opened", import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
28
|
+
type?: any;
|
|
29
|
+
label?: any;
|
|
30
|
+
title?: any;
|
|
31
|
+
selected?: any;
|
|
32
|
+
disabled?: any;
|
|
33
|
+
tiny_mode?: any;
|
|
34
|
+
tiny_mode_root?: any;
|
|
35
|
+
tiny_template?: any;
|
|
36
|
+
tiny_renderless?: any;
|
|
37
|
+
_constants?: any;
|
|
38
|
+
tiny_theme?: any;
|
|
39
|
+
tiny_chart_theme?: any;
|
|
40
|
+
multiStage?: any;
|
|
41
|
+
options?: any;
|
|
42
|
+
textField?: any;
|
|
43
|
+
icon?: any;
|
|
44
|
+
divided?: any;
|
|
45
|
+
itemData?: any;
|
|
46
|
+
titleClass?: any;
|
|
47
|
+
selectedField?: any;
|
|
48
|
+
currentIndex?: any;
|
|
49
|
+
appendToBody?: any;
|
|
50
|
+
tip?: any;
|
|
51
|
+
tipPosition?: any;
|
|
52
|
+
}>>> & {
|
|
53
|
+
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
54
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
55
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
56
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
57
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
58
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
59
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
60
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
61
|
+
onOpened?: ((...args: any[]) => any) | undefined;
|
|
62
|
+
}, {
|
|
63
|
+
readonly type?: any;
|
|
64
|
+
readonly label?: any;
|
|
65
|
+
readonly title?: any;
|
|
66
|
+
readonly selected?: any;
|
|
67
|
+
readonly disabled?: any;
|
|
68
|
+
readonly tiny_mode?: any;
|
|
69
|
+
readonly tiny_mode_root?: any;
|
|
70
|
+
readonly tiny_template?: any;
|
|
71
|
+
readonly tiny_renderless?: any;
|
|
72
|
+
readonly _constants?: any;
|
|
73
|
+
readonly tiny_theme?: any;
|
|
74
|
+
readonly tiny_chart_theme?: any;
|
|
75
|
+
readonly multiStage?: any;
|
|
76
|
+
readonly options?: any;
|
|
77
|
+
readonly textField?: any;
|
|
78
|
+
readonly icon?: any;
|
|
79
|
+
readonly divided?: any;
|
|
80
|
+
readonly itemData?: any;
|
|
81
|
+
readonly titleClass?: any;
|
|
82
|
+
readonly selectedField?: any;
|
|
83
|
+
readonly currentIndex?: any;
|
|
84
|
+
readonly appendToBody?: any;
|
|
85
|
+
readonly tip?: any;
|
|
86
|
+
readonly tipPosition?: any;
|
|
87
|
+
}, {}>;
|
|
88
|
+
export default _default;
|