@opentinyvue/vue-cascader 2.21.0 → 3.21.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/lib/index.js +1 -1
- package/lib/mobile-first.js +291 -334
- package/lib/pc.js +317 -335
- package/package.json +12 -12
- package/src/index.d.ts +208 -1
- package/src/mobile-first.vue.d.ts +168 -1
- package/src/pc-first.vue.d.ts +128 -1
- package/src/pc.vue.d.ts +131 -1
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-cascader",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.21.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opentinyvue/vue-cascader-mobile": "~
|
|
12
|
-
"@opentinyvue/vue-cascader-panel": "~
|
|
13
|
-
"@opentinyvue/vue-common": "~
|
|
14
|
-
"@opentinyvue/vue-directive": "~
|
|
15
|
-
"@opentinyvue/vue-filter-box": "~
|
|
16
|
-
"@opentinyvue/vue-icon": "~
|
|
17
|
-
"@opentinyvue/vue-input": "~
|
|
18
|
-
"@opentinyvue/vue-locale": "~
|
|
11
|
+
"@opentinyvue/vue-cascader-mobile": "~3.21.0",
|
|
12
|
+
"@opentinyvue/vue-cascader-panel": "~3.21.0",
|
|
13
|
+
"@opentinyvue/vue-common": "~3.21.0",
|
|
14
|
+
"@opentinyvue/vue-directive": "~3.21.0",
|
|
15
|
+
"@opentinyvue/vue-filter-box": "~3.21.0",
|
|
16
|
+
"@opentinyvue/vue-icon": "~3.21.0",
|
|
17
|
+
"@opentinyvue/vue-input": "~3.21.0",
|
|
18
|
+
"@opentinyvue/vue-locale": "~3.21.0",
|
|
19
19
|
"@opentinyvue/vue-renderless": "~3.21.0",
|
|
20
|
-
"@opentinyvue/vue-scrollbar": "~
|
|
21
|
-
"@opentinyvue/vue-tag": "~
|
|
20
|
+
"@opentinyvue/vue-scrollbar": "~3.21.0",
|
|
21
|
+
"@opentinyvue/vue-tag": "~3.21.0",
|
|
22
22
|
"@opentinyvue/vue-theme": "~3.21.0",
|
|
23
|
-
"@opentinyvue/vue-tooltip": "~
|
|
23
|
+
"@opentinyvue/vue-tooltip": "~3.21.0"
|
|
24
24
|
},
|
|
25
25
|
"types": "index.d.ts",
|
|
26
26
|
"scripts": {
|
package/src/index.d.ts
CHANGED
|
@@ -92,5 +92,212 @@ export declare const cascaderProps: {
|
|
|
92
92
|
tiny_theme: StringConstructor;
|
|
93
93
|
tiny_chart_theme: ObjectConstructor;
|
|
94
94
|
};
|
|
95
|
-
declare const _default:
|
|
95
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
96
|
+
_constants: {
|
|
97
|
+
type: ObjectConstructor;
|
|
98
|
+
default: () => {
|
|
99
|
+
placeholder: string;
|
|
100
|
+
COMPONENT_NAME: {
|
|
101
|
+
FormItem: string;
|
|
102
|
+
};
|
|
103
|
+
EVENT_NAME: {
|
|
104
|
+
FormBlur: string;
|
|
105
|
+
FormChange: string;
|
|
106
|
+
};
|
|
107
|
+
defaultNodeConfig: {
|
|
108
|
+
lazy: boolean;
|
|
109
|
+
load: null;
|
|
110
|
+
isLeaf: string;
|
|
111
|
+
afterLoad: null;
|
|
112
|
+
currentNodeKey: null;
|
|
113
|
+
checkStrictly: boolean;
|
|
114
|
+
checkDescendants: null;
|
|
115
|
+
defaultCheckedKeys: null;
|
|
116
|
+
defaultExpandedKeys: null;
|
|
117
|
+
autoExpandParent: null;
|
|
118
|
+
defaultExpandAll: null;
|
|
119
|
+
filterNodeMethod: null;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
autoSize: BooleanConstructor;
|
|
124
|
+
beforeFilter: {
|
|
125
|
+
type: FunctionConstructor;
|
|
126
|
+
default: () => () => void;
|
|
127
|
+
};
|
|
128
|
+
clearable: BooleanConstructor;
|
|
129
|
+
collapseTags: BooleanConstructor;
|
|
130
|
+
debounce: {
|
|
131
|
+
type: NumberConstructor;
|
|
132
|
+
default: number;
|
|
133
|
+
};
|
|
134
|
+
disabled: BooleanConstructor;
|
|
135
|
+
filterMethod: FunctionConstructor;
|
|
136
|
+
filterable: BooleanConstructor;
|
|
137
|
+
modelValue: {};
|
|
138
|
+
options: ArrayConstructor;
|
|
139
|
+
placeholder: {
|
|
140
|
+
type: StringConstructor;
|
|
141
|
+
default: any;
|
|
142
|
+
};
|
|
143
|
+
popperAppendToBody: {
|
|
144
|
+
type: BooleanConstructor;
|
|
145
|
+
default: boolean;
|
|
146
|
+
};
|
|
147
|
+
popperClass: StringConstructor;
|
|
148
|
+
props: {
|
|
149
|
+
type: ObjectConstructor;
|
|
150
|
+
default: () => {};
|
|
151
|
+
};
|
|
152
|
+
separator: {
|
|
153
|
+
type: StringConstructor;
|
|
154
|
+
default: string;
|
|
155
|
+
};
|
|
156
|
+
showAllLevels: {
|
|
157
|
+
type: BooleanConstructor;
|
|
158
|
+
default: boolean;
|
|
159
|
+
};
|
|
160
|
+
size: StringConstructor;
|
|
161
|
+
shape: StringConstructor;
|
|
162
|
+
label: StringConstructor;
|
|
163
|
+
tip: StringConstructor;
|
|
164
|
+
displayOnly: {
|
|
165
|
+
type: BooleanConstructor;
|
|
166
|
+
default: boolean;
|
|
167
|
+
};
|
|
168
|
+
hoverExpand: {
|
|
169
|
+
type: BooleanConstructor;
|
|
170
|
+
default: boolean;
|
|
171
|
+
};
|
|
172
|
+
title: StringConstructor;
|
|
173
|
+
showHeader: {
|
|
174
|
+
type: BooleanConstructor;
|
|
175
|
+
default: boolean;
|
|
176
|
+
};
|
|
177
|
+
levelTitle: ArrayConstructor;
|
|
178
|
+
blank: {
|
|
179
|
+
type: BooleanConstructor;
|
|
180
|
+
default: boolean;
|
|
181
|
+
};
|
|
182
|
+
tiny_mode: StringConstructor;
|
|
183
|
+
tiny_mode_root: BooleanConstructor;
|
|
184
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
185
|
+
tiny_renderless: FunctionConstructor;
|
|
186
|
+
tiny_theme: StringConstructor;
|
|
187
|
+
tiny_chart_theme: ObjectConstructor;
|
|
188
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
189
|
+
[key: string]: any;
|
|
190
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
191
|
+
_constants: {
|
|
192
|
+
type: ObjectConstructor;
|
|
193
|
+
default: () => {
|
|
194
|
+
placeholder: string;
|
|
195
|
+
COMPONENT_NAME: {
|
|
196
|
+
FormItem: string;
|
|
197
|
+
};
|
|
198
|
+
EVENT_NAME: {
|
|
199
|
+
FormBlur: string;
|
|
200
|
+
FormChange: string;
|
|
201
|
+
};
|
|
202
|
+
defaultNodeConfig: {
|
|
203
|
+
lazy: boolean;
|
|
204
|
+
load: null;
|
|
205
|
+
isLeaf: string;
|
|
206
|
+
afterLoad: null;
|
|
207
|
+
currentNodeKey: null;
|
|
208
|
+
checkStrictly: boolean;
|
|
209
|
+
checkDescendants: null;
|
|
210
|
+
defaultCheckedKeys: null;
|
|
211
|
+
defaultExpandedKeys: null;
|
|
212
|
+
autoExpandParent: null;
|
|
213
|
+
defaultExpandAll: null;
|
|
214
|
+
filterNodeMethod: null;
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
autoSize: BooleanConstructor;
|
|
219
|
+
beforeFilter: {
|
|
220
|
+
type: FunctionConstructor;
|
|
221
|
+
default: () => () => void;
|
|
222
|
+
};
|
|
223
|
+
clearable: BooleanConstructor;
|
|
224
|
+
collapseTags: BooleanConstructor;
|
|
225
|
+
debounce: {
|
|
226
|
+
type: NumberConstructor;
|
|
227
|
+
default: number;
|
|
228
|
+
};
|
|
229
|
+
disabled: BooleanConstructor;
|
|
230
|
+
filterMethod: FunctionConstructor;
|
|
231
|
+
filterable: BooleanConstructor;
|
|
232
|
+
modelValue: {};
|
|
233
|
+
options: ArrayConstructor;
|
|
234
|
+
placeholder: {
|
|
235
|
+
type: StringConstructor;
|
|
236
|
+
default: any;
|
|
237
|
+
};
|
|
238
|
+
popperAppendToBody: {
|
|
239
|
+
type: BooleanConstructor;
|
|
240
|
+
default: boolean;
|
|
241
|
+
};
|
|
242
|
+
popperClass: StringConstructor;
|
|
243
|
+
props: {
|
|
244
|
+
type: ObjectConstructor;
|
|
245
|
+
default: () => {};
|
|
246
|
+
};
|
|
247
|
+
separator: {
|
|
248
|
+
type: StringConstructor;
|
|
249
|
+
default: string;
|
|
250
|
+
};
|
|
251
|
+
showAllLevels: {
|
|
252
|
+
type: BooleanConstructor;
|
|
253
|
+
default: boolean;
|
|
254
|
+
};
|
|
255
|
+
size: StringConstructor;
|
|
256
|
+
shape: StringConstructor;
|
|
257
|
+
label: StringConstructor;
|
|
258
|
+
tip: StringConstructor;
|
|
259
|
+
displayOnly: {
|
|
260
|
+
type: BooleanConstructor;
|
|
261
|
+
default: boolean;
|
|
262
|
+
};
|
|
263
|
+
hoverExpand: {
|
|
264
|
+
type: BooleanConstructor;
|
|
265
|
+
default: boolean;
|
|
266
|
+
};
|
|
267
|
+
title: StringConstructor;
|
|
268
|
+
showHeader: {
|
|
269
|
+
type: BooleanConstructor;
|
|
270
|
+
default: boolean;
|
|
271
|
+
};
|
|
272
|
+
levelTitle: ArrayConstructor;
|
|
273
|
+
blank: {
|
|
274
|
+
type: BooleanConstructor;
|
|
275
|
+
default: boolean;
|
|
276
|
+
};
|
|
277
|
+
tiny_mode: StringConstructor;
|
|
278
|
+
tiny_mode_root: BooleanConstructor;
|
|
279
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
280
|
+
tiny_renderless: FunctionConstructor;
|
|
281
|
+
tiny_theme: StringConstructor;
|
|
282
|
+
tiny_chart_theme: ObjectConstructor;
|
|
283
|
+
}>>, {
|
|
284
|
+
props: Record<string, any>;
|
|
285
|
+
disabled: boolean;
|
|
286
|
+
tiny_mode_root: boolean;
|
|
287
|
+
_constants: Record<string, any>;
|
|
288
|
+
popperAppendToBody: boolean;
|
|
289
|
+
showHeader: boolean;
|
|
290
|
+
hoverExpand: boolean;
|
|
291
|
+
clearable: boolean;
|
|
292
|
+
displayOnly: boolean;
|
|
293
|
+
placeholder: string;
|
|
294
|
+
blank: boolean;
|
|
295
|
+
filterable: boolean;
|
|
296
|
+
collapseTags: boolean;
|
|
297
|
+
debounce: number;
|
|
298
|
+
separator: string;
|
|
299
|
+
showAllLevels: boolean;
|
|
300
|
+
beforeFilter: Function;
|
|
301
|
+
autoSize: boolean;
|
|
302
|
+
}, {}>;
|
|
96
303
|
export default _default;
|
|
@@ -1,2 +1,169 @@
|
|
|
1
|
-
|
|
1
|
+
import { hooks } from '@opentinyvue/vue-common';
|
|
2
|
+
declare const _default: hooks.DefineComponent<Readonly<{
|
|
3
|
+
props?: any;
|
|
4
|
+
label?: any;
|
|
5
|
+
disabled?: any;
|
|
6
|
+
title?: any;
|
|
7
|
+
size?: 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
|
+
modelValue?: any;
|
|
16
|
+
visibleArrow?: any;
|
|
17
|
+
arrowOffset?: any;
|
|
18
|
+
placement?: any;
|
|
19
|
+
popperClass?: any;
|
|
20
|
+
popperAppendToBody?: any;
|
|
21
|
+
options?: any;
|
|
22
|
+
tip?: any;
|
|
23
|
+
showHeader?: any;
|
|
24
|
+
offset?: any;
|
|
25
|
+
boundariesPadding?: any;
|
|
26
|
+
popperOptions?: any;
|
|
27
|
+
hoverExpand?: any;
|
|
28
|
+
clearable?: any;
|
|
29
|
+
displayOnly?: any;
|
|
30
|
+
placeholder?: any;
|
|
31
|
+
shape?: any;
|
|
32
|
+
filterable?: any;
|
|
33
|
+
collapseTags?: any;
|
|
34
|
+
filterMethod?: any;
|
|
35
|
+
debounce?: any;
|
|
36
|
+
separator?: any;
|
|
37
|
+
showAllLevels?: any;
|
|
38
|
+
beforeFilter?: any;
|
|
39
|
+
autoSize?: any;
|
|
40
|
+
levelTitle?: any;
|
|
41
|
+
}>, {
|
|
42
|
+
bp: hooks.Ref<string>;
|
|
43
|
+
visible: hooks.Ref<boolean>;
|
|
44
|
+
showText: hooks.Ref<string>;
|
|
45
|
+
computedMobileProp: hooks.ComputedRef<{
|
|
46
|
+
_constants: any;
|
|
47
|
+
data: any;
|
|
48
|
+
ellipsis: any;
|
|
49
|
+
placeholder: any;
|
|
50
|
+
title: any;
|
|
51
|
+
valueField: any;
|
|
52
|
+
textField: any;
|
|
53
|
+
textField2: any;
|
|
54
|
+
textField3: any;
|
|
55
|
+
childrenField: any;
|
|
56
|
+
textSplit: any;
|
|
57
|
+
showHeader: any;
|
|
58
|
+
multiple: boolean;
|
|
59
|
+
searchConfig: {
|
|
60
|
+
filterable: any;
|
|
61
|
+
filterMethod: any;
|
|
62
|
+
};
|
|
63
|
+
nodeConfig: {
|
|
64
|
+
lazy: any;
|
|
65
|
+
load: any;
|
|
66
|
+
isLeaf: any;
|
|
67
|
+
checkStrictly: any;
|
|
68
|
+
afterLoad: any;
|
|
69
|
+
currentNodeKey: any;
|
|
70
|
+
checkDescendants: any;
|
|
71
|
+
defaultCheckedKeys: any;
|
|
72
|
+
defaultExpandedKeys: any;
|
|
73
|
+
autoExpandParent: any;
|
|
74
|
+
defaultExpandAll: any;
|
|
75
|
+
filterNodeMethod: any;
|
|
76
|
+
};
|
|
77
|
+
}>;
|
|
78
|
+
updateValue: (value: any) => void;
|
|
79
|
+
updateText: (value: any) => void;
|
|
80
|
+
}, unknown, {}, {}, hooks.ComponentOptionsMixin, hooks.ComponentOptionsMixin, ("visible-change" | "blur" | "change" | "focus" | "update:modelValue" | "created" | "remove-tag" | "expand-change" | "active-item-change")[], "visible-change" | "blur" | "change" | "focus" | "update:modelValue" | "created" | "remove-tag" | "expand-change" | "active-item-change", hooks.PublicProps, Readonly<hooks.ExtractPropTypes<Readonly<{
|
|
81
|
+
props?: any;
|
|
82
|
+
label?: any;
|
|
83
|
+
disabled?: any;
|
|
84
|
+
title?: any;
|
|
85
|
+
size?: any;
|
|
86
|
+
tiny_mode?: any;
|
|
87
|
+
tiny_mode_root?: any;
|
|
88
|
+
tiny_template?: any;
|
|
89
|
+
tiny_renderless?: any;
|
|
90
|
+
_constants?: any;
|
|
91
|
+
tiny_theme?: any;
|
|
92
|
+
tiny_chart_theme?: any;
|
|
93
|
+
modelValue?: any;
|
|
94
|
+
visibleArrow?: any;
|
|
95
|
+
arrowOffset?: any;
|
|
96
|
+
placement?: any;
|
|
97
|
+
popperClass?: any;
|
|
98
|
+
popperAppendToBody?: any;
|
|
99
|
+
options?: any;
|
|
100
|
+
tip?: any;
|
|
101
|
+
showHeader?: any;
|
|
102
|
+
offset?: any;
|
|
103
|
+
boundariesPadding?: any;
|
|
104
|
+
popperOptions?: any;
|
|
105
|
+
hoverExpand?: any;
|
|
106
|
+
clearable?: any;
|
|
107
|
+
displayOnly?: any;
|
|
108
|
+
placeholder?: any;
|
|
109
|
+
shape?: any;
|
|
110
|
+
filterable?: any;
|
|
111
|
+
collapseTags?: any;
|
|
112
|
+
filterMethod?: any;
|
|
113
|
+
debounce?: any;
|
|
114
|
+
separator?: any;
|
|
115
|
+
showAllLevels?: any;
|
|
116
|
+
beforeFilter?: any;
|
|
117
|
+
autoSize?: any;
|
|
118
|
+
levelTitle?: any;
|
|
119
|
+
}>>> & {
|
|
120
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
121
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
122
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
123
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
124
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
125
|
+
onCreated?: ((...args: any[]) => any) | undefined;
|
|
126
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
127
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
128
|
+
"onActive-item-change"?: ((...args: any[]) => any) | undefined;
|
|
129
|
+
}, {
|
|
130
|
+
readonly props?: any;
|
|
131
|
+
readonly label?: any;
|
|
132
|
+
readonly disabled?: any;
|
|
133
|
+
readonly title?: any;
|
|
134
|
+
readonly size?: any;
|
|
135
|
+
readonly tiny_mode?: any;
|
|
136
|
+
readonly tiny_mode_root?: any;
|
|
137
|
+
readonly tiny_template?: any;
|
|
138
|
+
readonly tiny_renderless?: any;
|
|
139
|
+
readonly _constants?: any;
|
|
140
|
+
readonly tiny_theme?: any;
|
|
141
|
+
readonly tiny_chart_theme?: any;
|
|
142
|
+
readonly modelValue?: any;
|
|
143
|
+
readonly visibleArrow?: any;
|
|
144
|
+
readonly arrowOffset?: any;
|
|
145
|
+
readonly placement?: any;
|
|
146
|
+
readonly popperClass?: any;
|
|
147
|
+
readonly popperAppendToBody?: any;
|
|
148
|
+
readonly options?: any;
|
|
149
|
+
readonly tip?: any;
|
|
150
|
+
readonly showHeader?: any;
|
|
151
|
+
readonly offset?: any;
|
|
152
|
+
readonly boundariesPadding?: any;
|
|
153
|
+
readonly popperOptions?: any;
|
|
154
|
+
readonly hoverExpand?: any;
|
|
155
|
+
readonly clearable?: any;
|
|
156
|
+
readonly displayOnly?: any;
|
|
157
|
+
readonly placeholder?: any;
|
|
158
|
+
readonly shape?: any;
|
|
159
|
+
readonly filterable?: any;
|
|
160
|
+
readonly collapseTags?: any;
|
|
161
|
+
readonly filterMethod?: any;
|
|
162
|
+
readonly debounce?: any;
|
|
163
|
+
readonly separator?: any;
|
|
164
|
+
readonly showAllLevels?: any;
|
|
165
|
+
readonly beforeFilter?: any;
|
|
166
|
+
readonly autoSize?: any;
|
|
167
|
+
readonly levelTitle?: any;
|
|
168
|
+
}, {}>;
|
|
2
169
|
export default _default;
|
package/src/pc-first.vue.d.ts
CHANGED
|
@@ -1,2 +1,129 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
props?: any;
|
|
3
|
+
label?: any;
|
|
4
|
+
disabled?: any;
|
|
5
|
+
size?: any;
|
|
6
|
+
tiny_mode?: any;
|
|
7
|
+
tiny_mode_root?: any;
|
|
8
|
+
tiny_template?: any;
|
|
9
|
+
tiny_renderless?: any;
|
|
10
|
+
_constants?: any;
|
|
11
|
+
tiny_theme?: any;
|
|
12
|
+
tiny_chart_theme?: any;
|
|
13
|
+
modelValue?: any;
|
|
14
|
+
visibleArrow?: any;
|
|
15
|
+
arrowOffset?: any;
|
|
16
|
+
placement?: any;
|
|
17
|
+
popperClass?: any;
|
|
18
|
+
popperAppendToBody?: any;
|
|
19
|
+
options?: any;
|
|
20
|
+
tip?: any;
|
|
21
|
+
offset?: any;
|
|
22
|
+
boundariesPadding?: any;
|
|
23
|
+
popperOptions?: any;
|
|
24
|
+
hoverExpand?: any;
|
|
25
|
+
clearable?: any;
|
|
26
|
+
displayOnly?: any;
|
|
27
|
+
placeholder?: any;
|
|
28
|
+
shape?: any;
|
|
29
|
+
filterable?: any;
|
|
30
|
+
collapseTags?: any;
|
|
31
|
+
filterMethod?: any;
|
|
32
|
+
debounce?: any;
|
|
33
|
+
separator?: any;
|
|
34
|
+
showAllLevels?: any;
|
|
35
|
+
beforeFilter?: any;
|
|
36
|
+
autoSize?: any;
|
|
37
|
+
}>, {
|
|
38
|
+
t: (this: any, path: any, options?: any) => any;
|
|
39
|
+
vm: any;
|
|
40
|
+
f: (props: any, attrs?: {}) => {};
|
|
41
|
+
a: (attrs: any, filters: any, include: any) => {};
|
|
42
|
+
d: (props: any) => void;
|
|
43
|
+
dp: (props: any) => void;
|
|
44
|
+
gcls: (key: any) => any;
|
|
45
|
+
m: (...cssClasses: any[]) => string;
|
|
46
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible-change" | "blur" | "change" | "focus" | "update:modelValue" | "created" | "remove-tag" | "expand-change" | "active-item-change")[], "visible-change" | "blur" | "change" | "focus" | "update:modelValue" | "created" | "remove-tag" | "expand-change" | "active-item-change", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
47
|
+
props?: any;
|
|
48
|
+
label?: any;
|
|
49
|
+
disabled?: any;
|
|
50
|
+
size?: any;
|
|
51
|
+
tiny_mode?: any;
|
|
52
|
+
tiny_mode_root?: any;
|
|
53
|
+
tiny_template?: any;
|
|
54
|
+
tiny_renderless?: any;
|
|
55
|
+
_constants?: any;
|
|
56
|
+
tiny_theme?: any;
|
|
57
|
+
tiny_chart_theme?: any;
|
|
58
|
+
modelValue?: any;
|
|
59
|
+
visibleArrow?: any;
|
|
60
|
+
arrowOffset?: any;
|
|
61
|
+
placement?: any;
|
|
62
|
+
popperClass?: any;
|
|
63
|
+
popperAppendToBody?: any;
|
|
64
|
+
options?: any;
|
|
65
|
+
tip?: any;
|
|
66
|
+
offset?: any;
|
|
67
|
+
boundariesPadding?: any;
|
|
68
|
+
popperOptions?: any;
|
|
69
|
+
hoverExpand?: any;
|
|
70
|
+
clearable?: any;
|
|
71
|
+
displayOnly?: any;
|
|
72
|
+
placeholder?: any;
|
|
73
|
+
shape?: any;
|
|
74
|
+
filterable?: any;
|
|
75
|
+
collapseTags?: any;
|
|
76
|
+
filterMethod?: any;
|
|
77
|
+
debounce?: any;
|
|
78
|
+
separator?: any;
|
|
79
|
+
showAllLevels?: any;
|
|
80
|
+
beforeFilter?: any;
|
|
81
|
+
autoSize?: any;
|
|
82
|
+
}>>> & {
|
|
83
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
84
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
85
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
86
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
87
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
onCreated?: ((...args: any[]) => any) | undefined;
|
|
89
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
90
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
"onActive-item-change"?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
}, {
|
|
93
|
+
readonly props?: any;
|
|
94
|
+
readonly label?: any;
|
|
95
|
+
readonly disabled?: any;
|
|
96
|
+
readonly size?: any;
|
|
97
|
+
readonly tiny_mode?: any;
|
|
98
|
+
readonly tiny_mode_root?: any;
|
|
99
|
+
readonly tiny_template?: any;
|
|
100
|
+
readonly tiny_renderless?: any;
|
|
101
|
+
readonly _constants?: any;
|
|
102
|
+
readonly tiny_theme?: any;
|
|
103
|
+
readonly tiny_chart_theme?: any;
|
|
104
|
+
readonly modelValue?: any;
|
|
105
|
+
readonly visibleArrow?: any;
|
|
106
|
+
readonly arrowOffset?: any;
|
|
107
|
+
readonly placement?: any;
|
|
108
|
+
readonly popperClass?: any;
|
|
109
|
+
readonly popperAppendToBody?: any;
|
|
110
|
+
readonly options?: any;
|
|
111
|
+
readonly tip?: any;
|
|
112
|
+
readonly offset?: any;
|
|
113
|
+
readonly boundariesPadding?: any;
|
|
114
|
+
readonly popperOptions?: any;
|
|
115
|
+
readonly hoverExpand?: any;
|
|
116
|
+
readonly clearable?: any;
|
|
117
|
+
readonly displayOnly?: any;
|
|
118
|
+
readonly placeholder?: any;
|
|
119
|
+
readonly shape?: any;
|
|
120
|
+
readonly filterable?: any;
|
|
121
|
+
readonly collapseTags?: any;
|
|
122
|
+
readonly filterMethod?: any;
|
|
123
|
+
readonly debounce?: any;
|
|
124
|
+
readonly separator?: any;
|
|
125
|
+
readonly showAllLevels?: any;
|
|
126
|
+
readonly beforeFilter?: any;
|
|
127
|
+
readonly autoSize?: any;
|
|
128
|
+
}, {}>;
|
|
2
129
|
export default _default;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,2 +1,132 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
props?: any;
|
|
3
|
+
label?: any;
|
|
4
|
+
disabled?: any;
|
|
5
|
+
size?: any;
|
|
6
|
+
tiny_mode?: any;
|
|
7
|
+
tiny_mode_root?: any;
|
|
8
|
+
tiny_template?: any;
|
|
9
|
+
tiny_renderless?: any;
|
|
10
|
+
_constants?: any;
|
|
11
|
+
tiny_theme?: any;
|
|
12
|
+
tiny_chart_theme?: any;
|
|
13
|
+
modelValue?: any;
|
|
14
|
+
visibleArrow?: any;
|
|
15
|
+
arrowOffset?: any;
|
|
16
|
+
placement?: any;
|
|
17
|
+
popperClass?: any;
|
|
18
|
+
popperAppendToBody?: any;
|
|
19
|
+
options?: any;
|
|
20
|
+
tip?: any;
|
|
21
|
+
offset?: any;
|
|
22
|
+
boundariesPadding?: any;
|
|
23
|
+
popperOptions?: any;
|
|
24
|
+
hoverExpand?: any;
|
|
25
|
+
clearable?: any;
|
|
26
|
+
displayOnly?: any;
|
|
27
|
+
placeholder?: any;
|
|
28
|
+
shape?: any;
|
|
29
|
+
blank?: any;
|
|
30
|
+
filterable?: any;
|
|
31
|
+
collapseTags?: any;
|
|
32
|
+
filterMethod?: any;
|
|
33
|
+
debounce?: any;
|
|
34
|
+
separator?: any;
|
|
35
|
+
showAllLevels?: any;
|
|
36
|
+
beforeFilter?: any;
|
|
37
|
+
autoSize?: any;
|
|
38
|
+
}>, {
|
|
39
|
+
t: (this: any, path: any, options?: any) => any;
|
|
40
|
+
vm: any;
|
|
41
|
+
f: (props: any, attrs?: {}) => {};
|
|
42
|
+
a: (attrs: any, filters: any, include: any) => {};
|
|
43
|
+
d: (props: any) => void;
|
|
44
|
+
dp: (props: any) => void;
|
|
45
|
+
gcls: (key: any) => any;
|
|
46
|
+
m: (...cssClasses: any[]) => string;
|
|
47
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible-change" | "blur" | "change" | "focus" | "update:modelValue" | "created" | "remove-tag" | "expand-change" | "active-item-change")[], "visible-change" | "blur" | "change" | "focus" | "update:modelValue" | "created" | "remove-tag" | "expand-change" | "active-item-change", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
48
|
+
props?: any;
|
|
49
|
+
label?: any;
|
|
50
|
+
disabled?: any;
|
|
51
|
+
size?: any;
|
|
52
|
+
tiny_mode?: any;
|
|
53
|
+
tiny_mode_root?: any;
|
|
54
|
+
tiny_template?: any;
|
|
55
|
+
tiny_renderless?: any;
|
|
56
|
+
_constants?: any;
|
|
57
|
+
tiny_theme?: any;
|
|
58
|
+
tiny_chart_theme?: any;
|
|
59
|
+
modelValue?: any;
|
|
60
|
+
visibleArrow?: any;
|
|
61
|
+
arrowOffset?: any;
|
|
62
|
+
placement?: any;
|
|
63
|
+
popperClass?: any;
|
|
64
|
+
popperAppendToBody?: any;
|
|
65
|
+
options?: any;
|
|
66
|
+
tip?: any;
|
|
67
|
+
offset?: any;
|
|
68
|
+
boundariesPadding?: any;
|
|
69
|
+
popperOptions?: any;
|
|
70
|
+
hoverExpand?: any;
|
|
71
|
+
clearable?: any;
|
|
72
|
+
displayOnly?: any;
|
|
73
|
+
placeholder?: any;
|
|
74
|
+
shape?: any;
|
|
75
|
+
blank?: any;
|
|
76
|
+
filterable?: any;
|
|
77
|
+
collapseTags?: any;
|
|
78
|
+
filterMethod?: any;
|
|
79
|
+
debounce?: any;
|
|
80
|
+
separator?: any;
|
|
81
|
+
showAllLevels?: any;
|
|
82
|
+
beforeFilter?: any;
|
|
83
|
+
autoSize?: any;
|
|
84
|
+
}>>> & {
|
|
85
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
86
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
87
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
89
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
90
|
+
onCreated?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
"onActive-item-change"?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
}, {
|
|
95
|
+
readonly props?: any;
|
|
96
|
+
readonly label?: any;
|
|
97
|
+
readonly disabled?: any;
|
|
98
|
+
readonly size?: any;
|
|
99
|
+
readonly tiny_mode?: any;
|
|
100
|
+
readonly tiny_mode_root?: any;
|
|
101
|
+
readonly tiny_template?: any;
|
|
102
|
+
readonly tiny_renderless?: any;
|
|
103
|
+
readonly _constants?: any;
|
|
104
|
+
readonly tiny_theme?: any;
|
|
105
|
+
readonly tiny_chart_theme?: any;
|
|
106
|
+
readonly modelValue?: any;
|
|
107
|
+
readonly visibleArrow?: any;
|
|
108
|
+
readonly arrowOffset?: any;
|
|
109
|
+
readonly placement?: any;
|
|
110
|
+
readonly popperClass?: any;
|
|
111
|
+
readonly popperAppendToBody?: any;
|
|
112
|
+
readonly options?: any;
|
|
113
|
+
readonly tip?: any;
|
|
114
|
+
readonly offset?: any;
|
|
115
|
+
readonly boundariesPadding?: any;
|
|
116
|
+
readonly popperOptions?: any;
|
|
117
|
+
readonly hoverExpand?: any;
|
|
118
|
+
readonly clearable?: any;
|
|
119
|
+
readonly displayOnly?: any;
|
|
120
|
+
readonly placeholder?: any;
|
|
121
|
+
readonly shape?: any;
|
|
122
|
+
readonly blank?: any;
|
|
123
|
+
readonly filterable?: any;
|
|
124
|
+
readonly collapseTags?: any;
|
|
125
|
+
readonly filterMethod?: any;
|
|
126
|
+
readonly debounce?: any;
|
|
127
|
+
readonly separator?: any;
|
|
128
|
+
readonly showAllLevels?: any;
|
|
129
|
+
readonly beforeFilter?: any;
|
|
130
|
+
readonly autoSize?: any;
|
|
131
|
+
}, {}>;
|
|
2
132
|
export default _default;
|