@pantograph/vue 0.35.1 → 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,521 +16106,521 @@ 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
- Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
16118
+ Badge: DefineComponent<BadgeProps, BadgeSlots>;
15968
16119
  }
15969
16120
  }
15970
16121
 
15971
16122
 
15972
16123
  declare module 'vue' {
15973
16124
  interface GlobalComponents {
15974
- Badge: DefineComponent<BadgeProps, BadgeSlots>;
16125
+ ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
15975
16126
  }
15976
16127
  }
15977
16128
 
15978
16129
 
15979
16130
  declare module 'vue' {
15980
16131
  interface GlobalComponents {
15981
- Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
16132
+ AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
15982
16133
  }
15983
16134
  }
15984
16135
 
15985
16136
 
15986
16137
  declare module 'vue' {
15987
16138
  interface GlobalComponents {
15988
- ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
16139
+ FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
15989
16140
  }
15990
16141
  }
15991
16142
 
15992
16143
 
16144
+ /** component declare **/
15993
16145
  declare module 'vue' {
15994
16146
  interface GlobalComponents {
15995
- CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
16147
+ Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
16148
+ AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
15996
16149
  }
15997
16150
  }
15998
16151
 
15999
16152
 
16000
16153
  declare module 'vue' {
16001
16154
  interface GlobalComponents {
16002
- Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16003
- UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16004
- UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
16155
+ Blanket: DefineComponent<BlanketProps>;
16005
16156
  }
16006
16157
  }
16007
16158
 
16008
16159
 
16009
- /**
16010
- * Global component declaration for TypeScript support
16011
- * Enables <Tooltip> usage in templates without explicit import
16012
- */
16013
16160
  declare module 'vue' {
16014
16161
  interface GlobalComponents {
16015
- Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
16016
- TooltipProvider: DefineComponent<TooltipProviderProps>;
16162
+ Icon: DefineComponent<IconProps>;
16017
16163
  }
16018
16164
  }
16019
16165
 
16020
16166
 
16021
16167
  declare module 'vue' {
16022
16168
  interface GlobalComponents {
16023
- Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
16169
+ IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
16024
16170
  }
16025
16171
  }
16026
16172
 
16027
16173
 
16028
16174
  declare module 'vue' {
16029
16175
  interface GlobalComponents {
16030
- ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
16176
+ PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
16031
16177
  }
16032
16178
  }
16033
16179
 
16034
16180
 
16035
16181
  declare module 'vue' {
16036
16182
  interface GlobalComponents {
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>;
16183
+ Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
16044
16184
  }
16045
16185
  }
16046
16186
 
16047
16187
 
16048
16188
  declare module 'vue' {
16049
16189
  interface GlobalComponents {
16050
- IndentLevel: DefineComponent<IndentLevelProps>;
16190
+ Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
16191
+ MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
16051
16192
  }
16052
16193
  }
16053
16194
 
16054
16195
 
16055
16196
  declare module 'vue' {
16056
16197
  interface GlobalComponents {
16057
- IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
16198
+ ButtonGroup: DefineComponent<ButtonGroupProps>;
16058
16199
  }
16059
16200
  }
16060
16201
 
16061
16202
 
16062
16203
  declare module 'vue' {
16063
16204
  interface GlobalComponents {
16064
- Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
16205
+ Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16206
+ UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16207
+ UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
16065
16208
  }
16066
16209
  }
16067
16210
 
16068
16211
 
16069
16212
  declare module 'vue' {
16070
16213
  interface GlobalComponents {
16071
- Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
16214
+ CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
16072
16215
  }
16073
16216
  }
16074
16217
 
16075
16218
 
16076
16219
  declare module 'vue' {
16077
16220
  interface GlobalComponents {
16078
- Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
16221
+ AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
16079
16222
  }
16080
16223
  }
16081
16224
 
16082
16225
 
16083
16226
  declare module 'vue' {
16084
16227
  interface GlobalComponents {
16085
- FormValidation: DefineComponent<FormValidationProps>;
16228
+ ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
16086
16229
  }
16087
16230
  }
16088
16231
 
16089
16232
 
16233
+ /**
16234
+ * Global component declaration for TypeScript support
16235
+ * Enables <Tooltip> usage in templates without explicit import
16236
+ */
16090
16237
  declare module 'vue' {
16091
16238
  interface GlobalComponents {
16092
- ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
16239
+ Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
16240
+ TooltipProvider: DefineComponent<TooltipProviderProps>;
16093
16241
  }
16094
16242
  }
16095
16243
 
16096
16244
 
16097
16245
  declare module 'vue' {
16098
16246
  interface GlobalComponents {
16099
- Divider: DefineComponent<DividerProps>;
16247
+ Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
16248
+ SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
16249
+ SelectLabel: DefineComponent;
16100
16250
  }
16101
16251
  }
16102
16252
 
16103
16253
 
16104
16254
  declare module 'vue' {
16105
16255
  interface GlobalComponents {
16106
- GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
16256
+ Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
16107
16257
  }
16108
16258
  }
16109
16259
 
16110
16260
 
16111
16261
  declare module 'vue' {
16112
16262
  interface GlobalComponents {
16113
- Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
16114
- ComboboxInput: DefineComponent<ComboboxInputProps>;
16115
- ComboboxOption: DefineComponent;
16263
+ PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
16116
16264
  }
16117
16265
  }
16118
16266
 
16119
16267
 
16120
16268
  declare module 'vue' {
16121
16269
  interface GlobalComponents {
16122
- GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
16270
+ Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
16123
16271
  }
16124
16272
  }
16125
16273
 
16126
16274
 
16127
16275
  declare module 'vue' {
16128
16276
  interface GlobalComponents {
16129
- Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
16130
- DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
16277
+ Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
16131
16278
  }
16132
16279
  }
16133
16280
 
16134
16281
 
16135
16282
  declare module 'vue' {
16136
16283
  interface GlobalComponents {
16137
- Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
16284
+ Image: DefineComponent<ImageProps, ImageSlots>;
16138
16285
  }
16139
16286
  }
16140
16287
 
16141
16288
 
16142
16289
  declare module 'vue' {
16143
16290
  interface GlobalComponents {
16144
- Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
16145
- DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
16291
+ Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
16146
16292
  }
16147
16293
  }
16148
16294
 
16149
16295
 
16150
16296
  declare module 'vue' {
16151
16297
  interface GlobalComponents {
16152
- Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
16298
+ InputGroup: DefineComponent<InputGroupProps>;
16153
16299
  }
16154
16300
  }
16155
16301
 
16156
16302
 
16157
16303
  declare module 'vue' {
16158
16304
  interface GlobalComponents {
16159
- Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
16160
- TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
16305
+ ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
16161
16306
  }
16162
16307
  }
16163
16308
 
16164
16309
 
16165
16310
  declare module 'vue' {
16166
16311
  interface GlobalComponents {
16167
- Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
16312
+ Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
16168
16313
  }
16169
16314
  }
16170
16315
 
16171
16316
 
16172
16317
  declare module 'vue' {
16173
16318
  interface GlobalComponents {
16174
- InputGroup: DefineComponent<InputGroupProps>;
16319
+ Card: DefineComponent<CardProps, CardSlots>;
16175
16320
  }
16176
16321
  }
16177
16322
 
16178
16323
 
16179
16324
  declare module 'vue' {
16180
16325
  interface GlobalComponents {
16181
- Input: DefineComponent<InputProps, InputSlots, InputEmits>;
16326
+ Label: DefineComponent<LabelProps, LabelSlots>;
16182
16327
  }
16183
16328
  }
16184
16329
 
16185
16330
 
16186
16331
  declare module 'vue' {
16187
16332
  interface GlobalComponents {
16188
- Empty: DefineComponent<EmptyProps, EmptySlots>;
16333
+ IndentLevel: DefineComponent<IndentLevelProps>;
16189
16334
  }
16190
16335
  }
16191
16336
 
16192
16337
 
16193
16338
  declare module 'vue' {
16194
16339
  interface GlobalComponents {
16195
- Kbd: DefineComponent<KbdProps, KbdSlots>;
16340
+ Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
16341
+ ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
16196
16342
  }
16197
16343
  }
16198
16344
 
16199
16345
 
16200
16346
  declare module 'vue' {
16201
16347
  interface GlobalComponents {
16202
- ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
16348
+ ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
16203
16349
  }
16204
16350
  }
16205
16351
 
16206
16352
 
16207
16353
  declare module 'vue' {
16208
16354
  interface GlobalComponents {
16209
- Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
16210
- SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
16211
- SelectLabel: DefineComponent;
16355
+ GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
16212
16356
  }
16213
16357
  }
16214
16358
 
16215
16359
 
16216
16360
  declare module 'vue' {
16217
16361
  interface GlobalComponents {
16218
- PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
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>;
16219
16369
  }
16220
16370
  }
16221
16371
 
16222
16372
 
16223
16373
  declare module 'vue' {
16224
16374
  interface GlobalComponents {
16225
- ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
16375
+ Input: DefineComponent<InputProps, InputSlots, InputEmits>;
16226
16376
  }
16227
16377
  }
16228
16378
 
16229
16379
 
16230
16380
  declare module 'vue' {
16231
16381
  interface GlobalComponents {
16232
- Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
16233
- Step: DefineComponent<StepItemProps, StepItemSlots>;
16382
+ Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
16383
+ DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
16234
16384
  }
16235
16385
  }
16236
16386
 
16237
16387
 
16238
16388
  declare module 'vue' {
16239
16389
  interface GlobalComponents {
16240
- Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
16390
+ Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
16391
+ TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
16241
16392
  }
16242
16393
  }
16243
16394
 
16244
16395
 
16245
16396
  declare module 'vue' {
16246
16397
  interface GlobalComponents {
16247
- Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
16398
+ Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
16248
16399
  }
16249
16400
  }
16250
16401
 
16251
16402
 
16252
16403
  declare module 'vue' {
16253
16404
  interface GlobalComponents {
16254
- ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
16405
+ Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
16406
+ DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
16255
16407
  }
16256
16408
  }
16257
16409
 
16258
16410
 
16259
16411
  declare module 'vue' {
16260
16412
  interface GlobalComponents {
16261
- RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
16262
- RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
16413
+ Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
16263
16414
  }
16264
16415
  }
16265
16416
 
16266
16417
 
16267
16418
  declare module 'vue' {
16268
16419
  interface GlobalComponents {
16269
- AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
16420
+ Divider: DefineComponent<DividerProps>;
16270
16421
  }
16271
16422
  }
16272
16423
 
16273
16424
 
16274
16425
  declare module 'vue' {
16275
16426
  interface GlobalComponents {
16276
- Blanket: DefineComponent<BlanketProps>;
16427
+ FormValidation: DefineComponent<FormValidationProps>;
16277
16428
  }
16278
16429
  }
16279
16430
 
16280
16431
 
16281
16432
  declare module 'vue' {
16282
16433
  interface GlobalComponents {
16283
- Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
16434
+ Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
16284
16435
  }
16285
16436
  }
16286
16437
 
16287
16438
 
16288
16439
  declare module 'vue' {
16289
16440
  interface GlobalComponents {
16290
- Label: DefineComponent<LabelProps, LabelSlots>;
16441
+ ScrollContainer: DefineComponent<ScrollContainerProps>;
16291
16442
  }
16292
16443
  }
16293
16444
 
16294
16445
 
16295
16446
  declare module 'vue' {
16296
16447
  interface GlobalComponents {
16297
- FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
16448
+ Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
16298
16449
  }
16299
16450
  }
16300
16451
 
16301
16452
 
16302
16453
  declare module 'vue' {
16303
16454
  interface GlobalComponents {
16304
- MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
16455
+ Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
16305
16456
  }
16306
16457
  }
16307
16458
 
16308
16459
 
16309
16460
  declare module 'vue' {
16310
16461
  interface GlobalComponents {
16311
- AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
16462
+ SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
16312
16463
  }
16313
16464
  }
16314
16465
 
16315
16466
 
16316
16467
  declare module 'vue' {
16317
16468
  interface GlobalComponents {
16318
- Card: DefineComponent<CardProps, CardSlots>;
16469
+ GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
16319
16470
  }
16320
16471
  }
16321
16472
 
16322
16473
 
16323
16474
  declare module 'vue' {
16324
16475
  interface GlobalComponents {
16325
- Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
16476
+ Indicator: DefineComponent<IndicatorProps>;
16326
16477
  }
16327
16478
  }
16328
16479
 
16329
16480
 
16330
16481
  declare module 'vue' {
16331
16482
  interface GlobalComponents {
16332
- InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
16483
+ ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
16333
16484
  }
16334
16485
  }
16335
16486
 
16336
16487
 
16337
16488
  declare module 'vue' {
16338
16489
  interface GlobalComponents {
16339
- Indicator: DefineComponent<IndicatorProps>;
16490
+ Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
16491
+ Step: DefineComponent<StepItemProps, StepItemSlots>;
16340
16492
  }
16341
16493
  }
16342
16494
 
16343
16495
 
16344
16496
  declare module 'vue' {
16345
16497
  interface GlobalComponents {
16346
- Button: DefineComponent<ButtonProps, ButtonSlots>;
16498
+ Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
16499
+ TabList: DefineComponent<TabListProps, TabListSlots>;
16500
+ TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
16501
+ TabContent: DefineComponent;
16347
16502
  }
16348
16503
  }
16349
16504
 
16350
16505
 
16351
16506
  declare module 'vue' {
16352
16507
  interface GlobalComponents {
16353
- ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
16508
+ RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
16509
+ RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
16354
16510
  }
16355
16511
  }
16356
16512
 
16357
16513
 
16358
16514
  declare module 'vue' {
16359
16515
  interface GlobalComponents {
16360
- Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
16361
- TabList: DefineComponent<TabListProps, TabListSlots>;
16362
- TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
16363
- TabContent: DefineComponent;
16516
+ MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
16364
16517
  }
16365
16518
  }
16366
16519
 
16367
16520
 
16368
16521
  declare module 'vue' {
16369
16522
  interface GlobalComponents {
16370
- Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
16523
+ ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
16371
16524
  }
16372
16525
  }
16373
16526
 
16374
16527
 
16375
16528
  declare module 'vue' {
16376
16529
  interface GlobalComponents {
16377
- DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
16530
+ Button: DefineComponent<ButtonProps, ButtonSlots>;
16378
16531
  }
16379
16532
  }
16380
16533
 
16381
16534
 
16382
16535
  declare module 'vue' {
16383
16536
  interface GlobalComponents {
16384
- Skeleton: DefineComponent<SkeletonProps>;
16537
+ Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
16385
16538
  }
16386
16539
  }
16387
16540
 
16388
16541
 
16389
16542
  declare module 'vue' {
16390
16543
  interface GlobalComponents {
16391
- SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
16544
+ Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
16392
16545
  }
16393
16546
  }
16394
16547
 
16395
16548
 
16396
16549
  declare module 'vue' {
16397
16550
  interface GlobalComponents {
16398
- Image: DefineComponent<ImageProps, ImageSlots>;
16551
+ Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
16399
16552
  }
16400
16553
  }
16401
16554
 
16402
16555
 
16403
16556
  declare module 'vue' {
16404
16557
  interface GlobalComponents {
16405
- ButtonGroup: DefineComponent<ButtonGroupProps>;
16558
+ Kbd: DefineComponent<KbdProps, KbdSlots>;
16406
16559
  }
16407
16560
  }
16408
16561
 
16409
16562
 
16410
16563
  declare module 'vue' {
16411
16564
  interface GlobalComponents {
16412
- Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
16413
- ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
16565
+ ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
16414
16566
  }
16415
16567
  }
16416
16568
 
16417
16569
 
16418
16570
  declare module 'vue' {
16419
16571
  interface GlobalComponents {
16420
- ScrollContainer: DefineComponent<ScrollContainerProps>;
16572
+ HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
16421
16573
  }
16422
16574
  }
16423
16575
 
16424
16576
 
16425
16577
  declare module 'vue' {
16426
16578
  interface GlobalComponents {
16427
- Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
16428
- MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
16579
+ Skeleton: DefineComponent<SkeletonProps>;
16429
16580
  }
16430
16581
  }
16431
16582
 
16432
16583
 
16433
16584
  declare module 'vue' {
16434
16585
  interface GlobalComponents {
16435
- HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
16586
+ InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
16436
16587
  }
16437
16588
  }
16438
16589
 
16439
16590
 
16440
16591
  declare module 'vue' {
16441
16592
  interface GlobalComponents {
16442
- Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
16593
+ Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
16443
16594
  }
16444
16595
  }
16445
16596
 
16446
16597
 
16447
16598
  declare module 'vue' {
16448
16599
  interface GlobalComponents {
16449
- Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
16600
+ Empty: DefineComponent<EmptyProps, EmptySlots>;
16450
16601
  }
16451
16602
  }
16452
16603
 
16453
16604
 
16454
16605
  declare module 'vue' {
16455
16606
  interface GlobalComponents {
16456
- Icon: DefineComponent<IconProps>;
16607
+ Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
16457
16608
  }
16458
16609
  }
16459
16610
 
16460
16611
 
16461
16612
  declare module 'vue' {
16462
16613
  interface GlobalComponents {
16463
- Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
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
- PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
16623
+ Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
16471
16624
  }
16472
16625
  }
16473
16626