@pantograph/vue 0.34.33 → 0.34.35
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/{ComponentMap-DnlN8EV6.js → ComponentMap-BqkOktnN.js} +1 -0
- package/dist/ComponentMap-Dc0o97JR.js +1 -0
- package/dist/index.d.ts +246 -2175
- package/dist/index.js +290 -288
- package/dist/index.umd.cjs +1 -1
- package/dist/nuxt/index.js +1 -1
- package/dist/nuxt/index.umd.cjs +1 -1
- package/dist/nuxt.d.ts +95 -95
- package/dist/resolver/index.js +1 -1
- package/dist/resolver/index.umd.cjs +1 -1
- package/dist/resolver.d.ts +95 -95
- package/dist/use/index.js +10252 -10072
- package/dist/use/index.umd.cjs +6 -6
- package/dist/use.d.ts +95 -95
- package/package.json +3 -3
- package/dist/ComponentMap-MimueAM8.js +0 -1
package/dist/use.d.ts
CHANGED
|
@@ -18,81 +18,82 @@ declare interface PantographPluginOptions {
|
|
|
18
18
|
export { }
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
/** component declare **/
|
|
21
22
|
declare module 'vue' {
|
|
22
23
|
interface GlobalComponents {
|
|
23
|
-
|
|
24
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
25
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
24
26
|
}
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
|
|
28
30
|
declare module 'vue' {
|
|
29
31
|
interface GlobalComponents {
|
|
30
|
-
|
|
32
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
31
33
|
}
|
|
32
34
|
}
|
|
33
35
|
|
|
34
36
|
|
|
35
37
|
declare module 'vue' {
|
|
36
38
|
interface GlobalComponents {
|
|
37
|
-
|
|
39
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
38
40
|
}
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
|
|
42
44
|
declare module 'vue' {
|
|
43
45
|
interface GlobalComponents {
|
|
44
|
-
|
|
46
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
45
47
|
}
|
|
46
48
|
}
|
|
47
49
|
|
|
48
50
|
|
|
49
51
|
declare module 'vue' {
|
|
50
52
|
interface GlobalComponents {
|
|
51
|
-
|
|
53
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
52
54
|
}
|
|
53
55
|
}
|
|
54
56
|
|
|
55
57
|
|
|
56
58
|
declare module 'vue' {
|
|
57
59
|
interface GlobalComponents {
|
|
58
|
-
|
|
60
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
59
61
|
}
|
|
60
62
|
}
|
|
61
63
|
|
|
62
64
|
|
|
63
65
|
declare module 'vue' {
|
|
64
66
|
interface GlobalComponents {
|
|
65
|
-
|
|
67
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
66
68
|
}
|
|
67
69
|
}
|
|
68
70
|
|
|
69
71
|
|
|
70
72
|
declare module 'vue' {
|
|
71
73
|
interface GlobalComponents {
|
|
72
|
-
|
|
74
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
73
75
|
}
|
|
74
76
|
}
|
|
75
77
|
|
|
76
78
|
|
|
77
|
-
/** component declare **/
|
|
78
79
|
declare module 'vue' {
|
|
79
80
|
interface GlobalComponents {
|
|
80
|
-
|
|
81
|
-
|
|
81
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
82
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
82
83
|
}
|
|
83
84
|
}
|
|
84
85
|
|
|
85
86
|
|
|
86
87
|
declare module 'vue' {
|
|
87
88
|
interface GlobalComponents {
|
|
88
|
-
|
|
89
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
89
90
|
}
|
|
90
91
|
}
|
|
91
92
|
|
|
92
93
|
|
|
93
94
|
declare module 'vue' {
|
|
94
95
|
interface GlobalComponents {
|
|
95
|
-
|
|
96
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
96
97
|
}
|
|
97
98
|
}
|
|
98
99
|
|
|
@@ -106,176 +107,173 @@ declare module 'vue' {
|
|
|
106
107
|
|
|
107
108
|
declare module 'vue' {
|
|
108
109
|
interface GlobalComponents {
|
|
109
|
-
|
|
110
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
110
111
|
}
|
|
111
112
|
}
|
|
112
113
|
|
|
113
114
|
|
|
114
115
|
declare module 'vue' {
|
|
115
116
|
interface GlobalComponents {
|
|
116
|
-
|
|
117
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
117
118
|
}
|
|
118
119
|
}
|
|
119
120
|
|
|
120
121
|
|
|
121
122
|
declare module 'vue' {
|
|
122
123
|
interface GlobalComponents {
|
|
123
|
-
|
|
124
|
-
|
|
124
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
125
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
126
|
+
ComboboxOption: DefineComponent;
|
|
125
127
|
}
|
|
126
128
|
}
|
|
127
129
|
|
|
128
130
|
|
|
129
131
|
declare module 'vue' {
|
|
130
132
|
interface GlobalComponents {
|
|
131
|
-
|
|
133
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
132
134
|
}
|
|
133
135
|
}
|
|
134
136
|
|
|
135
137
|
|
|
136
138
|
declare module 'vue' {
|
|
137
139
|
interface GlobalComponents {
|
|
138
|
-
|
|
140
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
139
141
|
}
|
|
140
142
|
}
|
|
141
143
|
|
|
142
144
|
|
|
143
145
|
declare module 'vue' {
|
|
144
146
|
interface GlobalComponents {
|
|
145
|
-
|
|
147
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
146
148
|
}
|
|
147
149
|
}
|
|
148
150
|
|
|
149
151
|
|
|
150
152
|
declare module 'vue' {
|
|
151
153
|
interface GlobalComponents {
|
|
152
|
-
|
|
154
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
153
155
|
}
|
|
154
156
|
}
|
|
155
157
|
|
|
156
158
|
|
|
157
159
|
declare module 'vue' {
|
|
158
160
|
interface GlobalComponents {
|
|
159
|
-
|
|
161
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
160
162
|
}
|
|
161
163
|
}
|
|
162
164
|
|
|
163
165
|
|
|
164
166
|
declare module 'vue' {
|
|
165
167
|
interface GlobalComponents {
|
|
166
|
-
|
|
168
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
167
169
|
}
|
|
168
170
|
}
|
|
169
171
|
|
|
170
172
|
|
|
171
173
|
declare module 'vue' {
|
|
172
174
|
interface GlobalComponents {
|
|
173
|
-
|
|
175
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
174
176
|
}
|
|
175
177
|
}
|
|
176
178
|
|
|
177
179
|
|
|
178
|
-
/**
|
|
179
|
-
* Global component declaration for TypeScript support
|
|
180
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
181
|
-
*/
|
|
182
180
|
declare module 'vue' {
|
|
183
181
|
interface GlobalComponents {
|
|
184
|
-
|
|
185
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
182
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
186
183
|
}
|
|
187
184
|
}
|
|
188
185
|
|
|
189
186
|
|
|
190
187
|
declare module 'vue' {
|
|
191
188
|
interface GlobalComponents {
|
|
192
|
-
|
|
189
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
190
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
193
191
|
}
|
|
194
192
|
}
|
|
195
193
|
|
|
196
194
|
|
|
197
195
|
declare module 'vue' {
|
|
198
196
|
interface GlobalComponents {
|
|
199
|
-
|
|
197
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
200
198
|
}
|
|
201
199
|
}
|
|
202
200
|
|
|
203
201
|
|
|
204
202
|
declare module 'vue' {
|
|
205
203
|
interface GlobalComponents {
|
|
206
|
-
|
|
204
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
205
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
206
|
+
SelectLabel: DefineComponent;
|
|
207
207
|
}
|
|
208
208
|
}
|
|
209
209
|
|
|
210
210
|
|
|
211
211
|
declare module 'vue' {
|
|
212
212
|
interface GlobalComponents {
|
|
213
|
-
|
|
213
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
|
|
218
218
|
declare module 'vue' {
|
|
219
219
|
interface GlobalComponents {
|
|
220
|
-
|
|
220
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
|
|
225
225
|
declare module 'vue' {
|
|
226
226
|
interface GlobalComponents {
|
|
227
|
-
|
|
228
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
227
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
229
228
|
}
|
|
230
229
|
}
|
|
231
230
|
|
|
232
231
|
|
|
233
232
|
declare module 'vue' {
|
|
234
233
|
interface GlobalComponents {
|
|
235
|
-
|
|
236
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
234
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
237
235
|
}
|
|
238
236
|
}
|
|
239
237
|
|
|
240
238
|
|
|
241
239
|
declare module 'vue' {
|
|
242
240
|
interface GlobalComponents {
|
|
243
|
-
|
|
241
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
244
242
|
}
|
|
245
243
|
}
|
|
246
244
|
|
|
247
245
|
|
|
248
246
|
declare module 'vue' {
|
|
249
247
|
interface GlobalComponents {
|
|
250
|
-
|
|
248
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
251
249
|
}
|
|
252
250
|
}
|
|
253
251
|
|
|
254
252
|
|
|
255
253
|
declare module 'vue' {
|
|
256
254
|
interface GlobalComponents {
|
|
257
|
-
|
|
255
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
258
256
|
}
|
|
259
257
|
}
|
|
260
258
|
|
|
261
259
|
|
|
262
260
|
declare module 'vue' {
|
|
263
261
|
interface GlobalComponents {
|
|
264
|
-
|
|
262
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
265
263
|
}
|
|
266
264
|
}
|
|
267
265
|
|
|
268
266
|
|
|
269
267
|
declare module 'vue' {
|
|
270
268
|
interface GlobalComponents {
|
|
271
|
-
|
|
269
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
272
270
|
}
|
|
273
271
|
}
|
|
274
272
|
|
|
275
273
|
|
|
276
274
|
declare module 'vue' {
|
|
277
275
|
interface GlobalComponents {
|
|
278
|
-
|
|
276
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
279
277
|
}
|
|
280
278
|
}
|
|
281
279
|
|
|
@@ -290,242 +288,244 @@ declare module 'vue' {
|
|
|
290
288
|
|
|
291
289
|
declare module 'vue' {
|
|
292
290
|
interface GlobalComponents {
|
|
293
|
-
|
|
291
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
292
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
294
293
|
}
|
|
295
294
|
}
|
|
296
295
|
|
|
297
296
|
|
|
298
297
|
declare module 'vue' {
|
|
299
298
|
interface GlobalComponents {
|
|
300
|
-
|
|
299
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
300
|
+
Th: DefineComponent<ThProps, ThSlots>;
|
|
301
|
+
Td: DefineComponent<TdProps, TdSlots>;
|
|
302
|
+
Tr: DefineComponent<TrProps>;
|
|
303
|
+
TBody: DefineComponent<TBodyProps>;
|
|
304
|
+
THead: DefineComponent<THeadProps>;
|
|
305
|
+
TFoot: DefineComponent<TFootProps>;
|
|
301
306
|
}
|
|
302
307
|
}
|
|
303
308
|
|
|
304
309
|
|
|
305
310
|
declare module 'vue' {
|
|
306
311
|
interface GlobalComponents {
|
|
307
|
-
|
|
308
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
309
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
312
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
310
313
|
}
|
|
311
314
|
}
|
|
312
315
|
|
|
313
316
|
|
|
314
317
|
declare module 'vue' {
|
|
315
318
|
interface GlobalComponents {
|
|
316
|
-
|
|
319
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
317
320
|
}
|
|
318
321
|
}
|
|
319
322
|
|
|
320
323
|
|
|
321
324
|
declare module 'vue' {
|
|
322
325
|
interface GlobalComponents {
|
|
323
|
-
|
|
326
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
327
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
328
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
329
|
+
TabContent: DefineComponent;
|
|
324
330
|
}
|
|
325
331
|
}
|
|
326
332
|
|
|
327
333
|
|
|
328
334
|
declare module 'vue' {
|
|
329
335
|
interface GlobalComponents {
|
|
330
|
-
|
|
336
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
331
337
|
}
|
|
332
338
|
}
|
|
333
339
|
|
|
334
340
|
|
|
335
341
|
declare module 'vue' {
|
|
336
342
|
interface GlobalComponents {
|
|
337
|
-
|
|
338
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
343
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
339
344
|
}
|
|
340
345
|
}
|
|
341
346
|
|
|
342
347
|
|
|
348
|
+
/**
|
|
349
|
+
* Global component declaration for TypeScript support
|
|
350
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
351
|
+
*/
|
|
343
352
|
declare module 'vue' {
|
|
344
353
|
interface GlobalComponents {
|
|
345
|
-
|
|
346
|
-
|
|
354
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
355
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
347
356
|
}
|
|
348
357
|
}
|
|
349
358
|
|
|
350
359
|
|
|
351
360
|
declare module 'vue' {
|
|
352
361
|
interface GlobalComponents {
|
|
353
|
-
|
|
362
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
354
363
|
}
|
|
355
364
|
}
|
|
356
365
|
|
|
357
366
|
|
|
358
367
|
declare module 'vue' {
|
|
359
368
|
interface GlobalComponents {
|
|
360
|
-
|
|
369
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
361
370
|
}
|
|
362
371
|
}
|
|
363
372
|
|
|
364
373
|
|
|
365
374
|
declare module 'vue' {
|
|
366
375
|
interface GlobalComponents {
|
|
367
|
-
|
|
376
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
368
377
|
}
|
|
369
378
|
}
|
|
370
379
|
|
|
371
380
|
|
|
372
381
|
declare module 'vue' {
|
|
373
382
|
interface GlobalComponents {
|
|
374
|
-
|
|
375
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
383
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
376
384
|
}
|
|
377
385
|
}
|
|
378
386
|
|
|
379
387
|
|
|
380
388
|
declare module 'vue' {
|
|
381
389
|
interface GlobalComponents {
|
|
382
|
-
|
|
390
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
383
391
|
}
|
|
384
392
|
}
|
|
385
393
|
|
|
386
394
|
|
|
387
395
|
declare module 'vue' {
|
|
388
396
|
interface GlobalComponents {
|
|
389
|
-
|
|
397
|
+
Icon: DefineComponent<IconProps>;
|
|
390
398
|
}
|
|
391
399
|
}
|
|
392
400
|
|
|
393
401
|
|
|
394
402
|
declare module 'vue' {
|
|
395
403
|
interface GlobalComponents {
|
|
396
|
-
|
|
404
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
397
405
|
}
|
|
398
406
|
}
|
|
399
407
|
|
|
400
408
|
|
|
401
409
|
declare module 'vue' {
|
|
402
410
|
interface GlobalComponents {
|
|
403
|
-
|
|
411
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
404
412
|
}
|
|
405
413
|
}
|
|
406
414
|
|
|
407
415
|
|
|
408
416
|
declare module 'vue' {
|
|
409
417
|
interface GlobalComponents {
|
|
410
|
-
|
|
418
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
419
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
411
420
|
}
|
|
412
421
|
}
|
|
413
422
|
|
|
414
423
|
|
|
415
424
|
declare module 'vue' {
|
|
416
425
|
interface GlobalComponents {
|
|
417
|
-
|
|
426
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
427
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
428
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
418
429
|
}
|
|
419
430
|
}
|
|
420
431
|
|
|
421
432
|
|
|
422
433
|
declare module 'vue' {
|
|
423
434
|
interface GlobalComponents {
|
|
424
|
-
|
|
435
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
425
436
|
}
|
|
426
437
|
}
|
|
427
438
|
|
|
428
439
|
|
|
429
440
|
declare module 'vue' {
|
|
430
441
|
interface GlobalComponents {
|
|
431
|
-
|
|
442
|
+
Divider: DefineComponent<DividerProps>;
|
|
432
443
|
}
|
|
433
444
|
}
|
|
434
445
|
|
|
435
446
|
|
|
436
447
|
declare module 'vue' {
|
|
437
448
|
interface GlobalComponents {
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
ComboboxOption: DefineComponent;
|
|
449
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
450
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
441
451
|
}
|
|
442
452
|
}
|
|
443
453
|
|
|
444
454
|
|
|
445
455
|
declare module 'vue' {
|
|
446
456
|
interface GlobalComponents {
|
|
447
|
-
|
|
457
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
448
458
|
}
|
|
449
459
|
}
|
|
450
460
|
|
|
451
461
|
|
|
452
462
|
declare module 'vue' {
|
|
453
463
|
interface GlobalComponents {
|
|
454
|
-
|
|
464
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
455
465
|
}
|
|
456
466
|
}
|
|
457
467
|
|
|
458
468
|
|
|
459
469
|
declare module 'vue' {
|
|
460
470
|
interface GlobalComponents {
|
|
461
|
-
|
|
462
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
463
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
464
|
-
TabContent: DefineComponent;
|
|
471
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
465
472
|
}
|
|
466
473
|
}
|
|
467
474
|
|
|
468
475
|
|
|
469
476
|
declare module 'vue' {
|
|
470
477
|
interface GlobalComponents {
|
|
471
|
-
|
|
478
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
472
479
|
}
|
|
473
480
|
}
|
|
474
481
|
|
|
475
482
|
|
|
476
483
|
declare module 'vue' {
|
|
477
484
|
interface GlobalComponents {
|
|
478
|
-
|
|
485
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
479
486
|
}
|
|
480
487
|
}
|
|
481
488
|
|
|
482
489
|
|
|
483
490
|
declare module 'vue' {
|
|
484
491
|
interface GlobalComponents {
|
|
485
|
-
|
|
492
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
493
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
486
494
|
}
|
|
487
495
|
}
|
|
488
496
|
|
|
489
497
|
|
|
490
498
|
declare module 'vue' {
|
|
491
499
|
interface GlobalComponents {
|
|
492
|
-
|
|
493
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
494
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
495
|
-
Tr: DefineComponent<TrProps>;
|
|
496
|
-
TBody: DefineComponent<TBodyProps>;
|
|
497
|
-
THead: DefineComponent<THeadProps>;
|
|
498
|
-
TFoot: DefineComponent<TFootProps>;
|
|
500
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
499
501
|
}
|
|
500
502
|
}
|
|
501
503
|
|
|
502
504
|
|
|
503
505
|
declare module 'vue' {
|
|
504
506
|
interface GlobalComponents {
|
|
505
|
-
|
|
507
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
506
508
|
}
|
|
507
509
|
}
|
|
508
510
|
|
|
509
511
|
|
|
510
512
|
declare module 'vue' {
|
|
511
513
|
interface GlobalComponents {
|
|
512
|
-
|
|
514
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
513
515
|
}
|
|
514
516
|
}
|
|
515
517
|
|
|
516
518
|
|
|
517
519
|
declare module 'vue' {
|
|
518
520
|
interface GlobalComponents {
|
|
519
|
-
|
|
520
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
521
|
-
SelectLabel: DefineComponent;
|
|
521
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
522
522
|
}
|
|
523
523
|
}
|
|
524
524
|
|
|
525
525
|
|
|
526
526
|
declare module 'vue' {
|
|
527
527
|
interface GlobalComponents {
|
|
528
|
-
|
|
528
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
529
529
|
}
|
|
530
530
|
}
|
|
531
531
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pantograph/vue",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.35",
|
|
4
4
|
"id": "vue",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@pantograph/sortable": ">=2.2.4",
|
|
30
|
-
"@pantograph/styles": ">=0.0.
|
|
30
|
+
"@pantograph/styles": ">=0.0.27",
|
|
31
31
|
"@pantograph/tokens": ">=1.0.12",
|
|
32
32
|
"@pantograph/utils": ">=0.0.36",
|
|
33
|
-
"@pantograph/utils-vue": ">=0.0.
|
|
33
|
+
"@pantograph/utils-vue": ">=0.0.22",
|
|
34
34
|
"@iconify/vue": ">=5.0.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const o=["Accordion","AccordionItem","ActionButton","Alert","AlertDialog","Avatar","AvatarGroup","Badge","Banner","Blanket","Breadcrumb","Button","ButtonGroup","Card","Checkbox","CheckboxGroup","Chip","ChipGroup","ColorPicker","ColorSwatch","ColorSwatchGroup","ColorTrigger","Combobox","ComboboxInput","ComboboxOption","ConfigProvider","Dialog","DialogTitle","Divider","Drawer","DrawerTitle","DropZone","Empty","FloatButton","FormValidation","GraphicalObject","GraphicalObjectGroup","HoverCard","Icon","IconButton","Image","IndentLevel","Indicator","Input","InputGroup","InputNumber","Kbd","Label","Link","Menu","MenuItemWrapper","MenuItem","MenuItemContent","Modal","ModalTitle","PageIndicator","Pagination","PinInput","Popover","Progress","RadioGroup","RadioGroupItem","Rate","ScrollContainer","Segmented","Select","SelectOption","SelectLabel","Shortcut","Skeleton","Stepper","Steps","Step","SubMenu","Switch","Table","Th","Td","Tr","TBody","THead","TFoot","Tabs","TabList","TabTrigger","TabContent","Textarea","Toast","Tooltip","TooltipProvider","Tree","TreeNode","Upload","UploadList","UploadTrigger"];exports.components=o;
|