@pantograph/vue 0.35.0 → 0.35.1
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/README.md +22 -3
- package/dist/index.d.ts +95 -95
- package/dist/nuxt.d.ts +95 -95
- package/dist/resolver.d.ts +95 -95
- package/dist/use/index.js +11 -10
- package/dist/use/index.umd.cjs +3 -3
- package/dist/use.d.ts +95 -95
- package/package.json +3 -3
package/dist/resolver.d.ts
CHANGED
|
@@ -32,427 +32,431 @@ declare module 'vue' {
|
|
|
32
32
|
|
|
33
33
|
declare module 'vue' {
|
|
34
34
|
interface GlobalComponents {
|
|
35
|
-
|
|
36
|
-
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
35
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
37
36
|
}
|
|
38
37
|
}
|
|
39
38
|
|
|
40
39
|
|
|
41
40
|
declare module 'vue' {
|
|
42
41
|
interface GlobalComponents {
|
|
43
|
-
|
|
42
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
44
43
|
}
|
|
45
44
|
}
|
|
46
45
|
|
|
47
46
|
|
|
48
47
|
declare module 'vue' {
|
|
49
48
|
interface GlobalComponents {
|
|
50
|
-
|
|
49
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
51
50
|
}
|
|
52
51
|
}
|
|
53
52
|
|
|
54
53
|
|
|
55
54
|
declare module 'vue' {
|
|
56
55
|
interface GlobalComponents {
|
|
57
|
-
|
|
56
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
58
57
|
}
|
|
59
58
|
}
|
|
60
59
|
|
|
61
60
|
|
|
62
61
|
declare module 'vue' {
|
|
63
62
|
interface GlobalComponents {
|
|
64
|
-
|
|
63
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
65
64
|
}
|
|
66
65
|
}
|
|
67
66
|
|
|
68
67
|
|
|
69
68
|
declare module 'vue' {
|
|
70
69
|
interface GlobalComponents {
|
|
71
|
-
|
|
72
|
-
|
|
70
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
71
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
72
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
|
|
77
|
+
/**
|
|
78
|
+
* Global component declaration for TypeScript support
|
|
79
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
80
|
+
*/
|
|
77
81
|
declare module 'vue' {
|
|
78
82
|
interface GlobalComponents {
|
|
79
|
-
|
|
83
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
84
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
80
85
|
}
|
|
81
86
|
}
|
|
82
87
|
|
|
83
88
|
|
|
84
89
|
declare module 'vue' {
|
|
85
90
|
interface GlobalComponents {
|
|
86
|
-
|
|
91
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
87
92
|
}
|
|
88
93
|
}
|
|
89
94
|
|
|
90
95
|
|
|
91
96
|
declare module 'vue' {
|
|
92
97
|
interface GlobalComponents {
|
|
93
|
-
|
|
98
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
94
99
|
}
|
|
95
100
|
}
|
|
96
101
|
|
|
97
102
|
|
|
98
103
|
declare module 'vue' {
|
|
99
104
|
interface GlobalComponents {
|
|
100
|
-
|
|
105
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
106
|
+
Th: DefineComponent<ThProps, ThSlots>;
|
|
107
|
+
Td: DefineComponent<TdProps, TdSlots>;
|
|
108
|
+
Tr: DefineComponent<TrProps>;
|
|
109
|
+
TBody: DefineComponent<TBodyProps>;
|
|
110
|
+
THead: DefineComponent<THeadProps>;
|
|
111
|
+
TFoot: DefineComponent<TFootProps>;
|
|
101
112
|
}
|
|
102
113
|
}
|
|
103
114
|
|
|
104
115
|
|
|
105
116
|
declare module 'vue' {
|
|
106
117
|
interface GlobalComponents {
|
|
107
|
-
|
|
108
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
118
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
109
119
|
}
|
|
110
120
|
}
|
|
111
121
|
|
|
112
122
|
|
|
113
123
|
declare module 'vue' {
|
|
114
124
|
interface GlobalComponents {
|
|
115
|
-
|
|
116
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
117
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
125
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
118
126
|
}
|
|
119
127
|
}
|
|
120
128
|
|
|
121
129
|
|
|
122
130
|
declare module 'vue' {
|
|
123
131
|
interface GlobalComponents {
|
|
124
|
-
|
|
132
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
125
133
|
}
|
|
126
134
|
}
|
|
127
135
|
|
|
128
136
|
|
|
129
137
|
declare module 'vue' {
|
|
130
138
|
interface GlobalComponents {
|
|
131
|
-
|
|
139
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
132
140
|
}
|
|
133
141
|
}
|
|
134
142
|
|
|
135
143
|
|
|
136
144
|
declare module 'vue' {
|
|
137
145
|
interface GlobalComponents {
|
|
138
|
-
|
|
146
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
139
147
|
}
|
|
140
148
|
}
|
|
141
149
|
|
|
142
150
|
|
|
143
151
|
declare module 'vue' {
|
|
144
152
|
interface GlobalComponents {
|
|
145
|
-
|
|
153
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
146
154
|
}
|
|
147
155
|
}
|
|
148
156
|
|
|
149
157
|
|
|
150
158
|
declare module 'vue' {
|
|
151
159
|
interface GlobalComponents {
|
|
152
|
-
|
|
160
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
153
161
|
}
|
|
154
162
|
}
|
|
155
163
|
|
|
156
164
|
|
|
157
165
|
declare module 'vue' {
|
|
158
166
|
interface GlobalComponents {
|
|
159
|
-
|
|
167
|
+
Divider: DefineComponent<DividerProps>;
|
|
160
168
|
}
|
|
161
169
|
}
|
|
162
170
|
|
|
163
171
|
|
|
164
172
|
declare module 'vue' {
|
|
165
173
|
interface GlobalComponents {
|
|
166
|
-
|
|
174
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
167
175
|
}
|
|
168
176
|
}
|
|
169
177
|
|
|
170
178
|
|
|
171
179
|
declare module 'vue' {
|
|
172
180
|
interface GlobalComponents {
|
|
173
|
-
|
|
181
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
182
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
183
|
+
ComboboxOption: DefineComponent;
|
|
174
184
|
}
|
|
175
185
|
}
|
|
176
186
|
|
|
177
187
|
|
|
178
188
|
declare module 'vue' {
|
|
179
189
|
interface GlobalComponents {
|
|
180
|
-
|
|
190
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
181
191
|
}
|
|
182
192
|
}
|
|
183
193
|
|
|
184
194
|
|
|
185
195
|
declare module 'vue' {
|
|
186
196
|
interface GlobalComponents {
|
|
187
|
-
|
|
197
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
198
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
188
199
|
}
|
|
189
200
|
}
|
|
190
201
|
|
|
191
202
|
|
|
192
203
|
declare module 'vue' {
|
|
193
204
|
interface GlobalComponents {
|
|
194
|
-
|
|
205
|
+
Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
|
|
195
206
|
}
|
|
196
207
|
}
|
|
197
208
|
|
|
198
209
|
|
|
199
210
|
declare module 'vue' {
|
|
200
211
|
interface GlobalComponents {
|
|
201
|
-
|
|
212
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
213
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
202
214
|
}
|
|
203
215
|
}
|
|
204
216
|
|
|
205
217
|
|
|
206
218
|
declare module 'vue' {
|
|
207
219
|
interface GlobalComponents {
|
|
208
|
-
|
|
220
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
209
221
|
}
|
|
210
222
|
}
|
|
211
223
|
|
|
212
224
|
|
|
213
225
|
declare module 'vue' {
|
|
214
226
|
interface GlobalComponents {
|
|
215
|
-
|
|
227
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
228
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
216
229
|
}
|
|
217
230
|
}
|
|
218
231
|
|
|
219
232
|
|
|
220
233
|
declare module 'vue' {
|
|
221
234
|
interface GlobalComponents {
|
|
222
|
-
|
|
223
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
235
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
224
236
|
}
|
|
225
237
|
}
|
|
226
238
|
|
|
227
239
|
|
|
228
240
|
declare module 'vue' {
|
|
229
241
|
interface GlobalComponents {
|
|
230
|
-
|
|
242
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
231
243
|
}
|
|
232
244
|
}
|
|
233
245
|
|
|
234
246
|
|
|
235
247
|
declare module 'vue' {
|
|
236
248
|
interface GlobalComponents {
|
|
237
|
-
|
|
238
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
249
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
239
250
|
}
|
|
240
251
|
}
|
|
241
252
|
|
|
242
253
|
|
|
243
254
|
declare module 'vue' {
|
|
244
255
|
interface GlobalComponents {
|
|
245
|
-
|
|
256
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
246
257
|
}
|
|
247
258
|
}
|
|
248
259
|
|
|
249
260
|
|
|
250
261
|
declare module 'vue' {
|
|
251
262
|
interface GlobalComponents {
|
|
252
|
-
|
|
263
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
253
264
|
}
|
|
254
265
|
}
|
|
255
266
|
|
|
256
267
|
|
|
257
|
-
/**
|
|
258
|
-
* Global component declaration for TypeScript support
|
|
259
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
260
|
-
*/
|
|
261
268
|
declare module 'vue' {
|
|
262
269
|
interface GlobalComponents {
|
|
263
|
-
|
|
264
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
270
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
265
271
|
}
|
|
266
272
|
}
|
|
267
273
|
|
|
268
274
|
|
|
269
275
|
declare module 'vue' {
|
|
270
276
|
interface GlobalComponents {
|
|
271
|
-
|
|
277
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
278
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
279
|
+
SelectLabel: DefineComponent;
|
|
272
280
|
}
|
|
273
281
|
}
|
|
274
282
|
|
|
275
283
|
|
|
276
284
|
declare module 'vue' {
|
|
277
285
|
interface GlobalComponents {
|
|
278
|
-
|
|
279
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
286
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
280
287
|
}
|
|
281
288
|
}
|
|
282
289
|
|
|
283
290
|
|
|
284
291
|
declare module 'vue' {
|
|
285
292
|
interface GlobalComponents {
|
|
286
|
-
|
|
293
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
287
294
|
}
|
|
288
295
|
}
|
|
289
296
|
|
|
290
297
|
|
|
291
298
|
declare module 'vue' {
|
|
292
299
|
interface GlobalComponents {
|
|
293
|
-
|
|
300
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
301
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
294
302
|
}
|
|
295
303
|
}
|
|
296
304
|
|
|
297
305
|
|
|
298
306
|
declare module 'vue' {
|
|
299
307
|
interface GlobalComponents {
|
|
300
|
-
|
|
301
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
302
|
-
SelectLabel: DefineComponent;
|
|
308
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
303
309
|
}
|
|
304
310
|
}
|
|
305
311
|
|
|
306
312
|
|
|
307
313
|
declare module 'vue' {
|
|
308
314
|
interface GlobalComponents {
|
|
309
|
-
|
|
315
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
310
316
|
}
|
|
311
317
|
}
|
|
312
318
|
|
|
313
319
|
|
|
314
320
|
declare module 'vue' {
|
|
315
321
|
interface GlobalComponents {
|
|
316
|
-
|
|
322
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
317
323
|
}
|
|
318
324
|
}
|
|
319
325
|
|
|
320
326
|
|
|
321
327
|
declare module 'vue' {
|
|
322
328
|
interface GlobalComponents {
|
|
323
|
-
|
|
329
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
330
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
324
331
|
}
|
|
325
332
|
}
|
|
326
333
|
|
|
327
334
|
|
|
328
335
|
declare module 'vue' {
|
|
329
336
|
interface GlobalComponents {
|
|
330
|
-
|
|
337
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
331
338
|
}
|
|
332
339
|
}
|
|
333
340
|
|
|
334
341
|
|
|
335
342
|
declare module 'vue' {
|
|
336
343
|
interface GlobalComponents {
|
|
337
|
-
|
|
344
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
338
345
|
}
|
|
339
346
|
}
|
|
340
347
|
|
|
341
348
|
|
|
342
349
|
declare module 'vue' {
|
|
343
350
|
interface GlobalComponents {
|
|
344
|
-
|
|
351
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
345
352
|
}
|
|
346
353
|
}
|
|
347
354
|
|
|
348
355
|
|
|
349
356
|
declare module 'vue' {
|
|
350
357
|
interface GlobalComponents {
|
|
351
|
-
|
|
358
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
352
359
|
}
|
|
353
360
|
}
|
|
354
361
|
|
|
355
362
|
|
|
356
363
|
declare module 'vue' {
|
|
357
364
|
interface GlobalComponents {
|
|
358
|
-
|
|
365
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
359
366
|
}
|
|
360
367
|
}
|
|
361
368
|
|
|
362
369
|
|
|
363
370
|
declare module 'vue' {
|
|
364
371
|
interface GlobalComponents {
|
|
365
|
-
|
|
372
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
366
373
|
}
|
|
367
374
|
}
|
|
368
375
|
|
|
369
376
|
|
|
370
377
|
declare module 'vue' {
|
|
371
378
|
interface GlobalComponents {
|
|
372
|
-
|
|
379
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
373
380
|
}
|
|
374
381
|
}
|
|
375
382
|
|
|
376
383
|
|
|
377
384
|
declare module 'vue' {
|
|
378
385
|
interface GlobalComponents {
|
|
379
|
-
|
|
380
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
381
|
-
ComboboxOption: DefineComponent;
|
|
386
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
382
387
|
}
|
|
383
388
|
}
|
|
384
389
|
|
|
385
390
|
|
|
386
391
|
declare module 'vue' {
|
|
387
392
|
interface GlobalComponents {
|
|
388
|
-
|
|
393
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
389
394
|
}
|
|
390
395
|
}
|
|
391
396
|
|
|
392
397
|
|
|
393
398
|
declare module 'vue' {
|
|
394
399
|
interface GlobalComponents {
|
|
395
|
-
|
|
400
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
396
401
|
}
|
|
397
402
|
}
|
|
398
403
|
|
|
399
404
|
|
|
400
405
|
declare module 'vue' {
|
|
401
406
|
interface GlobalComponents {
|
|
402
|
-
|
|
407
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
403
408
|
}
|
|
404
409
|
}
|
|
405
410
|
|
|
406
411
|
|
|
407
412
|
declare module 'vue' {
|
|
408
413
|
interface GlobalComponents {
|
|
409
|
-
|
|
414
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
410
415
|
}
|
|
411
416
|
}
|
|
412
417
|
|
|
413
418
|
|
|
414
419
|
declare module 'vue' {
|
|
415
420
|
interface GlobalComponents {
|
|
416
|
-
|
|
421
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
417
422
|
}
|
|
418
423
|
}
|
|
419
424
|
|
|
420
425
|
|
|
421
426
|
declare module 'vue' {
|
|
422
427
|
interface GlobalComponents {
|
|
423
|
-
|
|
428
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
429
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
430
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
431
|
+
TabContent: DefineComponent;
|
|
424
432
|
}
|
|
425
433
|
}
|
|
426
434
|
|
|
427
435
|
|
|
428
436
|
declare module 'vue' {
|
|
429
437
|
interface GlobalComponents {
|
|
430
|
-
|
|
438
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
431
439
|
}
|
|
432
440
|
}
|
|
433
441
|
|
|
434
442
|
|
|
435
443
|
declare module 'vue' {
|
|
436
444
|
interface GlobalComponents {
|
|
437
|
-
|
|
438
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
445
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
439
446
|
}
|
|
440
447
|
}
|
|
441
448
|
|
|
442
449
|
|
|
443
450
|
declare module 'vue' {
|
|
444
451
|
interface GlobalComponents {
|
|
445
|
-
|
|
452
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
446
453
|
}
|
|
447
454
|
}
|
|
448
455
|
|
|
449
456
|
|
|
450
457
|
declare module 'vue' {
|
|
451
458
|
interface GlobalComponents {
|
|
452
|
-
|
|
453
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
454
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
455
|
-
TabContent: DefineComponent;
|
|
459
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
456
460
|
}
|
|
457
461
|
}
|
|
458
462
|
|
|
@@ -466,76 +470,72 @@ declare module 'vue' {
|
|
|
466
470
|
|
|
467
471
|
declare module 'vue' {
|
|
468
472
|
interface GlobalComponents {
|
|
469
|
-
|
|
470
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
471
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
472
|
-
Tr: DefineComponent<TrProps>;
|
|
473
|
-
TBody: DefineComponent<TBodyProps>;
|
|
474
|
-
THead: DefineComponent<THeadProps>;
|
|
475
|
-
TFoot: DefineComponent<TFootProps>;
|
|
473
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
476
474
|
}
|
|
477
475
|
}
|
|
478
476
|
|
|
479
477
|
|
|
480
478
|
declare module 'vue' {
|
|
481
479
|
interface GlobalComponents {
|
|
482
|
-
|
|
480
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
481
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
483
482
|
}
|
|
484
483
|
}
|
|
485
484
|
|
|
486
485
|
|
|
487
486
|
declare module 'vue' {
|
|
488
487
|
interface GlobalComponents {
|
|
489
|
-
|
|
488
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
490
489
|
}
|
|
491
490
|
}
|
|
492
491
|
|
|
493
492
|
|
|
494
493
|
declare module 'vue' {
|
|
495
494
|
interface GlobalComponents {
|
|
496
|
-
|
|
495
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
496
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
497
497
|
}
|
|
498
498
|
}
|
|
499
499
|
|
|
500
500
|
|
|
501
501
|
declare module 'vue' {
|
|
502
502
|
interface GlobalComponents {
|
|
503
|
-
|
|
503
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
504
504
|
}
|
|
505
505
|
}
|
|
506
506
|
|
|
507
507
|
|
|
508
508
|
declare module 'vue' {
|
|
509
509
|
interface GlobalComponents {
|
|
510
|
-
|
|
510
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
511
511
|
}
|
|
512
512
|
}
|
|
513
513
|
|
|
514
514
|
|
|
515
515
|
declare module 'vue' {
|
|
516
516
|
interface GlobalComponents {
|
|
517
|
-
|
|
517
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
518
518
|
}
|
|
519
519
|
}
|
|
520
520
|
|
|
521
521
|
|
|
522
522
|
declare module 'vue' {
|
|
523
523
|
interface GlobalComponents {
|
|
524
|
-
|
|
524
|
+
Icon: DefineComponent<IconProps>;
|
|
525
525
|
}
|
|
526
526
|
}
|
|
527
527
|
|
|
528
528
|
|
|
529
529
|
declare module 'vue' {
|
|
530
530
|
interface GlobalComponents {
|
|
531
|
-
|
|
531
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
532
532
|
}
|
|
533
533
|
}
|
|
534
534
|
|
|
535
535
|
|
|
536
536
|
declare module 'vue' {
|
|
537
537
|
interface GlobalComponents {
|
|
538
|
-
|
|
538
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
539
539
|
}
|
|
540
540
|
}
|
|
541
541
|
|
package/dist/use/index.js
CHANGED
|
@@ -13866,7 +13866,7 @@ const Dv = {
|
|
|
13866
13866
|
maskClosable: { type: Boolean },
|
|
13867
13867
|
beforeClose: { type: Function },
|
|
13868
13868
|
beforeCloseDebugger: { type: Boolean },
|
|
13869
|
-
to: {},
|
|
13869
|
+
to: { type: [String, Object, Function] },
|
|
13870
13870
|
animated: { type: [Boolean, String] },
|
|
13871
13871
|
type: {},
|
|
13872
13872
|
asDrawerInMobile: { type: Boolean },
|
|
@@ -14314,7 +14314,7 @@ const Dv = {
|
|
|
14314
14314
|
mask: { type: Boolean },
|
|
14315
14315
|
beforeClose: { type: Function },
|
|
14316
14316
|
beforeCloseDebugger: { type: Boolean },
|
|
14317
|
-
to: {},
|
|
14317
|
+
to: { type: [String, Object, Function] },
|
|
14318
14318
|
animated: { type: [Boolean, String] },
|
|
14319
14319
|
wrapperCls: { type: [Array, Object, String, Number, null, Boolean] },
|
|
14320
14320
|
class: { type: [Array, Object, String, Number, null, Boolean] },
|
|
@@ -15099,7 +15099,7 @@ const Xv = [
|
|
|
15099
15099
|
color: {},
|
|
15100
15100
|
side: {},
|
|
15101
15101
|
position: {},
|
|
15102
|
-
to: {},
|
|
15102
|
+
to: { type: [String, Object, Function] },
|
|
15103
15103
|
offset: {},
|
|
15104
15104
|
zIndex: {},
|
|
15105
15105
|
defer: { type: Boolean },
|
|
@@ -18275,11 +18275,12 @@ function uI(e, t, n, o, r, a) {
|
|
|
18275
18275
|
type: g ? "up" : "down"
|
|
18276
18276
|
}), a.focus();
|
|
18277
18277
|
}, f = (g, v) => {
|
|
18278
|
-
g.preventDefault();
|
|
18279
|
-
|
|
18280
|
-
|
|
18278
|
+
g.preventDefault(), d();
|
|
18279
|
+
let m = !0;
|
|
18280
|
+
const y = () => {
|
|
18281
|
+
p(v), m ? (m = !1, s = setTimeout(y, 200)) : s = setTimeout(y, Bm);
|
|
18281
18282
|
};
|
|
18282
|
-
|
|
18283
|
+
y(), t("pointerdown", g);
|
|
18283
18284
|
};
|
|
18284
18285
|
return so(d), {
|
|
18285
18286
|
downDisabled: c,
|
|
@@ -24859,7 +24860,7 @@ const Id = {
|
|
|
24859
24860
|
focusable: !1,
|
|
24860
24861
|
multiple: o.multiple,
|
|
24861
24862
|
checkable: o.multiple && o.checkbox,
|
|
24862
|
-
virtual: je,
|
|
24863
|
+
virtual: o.virtual ? je : void 0,
|
|
24863
24864
|
syncCheckboxAndSelect: o.multiple,
|
|
24864
24865
|
data: le.value,
|
|
24865
24866
|
modelValue: J,
|
|
@@ -26069,7 +26070,7 @@ const Dd = ["type", "side"], yh = {
|
|
|
26069
26070
|
maskClosable: { type: Boolean },
|
|
26070
26071
|
beforeClose: { type: Function },
|
|
26071
26072
|
beforeCloseDebugger: { type: Boolean },
|
|
26072
|
-
to: {},
|
|
26073
|
+
to: { type: [String, Object, Function] },
|
|
26073
26074
|
animated: { type: [Boolean, String] },
|
|
26074
26075
|
asDrawerInMobile: { type: Boolean },
|
|
26075
26076
|
mobileDrawerMinHeight: {},
|
|
@@ -30153,7 +30154,7 @@ const h3 = (e, t, n = 1024 * 1024) => {
|
|
|
30153
30154
|
Object.assign(yc, pe(yc, "Upload"));
|
|
30154
30155
|
Object.assign(fl, pe(fl, "UploadList"));
|
|
30155
30156
|
Object.assign(gl, pe(gl, "UploadTrigger"));
|
|
30156
|
-
const B3 = "0.
|
|
30157
|
+
const B3 = "0.35.0", x3 = function(e, t = {}) {
|
|
30157
30158
|
const { cssInJs: n } = t;
|
|
30158
30159
|
return e.config.globalProperties.$pantographCssInJs = n, import("@pantograph/tokens/style/index.css"), n || import("@pantograph/styles/index.css"), Object.values(aS).forEach((o) => {
|
|
30159
30160
|
o.install && e.use(o);
|