@pantograph/vue 0.35.0 → 0.35.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -36,6 +36,7 @@ import { nextTick } from 'vue';
36
36
  import { OnCleanup } from '@vue/reactivity';
37
37
  import { OptionGetter } from '@pantograph/utils';
38
38
  import { pantographSortable } from '@pantograph/sortable';
39
+ import { PrimitiveColor } from '@pantograph/tokens';
39
40
  import { PropType } from 'vue';
40
41
  import { PublicProps } from 'vue';
41
42
  import { Ref } from 'vue';
@@ -1174,10 +1175,18 @@ trapFocus: boolean;
1174
1175
  keyboard: boolean;
1175
1176
  closeOnClickOutside: boolean;
1176
1177
  okProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">> & {
1178
+ fg?: string | undefined;
1179
+ bg?: string | undefined;
1180
+ br?: string | undefined;
1181
+ } & {
1177
1182
  text: string;
1178
1183
  hide?: boolean | undefined;
1179
1184
  };
1180
1185
  cancelProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">> & {
1186
+ fg?: string | undefined;
1187
+ bg?: string | undefined;
1188
+ br?: string | undefined;
1189
+ } & {
1181
1190
  text: string;
1182
1191
  hide?: boolean | undefined;
1183
1192
  };
@@ -1743,7 +1752,7 @@ export declare const AvatarStrokes: readonly ["gray-subtle", "white", "primary",
1743
1752
 
1744
1753
  export declare const Badge: __VLS_WithTemplateSlots_8<DefineComponent<BadgeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BadgeProps> & Readonly<{}>, {
1745
1754
  size: "md" | "2xsm" | "xsm";
1746
- color: "primary" | "gray" | "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "teal" | "cyan" | "sky" | "blue" | "ocean" | "violet" | "amethyst" | "fuchsia" | "pink" | "mallard" | "primary-subtle" | "red-subtle" | "orange-subtle" | "amber-subtle" | "yellow-subtle" | "lime-subtle" | "green-subtle" | "teal-subtle" | "cyan-subtle" | "sky-subtle" | "blue-subtle" | "ocean-subtle" | "violet-subtle" | "amethyst-subtle" | "fuchsia-subtle" | "pink-subtle" | "gray-subtle" | "mallard-subtle";
1755
+ color: "primary" | "gray" | "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "teal" | "cyan" | "sky" | "blue" | "ocean" | "violet" | "amethyst" | "fuchsia" | "pink" | "mallard" | "primary-subtle" | "red-subtle" | "orange-subtle" | "amber-subtle" | "yellow-subtle" | "lime-subtle" | "green-subtle" | "teal-subtle" | "cyan-subtle" | "sky-subtle" | "blue-subtle" | "ocean-subtle" | "violet-subtle" | "amethyst-subtle" | "fuchsia-subtle" | "pink-subtle" | "gray-subtle" | "mallard-subtle" | ColorShade;
1747
1756
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<BaseBadgeSlots> & BaseBadgeSlots>;
1748
1757
 
1749
1758
  /**
@@ -1754,6 +1763,10 @@ export declare const BADGE_DEFAULT_PROPS: {
1754
1763
  readonly size: "md";
1755
1764
  };
1756
1765
 
1766
+ export declare type BadgeBG = BadgeColor | BadgeColorSubtle | ColorShade;
1767
+
1768
+ export declare type BadgeBR = BadgeColor | BadgeColorSubtle | ColorShade;
1769
+
1757
1770
  /**
1758
1771
  * Type representing the possible badge colors
1759
1772
  */
@@ -1774,6 +1787,8 @@ export declare const BadgeColorsSubtle: readonly ["primary-subtle", "red-subtle"
1774
1787
  */
1775
1788
  export declare type BadgeColorSubtle = (typeof BadgeColorsSubtle)[number];
1776
1789
 
1790
+ export declare type BadgeFG = BadgeColor | ColorShade;
1791
+
1777
1792
  /**
1778
1793
  * Props for the Badge component
1779
1794
  */
@@ -1786,7 +1801,13 @@ export declare type BadgeProps = Partial<Pick<BaseBadgeProps, 'class' | 'text' |
1786
1801
  * Color of the badge, can be a standard color or subtle variant
1787
1802
  * @default 'primary'
1788
1803
  */
1789
- color?: BadgeColor | BadgeColorSubtle;
1804
+ color?: BadgeColor | BadgeColorSubtle | ColorShade;
1805
+ /** Foreground (text/icon) color override. Supports named colors, color shades, or arbitrary CSS values. */
1806
+ fg?: BadgeFG | string;
1807
+ /** Background color override. Supports named colors, subtle variants, color shades, or arbitrary CSS values. */
1808
+ bg?: BadgeBG | string;
1809
+ /** Border color override. Supports named colors, subtle variants, color shades, or arbitrary CSS values. */
1810
+ br?: BadgeBR | string;
1790
1811
  };
1791
1812
 
1792
1813
  /**
@@ -1825,7 +1846,7 @@ color: "primary" | "primary-subtle" | "neutral" | "danger" | "success" | "warnin
1825
1846
  side: "bottom" | "top";
1826
1847
  linkProps: LinkProps;
1827
1848
  position: "fixed" | "absolute";
1828
- actionProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">>;
1849
+ actionProps: ButtonProps;
1829
1850
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<BannerSlots> & BannerSlots>;
1830
1851
 
1831
1852
  /**
@@ -2741,7 +2762,7 @@ export declare interface BreadcrumbSlots {
2741
2762
  }) => never;
2742
2763
  }
2743
2764
 
2744
- export declare const Button: __VLS_WithTemplateSlots_14<DefineComponent<Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">>, {
2765
+ export declare const Button: __VLS_WithTemplateSlots_14<DefineComponent<ButtonProps, {
2745
2766
  /**
2746
2767
  * check is Focused the button element
2747
2768
  */
@@ -2754,7 +2775,7 @@ focus(): void;
2754
2775
  * Blur the button element
2755
2776
  */
2756
2777
  blur(): void;
2757
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">>> & Readonly<{}>, {
2778
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ButtonProps> & Readonly<{}>, {
2758
2779
  type: "fill" | "outline" | "ghost";
2759
2780
  disabled: boolean;
2760
2781
  color: "primary" | "gray" | "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "teal" | "cyan" | "sky" | "blue" | "ocean" | "violet" | "amethyst" | "fuchsia" | "pink" | "mallard" | "neutral" | "danger" | "success" | "warning";
@@ -2808,9 +2829,7 @@ type: BooleanConstructor;
2808
2829
  default: boolean;
2809
2830
  };
2810
2831
  as: {
2811
- type: PropType<AsTag | Component>; /**
2812
- * Computed bindings for the button, omitting variant-related and badge-related attributes
2813
- */
2832
+ type: PropType<AsTag | Component>;
2814
2833
  default: string;
2815
2834
  };
2816
2835
  }>> & Readonly<{}>, () => VNode<RendererNode, RendererElement, {
@@ -2831,9 +2850,7 @@ type: BooleanConstructor;
2831
2850
  default: boolean;
2832
2851
  };
2833
2852
  as: {
2834
- type: PropType<AsTag | Component>; /**
2835
- * Computed bindings for the button, omitting variant-related and badge-related attributes
2836
- */
2853
+ type: PropType<AsTag | Component>;
2837
2854
  default: string;
2838
2855
  };
2839
2856
  }>> & Readonly<{}>, () => VNode<RendererNode, RendererElement, {
@@ -2919,6 +2936,14 @@ export declare const BUTTON_GROUP_DEFAULT_PROPS: {
2919
2936
  readonly split: true;
2920
2937
  };
2921
2938
 
2939
+ export declare type ButtonBG = (typeof ButtonBGs)[number] | ColorShade;
2940
+
2941
+ export declare const ButtonBGs: readonly ["primary", "gray", "red", "orange", "amber", "yellow", "lime", "green", "teal", "cyan", "sky", "blue", "ocean", "violet", "amethyst", "fuchsia", "pink", "mallard", "primary-subtle", "red-subtle", "orange-subtle", "amber-subtle", "yellow-subtle", "lime-subtle", "green-subtle", "teal-subtle", "cyan-subtle", "sky-subtle", "blue-subtle", "ocean-subtle", "violet-subtle", "amethyst-subtle", "fuchsia-subtle", "pink-subtle", "gray-subtle", "mallard-subtle"];
2942
+
2943
+ export declare type ButtonBR = (typeof ButtonBRs)[number] | ColorShade;
2944
+
2945
+ export declare const ButtonBRs: readonly ["primary", "gray", "red", "orange", "amber", "yellow", "lime", "green", "teal", "cyan", "sky", "blue", "ocean", "violet", "amethyst", "fuchsia", "pink", "mallard", "primary-subtle", "red-subtle", "orange-subtle", "amber-subtle", "yellow-subtle", "lime-subtle", "green-subtle", "teal-subtle", "cyan-subtle", "sky-subtle", "blue-subtle", "ocean-subtle", "violet-subtle", "amethyst-subtle", "fuchsia-subtle", "pink-subtle", "gray-subtle", "mallard-subtle"];
2946
+
2922
2947
  /**
2923
2948
  * Type representing the possible button colors
2924
2949
  */
@@ -2929,6 +2954,10 @@ export declare type ButtonColor = (typeof ButtonColors)[number];
2929
2954
  */
2930
2955
  export declare const ButtonColors: readonly ["primary", "danger", "success", "warning", "neutral", "red", "orange", "amber", "yellow", "lime", "green", "teal", "cyan", "sky", "blue", "ocean", "violet", "amethyst", "fuchsia", "pink", "mallard", "gray"];
2931
2956
 
2957
+ export declare type ButtonFG = (typeof ButtonFGs)[number] | ColorShade;
2958
+
2959
+ export declare const ButtonFGs: readonly ["primary", "gray", "red", "orange", "amber", "yellow", "lime", "green", "teal", "cyan", "sky", "blue", "ocean", "violet", "amethyst", "fuchsia", "pink", "mallard"];
2960
+
2932
2961
  export declare const ButtonGroup: __VLS_WithTemplateSlots_15<DefineComponent<ButtonGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ButtonGroupProps> & Readonly<{}>, {
2933
2962
  split: boolean;
2934
2963
  variant: "icon" | "simple" | "float";
@@ -2979,7 +3008,11 @@ export declare const buttonPrefix: string;
2979
3008
  /**
2980
3009
  * Props for the Button component, excluding variant-related and badge-related properties
2981
3010
  */
2982
- export declare type ButtonProps = Partial<Omit<BaseButtonProps, 'variant' | 'action' | 'active' | 'badgeText' | 'badgeIcon' | 'icon' | 'flipOnDir' | 'badgeIconFlipOnDir'>>;
3011
+ export declare type ButtonProps = Partial<Omit<BaseButtonProps, 'variant' | 'action' | 'active' | 'badgeText' | 'badgeIcon' | 'icon' | 'flipOnDir' | 'badgeIconFlipOnDir'>> & {
3012
+ fg?: ButtonFG | string;
3013
+ bg?: ButtonBG | string;
3014
+ br?: ButtonBR | string;
3015
+ };
2983
3016
 
2984
3017
  /**
2985
3018
  * Type representing the possible button sizes
@@ -3466,6 +3499,26 @@ export declare const CHIP_GROUP_DEFAULT_PROPS: {
3466
3499
  readonly closeable: true;
3467
3500
  };
3468
3501
 
3502
+ /**
3503
+ * Type representing the possible background color options for Chip
3504
+ */
3505
+ export declare type ChipBG = (typeof ChipBGs)[number] | ColorShade;
3506
+
3507
+ /**
3508
+ * Array of available background color options for Chip
3509
+ */
3510
+ export declare const ChipBGs: readonly ["primary", "gray", "red", "orange", "amber", "yellow", "lime", "green", "teal", "cyan", "sky", "blue", "ocean", "violet", "amethyst", "fuchsia", "pink", "mallard", "primary-subtle", "red-subtle", "orange-subtle", "amber-subtle", "yellow-subtle", "lime-subtle", "green-subtle", "teal-subtle", "cyan-subtle", "sky-subtle", "blue-subtle", "ocean-subtle", "violet-subtle", "amethyst-subtle", "fuchsia-subtle", "pink-subtle", "gray-subtle", "mallard-subtle"];
3511
+
3512
+ /**
3513
+ * Type representing the possible border color options for Chip
3514
+ */
3515
+ export declare type ChipBR = (typeof ChipBRs)[number] | ColorShade;
3516
+
3517
+ /**
3518
+ * Array of available border color options for Chip
3519
+ */
3520
+ export declare const ChipBRs: readonly ["primary", "gray", "red", "orange", "amber", "yellow", "lime", "green", "teal", "cyan", "sky", "blue", "ocean", "violet", "amethyst", "fuchsia", "pink", "mallard", "primary-subtle", "red-subtle", "orange-subtle", "amber-subtle", "yellow-subtle", "lime-subtle", "green-subtle", "teal-subtle", "cyan-subtle", "sky-subtle", "blue-subtle", "ocean-subtle", "violet-subtle", "amethyst-subtle", "fuchsia-subtle", "pink-subtle", "gray-subtle", "mallard-subtle"];
3521
+
3469
3522
  /**
3470
3523
  * Type representing the possible chip colors
3471
3524
  */
@@ -3483,6 +3536,16 @@ export declare interface ChipEmits {
3483
3536
  close: [event: MouseEvent];
3484
3537
  }
3485
3538
 
3539
+ /**
3540
+ * Type representing the possible foreground color options for Chip
3541
+ */
3542
+ export declare type ChipFG = (typeof ChipFGs)[number] | ColorShade;
3543
+
3544
+ /**
3545
+ * Array of available foreground color options for Chip
3546
+ */
3547
+ export declare const ChipFGs: readonly ["primary", "gray", "red", "orange", "amber", "yellow", "lime", "green", "teal", "cyan", "sky", "blue", "ocean", "violet", "amethyst", "fuchsia", "pink", "mallard"];
3548
+
3486
3549
  export declare const ChipGroup: __VLS_WithTemplateSlots_20<DefineComponent<ChipGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3487
3550
  close: (item: ChipProps, event: MouseEvent) => any;
3488
3551
  }, string, PublicProps, Readonly<ChipGroupProps> & Readonly<{
@@ -3639,6 +3702,18 @@ export declare interface ChipProps {
3639
3702
  * @default 'default'
3640
3703
  */
3641
3704
  color?: ChipColor;
3705
+ /**
3706
+ * Foreground (text) color override for the chip
3707
+ */
3708
+ fg?: ChipFG | string;
3709
+ /**
3710
+ * Background color override for the chip
3711
+ */
3712
+ bg?: ChipBG | string;
3713
+ /**
3714
+ * Border color override for the chip
3715
+ */
3716
+ br?: ChipBR | string;
3642
3717
  /**
3643
3718
  * Whether to show overlay actions
3644
3719
  */
@@ -4096,6 +4171,13 @@ export declare type ColorRgb = {
4096
4171
  a: number;
4097
4172
  };
4098
4173
 
4174
+ export declare type ColorShade = `${PrimitiveColor}-${Shade}` | `primary-${Shade}` | `gray-${Shade | 10}`;
4175
+
4176
+ /**
4177
+ * All color-shade token combinations: primitiveColor-[0-9], primary-[0-9], gray-[0-10]
4178
+ */
4179
+ export declare const ColorShades: ColorShade[];
4180
+
4099
4181
  export declare const ColorSwatch: __VLS_WithTemplateSlots_21<DefineComponent<ColorSwatchProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ColorSwatchProps> & Readonly<{}>, {
4100
4182
  size: "sm" | "md";
4101
4183
  type: "color" | "remover" | "custom-picker";
@@ -5689,10 +5771,18 @@ canFullScreen: boolean;
5689
5771
  fullScreen: boolean;
5690
5772
  frameless: boolean;
5691
5773
  okProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">> & {
5774
+ fg?: string | undefined;
5775
+ bg?: string | undefined;
5776
+ br?: string | undefined;
5777
+ } & {
5692
5778
  text: string;
5693
5779
  hide?: boolean | undefined;
5694
5780
  };
5695
5781
  cancelProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">> & {
5782
+ fg?: string | undefined;
5783
+ bg?: string | undefined;
5784
+ br?: string | undefined;
5785
+ } & {
5696
5786
  text: string;
5697
5787
  hide?: boolean | undefined;
5698
5788
  };
@@ -7155,10 +7245,18 @@ canFullScreen: boolean;
7155
7245
  fullScreen: boolean;
7156
7246
  frameless: boolean;
7157
7247
  okProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">> & {
7248
+ fg?: string | undefined;
7249
+ bg?: string | undefined;
7250
+ br?: string | undefined;
7251
+ } & {
7158
7252
  text: string;
7159
7253
  hide?: boolean | undefined;
7160
7254
  };
7161
7255
  cancelProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">> & {
7256
+ fg?: string | undefined;
7257
+ bg?: string | undefined;
7258
+ br?: string | undefined;
7259
+ } & {
7162
7260
  text: string;
7163
7261
  hide?: boolean | undefined;
7164
7262
  };
@@ -7745,6 +7843,9 @@ export declare type FloatButtonProps = Partial<Omit<BaseButtonProps, 'text' | 't
7745
7843
  * @default 'fill'
7746
7844
  */
7747
7845
  type?: 'fill' | 'outline';
7846
+ fg?: ButtonFG | string;
7847
+ bg?: ButtonBG | string;
7848
+ br?: ButtonBR | string;
7748
7849
  };
7749
7850
 
7750
7851
  /**
@@ -7816,11 +7917,6 @@ export declare interface FormValidationProps {
7816
7917
  class?: ClassValue;
7817
7918
  }
7818
7919
 
7819
- /**
7820
- * Gets the CSS color value for a given badge color
7821
- * @param color - The badge color to get the CSS value for
7822
- * @returns The CSS color value or the original color if not found
7823
- */
7824
7920
  export declare const getBadgeColor: (color?: BadgeColor | BadgeColorSubtle | string) => string | undefined;
7825
7921
 
7826
7922
  /**
@@ -7918,7 +8014,7 @@ size: GraphicalObjectSize;
7918
8014
  /**
7919
8015
  * Type representing the possible background color options for GraphicalObject
7920
8016
  */
7921
- export declare type GraphicalObjectBG = (typeof GraphicalObjectBGs)[number];
8017
+ export declare type GraphicalObjectBG = (typeof GraphicalObjectBGs)[number] | ColorShade;
7922
8018
 
7923
8019
  /**
7924
8020
  * Array of available background color options for GraphicalObject
@@ -7928,7 +8024,7 @@ export declare const GraphicalObjectBGs: readonly ["primary", "gray", "red", "or
7928
8024
  /**
7929
8025
  * Type representing the possible border color options for GraphicalObject
7930
8026
  */
7931
- export declare type GraphicalObjectBR = (typeof GraphicalObjectBRs)[number];
8027
+ export declare type GraphicalObjectBR = (typeof GraphicalObjectBRs)[number] | ColorShade;
7932
8028
 
7933
8029
  /**
7934
8030
  * Array of available border color options for GraphicalObject
@@ -7938,7 +8034,7 @@ export declare const GraphicalObjectBRs: readonly ["primary", "gray", "red", "or
7938
8034
  /**
7939
8035
  * Type representing the possible foreground color options for GraphicalObject
7940
8036
  */
7941
- export declare type GraphicalObjectFG = (typeof GraphicalObjectFGs)[number];
8037
+ export declare type GraphicalObjectFG = (typeof GraphicalObjectFGs)[number] | ColorShade;
7942
8038
 
7943
8039
  /**
7944
8040
  * Array of available foreground color options for GraphicalObject
@@ -8148,7 +8244,7 @@ export declare const ICON_DEFAULT_PROPS: {
8148
8244
  readonly as: "span";
8149
8245
  };
8150
8246
 
8151
- export declare const IconButton: __VLS_WithTemplateSlots_42<DefineComponent<Partial<Omit<BaseButtonProps, "text" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "preIcon" | "postIcon" | "preIconFlipOnDir" | "postIconFlipOnDir" | "badgeIconFlipOnDir">>, {
8247
+ export declare const IconButton: __VLS_WithTemplateSlots_42<DefineComponent<IconButtonProps, {
8152
8248
  /**
8153
8249
  * check is Focused the button element
8154
8250
  */
@@ -8161,7 +8257,7 @@ focus(): void;
8161
8257
  * Blur the button element
8162
8258
  */
8163
8259
  blur(): void;
8164
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Partial<Omit<BaseButtonProps, "text" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "preIcon" | "postIcon" | "preIconFlipOnDir" | "postIconFlipOnDir" | "badgeIconFlipOnDir">>> & Readonly<{}>, {
8260
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IconButtonProps> & Readonly<{}>, {
8165
8261
  type: "fill" | "outline" | "ghost";
8166
8262
  disabled: boolean;
8167
8263
  color: "primary" | "gray" | "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "teal" | "cyan" | "sky" | "blue" | "ocean" | "violet" | "amethyst" | "fuchsia" | "pink" | "mallard" | "neutral" | "danger" | "success" | "warning";
@@ -8308,7 +8404,11 @@ $slots: Readonly<BaseButtonSlots> & BaseButtonSlots;
8308
8404
  * Extends BaseButtonProps but omits text-related and badge-related properties
8309
8405
  * since IconButton is typically an icon-only button
8310
8406
  */
8311
- export declare type IconButtonProps = Partial<Omit<BaseButtonProps, 'text' | 'variant' | 'action' | 'active' | 'badgeText' | 'badgeIcon' | 'preIcon' | 'postIcon' | 'preIconFlipOnDir' | 'postIconFlipOnDir' | 'badgeIconFlipOnDir'>>;
8407
+ export declare type IconButtonProps = Partial<Omit<BaseButtonProps, 'text' | 'variant' | 'action' | 'active' | 'badgeText' | 'badgeIcon' | 'preIcon' | 'postIcon' | 'preIconFlipOnDir' | 'postIconFlipOnDir' | 'badgeIconFlipOnDir'>> & {
8408
+ fg?: ButtonFG | string;
8409
+ bg?: ButtonBG | string;
8410
+ br?: ButtonBR | string;
8411
+ };
8312
8412
 
8313
8413
  /**
8314
8414
  * Slots for the IconButton component
@@ -8609,7 +8709,7 @@ export declare const INDICATOR_DEFAULT_PROPS: {
8609
8709
  */
8610
8710
  export declare type IndicatorProps = Partial<Pick<BaseBadgeProps, 'class' | 'dir'>> & {
8611
8711
  size?: 'tiny' | 'tinier';
8612
- color?: BadgeColor;
8712
+ color?: BadgeColor | ColorShade;
8613
8713
  };
8614
8714
 
8615
8715
  /**
@@ -9884,10 +9984,18 @@ canFullScreen: boolean;
9884
9984
  fullScreen: boolean;
9885
9985
  frameless: boolean;
9886
9986
  okProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">> & {
9987
+ fg?: string | undefined;
9988
+ bg?: string | undefined;
9989
+ br?: string | undefined;
9990
+ } & {
9887
9991
  text: string;
9888
9992
  hide?: boolean | undefined;
9889
9993
  };
9890
9994
  cancelProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">> & {
9995
+ fg?: string | undefined;
9996
+ bg?: string | undefined;
9997
+ br?: string | undefined;
9998
+ } & {
9891
9999
  text: string;
9892
10000
  hide?: boolean | undefined;
9893
10001
  };
@@ -10046,9 +10154,17 @@ onPrev?: ((e: PointerEvent) => any) | undefined;
10046
10154
  modelValue: number;
10047
10155
  count: number;
10048
10156
  nextProps: Partial<Omit<BaseButtonProps, "text" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "preIcon" | "postIcon" | "preIconFlipOnDir" | "postIconFlipOnDir" | "badgeIconFlipOnDir">> & {
10157
+ fg?: string | undefined;
10158
+ bg?: string | undefined;
10159
+ br?: string | undefined;
10160
+ } & {
10049
10161
  hide?: boolean | undefined;
10050
10162
  };
10051
10163
  prevProps: Partial<Omit<BaseButtonProps, "text" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "preIcon" | "postIcon" | "preIconFlipOnDir" | "postIconFlipOnDir" | "badgeIconFlipOnDir">> & {
10164
+ fg?: string | undefined;
10165
+ bg?: string | undefined;
10166
+ br?: string | undefined;
10167
+ } & {
10052
10168
  hide?: boolean | undefined;
10053
10169
  };
10054
10170
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<PageIndicatorSlots> & PageIndicatorSlots>;
@@ -11605,6 +11721,27 @@ export declare interface RateSlots {
11605
11721
  label?: (data: RateSlotProps) => never;
11606
11722
  }
11607
11723
 
11724
+ export declare const resolveBadgeBg: (color?: string) => string;
11725
+
11726
+ export declare const resolveBadgeFg: (color?: string) => string | undefined;
11727
+
11728
+ export declare const resolveBg: (color?: string) => string | undefined;
11729
+
11730
+ /**
11731
+ * Gets the CSS color value for a given badge color
11732
+ * @param color - The badge color to get the CSS value for
11733
+ * @returns The CSS color value or the original color if not found
11734
+ */
11735
+ export declare const resolveFg: (color?: string) => string | undefined;
11736
+
11737
+ export declare const resolveGraphicalObjectBg: (color?: string) => string | undefined;
11738
+
11739
+ export declare const resolveGraphicalObjectBr: (br?: string, bg?: string) => string | undefined;
11740
+
11741
+ export declare const resolveGraphicalObjectFg: (fg?: string) => string | undefined;
11742
+
11743
+ export declare const resolveIndicatorBg: (color?: string) => string;
11744
+
11608
11745
  declare type RovingFocusGroupEmits = {
11609
11746
  'entryFocus': [event: Event];
11610
11747
  'update:currentTabStopId': [value: string | null | undefined];
@@ -12594,6 +12731,8 @@ declare interface SelectTriggerTagSlotProps extends SelectTriggerDefSlotProps {
12594
12731
  */
12595
12732
  export declare const setDefaultDir: (dir: Direction | undefined) => void;
12596
12733
 
12734
+ declare type Shade = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
12735
+
12597
12736
  export declare const Shortcut: __VLS_WithTemplateSlots_69<DefineComponent<ShortcutProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ShortcutProps> & Readonly<{}>, {
12598
12737
  plus: boolean;
12599
12738
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<ShortcutSlots> & ShortcutSlots>;
@@ -13354,6 +13493,9 @@ readonly htmlType?: "button" | "reset" | "submit" | undefined;
13354
13493
  readonly hover?: boolean | undefined;
13355
13494
  readonly href?: string | undefined;
13356
13495
  readonly type?: "fill" | "outline" | undefined;
13496
+ readonly fg?: string | undefined;
13497
+ readonly bg?: string | undefined;
13498
+ readonly br?: string | undefined;
13357
13499
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
13358
13500
  $attrs: {
13359
13501
  [x: string]: unknown;
@@ -13569,6 +13711,9 @@ readonly htmlType?: "button" | "reset" | "submit" | undefined;
13569
13711
  readonly hover?: boolean | undefined;
13570
13712
  readonly href?: string | undefined;
13571
13713
  readonly type?: "fill" | "outline" | undefined;
13714
+ readonly fg?: string | undefined;
13715
+ readonly bg?: string | undefined;
13716
+ readonly br?: string | undefined;
13572
13717
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
13573
13718
  $attrs: {
13574
13719
  [x: string]: unknown;
@@ -14241,10 +14386,18 @@ onCloseNotification?: ((e: PointerEvent) => any) | undefined;
14241
14386
  progress: boolean;
14242
14387
  duration: number;
14243
14388
  okProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">> & {
14389
+ fg?: string | undefined;
14390
+ bg?: string | undefined;
14391
+ br?: string | undefined;
14392
+ } & {
14244
14393
  text: string;
14245
14394
  hide?: boolean | undefined;
14246
14395
  };
14247
14396
  cancelProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">> & {
14397
+ fg?: string | undefined;
14398
+ bg?: string | undefined;
14399
+ br?: string | undefined;
14400
+ } & {
14248
14401
  text: string;
14249
14402
  hide?: boolean | undefined;
14250
14403
  };
@@ -15162,7 +15315,7 @@ onCreateRequest?: ((value: UploadFile) => any) | undefined;
15162
15315
  onResetRequest?: ((value: UploadFile) => any) | undefined;
15163
15316
  }>, {
15164
15317
  size: "md" | "lg" | "xlg";
15165
- type: "outline" | "transparent";
15318
+ type: "transparent" | "outline";
15166
15319
  disabled: boolean;
15167
15320
  multiple: boolean;
15168
15321
  go: boolean;
@@ -15185,7 +15338,7 @@ readonly fileList?: UploadFile[] | undefined;
15185
15338
  readonly size?: "md" | "lg" | "xlg" | undefined;
15186
15339
  readonly chunkSize?: number | undefined;
15187
15340
  readonly listType?: "image" | "card" | undefined;
15188
- readonly type?: "outline" | "transparent" | undefined;
15341
+ readonly type?: "transparent" | "outline" | undefined;
15189
15342
  readonly go?: boolean | undefined;
15190
15343
  readonly maxCount?: string | number | undefined;
15191
15344
  readonly action?: ((config: UploadActionParams) => Promise<Record<string, any> & {
@@ -15252,7 +15405,7 @@ createRequest: (value: UploadFile) => any;
15252
15405
  resetRequest: (value: UploadFile) => any;
15253
15406
  }, string, {
15254
15407
  size: "md" | "lg" | "xlg";
15255
- type: "outline" | "transparent";
15408
+ type: "transparent" | "outline";
15256
15409
  disabled: boolean;
15257
15410
  multiple: boolean;
15258
15411
  go: boolean;
@@ -15280,7 +15433,7 @@ $nextTick: nextTick;
15280
15433
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: OnCleanup) => any : (args_0: any, args_1: any, args_2: OnCleanup) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
15281
15434
  } & Readonly<{
15282
15435
  size: "md" | "lg" | "xlg";
15283
- type: "outline" | "transparent";
15436
+ type: "transparent" | "outline";
15284
15437
  disabled: boolean;
15285
15438
  multiple: boolean;
15286
15439
  go: boolean;
@@ -15556,7 +15709,7 @@ onCreateRequest?: ((value: UploadFile) => any) | undefined;
15556
15709
  onResetRequest?: ((value: UploadFile) => any) | undefined;
15557
15710
  }>, {
15558
15711
  size: "md" | "lg" | "xlg";
15559
- type: "outline" | "transparent";
15712
+ type: "transparent" | "outline";
15560
15713
  disabled: boolean;
15561
15714
  multiple: boolean;
15562
15715
  go: boolean;
@@ -15953,191 +16106,196 @@ export declare type VisibleColorPair = Exclude<ColorPair, ColorPairHsv>;
15953
16106
  export { }
15954
16107
 
15955
16108
 
15956
- /** component declare **/
15957
16109
  declare module 'vue' {
15958
16110
  interface GlobalComponents {
15959
- Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
15960
- AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
16111
+ DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
15961
16112
  }
15962
16113
  }
15963
16114
 
15964
16115
 
15965
16116
  declare module 'vue' {
15966
16117
  interface GlobalComponents {
15967
- Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
15968
- MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
16118
+ Badge: DefineComponent<BadgeProps, BadgeSlots>;
15969
16119
  }
15970
16120
  }
15971
16121
 
15972
16122
 
15973
16123
  declare module 'vue' {
15974
16124
  interface GlobalComponents {
15975
- AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
16125
+ ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
15976
16126
  }
15977
16127
  }
15978
16128
 
15979
16129
 
15980
16130
  declare module 'vue' {
15981
16131
  interface GlobalComponents {
15982
- PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
16132
+ AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
15983
16133
  }
15984
16134
  }
15985
16135
 
15986
16136
 
15987
16137
  declare module 'vue' {
15988
16138
  interface GlobalComponents {
15989
- Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
16139
+ FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
15990
16140
  }
15991
16141
  }
15992
16142
 
15993
16143
 
16144
+ /** component declare **/
15994
16145
  declare module 'vue' {
15995
16146
  interface GlobalComponents {
15996
- Blanket: DefineComponent<BlanketProps>;
16147
+ Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
16148
+ AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
15997
16149
  }
15998
16150
  }
15999
16151
 
16000
16152
 
16001
16153
  declare module 'vue' {
16002
16154
  interface GlobalComponents {
16003
- Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
16004
- DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
16155
+ Blanket: DefineComponent<BlanketProps>;
16005
16156
  }
16006
16157
  }
16007
16158
 
16008
16159
 
16009
16160
  declare module 'vue' {
16010
16161
  interface GlobalComponents {
16011
- IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
16162
+ Icon: DefineComponent<IconProps>;
16012
16163
  }
16013
16164
  }
16014
16165
 
16015
16166
 
16016
16167
  declare module 'vue' {
16017
16168
  interface GlobalComponents {
16018
- Input: DefineComponent<InputProps, InputSlots, InputEmits>;
16169
+ IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
16019
16170
  }
16020
16171
  }
16021
16172
 
16022
16173
 
16023
16174
  declare module 'vue' {
16024
16175
  interface GlobalComponents {
16025
- InputGroup: DefineComponent<InputGroupProps>;
16176
+ PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
16026
16177
  }
16027
16178
  }
16028
16179
 
16029
16180
 
16030
16181
  declare module 'vue' {
16031
16182
  interface GlobalComponents {
16032
- Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
16183
+ Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
16033
16184
  }
16034
16185
  }
16035
16186
 
16036
16187
 
16037
16188
  declare module 'vue' {
16038
16189
  interface GlobalComponents {
16039
- Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
16040
- Step: DefineComponent<StepItemProps, StepItemSlots>;
16190
+ Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
16191
+ MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
16041
16192
  }
16042
16193
  }
16043
16194
 
16044
16195
 
16045
16196
  declare module 'vue' {
16046
16197
  interface GlobalComponents {
16047
- Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16048
- UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16049
- UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
16198
+ ButtonGroup: DefineComponent<ButtonGroupProps>;
16050
16199
  }
16051
16200
  }
16052
16201
 
16053
16202
 
16054
16203
  declare module 'vue' {
16055
16204
  interface GlobalComponents {
16056
- Button: DefineComponent<ButtonProps, ButtonSlots>;
16205
+ Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16206
+ UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16207
+ UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
16057
16208
  }
16058
16209
  }
16059
16210
 
16060
16211
 
16061
16212
  declare module 'vue' {
16062
16213
  interface GlobalComponents {
16063
- Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
16214
+ CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
16064
16215
  }
16065
16216
  }
16066
16217
 
16067
16218
 
16068
16219
  declare module 'vue' {
16069
16220
  interface GlobalComponents {
16070
- Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
16221
+ AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
16071
16222
  }
16072
16223
  }
16073
16224
 
16074
16225
 
16075
16226
  declare module 'vue' {
16076
16227
  interface GlobalComponents {
16077
- ButtonGroup: DefineComponent<ButtonGroupProps>;
16228
+ ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
16078
16229
  }
16079
16230
  }
16080
16231
 
16081
16232
 
16233
+ /**
16234
+ * Global component declaration for TypeScript support
16235
+ * Enables <Tooltip> usage in templates without explicit import
16236
+ */
16082
16237
  declare module 'vue' {
16083
16238
  interface GlobalComponents {
16084
- Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
16239
+ Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
16240
+ TooltipProvider: DefineComponent<TooltipProviderProps>;
16085
16241
  }
16086
16242
  }
16087
16243
 
16088
16244
 
16089
16245
  declare module 'vue' {
16090
16246
  interface GlobalComponents {
16091
- IndentLevel: DefineComponent<IndentLevelProps>;
16247
+ Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
16248
+ SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
16249
+ SelectLabel: DefineComponent;
16092
16250
  }
16093
16251
  }
16094
16252
 
16095
16253
 
16096
16254
  declare module 'vue' {
16097
16255
  interface GlobalComponents {
16098
- ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
16256
+ Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
16099
16257
  }
16100
16258
  }
16101
16259
 
16102
16260
 
16103
16261
  declare module 'vue' {
16104
16262
  interface GlobalComponents {
16105
- Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
16263
+ PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
16106
16264
  }
16107
16265
  }
16108
16266
 
16109
16267
 
16110
16268
  declare module 'vue' {
16111
16269
  interface GlobalComponents {
16112
- Card: DefineComponent<CardProps, CardSlots>;
16270
+ Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
16113
16271
  }
16114
16272
  }
16115
16273
 
16116
16274
 
16117
16275
  declare module 'vue' {
16118
16276
  interface GlobalComponents {
16119
- ScrollContainer: DefineComponent<ScrollContainerProps>;
16277
+ Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
16120
16278
  }
16121
16279
  }
16122
16280
 
16123
16281
 
16124
16282
  declare module 'vue' {
16125
16283
  interface GlobalComponents {
16126
- PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
16284
+ Image: DefineComponent<ImageProps, ImageSlots>;
16127
16285
  }
16128
16286
  }
16129
16287
 
16130
16288
 
16131
16289
  declare module 'vue' {
16132
16290
  interface GlobalComponents {
16133
- ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
16291
+ Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
16134
16292
  }
16135
16293
  }
16136
16294
 
16137
16295
 
16138
16296
  declare module 'vue' {
16139
16297
  interface GlobalComponents {
16140
- FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
16298
+ InputGroup: DefineComponent<InputGroupProps>;
16141
16299
  }
16142
16300
  }
16143
16301
 
@@ -16151,173 +16309,171 @@ declare module 'vue' {
16151
16309
 
16152
16310
  declare module 'vue' {
16153
16311
  interface GlobalComponents {
16154
- Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
16155
- TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
16312
+ Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
16156
16313
  }
16157
16314
  }
16158
16315
 
16159
16316
 
16160
16317
  declare module 'vue' {
16161
16318
  interface GlobalComponents {
16162
- ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
16319
+ Card: DefineComponent<CardProps, CardSlots>;
16163
16320
  }
16164
16321
  }
16165
16322
 
16166
16323
 
16167
16324
  declare module 'vue' {
16168
16325
  interface GlobalComponents {
16169
- Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
16170
- ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
16326
+ Label: DefineComponent<LabelProps, LabelSlots>;
16171
16327
  }
16172
16328
  }
16173
16329
 
16174
16330
 
16175
16331
  declare module 'vue' {
16176
16332
  interface GlobalComponents {
16177
- Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
16333
+ IndentLevel: DefineComponent<IndentLevelProps>;
16178
16334
  }
16179
16335
  }
16180
16336
 
16181
16337
 
16182
16338
  declare module 'vue' {
16183
16339
  interface GlobalComponents {
16184
- ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
16340
+ Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
16341
+ ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
16185
16342
  }
16186
16343
  }
16187
16344
 
16188
16345
 
16189
- /**
16190
- * Global component declaration for TypeScript support
16191
- * Enables <Tooltip> usage in templates without explicit import
16192
- */
16193
16346
  declare module 'vue' {
16194
16347
  interface GlobalComponents {
16195
- Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
16196
- TooltipProvider: DefineComponent<TooltipProviderProps>;
16348
+ ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
16197
16349
  }
16198
16350
  }
16199
16351
 
16200
16352
 
16201
16353
  declare module 'vue' {
16202
16354
  interface GlobalComponents {
16203
- Kbd: DefineComponent<KbdProps, KbdSlots>;
16355
+ GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
16204
16356
  }
16205
16357
  }
16206
16358
 
16207
16359
 
16208
16360
  declare module 'vue' {
16209
16361
  interface GlobalComponents {
16210
- Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
16211
- DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
16362
+ Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
16363
+ Th: DefineComponent<ThProps, ThSlots>;
16364
+ Td: DefineComponent<TdProps, TdSlots>;
16365
+ Tr: DefineComponent<TrProps>;
16366
+ TBody: DefineComponent<TBodyProps>;
16367
+ THead: DefineComponent<THeadProps>;
16368
+ TFoot: DefineComponent<TFootProps>;
16212
16369
  }
16213
16370
  }
16214
16371
 
16215
16372
 
16216
16373
  declare module 'vue' {
16217
16374
  interface GlobalComponents {
16218
- Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
16375
+ Input: DefineComponent<InputProps, InputSlots, InputEmits>;
16219
16376
  }
16220
16377
  }
16221
16378
 
16222
16379
 
16223
16380
  declare module 'vue' {
16224
16381
  interface GlobalComponents {
16225
- ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
16382
+ Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
16383
+ DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
16226
16384
  }
16227
16385
  }
16228
16386
 
16229
16387
 
16230
16388
  declare module 'vue' {
16231
16389
  interface GlobalComponents {
16232
- Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
16233
- SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
16234
- SelectLabel: DefineComponent;
16390
+ Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
16391
+ TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
16235
16392
  }
16236
16393
  }
16237
16394
 
16238
16395
 
16239
16396
  declare module 'vue' {
16240
16397
  interface GlobalComponents {
16241
- Label: DefineComponent<LabelProps, LabelSlots>;
16398
+ Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
16242
16399
  }
16243
16400
  }
16244
16401
 
16245
16402
 
16246
16403
  declare module 'vue' {
16247
16404
  interface GlobalComponents {
16248
- Icon: DefineComponent<IconProps>;
16405
+ Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
16406
+ DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
16249
16407
  }
16250
16408
  }
16251
16409
 
16252
16410
 
16253
16411
  declare module 'vue' {
16254
16412
  interface GlobalComponents {
16255
- MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
16413
+ Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
16256
16414
  }
16257
16415
  }
16258
16416
 
16259
16417
 
16260
16418
  declare module 'vue' {
16261
16419
  interface GlobalComponents {
16262
- Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
16420
+ Divider: DefineComponent<DividerProps>;
16263
16421
  }
16264
16422
  }
16265
16423
 
16266
16424
 
16267
16425
  declare module 'vue' {
16268
16426
  interface GlobalComponents {
16269
- Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
16427
+ FormValidation: DefineComponent<FormValidationProps>;
16270
16428
  }
16271
16429
  }
16272
16430
 
16273
16431
 
16274
16432
  declare module 'vue' {
16275
16433
  interface GlobalComponents {
16276
- Divider: DefineComponent<DividerProps>;
16434
+ Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
16277
16435
  }
16278
16436
  }
16279
16437
 
16280
16438
 
16281
16439
  declare module 'vue' {
16282
16440
  interface GlobalComponents {
16283
- Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
16441
+ ScrollContainer: DefineComponent<ScrollContainerProps>;
16284
16442
  }
16285
16443
  }
16286
16444
 
16287
16445
 
16288
16446
  declare module 'vue' {
16289
16447
  interface GlobalComponents {
16290
- GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
16448
+ Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
16291
16449
  }
16292
16450
  }
16293
16451
 
16294
16452
 
16295
16453
  declare module 'vue' {
16296
16454
  interface GlobalComponents {
16297
- FormValidation: DefineComponent<FormValidationProps>;
16455
+ Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
16298
16456
  }
16299
16457
  }
16300
16458
 
16301
16459
 
16302
16460
  declare module 'vue' {
16303
16461
  interface GlobalComponents {
16304
- DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
16462
+ SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
16305
16463
  }
16306
16464
  }
16307
16465
 
16308
16466
 
16309
16467
  declare module 'vue' {
16310
16468
  interface GlobalComponents {
16311
- Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
16312
- ComboboxInput: DefineComponent<ComboboxInputProps>;
16313
- ComboboxOption: DefineComponent;
16469
+ GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
16314
16470
  }
16315
16471
  }
16316
16472
 
16317
16473
 
16318
16474
  declare module 'vue' {
16319
16475
  interface GlobalComponents {
16320
- AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
16476
+ Indicator: DefineComponent<IndicatorProps>;
16321
16477
  }
16322
16478
  }
16323
16479
 
@@ -16331,143 +16487,140 @@ declare module 'vue' {
16331
16487
 
16332
16488
  declare module 'vue' {
16333
16489
  interface GlobalComponents {
16334
- Skeleton: DefineComponent<SkeletonProps>;
16490
+ Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
16491
+ Step: DefineComponent<StepItemProps, StepItemSlots>;
16335
16492
  }
16336
16493
  }
16337
16494
 
16338
16495
 
16339
16496
  declare module 'vue' {
16340
16497
  interface GlobalComponents {
16341
- InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
16498
+ Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
16499
+ TabList: DefineComponent<TabListProps, TabListSlots>;
16500
+ TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
16501
+ TabContent: DefineComponent;
16342
16502
  }
16343
16503
  }
16344
16504
 
16345
16505
 
16346
16506
  declare module 'vue' {
16347
16507
  interface GlobalComponents {
16348
- Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
16508
+ RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
16509
+ RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
16349
16510
  }
16350
16511
  }
16351
16512
 
16352
16513
 
16353
16514
  declare module 'vue' {
16354
16515
  interface GlobalComponents {
16355
- Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
16516
+ MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
16356
16517
  }
16357
16518
  }
16358
16519
 
16359
16520
 
16360
16521
  declare module 'vue' {
16361
16522
  interface GlobalComponents {
16362
- Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
16523
+ ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
16363
16524
  }
16364
16525
  }
16365
16526
 
16366
16527
 
16367
16528
  declare module 'vue' {
16368
16529
  interface GlobalComponents {
16369
- RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
16370
- RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
16530
+ Button: DefineComponent<ButtonProps, ButtonSlots>;
16371
16531
  }
16372
16532
  }
16373
16533
 
16374
16534
 
16375
16535
  declare module 'vue' {
16376
16536
  interface GlobalComponents {
16377
- Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
16537
+ Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
16378
16538
  }
16379
16539
  }
16380
16540
 
16381
16541
 
16382
16542
  declare module 'vue' {
16383
16543
  interface GlobalComponents {
16384
- Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
16385
- TabList: DefineComponent<TabListProps, TabListSlots>;
16386
- TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
16387
- TabContent: DefineComponent;
16544
+ Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
16388
16545
  }
16389
16546
  }
16390
16547
 
16391
16548
 
16392
16549
  declare module 'vue' {
16393
16550
  interface GlobalComponents {
16394
- Image: DefineComponent<ImageProps, ImageSlots>;
16551
+ Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
16395
16552
  }
16396
16553
  }
16397
16554
 
16398
16555
 
16399
16556
  declare module 'vue' {
16400
16557
  interface GlobalComponents {
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>;
16558
+ Kbd: DefineComponent<KbdProps, KbdSlots>;
16408
16559
  }
16409
16560
  }
16410
16561
 
16411
16562
 
16412
16563
  declare module 'vue' {
16413
16564
  interface GlobalComponents {
16414
- SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
16565
+ ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
16415
16566
  }
16416
16567
  }
16417
16568
 
16418
16569
 
16419
16570
  declare module 'vue' {
16420
16571
  interface GlobalComponents {
16421
- CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
16572
+ HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
16422
16573
  }
16423
16574
  }
16424
16575
 
16425
16576
 
16426
16577
  declare module 'vue' {
16427
16578
  interface GlobalComponents {
16428
- Empty: DefineComponent<EmptyProps, EmptySlots>;
16579
+ Skeleton: DefineComponent<SkeletonProps>;
16429
16580
  }
16430
16581
  }
16431
16582
 
16432
16583
 
16433
16584
  declare module 'vue' {
16434
16585
  interface GlobalComponents {
16435
- Badge: DefineComponent<BadgeProps, BadgeSlots>;
16586
+ InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
16436
16587
  }
16437
16588
  }
16438
16589
 
16439
16590
 
16440
16591
  declare module 'vue' {
16441
16592
  interface GlobalComponents {
16442
- Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
16593
+ Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
16443
16594
  }
16444
16595
  }
16445
16596
 
16446
16597
 
16447
16598
  declare module 'vue' {
16448
16599
  interface GlobalComponents {
16449
- HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
16600
+ Empty: DefineComponent<EmptyProps, EmptySlots>;
16450
16601
  }
16451
16602
  }
16452
16603
 
16453
16604
 
16454
16605
  declare module 'vue' {
16455
16606
  interface GlobalComponents {
16456
- GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
16607
+ Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
16457
16608
  }
16458
16609
  }
16459
16610
 
16460
16611
 
16461
16612
  declare module 'vue' {
16462
16613
  interface GlobalComponents {
16463
- Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
16614
+ Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
16615
+ ComboboxInput: DefineComponent<ComboboxInputProps>;
16616
+ ComboboxOption: DefineComponent;
16464
16617
  }
16465
16618
  }
16466
16619
 
16467
16620
 
16468
16621
  declare module 'vue' {
16469
16622
  interface GlobalComponents {
16470
- Indicator: DefineComponent<IndicatorProps>;
16623
+ Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
16471
16624
  }
16472
16625
  }
16473
16626