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