@pantograph/vue 0.34.40 → 0.34.41
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/dist/index.d.ts +96 -95
- package/dist/nuxt.d.ts +95 -95
- package/dist/resolver.d.ts +95 -95
- package/dist/use/index.js +10 -8
- package/dist/use/index.umd.cjs +2 -2
- package/dist/use.d.ts +95 -95
- package/package.json +1 -1
package/dist/resolver.d.ts
CHANGED
|
@@ -23,195 +23,207 @@ export { }
|
|
|
23
23
|
|
|
24
24
|
declare module 'vue' {
|
|
25
25
|
interface GlobalComponents {
|
|
26
|
-
|
|
26
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
declare module 'vue' {
|
|
32
32
|
interface GlobalComponents {
|
|
33
|
-
|
|
33
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
declare module 'vue' {
|
|
39
39
|
interface GlobalComponents {
|
|
40
|
-
|
|
40
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
declare module 'vue' {
|
|
46
46
|
interface GlobalComponents {
|
|
47
|
-
|
|
47
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
declare module 'vue' {
|
|
53
53
|
interface GlobalComponents {
|
|
54
|
-
|
|
54
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
declare module 'vue' {
|
|
60
60
|
interface GlobalComponents {
|
|
61
|
-
|
|
61
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
declare module 'vue' {
|
|
67
67
|
interface GlobalComponents {
|
|
68
|
-
|
|
68
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
declare module 'vue' {
|
|
74
74
|
interface GlobalComponents {
|
|
75
|
-
|
|
75
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
|
|
80
80
|
declare module 'vue' {
|
|
81
81
|
interface GlobalComponents {
|
|
82
|
-
|
|
83
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
82
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
84
83
|
}
|
|
85
84
|
}
|
|
86
85
|
|
|
87
86
|
|
|
87
|
+
/**
|
|
88
|
+
* Global component declaration for TypeScript support
|
|
89
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
90
|
+
*/
|
|
88
91
|
declare module 'vue' {
|
|
89
92
|
interface GlobalComponents {
|
|
90
|
-
|
|
91
|
-
|
|
93
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
94
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
92
95
|
}
|
|
93
96
|
}
|
|
94
97
|
|
|
95
98
|
|
|
96
99
|
declare module 'vue' {
|
|
97
100
|
interface GlobalComponents {
|
|
98
|
-
|
|
101
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
99
102
|
}
|
|
100
103
|
}
|
|
101
104
|
|
|
102
105
|
|
|
103
106
|
declare module 'vue' {
|
|
104
107
|
interface GlobalComponents {
|
|
105
|
-
|
|
108
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
106
109
|
}
|
|
107
110
|
}
|
|
108
111
|
|
|
109
112
|
|
|
110
113
|
declare module 'vue' {
|
|
111
114
|
interface GlobalComponents {
|
|
112
|
-
|
|
115
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
113
116
|
}
|
|
114
117
|
}
|
|
115
118
|
|
|
116
119
|
|
|
117
120
|
declare module 'vue' {
|
|
118
121
|
interface GlobalComponents {
|
|
119
|
-
|
|
122
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
120
123
|
}
|
|
121
124
|
}
|
|
122
125
|
|
|
123
126
|
|
|
124
127
|
declare module 'vue' {
|
|
125
128
|
interface GlobalComponents {
|
|
126
|
-
|
|
129
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
127
130
|
}
|
|
128
131
|
}
|
|
129
132
|
|
|
130
133
|
|
|
131
134
|
declare module 'vue' {
|
|
132
135
|
interface GlobalComponents {
|
|
133
|
-
|
|
136
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
134
137
|
}
|
|
135
138
|
}
|
|
136
139
|
|
|
137
140
|
|
|
141
|
+
/** component declare **/
|
|
138
142
|
declare module 'vue' {
|
|
139
143
|
interface GlobalComponents {
|
|
140
|
-
|
|
144
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
145
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
141
146
|
}
|
|
142
147
|
}
|
|
143
148
|
|
|
144
149
|
|
|
145
150
|
declare module 'vue' {
|
|
146
151
|
interface GlobalComponents {
|
|
147
|
-
|
|
152
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
148
153
|
}
|
|
149
154
|
}
|
|
150
155
|
|
|
151
156
|
|
|
152
157
|
declare module 'vue' {
|
|
153
158
|
interface GlobalComponents {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
SelectLabel: DefineComponent;
|
|
159
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
160
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
157
161
|
}
|
|
158
162
|
}
|
|
159
163
|
|
|
160
164
|
|
|
161
165
|
declare module 'vue' {
|
|
162
166
|
interface GlobalComponents {
|
|
163
|
-
|
|
167
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
164
168
|
}
|
|
165
169
|
}
|
|
166
170
|
|
|
167
171
|
|
|
168
172
|
declare module 'vue' {
|
|
169
173
|
interface GlobalComponents {
|
|
170
|
-
|
|
174
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
171
175
|
}
|
|
172
176
|
}
|
|
173
177
|
|
|
174
178
|
|
|
175
179
|
declare module 'vue' {
|
|
176
180
|
interface GlobalComponents {
|
|
177
|
-
|
|
181
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
178
182
|
}
|
|
179
183
|
}
|
|
180
184
|
|
|
181
185
|
|
|
182
186
|
declare module 'vue' {
|
|
183
187
|
interface GlobalComponents {
|
|
184
|
-
|
|
188
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
185
189
|
}
|
|
186
190
|
}
|
|
187
191
|
|
|
188
192
|
|
|
189
193
|
declare module 'vue' {
|
|
190
194
|
interface GlobalComponents {
|
|
191
|
-
|
|
195
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
192
196
|
}
|
|
193
197
|
}
|
|
194
198
|
|
|
195
199
|
|
|
196
200
|
declare module 'vue' {
|
|
197
201
|
interface GlobalComponents {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
ComboboxOption: DefineComponent;
|
|
202
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
203
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
201
204
|
}
|
|
202
205
|
}
|
|
203
206
|
|
|
204
207
|
|
|
205
208
|
declare module 'vue' {
|
|
206
209
|
interface GlobalComponents {
|
|
207
|
-
|
|
210
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
211
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
212
|
+
SelectLabel: DefineComponent;
|
|
208
213
|
}
|
|
209
214
|
}
|
|
210
215
|
|
|
211
216
|
|
|
212
217
|
declare module 'vue' {
|
|
213
218
|
interface GlobalComponents {
|
|
214
|
-
|
|
219
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
declare module 'vue' {
|
|
225
|
+
interface GlobalComponents {
|
|
226
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
215
227
|
}
|
|
216
228
|
}
|
|
217
229
|
|
|
@@ -229,69 +241,59 @@ declare module 'vue' {
|
|
|
229
241
|
}
|
|
230
242
|
|
|
231
243
|
|
|
232
|
-
/** component declare **/
|
|
233
244
|
declare module 'vue' {
|
|
234
245
|
interface GlobalComponents {
|
|
235
|
-
|
|
236
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
declare module 'vue' {
|
|
242
|
-
interface GlobalComponents {
|
|
243
|
-
Icon: DefineComponent<IconProps>;
|
|
246
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
244
247
|
}
|
|
245
248
|
}
|
|
246
249
|
|
|
247
250
|
|
|
248
251
|
declare module 'vue' {
|
|
249
252
|
interface GlobalComponents {
|
|
250
|
-
|
|
253
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
251
254
|
}
|
|
252
255
|
}
|
|
253
256
|
|
|
254
257
|
|
|
255
258
|
declare module 'vue' {
|
|
256
259
|
interface GlobalComponents {
|
|
257
|
-
|
|
260
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
258
261
|
}
|
|
259
262
|
}
|
|
260
263
|
|
|
261
264
|
|
|
262
265
|
declare module 'vue' {
|
|
263
266
|
interface GlobalComponents {
|
|
264
|
-
|
|
267
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
265
268
|
}
|
|
266
269
|
}
|
|
267
270
|
|
|
268
271
|
|
|
269
272
|
declare module 'vue' {
|
|
270
273
|
interface GlobalComponents {
|
|
271
|
-
|
|
274
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
272
275
|
}
|
|
273
276
|
}
|
|
274
277
|
|
|
275
278
|
|
|
276
279
|
declare module 'vue' {
|
|
277
280
|
interface GlobalComponents {
|
|
278
|
-
|
|
279
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
281
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
280
282
|
}
|
|
281
283
|
}
|
|
282
284
|
|
|
283
285
|
|
|
284
286
|
declare module 'vue' {
|
|
285
287
|
interface GlobalComponents {
|
|
286
|
-
|
|
288
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
287
289
|
}
|
|
288
290
|
}
|
|
289
291
|
|
|
290
292
|
|
|
291
293
|
declare module 'vue' {
|
|
292
294
|
interface GlobalComponents {
|
|
293
|
-
|
|
294
|
-
|
|
295
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
296
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
295
297
|
}
|
|
296
298
|
}
|
|
297
299
|
|
|
@@ -305,82 +307,82 @@ declare module 'vue' {
|
|
|
305
307
|
|
|
306
308
|
declare module 'vue' {
|
|
307
309
|
interface GlobalComponents {
|
|
308
|
-
|
|
310
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
309
311
|
}
|
|
310
312
|
}
|
|
311
313
|
|
|
312
314
|
|
|
313
315
|
declare module 'vue' {
|
|
314
316
|
interface GlobalComponents {
|
|
315
|
-
|
|
317
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
316
318
|
}
|
|
317
319
|
}
|
|
318
320
|
|
|
319
321
|
|
|
320
322
|
declare module 'vue' {
|
|
321
323
|
interface GlobalComponents {
|
|
322
|
-
|
|
324
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
323
325
|
}
|
|
324
326
|
}
|
|
325
327
|
|
|
326
328
|
|
|
327
329
|
declare module 'vue' {
|
|
328
330
|
interface GlobalComponents {
|
|
329
|
-
|
|
331
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
332
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
330
333
|
}
|
|
331
334
|
}
|
|
332
335
|
|
|
333
336
|
|
|
334
337
|
declare module 'vue' {
|
|
335
338
|
interface GlobalComponents {
|
|
336
|
-
|
|
337
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
338
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
339
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
339
340
|
}
|
|
340
341
|
}
|
|
341
342
|
|
|
342
343
|
|
|
343
344
|
declare module 'vue' {
|
|
344
345
|
interface GlobalComponents {
|
|
345
|
-
|
|
346
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
347
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
348
|
-
TabContent: DefineComponent;
|
|
346
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
349
347
|
}
|
|
350
348
|
}
|
|
351
349
|
|
|
352
350
|
|
|
353
351
|
declare module 'vue' {
|
|
354
352
|
interface GlobalComponents {
|
|
355
|
-
|
|
353
|
+
Icon: DefineComponent<IconProps>;
|
|
356
354
|
}
|
|
357
355
|
}
|
|
358
356
|
|
|
359
357
|
|
|
360
358
|
declare module 'vue' {
|
|
361
359
|
interface GlobalComponents {
|
|
362
|
-
|
|
360
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
361
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
362
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
363
|
+
TabContent: DefineComponent;
|
|
363
364
|
}
|
|
364
365
|
}
|
|
365
366
|
|
|
366
367
|
|
|
367
368
|
declare module 'vue' {
|
|
368
369
|
interface GlobalComponents {
|
|
369
|
-
|
|
370
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
371
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
370
372
|
}
|
|
371
373
|
}
|
|
372
374
|
|
|
373
375
|
|
|
374
376
|
declare module 'vue' {
|
|
375
377
|
interface GlobalComponents {
|
|
376
|
-
|
|
378
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
377
379
|
}
|
|
378
380
|
}
|
|
379
381
|
|
|
380
382
|
|
|
381
383
|
declare module 'vue' {
|
|
382
384
|
interface GlobalComponents {
|
|
383
|
-
|
|
385
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
384
386
|
}
|
|
385
387
|
}
|
|
386
388
|
|
|
@@ -395,147 +397,145 @@ declare module 'vue' {
|
|
|
395
397
|
|
|
396
398
|
declare module 'vue' {
|
|
397
399
|
interface GlobalComponents {
|
|
398
|
-
|
|
400
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
399
401
|
}
|
|
400
402
|
}
|
|
401
403
|
|
|
402
404
|
|
|
403
405
|
declare module 'vue' {
|
|
404
406
|
interface GlobalComponents {
|
|
405
|
-
|
|
407
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
408
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
409
|
+
ComboboxOption: DefineComponent;
|
|
406
410
|
}
|
|
407
411
|
}
|
|
408
412
|
|
|
409
413
|
|
|
410
414
|
declare module 'vue' {
|
|
411
415
|
interface GlobalComponents {
|
|
412
|
-
|
|
416
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
413
417
|
}
|
|
414
418
|
}
|
|
415
419
|
|
|
416
420
|
|
|
417
421
|
declare module 'vue' {
|
|
418
422
|
interface GlobalComponents {
|
|
419
|
-
|
|
423
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
420
424
|
}
|
|
421
425
|
}
|
|
422
426
|
|
|
423
427
|
|
|
424
428
|
declare module 'vue' {
|
|
425
429
|
interface GlobalComponents {
|
|
426
|
-
|
|
430
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
427
431
|
}
|
|
428
432
|
}
|
|
429
433
|
|
|
430
434
|
|
|
431
435
|
declare module 'vue' {
|
|
432
436
|
interface GlobalComponents {
|
|
433
|
-
|
|
437
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
434
438
|
}
|
|
435
439
|
}
|
|
436
440
|
|
|
437
441
|
|
|
438
442
|
declare module 'vue' {
|
|
439
443
|
interface GlobalComponents {
|
|
440
|
-
|
|
444
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
445
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
441
446
|
}
|
|
442
447
|
}
|
|
443
448
|
|
|
444
449
|
|
|
445
450
|
declare module 'vue' {
|
|
446
451
|
interface GlobalComponents {
|
|
447
|
-
|
|
452
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
448
453
|
}
|
|
449
454
|
}
|
|
450
455
|
|
|
451
456
|
|
|
452
|
-
/**
|
|
453
|
-
* Global component declaration for TypeScript support
|
|
454
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
455
|
-
*/
|
|
456
457
|
declare module 'vue' {
|
|
457
458
|
interface GlobalComponents {
|
|
458
|
-
|
|
459
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
459
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
460
460
|
}
|
|
461
461
|
}
|
|
462
462
|
|
|
463
463
|
|
|
464
464
|
declare module 'vue' {
|
|
465
465
|
interface GlobalComponents {
|
|
466
|
-
|
|
467
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
466
|
+
Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
|
|
468
467
|
}
|
|
469
468
|
}
|
|
470
469
|
|
|
471
470
|
|
|
472
471
|
declare module 'vue' {
|
|
473
472
|
interface GlobalComponents {
|
|
474
|
-
|
|
473
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
475
474
|
}
|
|
476
475
|
}
|
|
477
476
|
|
|
478
477
|
|
|
479
478
|
declare module 'vue' {
|
|
480
479
|
interface GlobalComponents {
|
|
481
|
-
|
|
480
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
482
481
|
}
|
|
483
482
|
}
|
|
484
483
|
|
|
485
484
|
|
|
486
485
|
declare module 'vue' {
|
|
487
486
|
interface GlobalComponents {
|
|
488
|
-
|
|
489
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
487
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
490
488
|
}
|
|
491
489
|
}
|
|
492
490
|
|
|
493
491
|
|
|
494
492
|
declare module 'vue' {
|
|
495
493
|
interface GlobalComponents {
|
|
496
|
-
|
|
494
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
497
495
|
}
|
|
498
496
|
}
|
|
499
497
|
|
|
500
498
|
|
|
501
499
|
declare module 'vue' {
|
|
502
500
|
interface GlobalComponents {
|
|
503
|
-
|
|
501
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
504
502
|
}
|
|
505
503
|
}
|
|
506
504
|
|
|
507
505
|
|
|
508
506
|
declare module 'vue' {
|
|
509
507
|
interface GlobalComponents {
|
|
510
|
-
|
|
508
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
509
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
510
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
511
511
|
}
|
|
512
512
|
}
|
|
513
513
|
|
|
514
514
|
|
|
515
515
|
declare module 'vue' {
|
|
516
516
|
interface GlobalComponents {
|
|
517
|
-
|
|
517
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
518
518
|
}
|
|
519
519
|
}
|
|
520
520
|
|
|
521
521
|
|
|
522
522
|
declare module 'vue' {
|
|
523
523
|
interface GlobalComponents {
|
|
524
|
-
|
|
524
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
525
525
|
}
|
|
526
526
|
}
|
|
527
527
|
|
|
528
528
|
|
|
529
529
|
declare module 'vue' {
|
|
530
530
|
interface GlobalComponents {
|
|
531
|
-
|
|
531
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
532
532
|
}
|
|
533
533
|
}
|
|
534
534
|
|
|
535
535
|
|
|
536
536
|
declare module 'vue' {
|
|
537
537
|
interface GlobalComponents {
|
|
538
|
-
|
|
538
|
+
Divider: DefineComponent<DividerProps>;
|
|
539
539
|
}
|
|
540
540
|
}
|
|
541
541
|
|
package/dist/use/index.js
CHANGED
|
@@ -13428,7 +13428,7 @@ const Lg = {
|
|
|
13428
13428
|
maskClosable: { type: Boolean },
|
|
13429
13429
|
beforeClose: { type: Function },
|
|
13430
13430
|
beforeCloseDebugger: { type: Boolean },
|
|
13431
|
-
to: {},
|
|
13431
|
+
to: { type: [String, Object, Function] },
|
|
13432
13432
|
animated: { type: [Boolean, String] },
|
|
13433
13433
|
type: {},
|
|
13434
13434
|
asDrawerInMobile: { type: Boolean },
|
|
@@ -13876,7 +13876,7 @@ const Lg = {
|
|
|
13876
13876
|
mask: { type: Boolean },
|
|
13877
13877
|
beforeClose: { type: Function },
|
|
13878
13878
|
beforeCloseDebugger: { type: Boolean },
|
|
13879
|
-
to: {},
|
|
13879
|
+
to: { type: [String, Object, Function] },
|
|
13880
13880
|
animated: { type: [Boolean, String] },
|
|
13881
13881
|
wrapperCls: { type: [Array, Object, String, Number, null, Boolean] },
|
|
13882
13882
|
class: { type: [Array, Object, String, Number, null, Boolean] },
|
|
@@ -18016,7 +18016,7 @@ const Tv = {
|
|
|
18016
18016
|
trailingIcon: { type: [String, Boolean] },
|
|
18017
18017
|
selectedItemIconAsTrailingIcon: { type: Boolean },
|
|
18018
18018
|
maxCount: {},
|
|
18019
|
-
to: {},
|
|
18019
|
+
to: { type: [String, Object, Function] },
|
|
18020
18020
|
placeholder: {},
|
|
18021
18021
|
indicatorIcon: {},
|
|
18022
18022
|
options: {},
|
|
@@ -22088,6 +22088,7 @@ const $m = ({
|
|
|
22088
22088
|
disabled: l(o).getDisabled.value || n.disabled,
|
|
22089
22089
|
readonly: l(o).props.readonly
|
|
22090
22090
|
}, {
|
|
22091
|
+
size: e.size ?? l(o).getSize.value,
|
|
22091
22092
|
noBg: !l(o).isHeaderSearch.value,
|
|
22092
22093
|
placeholder: s.value,
|
|
22093
22094
|
onClick: a,
|
|
@@ -22131,7 +22132,7 @@ const $m = ({
|
|
|
22131
22132
|
]),
|
|
22132
22133
|
key: "2"
|
|
22133
22134
|
}
|
|
22134
|
-
]), 1040, ["noBg", "placeholder", "class", "data-fill", "contentFit", "modelValue"]));
|
|
22135
|
+
]), 1040, ["size", "noBg", "placeholder", "class", "data-fill", "contentFit", "modelValue"]));
|
|
22135
22136
|
}
|
|
22136
22137
|
}), Ki = /* @__PURE__ */ N({
|
|
22137
22138
|
...re("ComboboxLabel"),
|
|
@@ -22460,7 +22461,7 @@ function Um({
|
|
|
22460
22461
|
"data-state": l(t) ? "open" : "closed",
|
|
22461
22462
|
class: I(
|
|
22462
22463
|
T({
|
|
22463
|
-
size: u.value,
|
|
22464
|
+
size: e.triggerSize ?? u.value,
|
|
22464
22465
|
status: c.value === "success" && et(W) ? void 0 : c.value,
|
|
22465
22466
|
bordered: e.bordered,
|
|
22466
22467
|
multiple: e.multiple,
|
|
@@ -22947,6 +22948,7 @@ const Lc = {
|
|
|
22947
22948
|
resetSearchTermOnBlur: { type: Boolean },
|
|
22948
22949
|
resetSearchTermOnSelect: { type: Boolean },
|
|
22949
22950
|
size: {},
|
|
22951
|
+
triggerSize: {},
|
|
22950
22952
|
status: {},
|
|
22951
22953
|
noValueOnPlaceholder: { type: Boolean },
|
|
22952
22954
|
zIndex: {},
|
|
@@ -22964,7 +22966,7 @@ const Lc = {
|
|
|
22964
22966
|
trailingIcon: { type: [String, Boolean] },
|
|
22965
22967
|
selectedItemIconAsTrailingIcon: { type: Boolean },
|
|
22966
22968
|
maxCount: {},
|
|
22967
|
-
to: {},
|
|
22969
|
+
to: { type: [String, Object, Function] },
|
|
22968
22970
|
placeholder: {},
|
|
22969
22971
|
indicatorIcon: {},
|
|
22970
22972
|
options: {},
|
|
@@ -24631,7 +24633,7 @@ const jc = ["type", "side"], sy = {
|
|
|
24631
24633
|
maskClosable: { type: Boolean },
|
|
24632
24634
|
beforeClose: { type: Function },
|
|
24633
24635
|
beforeCloseDebugger: { type: Boolean },
|
|
24634
|
-
to: {},
|
|
24636
|
+
to: { type: [String, Object, Function] },
|
|
24635
24637
|
animated: { type: [Boolean, String] },
|
|
24636
24638
|
asDrawerInMobile: { type: Boolean },
|
|
24637
24639
|
mobileDrawerMinHeight: {},
|
|
@@ -28699,7 +28701,7 @@ const AI = (e, n, t = 1024 * 1024) => {
|
|
|
28699
28701
|
Object.assign(Du, de(Du, "Upload"));
|
|
28700
28702
|
Object.assign(Ms, de(Ms, "UploadList"));
|
|
28701
28703
|
Object.assign(Ls, de(Ls, "UploadTrigger"));
|
|
28702
|
-
const MI = "0.34.
|
|
28704
|
+
const MI = "0.34.41", LI = function(e, n = {}) {
|
|
28703
28705
|
const { cssInJs: t } = n;
|
|
28704
28706
|
return e.config.globalProperties.$pantographCssInJs = t, import("@pantograph/tokens/style/index.css"), t || import("@pantograph/styles/index.css"), Object.values(GC).forEach((o) => {
|
|
28705
28707
|
o.install && e.use(o);
|