@pantograph/vue 0.34.43 → 0.35.0
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 +98 -98
- package/dist/nuxt.d.ts +98 -98
- package/dist/resolver.d.ts +98 -98
- package/dist/use/index.js +3669 -3672
- package/dist/use/index.umd.cjs +6 -6
- package/dist/use.d.ts +98 -98
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -15953,16 +15953,19 @@ export declare type VisibleColorPair = Exclude<ColorPair, ColorPairHsv>;
|
|
|
15953
15953
|
export { }
|
|
15954
15954
|
|
|
15955
15955
|
|
|
15956
|
+
/** component declare **/
|
|
15956
15957
|
declare module 'vue' {
|
|
15957
15958
|
interface GlobalComponents {
|
|
15958
|
-
|
|
15959
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
15960
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
15959
15961
|
}
|
|
15960
15962
|
}
|
|
15961
15963
|
|
|
15962
15964
|
|
|
15963
15965
|
declare module 'vue' {
|
|
15964
15966
|
interface GlobalComponents {
|
|
15965
|
-
|
|
15967
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
15968
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
15966
15969
|
}
|
|
15967
15970
|
}
|
|
15968
15971
|
|
|
@@ -15976,498 +15979,495 @@ declare module 'vue' {
|
|
|
15976
15979
|
|
|
15977
15980
|
declare module 'vue' {
|
|
15978
15981
|
interface GlobalComponents {
|
|
15979
|
-
|
|
15982
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
15980
15983
|
}
|
|
15981
15984
|
}
|
|
15982
15985
|
|
|
15983
15986
|
|
|
15984
15987
|
declare module 'vue' {
|
|
15985
15988
|
interface GlobalComponents {
|
|
15986
|
-
|
|
15987
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
15988
|
-
ComboboxOption: DefineComponent;
|
|
15989
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
15989
15990
|
}
|
|
15990
15991
|
}
|
|
15991
15992
|
|
|
15992
15993
|
|
|
15993
15994
|
declare module 'vue' {
|
|
15994
15995
|
interface GlobalComponents {
|
|
15995
|
-
|
|
15996
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
15996
15997
|
}
|
|
15997
15998
|
}
|
|
15998
15999
|
|
|
15999
16000
|
|
|
16000
16001
|
declare module 'vue' {
|
|
16001
16002
|
interface GlobalComponents {
|
|
16002
|
-
|
|
16003
|
-
|
|
16003
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
16004
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16004
16005
|
}
|
|
16005
16006
|
}
|
|
16006
16007
|
|
|
16007
16008
|
|
|
16008
16009
|
declare module 'vue' {
|
|
16009
16010
|
interface GlobalComponents {
|
|
16010
|
-
|
|
16011
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
16011
16012
|
}
|
|
16012
16013
|
}
|
|
16013
16014
|
|
|
16014
16015
|
|
|
16015
16016
|
declare module 'vue' {
|
|
16016
16017
|
interface GlobalComponents {
|
|
16017
|
-
|
|
16018
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
16018
16019
|
}
|
|
16019
16020
|
}
|
|
16020
16021
|
|
|
16021
16022
|
|
|
16022
|
-
/** component declare **/
|
|
16023
16023
|
declare module 'vue' {
|
|
16024
16024
|
interface GlobalComponents {
|
|
16025
|
-
|
|
16026
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
16025
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
16027
16026
|
}
|
|
16028
16027
|
}
|
|
16029
16028
|
|
|
16030
16029
|
|
|
16031
16030
|
declare module 'vue' {
|
|
16032
16031
|
interface GlobalComponents {
|
|
16033
|
-
|
|
16034
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
16032
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
16035
16033
|
}
|
|
16036
16034
|
}
|
|
16037
16035
|
|
|
16038
16036
|
|
|
16039
16037
|
declare module 'vue' {
|
|
16040
16038
|
interface GlobalComponents {
|
|
16041
|
-
|
|
16042
|
-
|
|
16039
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
16040
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16043
16041
|
}
|
|
16044
16042
|
}
|
|
16045
16043
|
|
|
16046
16044
|
|
|
16047
16045
|
declare module 'vue' {
|
|
16048
16046
|
interface GlobalComponents {
|
|
16049
|
-
|
|
16047
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16048
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16049
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16050
16050
|
}
|
|
16051
16051
|
}
|
|
16052
16052
|
|
|
16053
16053
|
|
|
16054
16054
|
declare module 'vue' {
|
|
16055
16055
|
interface GlobalComponents {
|
|
16056
|
-
|
|
16056
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
16057
16057
|
}
|
|
16058
16058
|
}
|
|
16059
16059
|
|
|
16060
16060
|
|
|
16061
16061
|
declare module 'vue' {
|
|
16062
16062
|
interface GlobalComponents {
|
|
16063
|
-
|
|
16063
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
16064
16064
|
}
|
|
16065
16065
|
}
|
|
16066
16066
|
|
|
16067
16067
|
|
|
16068
16068
|
declare module 'vue' {
|
|
16069
16069
|
interface GlobalComponents {
|
|
16070
|
-
|
|
16070
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
16071
16071
|
}
|
|
16072
16072
|
}
|
|
16073
16073
|
|
|
16074
16074
|
|
|
16075
16075
|
declare module 'vue' {
|
|
16076
16076
|
interface GlobalComponents {
|
|
16077
|
-
|
|
16077
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
16078
16078
|
}
|
|
16079
16079
|
}
|
|
16080
16080
|
|
|
16081
16081
|
|
|
16082
16082
|
declare module 'vue' {
|
|
16083
16083
|
interface GlobalComponents {
|
|
16084
|
-
|
|
16084
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
16085
16085
|
}
|
|
16086
16086
|
}
|
|
16087
16087
|
|
|
16088
16088
|
|
|
16089
16089
|
declare module 'vue' {
|
|
16090
16090
|
interface GlobalComponents {
|
|
16091
|
-
|
|
16091
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
16092
16092
|
}
|
|
16093
16093
|
}
|
|
16094
16094
|
|
|
16095
16095
|
|
|
16096
16096
|
declare module 'vue' {
|
|
16097
16097
|
interface GlobalComponents {
|
|
16098
|
-
|
|
16098
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
16099
16099
|
}
|
|
16100
16100
|
}
|
|
16101
16101
|
|
|
16102
16102
|
|
|
16103
16103
|
declare module 'vue' {
|
|
16104
16104
|
interface GlobalComponents {
|
|
16105
|
-
|
|
16105
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
16106
16106
|
}
|
|
16107
16107
|
}
|
|
16108
16108
|
|
|
16109
16109
|
|
|
16110
16110
|
declare module 'vue' {
|
|
16111
16111
|
interface GlobalComponents {
|
|
16112
|
-
|
|
16112
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
16113
16113
|
}
|
|
16114
16114
|
}
|
|
16115
16115
|
|
|
16116
16116
|
|
|
16117
16117
|
declare module 'vue' {
|
|
16118
16118
|
interface GlobalComponents {
|
|
16119
|
-
|
|
16119
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
16120
16120
|
}
|
|
16121
16121
|
}
|
|
16122
16122
|
|
|
16123
16123
|
|
|
16124
16124
|
declare module 'vue' {
|
|
16125
16125
|
interface GlobalComponents {
|
|
16126
|
-
|
|
16126
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
16127
16127
|
}
|
|
16128
16128
|
}
|
|
16129
16129
|
|
|
16130
16130
|
|
|
16131
16131
|
declare module 'vue' {
|
|
16132
16132
|
interface GlobalComponents {
|
|
16133
|
-
|
|
16133
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
16134
16134
|
}
|
|
16135
16135
|
}
|
|
16136
16136
|
|
|
16137
16137
|
|
|
16138
16138
|
declare module 'vue' {
|
|
16139
16139
|
interface GlobalComponents {
|
|
16140
|
-
|
|
16140
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
16141
16141
|
}
|
|
16142
16142
|
}
|
|
16143
16143
|
|
|
16144
16144
|
|
|
16145
16145
|
declare module 'vue' {
|
|
16146
16146
|
interface GlobalComponents {
|
|
16147
|
-
|
|
16147
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
16148
16148
|
}
|
|
16149
16149
|
}
|
|
16150
16150
|
|
|
16151
16151
|
|
|
16152
16152
|
declare module 'vue' {
|
|
16153
16153
|
interface GlobalComponents {
|
|
16154
|
-
|
|
16154
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
16155
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16155
16156
|
}
|
|
16156
16157
|
}
|
|
16157
16158
|
|
|
16158
16159
|
|
|
16159
16160
|
declare module 'vue' {
|
|
16160
16161
|
interface GlobalComponents {
|
|
16161
|
-
|
|
16162
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
16162
16163
|
}
|
|
16163
16164
|
}
|
|
16164
16165
|
|
|
16165
16166
|
|
|
16166
16167
|
declare module 'vue' {
|
|
16167
16168
|
interface GlobalComponents {
|
|
16168
|
-
|
|
16169
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
16170
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16169
16171
|
}
|
|
16170
16172
|
}
|
|
16171
16173
|
|
|
16172
16174
|
|
|
16173
16175
|
declare module 'vue' {
|
|
16174
16176
|
interface GlobalComponents {
|
|
16175
|
-
|
|
16177
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
16176
16178
|
}
|
|
16177
16179
|
}
|
|
16178
16180
|
|
|
16179
16181
|
|
|
16180
16182
|
declare module 'vue' {
|
|
16181
16183
|
interface GlobalComponents {
|
|
16182
|
-
|
|
16183
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16184
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
16184
16185
|
}
|
|
16185
16186
|
}
|
|
16186
16187
|
|
|
16187
16188
|
|
|
16189
|
+
/**
|
|
16190
|
+
* Global component declaration for TypeScript support
|
|
16191
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
16192
|
+
*/
|
|
16188
16193
|
declare module 'vue' {
|
|
16189
16194
|
interface GlobalComponents {
|
|
16190
|
-
|
|
16195
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
16196
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16191
16197
|
}
|
|
16192
16198
|
}
|
|
16193
16199
|
|
|
16194
16200
|
|
|
16195
16201
|
declare module 'vue' {
|
|
16196
16202
|
interface GlobalComponents {
|
|
16197
|
-
|
|
16198
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
16199
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
16200
|
-
Tr: DefineComponent<TrProps>;
|
|
16201
|
-
TBody: DefineComponent<TBodyProps>;
|
|
16202
|
-
THead: DefineComponent<THeadProps>;
|
|
16203
|
-
TFoot: DefineComponent<TFootProps>;
|
|
16203
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
16204
16204
|
}
|
|
16205
16205
|
}
|
|
16206
16206
|
|
|
16207
16207
|
|
|
16208
16208
|
declare module 'vue' {
|
|
16209
16209
|
interface GlobalComponents {
|
|
16210
|
-
|
|
16210
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
16211
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
16211
16212
|
}
|
|
16212
16213
|
}
|
|
16213
16214
|
|
|
16214
16215
|
|
|
16215
16216
|
declare module 'vue' {
|
|
16216
16217
|
interface GlobalComponents {
|
|
16217
|
-
|
|
16218
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
16218
16219
|
}
|
|
16219
16220
|
}
|
|
16220
16221
|
|
|
16221
16222
|
|
|
16222
16223
|
declare module 'vue' {
|
|
16223
16224
|
interface GlobalComponents {
|
|
16224
|
-
|
|
16225
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
16225
16226
|
}
|
|
16226
16227
|
}
|
|
16227
16228
|
|
|
16228
16229
|
|
|
16229
16230
|
declare module 'vue' {
|
|
16230
16231
|
interface GlobalComponents {
|
|
16231
|
-
|
|
16232
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
16233
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
16234
|
+
SelectLabel: DefineComponent;
|
|
16232
16235
|
}
|
|
16233
16236
|
}
|
|
16234
16237
|
|
|
16235
16238
|
|
|
16236
16239
|
declare module 'vue' {
|
|
16237
16240
|
interface GlobalComponents {
|
|
16238
|
-
|
|
16241
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
16239
16242
|
}
|
|
16240
16243
|
}
|
|
16241
16244
|
|
|
16242
16245
|
|
|
16243
16246
|
declare module 'vue' {
|
|
16244
16247
|
interface GlobalComponents {
|
|
16245
|
-
|
|
16248
|
+
Icon: DefineComponent<IconProps>;
|
|
16246
16249
|
}
|
|
16247
16250
|
}
|
|
16248
16251
|
|
|
16249
16252
|
|
|
16250
16253
|
declare module 'vue' {
|
|
16251
16254
|
interface GlobalComponents {
|
|
16252
|
-
|
|
16255
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
16253
16256
|
}
|
|
16254
16257
|
}
|
|
16255
16258
|
|
|
16256
16259
|
|
|
16257
16260
|
declare module 'vue' {
|
|
16258
16261
|
interface GlobalComponents {
|
|
16259
|
-
|
|
16262
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
16260
16263
|
}
|
|
16261
16264
|
}
|
|
16262
16265
|
|
|
16263
16266
|
|
|
16264
16267
|
declare module 'vue' {
|
|
16265
16268
|
interface GlobalComponents {
|
|
16266
|
-
|
|
16269
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
16267
16270
|
}
|
|
16268
16271
|
}
|
|
16269
16272
|
|
|
16270
16273
|
|
|
16271
16274
|
declare module 'vue' {
|
|
16272
16275
|
interface GlobalComponents {
|
|
16273
|
-
|
|
16276
|
+
Divider: DefineComponent<DividerProps>;
|
|
16274
16277
|
}
|
|
16275
16278
|
}
|
|
16276
16279
|
|
|
16277
16280
|
|
|
16278
16281
|
declare module 'vue' {
|
|
16279
16282
|
interface GlobalComponents {
|
|
16280
|
-
|
|
16283
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
16281
16284
|
}
|
|
16282
16285
|
}
|
|
16283
16286
|
|
|
16284
16287
|
|
|
16285
16288
|
declare module 'vue' {
|
|
16286
16289
|
interface GlobalComponents {
|
|
16287
|
-
|
|
16290
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
16288
16291
|
}
|
|
16289
16292
|
}
|
|
16290
16293
|
|
|
16291
16294
|
|
|
16292
16295
|
declare module 'vue' {
|
|
16293
16296
|
interface GlobalComponents {
|
|
16294
|
-
|
|
16297
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
16295
16298
|
}
|
|
16296
16299
|
}
|
|
16297
16300
|
|
|
16298
16301
|
|
|
16299
16302
|
declare module 'vue' {
|
|
16300
16303
|
interface GlobalComponents {
|
|
16301
|
-
|
|
16304
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
16302
16305
|
}
|
|
16303
16306
|
}
|
|
16304
16307
|
|
|
16305
16308
|
|
|
16306
16309
|
declare module 'vue' {
|
|
16307
16310
|
interface GlobalComponents {
|
|
16308
|
-
|
|
16311
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
16312
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
16313
|
+
ComboboxOption: DefineComponent;
|
|
16309
16314
|
}
|
|
16310
16315
|
}
|
|
16311
16316
|
|
|
16312
16317
|
|
|
16313
16318
|
declare module 'vue' {
|
|
16314
16319
|
interface GlobalComponents {
|
|
16315
|
-
|
|
16320
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
16316
16321
|
}
|
|
16317
16322
|
}
|
|
16318
16323
|
|
|
16319
16324
|
|
|
16320
16325
|
declare module 'vue' {
|
|
16321
16326
|
interface GlobalComponents {
|
|
16322
|
-
|
|
16327
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
16323
16328
|
}
|
|
16324
16329
|
}
|
|
16325
16330
|
|
|
16326
16331
|
|
|
16327
16332
|
declare module 'vue' {
|
|
16328
16333
|
interface GlobalComponents {
|
|
16329
|
-
|
|
16334
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
16330
16335
|
}
|
|
16331
16336
|
}
|
|
16332
16337
|
|
|
16333
16338
|
|
|
16334
16339
|
declare module 'vue' {
|
|
16335
16340
|
interface GlobalComponents {
|
|
16336
|
-
|
|
16341
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
16337
16342
|
}
|
|
16338
16343
|
}
|
|
16339
16344
|
|
|
16340
16345
|
|
|
16341
16346
|
declare module 'vue' {
|
|
16342
16347
|
interface GlobalComponents {
|
|
16343
|
-
|
|
16344
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16348
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
16345
16349
|
}
|
|
16346
16350
|
}
|
|
16347
16351
|
|
|
16348
16352
|
|
|
16349
16353
|
declare module 'vue' {
|
|
16350
16354
|
interface GlobalComponents {
|
|
16351
|
-
|
|
16355
|
+
Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
|
|
16352
16356
|
}
|
|
16353
16357
|
}
|
|
16354
16358
|
|
|
16355
16359
|
|
|
16356
16360
|
declare module 'vue' {
|
|
16357
16361
|
interface GlobalComponents {
|
|
16358
|
-
|
|
16362
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
16359
16363
|
}
|
|
16360
16364
|
}
|
|
16361
16365
|
|
|
16362
16366
|
|
|
16363
16367
|
declare module 'vue' {
|
|
16364
16368
|
interface GlobalComponents {
|
|
16365
|
-
|
|
16366
|
-
|
|
16367
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16369
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
16370
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
16368
16371
|
}
|
|
16369
16372
|
}
|
|
16370
16373
|
|
|
16371
16374
|
|
|
16372
16375
|
declare module 'vue' {
|
|
16373
16376
|
interface GlobalComponents {
|
|
16374
|
-
|
|
16377
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
16375
16378
|
}
|
|
16376
16379
|
}
|
|
16377
16380
|
|
|
16378
16381
|
|
|
16379
16382
|
declare module 'vue' {
|
|
16380
16383
|
interface GlobalComponents {
|
|
16381
|
-
|
|
16384
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
16385
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16386
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16387
|
+
TabContent: DefineComponent;
|
|
16382
16388
|
}
|
|
16383
16389
|
}
|
|
16384
16390
|
|
|
16385
16391
|
|
|
16386
16392
|
declare module 'vue' {
|
|
16387
16393
|
interface GlobalComponents {
|
|
16388
|
-
|
|
16394
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
16389
16395
|
}
|
|
16390
16396
|
}
|
|
16391
16397
|
|
|
16392
16398
|
|
|
16393
16399
|
declare module 'vue' {
|
|
16394
16400
|
interface GlobalComponents {
|
|
16395
|
-
|
|
16401
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
16402
|
+
Th: DefineComponent<ThProps, ThSlots>;
|
|
16403
|
+
Td: DefineComponent<TdProps, TdSlots>;
|
|
16404
|
+
Tr: DefineComponent<TrProps>;
|
|
16405
|
+
TBody: DefineComponent<TBodyProps>;
|
|
16406
|
+
THead: DefineComponent<THeadProps>;
|
|
16407
|
+
TFoot: DefineComponent<TFootProps>;
|
|
16396
16408
|
}
|
|
16397
16409
|
}
|
|
16398
16410
|
|
|
16399
16411
|
|
|
16400
|
-
/**
|
|
16401
|
-
* Global component declaration for TypeScript support
|
|
16402
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
16403
|
-
*/
|
|
16404
16412
|
declare module 'vue' {
|
|
16405
16413
|
interface GlobalComponents {
|
|
16406
|
-
|
|
16407
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16414
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
16408
16415
|
}
|
|
16409
16416
|
}
|
|
16410
16417
|
|
|
16411
16418
|
|
|
16412
16419
|
declare module 'vue' {
|
|
16413
16420
|
interface GlobalComponents {
|
|
16414
|
-
|
|
16421
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
16415
16422
|
}
|
|
16416
16423
|
}
|
|
16417
16424
|
|
|
16418
16425
|
|
|
16419
16426
|
declare module 'vue' {
|
|
16420
16427
|
interface GlobalComponents {
|
|
16421
|
-
|
|
16422
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
16423
|
-
SelectLabel: DefineComponent;
|
|
16428
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
16424
16429
|
}
|
|
16425
16430
|
}
|
|
16426
16431
|
|
|
16427
16432
|
|
|
16428
16433
|
declare module 'vue' {
|
|
16429
16434
|
interface GlobalComponents {
|
|
16430
|
-
|
|
16431
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16435
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
16432
16436
|
}
|
|
16433
16437
|
}
|
|
16434
16438
|
|
|
16435
16439
|
|
|
16436
16440
|
declare module 'vue' {
|
|
16437
16441
|
interface GlobalComponents {
|
|
16438
|
-
|
|
16442
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
16439
16443
|
}
|
|
16440
16444
|
}
|
|
16441
16445
|
|
|
16442
16446
|
|
|
16443
16447
|
declare module 'vue' {
|
|
16444
16448
|
interface GlobalComponents {
|
|
16445
|
-
|
|
16449
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
16446
16450
|
}
|
|
16447
16451
|
}
|
|
16448
16452
|
|
|
16449
16453
|
|
|
16450
16454
|
declare module 'vue' {
|
|
16451
16455
|
interface GlobalComponents {
|
|
16452
|
-
|
|
16453
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16454
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16455
|
-
TabContent: DefineComponent;
|
|
16456
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
16456
16457
|
}
|
|
16457
16458
|
}
|
|
16458
16459
|
|
|
16459
16460
|
|
|
16460
16461
|
declare module 'vue' {
|
|
16461
16462
|
interface GlobalComponents {
|
|
16462
|
-
|
|
16463
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
16463
16464
|
}
|
|
16464
16465
|
}
|
|
16465
16466
|
|
|
16466
16467
|
|
|
16467
16468
|
declare module 'vue' {
|
|
16468
16469
|
interface GlobalComponents {
|
|
16469
|
-
|
|
16470
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16470
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
16471
16471
|
}
|
|
16472
16472
|
}
|
|
16473
16473
|
|