@pantograph/vue 0.34.41 → 0.34.42

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 CHANGED
@@ -1152,7 +1152,7 @@ onOk?: ((event?: PointerEvent | undefined) => any) | undefined;
1152
1152
  onAfterClose?: (() => any) | undefined;
1153
1153
  onAfterOpen?: (() => any) | undefined;
1154
1154
  }>, {
1155
- type: string;
1155
+ type: "danger" | "info";
1156
1156
  open: boolean;
1157
1157
  mask: boolean;
1158
1158
  width: string | number;
@@ -1360,7 +1360,7 @@ export declare type AlertDialogType = (typeof AlertDialogTypes)[number];
1360
1360
  * - `info`: Informational alerts with blue/sky color scheme
1361
1361
  * - `danger`: Destructive action alerts with red color scheme
1362
1362
  */
1363
- export declare const AlertDialogTypes: string[];
1363
+ export declare const AlertDialogTypes: readonly ["info", "danger"];
1364
1364
 
1365
1365
  /**
1366
1366
  * Events emitted by the Alert component
@@ -2390,6 +2390,10 @@ export declare interface BaseInputEmits {
2390
2390
  */
2391
2391
  export declare interface BaseInputProps {
2392
2392
  noBg?: boolean;
2393
+ /**
2394
+ * Disable the focus ring on the input wrapper
2395
+ */
2396
+ noRing?: boolean;
2393
2397
  dir?: Direction;
2394
2398
  /**
2395
2399
  * Whether the input is read-only
@@ -3284,6 +3288,10 @@ export declare type CheckboxGroupProps = PrimitiveProps & {
3284
3288
  * Whether the checkbox group is disabled
3285
3289
  */
3286
3290
  disabled?: boolean;
3291
+ /**
3292
+ * Whether to disable the focus ring on checkboxes (child checkboxes inherit unless overridden)
3293
+ */
3294
+ noRing?: boolean;
3287
3295
  /**
3288
3296
  * Name for the checkbox group
3289
3297
  */
@@ -3303,6 +3311,8 @@ export declare type CheckboxGroupValue = (number | string)[];
3303
3311
  * Props for the Checkbox component
3304
3312
  */
3305
3313
  export declare interface CheckboxProps extends Omit<CheckboxRootProps, 'as' | 'asChild' | 'value'> {
3314
+ /** Whether to disable the focus ring */
3315
+ noRing?: boolean;
3306
3316
  dir?: Direction;
3307
3317
  /** deprecated */
3308
3318
  checked?: CheckboxRootProps['modelValue'];
@@ -5195,7 +5205,7 @@ export declare const comboboxPrefix: string;
5195
5205
  * Props interface for the Combobox component
5196
5206
  * @interface ComboboxProps
5197
5207
  */
5198
- export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side' | 'align' | 'flipOnDir' | 'containerProps' | 'open' | 'defaultOpen' | 'zIndex' | 'to' | 'sideOffset' | 'alignOffset' | 'reference' | 'prioritizePosition' | 'avoidCollisions' | 'dir' | 'noTrigger' | 'ignoreParentTo' | 'disableOutsidePointerEvents'>> {
5208
+ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side' | 'align' | 'flipOnDir' | 'sideFlip' | 'alignFlip' | 'containerProps' | 'open' | 'defaultOpen' | 'zIndex' | 'to' | 'sideOffset' | 'alignOffset' | 'reference' | 'prioritizePosition' | 'avoidCollisions' | 'dir' | 'noTrigger' | 'ignoreParentTo' | 'disableOutsidePointerEvents'>> {
5199
5209
  /**
5200
5210
  * Base props
5201
5211
  */
@@ -5203,6 +5213,8 @@ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side'
5203
5213
  modelValue?: string | string[];
5204
5214
  /** Default selected value(s) */
5205
5215
  defaultValue?: string | string[];
5216
+ /** Whether to disable the focus ring on the trigger */
5217
+ noRing?: boolean;
5206
5218
  /** Whether multiple selection is enabled */
5207
5219
  multiple?: boolean;
5208
5220
  /** Whether the combobox is disabled */
@@ -5451,7 +5463,7 @@ export declare interface ComboboxTriggerDefSlotProps {
5451
5463
 
5452
5464
  export declare const comboboxTriggerPrefix: string;
5453
5465
 
5454
- export declare interface ComboboxTriggerProps extends Partial<Pick<ComboboxProps, 'triggerMinWidth' | 'triggerCls' | 'triggerTrailingCls' | 'triggerLeadingCls' | 'triggerContentPlaceholderCls' | 'tagCls' | 'tree' | 'showTreeTagStrategy' | 'modelValue' | 'defaultValue' | 'multiple' | 'disabled' | 'readonly' | 'size' | 'status' | 'bordered' | 'noValueOnPlaceholder' | 'tagRenderMode' | 'getTagProps' | 'contentFit' | 'wrapped' | 'noTrailing' | 'leadingIcon' | 'trailingIcon' | 'selectedItemIconAsTrailingIcon' | 'maxCount' | 'placeholder' | 'options' | 'getLabel' | 'getValue' | 'getOptions' | 'getIcon' | 'dir' | 'open'>> {
5466
+ export declare interface ComboboxTriggerProps extends Partial<Pick<ComboboxProps, 'triggerMinWidth' | 'triggerCls' | 'triggerTrailingCls' | 'triggerLeadingCls' | 'triggerContentPlaceholderCls' | 'tagCls' | 'tree' | 'showTreeTagStrategy' | 'modelValue' | 'defaultValue' | 'multiple' | 'disabled' | 'readonly' | 'size' | 'status' | 'bordered' | 'noValueOnPlaceholder' | 'tagRenderMode' | 'getTagProps' | 'contentFit' | 'wrapped' | 'noTrailing' | 'leadingIcon' | 'trailingIcon' | 'selectedItemIconAsTrailingIcon' | 'maxCount' | 'placeholder' | 'options' | 'getLabel' | 'getValue' | 'getOptions' | 'getIcon' | 'dir' | 'open' | 'noRing'>> {
5455
5467
  triggerOnly?: boolean;
5456
5468
  }
5457
5469
 
@@ -8829,6 +8841,7 @@ export declare interface InputNumberProps extends Omit<BaseInputProps, 'hasValue
8829
8841
  placeholder?: string;
8830
8842
  /** Whether the input is disabled */
8831
8843
  disabled?: boolean;
8844
+ noRing?: boolean;
8832
8845
  /** Whether the input is required */
8833
8846
  required?: boolean;
8834
8847
  /** The current value of the input */
@@ -8880,6 +8893,7 @@ export declare interface InputProps extends Omit<BaseInputProps, 'hasValue'> {
8880
8893
  * Whether the input is disabled
8881
8894
  */
8882
8895
  disabled?: boolean;
8896
+ noRing?: boolean;
8883
8897
  /**
8884
8898
  * Whether the input is required
8885
8899
  */
@@ -9102,6 +9116,8 @@ export declare interface LinkProps {
9102
9116
  /** The text style for the link */
9103
9117
  txs?: LinkStyle_2;
9104
9118
  color?: string;
9119
+ /** Disable the focus ring */
9120
+ noRing?: boolean;
9105
9121
  }
9106
9122
 
9107
9123
  /**
@@ -10248,6 +10264,10 @@ export declare interface PinInputEmits extends PinInputRootEmits {
10248
10264
  * Props for the PinInput component
10249
10265
  */
10250
10266
  export declare interface PinInputProps extends Omit<PinInputRootProps, 'as' | 'asChild' | 'defaultValue'> {
10267
+ /**
10268
+ * Disable the focus ring on each cell
10269
+ */
10270
+ noRing?: boolean;
10251
10271
  /**
10252
10272
  * Text direction for the component
10253
10273
  */
@@ -10898,6 +10918,8 @@ declare interface ProgressProps extends ProgressCirclePathProps {
10898
10918
  status?: ProgressStatus;
10899
10919
  /** The label text for the progress indicator */
10900
10920
  label?: string;
10921
+ /** CSS classes to apply to the label */
10922
+ labelCls?: ClassValue;
10901
10923
  /** Validation message to display with the progress indicator */
10902
10924
  validationMessage?: string;
10903
10925
  /** Helper text to display below the progress indicator */
@@ -13132,6 +13154,8 @@ export declare interface SwitchProps extends Omit<SwitchRootProps, 'asChild'> {
13132
13154
  labelCls?: ClassValue;
13133
13155
  /** Text label for the Switch component */
13134
13156
  label?: string;
13157
+ /** Whether to disable the focus ring */
13158
+ noRing?: boolean;
13135
13159
  }
13136
13160
 
13137
13161
  declare type SwitchRootEmits = {
@@ -14040,6 +14064,10 @@ export declare interface TextareaProps {
14040
14064
  maxHeight?: string | number;
14041
14065
  outsideFgColor?: boolean;
14042
14066
  readonly?: boolean;
14067
+ /**
14068
+ * Whether to disable the focus ring
14069
+ */
14070
+ noRing?: boolean;
14043
14071
  }
14044
14072
 
14045
14073
  /**
@@ -15840,21 +15868,21 @@ export { }
15840
15868
 
15841
15869
  declare module 'vue' {
15842
15870
  interface GlobalComponents {
15843
- Card: DefineComponent<CardProps, CardSlots>;
15871
+ GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
15844
15872
  }
15845
15873
  }
15846
15874
 
15847
15875
 
15848
15876
  declare module 'vue' {
15849
15877
  interface GlobalComponents {
15850
- Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
15878
+ Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
15851
15879
  }
15852
15880
  }
15853
15881
 
15854
15882
 
15855
15883
  declare module 'vue' {
15856
15884
  interface GlobalComponents {
15857
- ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
15885
+ ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
15858
15886
  }
15859
15887
  }
15860
15888
 
@@ -15868,491 +15896,491 @@ declare module 'vue' {
15868
15896
 
15869
15897
  declare module 'vue' {
15870
15898
  interface GlobalComponents {
15871
- Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
15899
+ Label: DefineComponent<LabelProps, LabelSlots>;
15872
15900
  }
15873
15901
  }
15874
15902
 
15875
15903
 
15876
15904
  declare module 'vue' {
15877
15905
  interface GlobalComponents {
15878
- Blanket: DefineComponent<BlanketProps>;
15906
+ AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
15879
15907
  }
15880
15908
  }
15881
15909
 
15882
15910
 
15883
15911
  declare module 'vue' {
15884
15912
  interface GlobalComponents {
15885
- FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
15913
+ Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
15886
15914
  }
15887
15915
  }
15888
15916
 
15889
15917
 
15890
15918
  declare module 'vue' {
15891
15919
  interface GlobalComponents {
15892
- Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
15920
+ PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
15893
15921
  }
15894
15922
  }
15895
15923
 
15896
15924
 
15897
15925
  declare module 'vue' {
15898
15926
  interface GlobalComponents {
15899
- ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
15927
+ IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
15900
15928
  }
15901
15929
  }
15902
15930
 
15903
15931
 
15904
- /**
15905
- * Global component declaration for TypeScript support
15906
- * Enables <Tooltip> usage in templates without explicit import
15907
- */
15908
15932
  declare module 'vue' {
15909
15933
  interface GlobalComponents {
15910
- Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
15911
- TooltipProvider: DefineComponent<TooltipProviderProps>;
15934
+ Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
15935
+ UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
15936
+ UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
15912
15937
  }
15913
15938
  }
15914
15939
 
15915
15940
 
15916
15941
  declare module 'vue' {
15917
15942
  interface GlobalComponents {
15918
- Button: DefineComponent<ButtonProps, ButtonSlots>;
15943
+ Card: DefineComponent<CardProps, CardSlots>;
15919
15944
  }
15920
15945
  }
15921
15946
 
15922
15947
 
15923
15948
  declare module 'vue' {
15924
15949
  interface GlobalComponents {
15925
- AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
15950
+ ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
15926
15951
  }
15927
15952
  }
15928
15953
 
15929
15954
 
15930
15955
  declare module 'vue' {
15931
15956
  interface GlobalComponents {
15932
- Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
15957
+ InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
15933
15958
  }
15934
15959
  }
15935
15960
 
15936
15961
 
15937
15962
  declare module 'vue' {
15938
15963
  interface GlobalComponents {
15939
- ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
15964
+ DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
15940
15965
  }
15941
15966
  }
15942
15967
 
15943
15968
 
15944
15969
  declare module 'vue' {
15945
15970
  interface GlobalComponents {
15946
- PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
15971
+ Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
15947
15972
  }
15948
15973
  }
15949
15974
 
15950
15975
 
15951
15976
  declare module 'vue' {
15952
15977
  interface GlobalComponents {
15953
- FormValidation: DefineComponent<FormValidationProps>;
15978
+ Divider: DefineComponent<DividerProps>;
15954
15979
  }
15955
15980
  }
15956
15981
 
15957
15982
 
15958
- /** component declare **/
15959
15983
  declare module 'vue' {
15960
15984
  interface GlobalComponents {
15961
- Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
15962
- AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
15985
+ Blanket: DefineComponent<BlanketProps>;
15963
15986
  }
15964
15987
  }
15965
15988
 
15966
15989
 
15967
15990
  declare module 'vue' {
15968
15991
  interface GlobalComponents {
15969
- Label: DefineComponent<LabelProps, LabelSlots>;
15992
+ Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
15993
+ SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
15994
+ SelectLabel: DefineComponent;
15970
15995
  }
15971
15996
  }
15972
15997
 
15973
15998
 
15974
15999
  declare module 'vue' {
15975
16000
  interface GlobalComponents {
15976
- Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
15977
- TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
16001
+ Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
15978
16002
  }
15979
16003
  }
15980
16004
 
15981
16005
 
15982
16006
  declare module 'vue' {
15983
16007
  interface GlobalComponents {
15984
- ButtonGroup: DefineComponent<ButtonGroupProps>;
16008
+ Button: DefineComponent<ButtonProps, ButtonSlots>;
15985
16009
  }
15986
16010
  }
15987
16011
 
15988
16012
 
15989
16013
  declare module 'vue' {
15990
16014
  interface GlobalComponents {
15991
- ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
16015
+ ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
15992
16016
  }
15993
16017
  }
15994
16018
 
15995
16019
 
15996
16020
  declare module 'vue' {
15997
16021
  interface GlobalComponents {
15998
- Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
16022
+ Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
15999
16023
  }
16000
16024
  }
16001
16025
 
16002
16026
 
16003
16027
  declare module 'vue' {
16004
16028
  interface GlobalComponents {
16005
- Indicator: DefineComponent<IndicatorProps>;
16029
+ Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
16030
+ Th: DefineComponent<ThProps, ThSlots>;
16031
+ Td: DefineComponent<TdProps, TdSlots>;
16032
+ Tr: DefineComponent<TrProps>;
16033
+ TBody: DefineComponent<TBodyProps>;
16034
+ THead: DefineComponent<THeadProps>;
16035
+ TFoot: DefineComponent<TFootProps>;
16006
16036
  }
16007
16037
  }
16008
16038
 
16009
16039
 
16010
16040
  declare module 'vue' {
16011
16041
  interface GlobalComponents {
16012
- InputGroup: DefineComponent<InputGroupProps>;
16042
+ Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
16043
+ DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
16013
16044
  }
16014
16045
  }
16015
16046
 
16016
16047
 
16017
16048
  declare module 'vue' {
16018
16049
  interface GlobalComponents {
16019
- Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
16020
- DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
16050
+ Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
16051
+ ComboboxInput: DefineComponent<ComboboxInputProps>;
16052
+ ComboboxOption: DefineComponent;
16021
16053
  }
16022
16054
  }
16023
16055
 
16024
16056
 
16025
16057
  declare module 'vue' {
16026
16058
  interface GlobalComponents {
16027
- Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
16028
- SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
16029
- SelectLabel: DefineComponent;
16059
+ ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
16030
16060
  }
16031
16061
  }
16032
16062
 
16033
16063
 
16034
16064
  declare module 'vue' {
16035
16065
  interface GlobalComponents {
16036
- PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
16066
+ Icon: DefineComponent<IconProps>;
16037
16067
  }
16038
16068
  }
16039
16069
 
16040
16070
 
16041
16071
  declare module 'vue' {
16042
16072
  interface GlobalComponents {
16043
- Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
16073
+ RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
16074
+ RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
16044
16075
  }
16045
16076
  }
16046
16077
 
16047
16078
 
16079
+ /**
16080
+ * Global component declaration for TypeScript support
16081
+ * Enables <Tooltip> usage in templates without explicit import
16082
+ */
16048
16083
  declare module 'vue' {
16049
16084
  interface GlobalComponents {
16050
- Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
16051
- Th: DefineComponent<ThProps, ThSlots>;
16052
- Td: DefineComponent<TdProps, TdSlots>;
16053
- Tr: DefineComponent<TrProps>;
16054
- TBody: DefineComponent<TBodyProps>;
16055
- THead: DefineComponent<THeadProps>;
16056
- TFoot: DefineComponent<TFootProps>;
16085
+ Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
16086
+ TooltipProvider: DefineComponent<TooltipProviderProps>;
16057
16087
  }
16058
16088
  }
16059
16089
 
16060
16090
 
16061
16091
  declare module 'vue' {
16062
16092
  interface GlobalComponents {
16063
- CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
16093
+ Image: DefineComponent<ImageProps, ImageSlots>;
16064
16094
  }
16065
16095
  }
16066
16096
 
16067
16097
 
16068
16098
  declare module 'vue' {
16069
16099
  interface GlobalComponents {
16070
- Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
16100
+ FormValidation: DefineComponent<FormValidationProps>;
16071
16101
  }
16072
16102
  }
16073
16103
 
16074
16104
 
16075
16105
  declare module 'vue' {
16076
16106
  interface GlobalComponents {
16077
- Image: DefineComponent<ImageProps, ImageSlots>;
16107
+ HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
16078
16108
  }
16079
16109
  }
16080
16110
 
16081
16111
 
16082
16112
  declare module 'vue' {
16083
16113
  interface GlobalComponents {
16084
- Kbd: DefineComponent<KbdProps, KbdSlots>;
16114
+ PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
16085
16115
  }
16086
16116
  }
16087
16117
 
16088
16118
 
16089
16119
  declare module 'vue' {
16090
16120
  interface GlobalComponents {
16091
- SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
16121
+ Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
16092
16122
  }
16093
16123
  }
16094
16124
 
16095
16125
 
16096
16126
  declare module 'vue' {
16097
16127
  interface GlobalComponents {
16098
- Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
16128
+ MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
16099
16129
  }
16100
16130
  }
16101
16131
 
16102
16132
 
16103
16133
  declare module 'vue' {
16104
16134
  interface GlobalComponents {
16105
- IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
16135
+ Badge: DefineComponent<BadgeProps, BadgeSlots>;
16106
16136
  }
16107
16137
  }
16108
16138
 
16109
16139
 
16110
16140
  declare module 'vue' {
16111
16141
  interface GlobalComponents {
16112
- RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
16113
- RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
16142
+ Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
16143
+ Step: DefineComponent<StepItemProps, StepItemSlots>;
16114
16144
  }
16115
16145
  }
16116
16146
 
16117
16147
 
16118
16148
  declare module 'vue' {
16119
16149
  interface GlobalComponents {
16120
- MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
16150
+ Input: DefineComponent<InputProps, InputSlots, InputEmits>;
16121
16151
  }
16122
16152
  }
16123
16153
 
16124
16154
 
16125
16155
  declare module 'vue' {
16126
16156
  interface GlobalComponents {
16127
- IndentLevel: DefineComponent<IndentLevelProps>;
16157
+ Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
16128
16158
  }
16129
16159
  }
16130
16160
 
16131
16161
 
16132
16162
  declare module 'vue' {
16133
16163
  interface GlobalComponents {
16134
- Skeleton: DefineComponent<SkeletonProps>;
16164
+ Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
16135
16165
  }
16136
16166
  }
16137
16167
 
16138
16168
 
16139
16169
  declare module 'vue' {
16140
16170
  interface GlobalComponents {
16141
- InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
16171
+ Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
16142
16172
  }
16143
16173
  }
16144
16174
 
16145
16175
 
16146
16176
  declare module 'vue' {
16147
16177
  interface GlobalComponents {
16148
- Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
16149
- MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
16178
+ ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
16150
16179
  }
16151
16180
  }
16152
16181
 
16153
16182
 
16154
16183
  declare module 'vue' {
16155
16184
  interface GlobalComponents {
16156
- Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
16185
+ Indicator: DefineComponent<IndicatorProps>;
16157
16186
  }
16158
16187
  }
16159
16188
 
16160
16189
 
16161
16190
  declare module 'vue' {
16162
16191
  interface GlobalComponents {
16163
- GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
16192
+ CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
16164
16193
  }
16165
16194
  }
16166
16195
 
16167
16196
 
16168
16197
  declare module 'vue' {
16169
16198
  interface GlobalComponents {
16170
- Icon: DefineComponent<IconProps>;
16199
+ Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
16200
+ ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
16171
16201
  }
16172
16202
  }
16173
16203
 
16174
16204
 
16175
16205
  declare module 'vue' {
16176
16206
  interface GlobalComponents {
16177
- Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
16178
- TabList: DefineComponent<TabListProps, TabListSlots>;
16179
- TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
16180
- TabContent: DefineComponent;
16207
+ Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
16181
16208
  }
16182
16209
  }
16183
16210
 
16184
16211
 
16185
16212
  declare module 'vue' {
16186
16213
  interface GlobalComponents {
16187
- Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
16188
- ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
16214
+ FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
16189
16215
  }
16190
16216
  }
16191
16217
 
16192
16218
 
16193
16219
  declare module 'vue' {
16194
16220
  interface GlobalComponents {
16195
- GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
16221
+ InputGroup: DefineComponent<InputGroupProps>;
16196
16222
  }
16197
16223
  }
16198
16224
 
16199
16225
 
16200
16226
  declare module 'vue' {
16201
16227
  interface GlobalComponents {
16202
- Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
16228
+ SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
16203
16229
  }
16204
16230
  }
16205
16231
 
16206
16232
 
16207
16233
  declare module 'vue' {
16208
16234
  interface GlobalComponents {
16209
- Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
16210
- Step: DefineComponent<StepItemProps, StepItemSlots>;
16235
+ Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
16211
16236
  }
16212
16237
  }
16213
16238
 
16214
16239
 
16215
16240
  declare module 'vue' {
16216
16241
  interface GlobalComponents {
16217
- AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
16242
+ Skeleton: DefineComponent<SkeletonProps>;
16218
16243
  }
16219
16244
  }
16220
16245
 
16221
16246
 
16222
16247
  declare module 'vue' {
16223
16248
  interface GlobalComponents {
16224
- Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
16225
- ComboboxInput: DefineComponent<ComboboxInputProps>;
16226
- ComboboxOption: DefineComponent;
16249
+ Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
16250
+ TabList: DefineComponent<TabListProps, TabListSlots>;
16251
+ TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
16252
+ TabContent: DefineComponent;
16227
16253
  }
16228
16254
  }
16229
16255
 
16230
16256
 
16257
+ /** component declare **/
16231
16258
  declare module 'vue' {
16232
16259
  interface GlobalComponents {
16233
- Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
16260
+ Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
16261
+ AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
16234
16262
  }
16235
16263
  }
16236
16264
 
16237
16265
 
16238
16266
  declare module 'vue' {
16239
16267
  interface GlobalComponents {
16240
- Input: DefineComponent<InputProps, InputSlots, InputEmits>;
16268
+ Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
16241
16269
  }
16242
16270
  }
16243
16271
 
16244
16272
 
16245
16273
  declare module 'vue' {
16246
16274
  interface GlobalComponents {
16247
- Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
16275
+ Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
16276
+ TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
16248
16277
  }
16249
16278
  }
16250
16279
 
16251
16280
 
16252
16281
  declare module 'vue' {
16253
16282
  interface GlobalComponents {
16254
- ScrollContainer: DefineComponent<ScrollContainerProps>;
16283
+ ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
16255
16284
  }
16256
16285
  }
16257
16286
 
16258
16287
 
16259
16288
  declare module 'vue' {
16260
16289
  interface GlobalComponents {
16261
- Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
16262
- DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
16290
+ Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
16263
16291
  }
16264
16292
  }
16265
16293
 
16266
16294
 
16267
16295
  declare module 'vue' {
16268
16296
  interface GlobalComponents {
16269
- Badge: DefineComponent<BadgeProps, BadgeSlots>;
16297
+ Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
16298
+ DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
16270
16299
  }
16271
16300
  }
16272
16301
 
16273
16302
 
16274
16303
  declare module 'vue' {
16275
16304
  interface GlobalComponents {
16276
- ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
16305
+ IndentLevel: DefineComponent<IndentLevelProps>;
16277
16306
  }
16278
16307
  }
16279
16308
 
16280
16309
 
16281
16310
  declare module 'vue' {
16282
16311
  interface GlobalComponents {
16283
- Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
16312
+ GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
16284
16313
  }
16285
16314
  }
16286
16315
 
16287
16316
 
16288
16317
  declare module 'vue' {
16289
16318
  interface GlobalComponents {
16290
- HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
16319
+ ScrollContainer: DefineComponent<ScrollContainerProps>;
16291
16320
  }
16292
16321
  }
16293
16322
 
16294
16323
 
16295
16324
  declare module 'vue' {
16296
16325
  interface GlobalComponents {
16297
- Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
16326
+ Kbd: DefineComponent<KbdProps, KbdSlots>;
16298
16327
  }
16299
16328
  }
16300
16329
 
16301
16330
 
16302
16331
  declare module 'vue' {
16303
16332
  interface GlobalComponents {
16304
- ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
16333
+ AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
16305
16334
  }
16306
16335
  }
16307
16336
 
16308
16337
 
16309
16338
  declare module 'vue' {
16310
16339
  interface GlobalComponents {
16311
- DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
16340
+ ButtonGroup: DefineComponent<ButtonGroupProps>;
16312
16341
  }
16313
16342
  }
16314
16343
 
16315
16344
 
16316
16345
  declare module 'vue' {
16317
16346
  interface GlobalComponents {
16318
- Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
16347
+ ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
16319
16348
  }
16320
16349
  }
16321
16350
 
16322
16351
 
16323
16352
  declare module 'vue' {
16324
16353
  interface GlobalComponents {
16325
- Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16326
- UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16327
- UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
16354
+ Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
16328
16355
  }
16329
16356
  }
16330
16357
 
16331
16358
 
16332
16359
  declare module 'vue' {
16333
16360
  interface GlobalComponents {
16334
- ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
16361
+ Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
16335
16362
  }
16336
16363
  }
16337
16364
 
16338
16365
 
16339
16366
  declare module 'vue' {
16340
16367
  interface GlobalComponents {
16341
- Empty: DefineComponent<EmptyProps, EmptySlots>;
16368
+ Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
16342
16369
  }
16343
16370
  }
16344
16371
 
16345
16372
 
16346
16373
  declare module 'vue' {
16347
16374
  interface GlobalComponents {
16348
- Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
16375
+ Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
16376
+ MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
16349
16377
  }
16350
16378
  }
16351
16379
 
16352
16380
 
16353
16381
  declare module 'vue' {
16354
16382
  interface GlobalComponents {
16355
- Divider: DefineComponent<DividerProps>;
16383
+ Empty: DefineComponent<EmptyProps, EmptySlots>;
16356
16384
  }
16357
16385
  }
16358
16386