-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathindex.d.ts
306 lines (300 loc) · 7.07 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
// Type definitions originally for Vue-Multislect 2.1.0, rebuilt and tested with Vue 3 version
// Originally written by: Akshay Jat https://github.com/akki-jat
import { DefineComponent } from 'vue';
export interface MultiselectMixinProps {
/**
* Decide whether to filter the results based on search query.
* Useful for async filtering, where we search through more complex data.
* @type {Boolean}
*/
internalSearch?: boolean;
/**
* Array of available options: Objects, Strings or Integers.
* If array of objects, visible label will default to option.label.
* If `labal` prop is passed, label will equal option['label']
* @type {Array}
*/
options: Array<string | number> | Array<any>;
/**
* Equivalent to the `multiple` attribute on a `<select>` input.
* @default false
* @type {Boolean}
*/
multiple?: boolean;
/**
* Key to compare objects
* @default 'id'
* @type {String}
*/
trackBy?: string;
/**
* Label to look for in option Object
* @default 'label'
* @type {String}
*/
label?: string;
/**
* Enable/disable search in options
* @default true
* @type {Boolean}
*/
searchable?: boolean;
/**
* Clear the search input after `)
* @default true
* @type {Boolean}
*/
clearOnSelect?: boolean;
/**
* Hide already selected options
* @default false
* @type {Boolean}
*/
hideSelected?: boolean;
/**
* Equivalent to the `placeholder` attribute on a `<select>` input.
* @default 'Select option'
* @type {String}
*/
placeholder?: string;
/**
* Allow to remove all selected values
* @default true
* @type {Boolean}
*/
allowEmpty?: boolean;
/**
* Reset this.internalValue, this.search after this.internalValue changes.
* Useful if want to create a stateless dropdown.
* @default false
* @type {Boolean}
*/
resetAfter?: boolean;
/**
* Enable/disable closing after selecting an option
* @default true
* @type {Boolean}
*/
closeOnSelect?: boolean;
/**
* Function to interpolate the custom label
* @default false
* @type {Function}
*/
customLabel?: (option: any, label: any) => string;
/**
* Disable / Enable tagging
* @default false
* @type {Boolean}
*/
taggable?: boolean;
/**
* String to show when highlighting a potential tag
* @default 'Press enter to create a tag'
* @type {String}
*/
tagPlaceholder?: string;
/**
* By default new tags will appear above the search results.
* Changing to 'bottom' will revert this behaviour
* and will proritize the search results
* @default 'top'
* @type {String}
*/
tagPosition?: string;
/**
* Number of allowed selected options. No limit if 0.
* @default 0
* @type {Number}
*/
max?: number | boolean;
/**
* Will be passed with all events as second param.
* Useful for identifying events origin.
* @default null
* @type {String|Integer}
*/
id?: string | number | null;
/**
* Limits the options displayed in the dropdown
* to the first X options.
* @default 1000
* @type {Integer}
*/
optionsLimit?: number;
/**
* Name of the property containing
* the group values
* @default 1000
* @type {String}
*/
groupValues?: string;
/**
* Name of the property containing
* the group label
* @default 1000
* @type {String}
*/
groupLabel?: string;
/**
* Allow to select all group values
* by selecting the group label
* @default false
* @type {Boolean}
*/
groupSelect?: boolean;
/**
* Array of keyboard keys to block
* when selecting
* @default 1000
* @type {String}
*/
blockKeys?: string[];
/**
* Prevent from wiping up the search value
* @default false
* @type {Boolean}
*/
preserveSearch?: boolean;
/**
* Select 1st options if value is empty
* @default false
* @type {Boolean}
*/
preselectFirst?: boolean;
/**
* Prevent autofocus
* @default false
* @type {Boolean}
*/
preventAutofocus?: boolean;
/**
* Allows a custom function for sorting search/filtered results.
* @default null
* @type {Function}
*/
filteringSortFunc?: (a: any, b: any) => number;
}
export interface PointerMixinProps {
/**
* Enable/disable highlighting of the pointed value.
* @type {Boolean}
* @default true
*/
showPointer?: boolean;
optionHeight?: number;
}
export interface ComponentProps {
/**
* name attribute to match optional label element
* @default ''
* @type {String}
*/
name?: string;
/**
* Presets the selected options value.
* @type {Object||Array||String||Integer||null}
*/
modelValue?: object | any[] | string | number | null;
/**
* String to show when pointing to an option
* @default 'Press enter to select'
* @type {String}
*/
selectLabel?: string;
/**
* String to show when pointing to an option
* @default 'Press enter to select'
* @type {String}
*/
selectGroupLabel?: string;
/**
* String to show next to selected option
* @default 'Selected'
* @type {String}
*/
selectedLabel?: string;
/**
* String to show when pointing to an already selected option
* @default 'Press enter to remove'
* @type {String}
*/
deselectLabel?: string;
/**
* String to show when pointing to an already selected option
* @default 'Press enter to remove'
* @type {String}
*/
deselectGroupLabel?: string;
/**
* Decide whether to show pointer labels
* @default true
* @type {Boolean}
*/
showLabels?: boolean;
/**
* Limit the display of selected options. The rest will be hidden within the limitText string.
* @default 99999
* @type {Integer}
*/
limit?: number;
/**
* Sets maxHeight style value of the dropdown
* @default 300
* @type {Integer}
*/
maxHeight?: number;
/**
* Function that process the message shown when selected
* elements pass the defined limit.
* @default 'and * more'
* @param {Int} count Number of elements more than limit
* @type {Function}
*/
limitText?: (count: number) => string;
/**
* Set true to trigger the loading spinner.
* @default False
* @type {Boolean}
*/
loading?: boolean;
/**
* Disables the multiselect if true.
* @default false
* @type {Boolean}
*/
disabled?: boolean;
/**
* Enables search input's spellcheck if true.
* @default false
* @type {Boolean}
*/
spellcheck?: boolean;
/**
* Fixed opening direction
* @default ''
* @type {String}
*/
openDirection?: string;
/**
* Shows slot with message about empty options
* @default true
* @type {Boolean}
*/
showNoOptions?: boolean;
showNoResults?: boolean;
tabindex?: number;
required?: boolean;
}
export type MultiselectProps = ComponentProps & MultiselectMixinProps & PointerMixinProps;
export const multiselectMixin: DefineComponent<MultiselectMixinProps>;
export const pointerMixin: DefineComponent<PointerMixinProps>;
export const Multiselect: DefineComponent<
ComponentProps,
{},
{},
{},
{ activate(): void; deactivate(): void },
typeof multiselectMixin | typeof pointerMixin
>;
export default Multiselect;