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