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