@pantograph/vue 0.34.43 → 0.35.1

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 CHANGED
@@ -7,11 +7,13 @@
7
7
  Pantograph's Vue 3 component library, built with TypeScript and token-based design. Ready to use in your apps with light/dark token switching and simple, consistent APIs.
8
8
 
9
9
  ## Install
10
+
10
11
  ```bash
11
12
  npm i @pantograph/vue
12
13
  ```
13
14
 
14
15
  ## Quick usage
16
+
15
17
  ```vue
16
18
  <script setup lang="ts">
17
19
  import { Button } from '@pantograph/vue'
@@ -19,13 +21,30 @@ import '@pantograph/styles'
19
21
  </script>
20
22
 
21
23
  <template>
22
- <Button>Click me</Button>
24
+ <Button variant="primary">Click me</Button>
23
25
  </template>
24
26
  ```
25
27
 
28
+ ## Key Features
29
+
30
+ - **80+ WAI-ARIA components** built on top of `reka-ui` for robust accessibility
31
+ - **Base → Public pattern**: Internal base components (e.g., `BaseButton`) are wrapped and styled into public Pantograph components (e.g., `Button`)
32
+ - **CSS-in-JS styling**: Style imports are handled via `useCssInJs` from `useConfig()` — no `<style>` tags required for component styling
33
+ - **Dark mode**: Activated via CSS class (`pantograph-dark` or `pantograph-light`) on the root element; never uses `.dark` CSS rules
34
+ - **Token system**: All CSS variables use the `--pt-*` prefix for consistent theming
35
+ - **Strict exports**: Named exports only; no default exports and no subpath imports (e.g., `@pantograph/vue/Button` is not allowed)
36
+ - **Component structure**: Each component follows a standardized layout: `.vue` + `index.ts` + `types.ts` + `constant.ts` + `model.ts` + `context.ts`
37
+
38
+ ## Navigation
39
+
40
+ For a complete map of all packages, components, and import paths, refer to the centralized navigation index:
41
+ - [`.ai/NAVIGATION.md`](../../.ai/NAVIGATION.md)
42
+
26
43
  ## Documentation
44
+
27
45
  For full documentation and live examples, visit the Pantograph docs:
28
46
 
29
47
  - Docs: [Introduction & Stories](https://panto.stg.bounteco.com/story/src-story-introduction-story-js)
30
-
31
-
48
+ - Component APIs: [`.ai/component-contracts.json`](../../.ai/component-contracts.json)
49
+ - Import paths: [`.ai/symbol-map.json`](../../.ai/symbol-map.json)
50
+ - Run `npm run ai:index` to regenerate indexes after structural changes
package/dist/index.d.ts CHANGED
@@ -15953,331 +15953,341 @@ 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
- Image: DefineComponent<ImageProps, ImageSlots>;
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
- CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
15967
+ Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
15966
15968
  }
15967
15969
  }
15968
15970
 
15969
15971
 
15970
15972
  declare module 'vue' {
15971
15973
  interface GlobalComponents {
15972
- AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
15974
+ Badge: DefineComponent<BadgeProps, BadgeSlots>;
15973
15975
  }
15974
15976
  }
15975
15977
 
15976
15978
 
15977
15979
  declare module 'vue' {
15978
15980
  interface GlobalComponents {
15979
- Card: DefineComponent<CardProps, CardSlots>;
15981
+ Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
15980
15982
  }
15981
15983
  }
15982
15984
 
15983
15985
 
15984
15986
  declare module 'vue' {
15985
15987
  interface GlobalComponents {
15986
- Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
15987
- ComboboxInput: DefineComponent<ComboboxInputProps>;
15988
- ComboboxOption: DefineComponent;
15988
+ ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
15989
15989
  }
15990
15990
  }
15991
15991
 
15992
15992
 
15993
15993
  declare module 'vue' {
15994
15994
  interface GlobalComponents {
15995
- ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
15995
+ CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
15996
15996
  }
15997
15997
  }
15998
15998
 
15999
15999
 
16000
16000
  declare module 'vue' {
16001
16001
  interface GlobalComponents {
16002
- Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
16003
- MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
16002
+ Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16003
+ UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16004
+ UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
16004
16005
  }
16005
16006
  }
16006
16007
 
16007
16008
 
16009
+ /**
16010
+ * Global component declaration for TypeScript support
16011
+ * Enables <Tooltip> usage in templates without explicit import
16012
+ */
16008
16013
  declare module 'vue' {
16009
16014
  interface GlobalComponents {
16010
- Blanket: DefineComponent<BlanketProps>;
16015
+ Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
16016
+ TooltipProvider: DefineComponent<TooltipProviderProps>;
16011
16017
  }
16012
16018
  }
16013
16019
 
16014
16020
 
16015
16021
  declare module 'vue' {
16016
16022
  interface GlobalComponents {
16017
- ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
16023
+ Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
16018
16024
  }
16019
16025
  }
16020
16026
 
16021
16027
 
16022
- /** component declare **/
16023
16028
  declare module 'vue' {
16024
16029
  interface GlobalComponents {
16025
- Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
16026
- AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
16030
+ ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
16027
16031
  }
16028
16032
  }
16029
16033
 
16030
16034
 
16031
16035
  declare module 'vue' {
16032
16036
  interface GlobalComponents {
16033
- RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
16034
- RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
16037
+ Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
16038
+ Th: DefineComponent<ThProps, ThSlots>;
16039
+ Td: DefineComponent<TdProps, TdSlots>;
16040
+ Tr: DefineComponent<TrProps>;
16041
+ TBody: DefineComponent<TBodyProps>;
16042
+ THead: DefineComponent<THeadProps>;
16043
+ TFoot: DefineComponent<TFootProps>;
16035
16044
  }
16036
16045
  }
16037
16046
 
16038
16047
 
16039
16048
  declare module 'vue' {
16040
16049
  interface GlobalComponents {
16041
- Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
16042
- DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
16050
+ IndentLevel: DefineComponent<IndentLevelProps>;
16043
16051
  }
16044
16052
  }
16045
16053
 
16046
16054
 
16047
16055
  declare module 'vue' {
16048
16056
  interface GlobalComponents {
16049
- InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
16057
+ IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
16050
16058
  }
16051
16059
  }
16052
16060
 
16053
16061
 
16054
16062
  declare module 'vue' {
16055
16063
  interface GlobalComponents {
16056
- ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
16064
+ Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
16057
16065
  }
16058
16066
  }
16059
16067
 
16060
16068
 
16061
16069
  declare module 'vue' {
16062
16070
  interface GlobalComponents {
16063
- AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
16071
+ Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
16064
16072
  }
16065
16073
  }
16066
16074
 
16067
16075
 
16068
16076
  declare module 'vue' {
16069
16077
  interface GlobalComponents {
16070
- IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
16078
+ Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
16071
16079
  }
16072
16080
  }
16073
16081
 
16074
16082
 
16075
16083
  declare module 'vue' {
16076
16084
  interface GlobalComponents {
16077
- Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
16085
+ FormValidation: DefineComponent<FormValidationProps>;
16078
16086
  }
16079
16087
  }
16080
16088
 
16081
16089
 
16082
16090
  declare module 'vue' {
16083
16091
  interface GlobalComponents {
16084
- ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
16092
+ ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
16085
16093
  }
16086
16094
  }
16087
16095
 
16088
16096
 
16089
16097
  declare module 'vue' {
16090
16098
  interface GlobalComponents {
16091
- Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
16099
+ Divider: DefineComponent<DividerProps>;
16092
16100
  }
16093
16101
  }
16094
16102
 
16095
16103
 
16096
16104
  declare module 'vue' {
16097
16105
  interface GlobalComponents {
16098
- SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
16106
+ GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
16099
16107
  }
16100
16108
  }
16101
16109
 
16102
16110
 
16103
16111
  declare module 'vue' {
16104
16112
  interface GlobalComponents {
16105
- Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
16113
+ Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
16114
+ ComboboxInput: DefineComponent<ComboboxInputProps>;
16115
+ ComboboxOption: DefineComponent;
16106
16116
  }
16107
16117
  }
16108
16118
 
16109
16119
 
16110
16120
  declare module 'vue' {
16111
16121
  interface GlobalComponents {
16112
- Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
16122
+ GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
16113
16123
  }
16114
16124
  }
16115
16125
 
16116
16126
 
16117
16127
  declare module 'vue' {
16118
16128
  interface GlobalComponents {
16119
- Button: DefineComponent<ButtonProps, ButtonSlots>;
16129
+ Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
16130
+ DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
16120
16131
  }
16121
16132
  }
16122
16133
 
16123
16134
 
16124
16135
  declare module 'vue' {
16125
16136
  interface GlobalComponents {
16126
- Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
16137
+ Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
16127
16138
  }
16128
16139
  }
16129
16140
 
16130
16141
 
16131
16142
  declare module 'vue' {
16132
16143
  interface GlobalComponents {
16133
- Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
16144
+ Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
16145
+ DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
16134
16146
  }
16135
16147
  }
16136
16148
 
16137
16149
 
16138
16150
  declare module 'vue' {
16139
16151
  interface GlobalComponents {
16140
- Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
16152
+ Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
16141
16153
  }
16142
16154
  }
16143
16155
 
16144
16156
 
16145
16157
  declare module 'vue' {
16146
16158
  interface GlobalComponents {
16147
- Icon: DefineComponent<IconProps>;
16159
+ Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
16160
+ TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
16148
16161
  }
16149
16162
  }
16150
16163
 
16151
16164
 
16152
16165
  declare module 'vue' {
16153
16166
  interface GlobalComponents {
16154
- Input: DefineComponent<InputProps, InputSlots, InputEmits>;
16167
+ Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
16155
16168
  }
16156
16169
  }
16157
16170
 
16158
16171
 
16159
16172
  declare module 'vue' {
16160
16173
  interface GlobalComponents {
16161
- GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
16174
+ InputGroup: DefineComponent<InputGroupProps>;
16162
16175
  }
16163
16176
  }
16164
16177
 
16165
16178
 
16166
16179
  declare module 'vue' {
16167
16180
  interface GlobalComponents {
16168
- Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
16181
+ Input: DefineComponent<InputProps, InputSlots, InputEmits>;
16169
16182
  }
16170
16183
  }
16171
16184
 
16172
16185
 
16173
16186
  declare module 'vue' {
16174
16187
  interface GlobalComponents {
16175
- Badge: DefineComponent<BadgeProps, BadgeSlots>;
16188
+ Empty: DefineComponent<EmptyProps, EmptySlots>;
16176
16189
  }
16177
16190
  }
16178
16191
 
16179
16192
 
16180
16193
  declare module 'vue' {
16181
16194
  interface GlobalComponents {
16182
- Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
16183
- DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
16195
+ Kbd: DefineComponent<KbdProps, KbdSlots>;
16184
16196
  }
16185
16197
  }
16186
16198
 
16187
16199
 
16188
16200
  declare module 'vue' {
16189
16201
  interface GlobalComponents {
16190
- DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
16202
+ ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
16191
16203
  }
16192
16204
  }
16193
16205
 
16194
16206
 
16195
16207
  declare module 'vue' {
16196
16208
  interface GlobalComponents {
16197
- Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
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>;
16209
+ Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
16210
+ SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
16211
+ SelectLabel: DefineComponent;
16204
16212
  }
16205
16213
  }
16206
16214
 
16207
16215
 
16208
16216
  declare module 'vue' {
16209
16217
  interface GlobalComponents {
16210
- PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
16218
+ PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
16211
16219
  }
16212
16220
  }
16213
16221
 
16214
16222
 
16215
16223
  declare module 'vue' {
16216
16224
  interface GlobalComponents {
16217
- ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
16225
+ ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
16218
16226
  }
16219
16227
  }
16220
16228
 
16221
16229
 
16222
16230
  declare module 'vue' {
16223
16231
  interface GlobalComponents {
16224
- HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
16232
+ Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
16233
+ Step: DefineComponent<StepItemProps, StepItemSlots>;
16225
16234
  }
16226
16235
  }
16227
16236
 
16228
16237
 
16229
16238
  declare module 'vue' {
16230
16239
  interface GlobalComponents {
16231
- ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
16240
+ Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
16232
16241
  }
16233
16242
  }
16234
16243
 
16235
16244
 
16236
16245
  declare module 'vue' {
16237
16246
  interface GlobalComponents {
16238
- ButtonGroup: DefineComponent<ButtonGroupProps>;
16247
+ Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
16239
16248
  }
16240
16249
  }
16241
16250
 
16242
16251
 
16243
16252
  declare module 'vue' {
16244
16253
  interface GlobalComponents {
16245
- Skeleton: DefineComponent<SkeletonProps>;
16254
+ ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
16246
16255
  }
16247
16256
  }
16248
16257
 
16249
16258
 
16250
16259
  declare module 'vue' {
16251
16260
  interface GlobalComponents {
16252
- Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
16261
+ RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
16262
+ RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
16253
16263
  }
16254
16264
  }
16255
16265
 
16256
16266
 
16257
16267
  declare module 'vue' {
16258
16268
  interface GlobalComponents {
16259
- Empty: DefineComponent<EmptyProps, EmptySlots>;
16269
+ AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
16260
16270
  }
16261
16271
  }
16262
16272
 
16263
16273
 
16264
16274
  declare module 'vue' {
16265
16275
  interface GlobalComponents {
16266
- PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
16276
+ Blanket: DefineComponent<BlanketProps>;
16267
16277
  }
16268
16278
  }
16269
16279
 
16270
16280
 
16271
16281
  declare module 'vue' {
16272
16282
  interface GlobalComponents {
16273
- IndentLevel: DefineComponent<IndentLevelProps>;
16283
+ Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
16274
16284
  }
16275
16285
  }
16276
16286
 
16277
16287
 
16278
16288
  declare module 'vue' {
16279
16289
  interface GlobalComponents {
16280
- Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
16290
+ Label: DefineComponent<LabelProps, LabelSlots>;
16281
16291
  }
16282
16292
  }
16283
16293
 
@@ -16291,151 +16301,145 @@ declare module 'vue' {
16291
16301
 
16292
16302
  declare module 'vue' {
16293
16303
  interface GlobalComponents {
16294
- ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
16304
+ MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
16295
16305
  }
16296
16306
  }
16297
16307
 
16298
16308
 
16299
16309
  declare module 'vue' {
16300
16310
  interface GlobalComponents {
16301
- MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
16311
+ AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
16302
16312
  }
16303
16313
  }
16304
16314
 
16305
16315
 
16306
16316
  declare module 'vue' {
16307
16317
  interface GlobalComponents {
16308
- FormValidation: DefineComponent<FormValidationProps>;
16318
+ Card: DefineComponent<CardProps, CardSlots>;
16309
16319
  }
16310
16320
  }
16311
16321
 
16312
16322
 
16313
16323
  declare module 'vue' {
16314
16324
  interface GlobalComponents {
16315
- Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
16325
+ Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
16316
16326
  }
16317
16327
  }
16318
16328
 
16319
16329
 
16320
16330
  declare module 'vue' {
16321
16331
  interface GlobalComponents {
16322
- Label: DefineComponent<LabelProps, LabelSlots>;
16332
+ InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
16323
16333
  }
16324
16334
  }
16325
16335
 
16326
16336
 
16327
16337
  declare module 'vue' {
16328
16338
  interface GlobalComponents {
16329
- GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
16339
+ Indicator: DefineComponent<IndicatorProps>;
16330
16340
  }
16331
16341
  }
16332
16342
 
16333
16343
 
16334
16344
  declare module 'vue' {
16335
16345
  interface GlobalComponents {
16336
- Divider: DefineComponent<DividerProps>;
16346
+ Button: DefineComponent<ButtonProps, ButtonSlots>;
16337
16347
  }
16338
16348
  }
16339
16349
 
16340
16350
 
16341
16351
  declare module 'vue' {
16342
16352
  interface GlobalComponents {
16343
- Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
16344
- TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
16353
+ ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
16345
16354
  }
16346
16355
  }
16347
16356
 
16348
16357
 
16349
16358
  declare module 'vue' {
16350
16359
  interface GlobalComponents {
16351
- Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
16360
+ Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
16361
+ TabList: DefineComponent<TabListProps, TabListSlots>;
16362
+ TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
16363
+ TabContent: DefineComponent;
16352
16364
  }
16353
16365
  }
16354
16366
 
16355
16367
 
16356
16368
  declare module 'vue' {
16357
16369
  interface GlobalComponents {
16358
- Kbd: DefineComponent<KbdProps, KbdSlots>;
16370
+ Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
16359
16371
  }
16360
16372
  }
16361
16373
 
16362
16374
 
16363
16375
  declare module 'vue' {
16364
16376
  interface GlobalComponents {
16365
- Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16366
- UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16367
- UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
16377
+ DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
16368
16378
  }
16369
16379
  }
16370
16380
 
16371
16381
 
16372
16382
  declare module 'vue' {
16373
16383
  interface GlobalComponents {
16374
- Indicator: DefineComponent<IndicatorProps>;
16384
+ Skeleton: DefineComponent<SkeletonProps>;
16375
16385
  }
16376
16386
  }
16377
16387
 
16378
16388
 
16379
16389
  declare module 'vue' {
16380
16390
  interface GlobalComponents {
16381
- InputGroup: DefineComponent<InputGroupProps>;
16391
+ SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
16382
16392
  }
16383
16393
  }
16384
16394
 
16385
16395
 
16386
16396
  declare module 'vue' {
16387
16397
  interface GlobalComponents {
16388
- Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
16398
+ Image: DefineComponent<ImageProps, ImageSlots>;
16389
16399
  }
16390
16400
  }
16391
16401
 
16392
16402
 
16393
16403
  declare module 'vue' {
16394
16404
  interface GlobalComponents {
16395
- Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
16405
+ ButtonGroup: DefineComponent<ButtonGroupProps>;
16396
16406
  }
16397
16407
  }
16398
16408
 
16399
16409
 
16400
- /**
16401
- * Global component declaration for TypeScript support
16402
- * Enables <Tooltip> usage in templates without explicit import
16403
- */
16404
16410
  declare module 'vue' {
16405
16411
  interface GlobalComponents {
16406
- Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
16407
- TooltipProvider: DefineComponent<TooltipProviderProps>;
16412
+ Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
16413
+ ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
16408
16414
  }
16409
16415
  }
16410
16416
 
16411
16417
 
16412
16418
  declare module 'vue' {
16413
16419
  interface GlobalComponents {
16414
- Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
16420
+ ScrollContainer: DefineComponent<ScrollContainerProps>;
16415
16421
  }
16416
16422
  }
16417
16423
 
16418
16424
 
16419
16425
  declare module 'vue' {
16420
16426
  interface GlobalComponents {
16421
- Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
16422
- SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
16423
- SelectLabel: DefineComponent;
16427
+ Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
16428
+ MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
16424
16429
  }
16425
16430
  }
16426
16431
 
16427
16432
 
16428
16433
  declare module 'vue' {
16429
16434
  interface GlobalComponents {
16430
- Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
16431
- ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
16435
+ HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
16432
16436
  }
16433
16437
  }
16434
16438
 
16435
16439
 
16436
16440
  declare module 'vue' {
16437
16441
  interface GlobalComponents {
16438
- ScrollContainer: DefineComponent<ScrollContainerProps>;
16442
+ Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
16439
16443
  }
16440
16444
  }
16441
16445
 
@@ -16449,25 +16453,21 @@ declare module 'vue' {
16449
16453
 
16450
16454
  declare module 'vue' {
16451
16455
  interface GlobalComponents {
16452
- Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
16453
- TabList: DefineComponent<TabListProps, TabListSlots>;
16454
- TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
16455
- TabContent: DefineComponent;
16456
+ Icon: DefineComponent<IconProps>;
16456
16457
  }
16457
16458
  }
16458
16459
 
16459
16460
 
16460
16461
  declare module 'vue' {
16461
16462
  interface GlobalComponents {
16462
- Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
16463
+ Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
16463
16464
  }
16464
16465
  }
16465
16466
 
16466
16467
 
16467
16468
  declare module 'vue' {
16468
16469
  interface GlobalComponents {
16469
- Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
16470
- Step: DefineComponent<StepItemProps, StepItemSlots>;
16470
+ PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
16471
16471
  }
16472
16472
  }
16473
16473