@pantograph/vue 0.34.42 → 0.34.43

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
@@ -626,8 +626,10 @@ export declare const Accordion: __VLS_WithTemplateSlots<DefineComponent<Accordio
626
626
  accordion: boolean;
627
627
  size: "sm" | "md" | "lg";
628
628
  collapsible: "header" | "icon";
629
+ unmountOnHide: boolean;
629
630
  bordered: boolean;
630
631
  expandIconPosition: "start" | "end";
632
+ animated: boolean;
631
633
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<AccordionSlots> & AccordionSlots>;
632
634
 
633
635
  /**
@@ -638,10 +640,14 @@ export declare const ACCORDION_DEFAULT_PROPS: {
638
640
  readonly collapsible: "header";
639
641
  readonly bordered: true;
640
642
  readonly accordion: true;
643
+ readonly animated: true;
641
644
  readonly expandIconPosition: "end";
645
+ readonly unmountOnHide: undefined;
642
646
  };
643
647
 
644
- export declare const ACCORDION_ITEM_DEFAULT_PROPS: {};
648
+ export declare const ACCORDION_ITEM_DEFAULT_PROPS: {
649
+ readonly unmountOnHide: undefined;
650
+ };
645
651
 
646
652
  /**
647
653
  * Context interface for the Accordion component
@@ -678,7 +684,9 @@ export declare type AccordionExpandIconPosition = (typeof AccordionExpandIconPos
678
684
  */
679
685
  export declare const AccordionExpandIconPositions: readonly ["start", "end"];
680
686
 
681
- export declare const AccordionItem: __VLS_WithTemplateSlots_2<DefineComponent<AccordionItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AccordionItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<AccordionItemSlots> & AccordionItemSlots>;
687
+ export declare const AccordionItem: __VLS_WithTemplateSlots_2<DefineComponent<AccordionItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AccordionItemProps> & Readonly<{}>, {
688
+ unmountOnHide: boolean;
689
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<AccordionItemSlots> & AccordionItemSlots>;
682
690
 
683
691
  /**__________________________________________________________________________________________________________________**/
684
692
  /**
@@ -824,6 +832,7 @@ export declare interface AccordionProps extends Omit<AccordionRootProps, 'as' |
824
832
  bordered?: boolean;
825
833
  /** Position of the expand icon */
826
834
  expandIconPosition?: AccordionExpandIconPosition;
835
+ animated?: boolean;
827
836
  }
828
837
 
829
838
  declare type AccordionRootEmits<T extends SingleOrMultipleType = SingleOrMultipleType> = {
@@ -1114,13 +1123,13 @@ export declare const ALERT_DIALOG_DEFAULT_PROPS: {
1114
1123
  readonly keyboard: false;
1115
1124
  readonly openAutoFocus: true;
1116
1125
  readonly trapFocus: true;
1126
+ readonly animated: true;
1117
1127
  readonly open: undefined;
1118
1128
  readonly mask: true;
1119
1129
  readonly zIndex: 1000;
1120
1130
  readonly renderPopupsInContent: true;
1121
1131
  readonly screen: true;
1122
1132
  readonly closeOnClickOutside: false;
1123
- readonly animated: true;
1124
1133
  };
1125
1134
 
1126
1135
  export declare const ALERT_DIALOG_OK_DEFAULT_PROPS: {
@@ -1153,6 +1162,7 @@ onAfterClose?: (() => any) | undefined;
1153
1162
  onAfterOpen?: (() => any) | undefined;
1154
1163
  }>, {
1155
1164
  type: "danger" | "info";
1165
+ animated: string | boolean;
1156
1166
  open: boolean;
1157
1167
  mask: boolean;
1158
1168
  width: string | number;
@@ -1171,7 +1181,6 @@ cancelProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "ba
1171
1181
  text: string;
1172
1182
  hide?: boolean | undefined;
1173
1183
  };
1174
- animated: string | boolean;
1175
1184
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<Omit<DialogSlots, "footer" | "trigger" | "beforeFooterActions"> & {
1176
1185
  body?: ((data?: object | undefined) => never) | undefined;
1177
1186
  go?: ((data?: object | undefined) => never) | undefined;
@@ -2474,6 +2483,7 @@ export declare interface BaseInputProps {
2474
2483
  * Whether the input should fit its content
2475
2484
  */
2476
2485
  contentFit?: boolean;
2486
+ /** it will remove important fg color */
2477
2487
  outsideFgColor?: boolean;
2478
2488
  }
2479
2489
 
@@ -2798,7 +2808,9 @@ type: BooleanConstructor;
2798
2808
  default: boolean;
2799
2809
  };
2800
2810
  as: {
2801
- type: PropType<AsTag | Component>;
2811
+ type: PropType<AsTag | Component>; /**
2812
+ * Computed bindings for the button, omitting variant-related and badge-related attributes
2813
+ */
2802
2814
  default: string;
2803
2815
  };
2804
2816
  }>> & Readonly<{}>, () => VNode<RendererNode, RendererElement, {
@@ -2819,7 +2831,9 @@ type: BooleanConstructor;
2819
2831
  default: boolean;
2820
2832
  };
2821
2833
  as: {
2822
- type: PropType<AsTag | Component>;
2834
+ type: PropType<AsTag | Component>; /**
2835
+ * Computed bindings for the button, omitting variant-related and badge-related attributes
2836
+ */
2823
2837
  default: string;
2824
2838
  };
2825
2839
  }>> & Readonly<{}>, () => VNode<RendererNode, RendererElement, {
@@ -3365,16 +3379,16 @@ export declare interface CheckboxProps extends Omit<CheckboxRootProps, 'as' | 'a
3365
3379
  unExtendParent?: boolean;
3366
3380
  }
3367
3381
 
3368
- declare type CheckboxRootEmits = {
3382
+ declare type CheckboxRootEmits<T = boolean> = {
3369
3383
  /** Event handler called when the value of the checkbox changes. */
3370
- 'update:modelValue': [value: boolean | 'indeterminate'];
3384
+ 'update:modelValue': [value: T | 'indeterminate'];
3371
3385
  };
3372
3386
 
3373
- declare interface CheckboxRootProps extends PrimitiveProps, FormFieldProps {
3387
+ declare interface CheckboxRootProps<T = boolean> extends PrimitiveProps, FormFieldProps {
3374
3388
  /** The value of the checkbox when it is initially rendered. Use when you do not need to control its value. */
3375
- defaultValue?: boolean | 'indeterminate';
3389
+ defaultValue?: T | 'indeterminate';
3376
3390
  /** The controlled value of the checkbox. Can be binded with v-model. */
3377
- modelValue?: boolean | 'indeterminate' | null;
3391
+ modelValue?: T | 'indeterminate' | null;
3378
3392
  /** When `true`, prevents the user from interacting with the checkbox */
3379
3393
  disabled?: boolean;
3380
3394
  /**
@@ -3384,6 +3398,14 @@ declare interface CheckboxRootProps extends PrimitiveProps, FormFieldProps {
3384
3398
  value?: AcceptableValue;
3385
3399
  /** Id of the element */
3386
3400
  id?: string;
3401
+ /**
3402
+ * The value used when the checkbox is checked. Defaults to `true`.
3403
+ */
3404
+ trueValue?: T;
3405
+ /**
3406
+ * The value used when the checkbox is unchecked. Defaults to `false`.
3407
+ */
3408
+ falseValue?: T;
3387
3409
  }
3388
3410
 
3389
3411
  /**
@@ -5206,6 +5228,11 @@ export declare const comboboxPrefix: string;
5206
5228
  * @interface ComboboxProps
5207
5229
  */
5208
5230
  export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side' | 'align' | 'flipOnDir' | 'sideFlip' | 'alignFlip' | 'containerProps' | 'open' | 'defaultOpen' | 'zIndex' | 'to' | 'sideOffset' | 'alignOffset' | 'reference' | 'prioritizePosition' | 'avoidCollisions' | 'dir' | 'noTrigger' | 'ignoreParentTo' | 'disableOutsidePointerEvents'>> {
5231
+ /**
5232
+ * When true, width is calculated in px using canvas measureText
5233
+ * instead of ch units — more accurate for non-monospace fonts.
5234
+ */
5235
+ realContentFitWidth?: boolean;
5209
5236
  /**
5210
5237
  * Base props
5211
5238
  */
@@ -5330,6 +5357,7 @@ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side'
5330
5357
  labelCls?: ClassValue;
5331
5358
  /** CSS classes for options container */
5332
5359
  optionsCls?: ClassValue;
5360
+ loadingCls?: ClassValue;
5333
5361
  /** CSS classes for option text */
5334
5362
  optionTextCls?: ClassValue;
5335
5363
  /** CSS classes for option content */
@@ -5463,7 +5491,7 @@ export declare interface ComboboxTriggerDefSlotProps {
5463
5491
 
5464
5492
  export declare const comboboxTriggerPrefix: string;
5465
5493
 
5466
- export declare interface ComboboxTriggerProps extends Partial<Pick<ComboboxProps, 'triggerMinWidth' | 'triggerCls' | 'triggerTrailingCls' | 'triggerLeadingCls' | 'triggerContentPlaceholderCls' | 'tagCls' | 'tree' | 'showTreeTagStrategy' | 'modelValue' | 'defaultValue' | 'multiple' | 'disabled' | 'readonly' | 'size' | 'status' | 'bordered' | 'noValueOnPlaceholder' | 'tagRenderMode' | 'getTagProps' | 'contentFit' | 'wrapped' | 'noTrailing' | 'leadingIcon' | 'trailingIcon' | 'selectedItemIconAsTrailingIcon' | 'maxCount' | 'placeholder' | 'options' | 'getLabel' | 'getValue' | 'getOptions' | 'getIcon' | 'dir' | 'open' | 'noRing'>> {
5494
+ export declare interface ComboboxTriggerProps extends Partial<Pick<ComboboxProps, 'realContentFitWidth' | 'triggerMinWidth' | 'triggerCls' | 'triggerTrailingCls' | 'triggerLeadingCls' | 'triggerContentPlaceholderCls' | 'tagCls' | 'tree' | 'showTreeTagStrategy' | 'modelValue' | 'defaultValue' | 'multiple' | 'disabled' | 'readonly' | 'size' | 'status' | 'bordered' | 'noValueOnPlaceholder' | 'tagRenderMode' | 'getTagProps' | 'contentFit' | 'wrapped' | 'noTrailing' | 'leadingIcon' | 'trailingIcon' | 'selectedItemIconAsTrailingIcon' | 'maxCount' | 'placeholder' | 'options' | 'getLabel' | 'getValue' | 'getOptions' | 'getIcon' | 'dir' | 'open' | 'noRing'>> {
5467
5495
  triggerOnly?: boolean;
5468
5496
  }
5469
5497
 
@@ -5641,6 +5669,7 @@ onAfterOpen?: (() => any) | undefined;
5641
5669
  }>, {
5642
5670
  type: "modal" | "drawer";
5643
5671
  headerCls: string | number | bigint | boolean | ClassArray | ClassDictionary | null;
5672
+ animated: string | boolean;
5644
5673
  open: boolean;
5645
5674
  footer: boolean | null;
5646
5675
  mask: boolean;
@@ -5668,7 +5697,6 @@ text: string;
5668
5697
  hide?: boolean | undefined;
5669
5698
  };
5670
5699
  maskClosable: boolean;
5671
- animated: string | boolean;
5672
5700
  asDrawerInMobile: boolean;
5673
5701
  mobileDrawerMinHeight: string | number;
5674
5702
  mobileDrawerHeight: string | number;
@@ -7107,6 +7135,7 @@ onAfterClose?: (() => any) | undefined;
7107
7135
  onAfterOpen?: (() => any) | undefined;
7108
7136
  }>, {
7109
7137
  headerCls: string | number | bigint | boolean | ClassArray | ClassDictionary | null;
7138
+ animated: string | boolean;
7110
7139
  open: boolean;
7111
7140
  footer: boolean | null;
7112
7141
  mask: boolean;
@@ -7134,7 +7163,6 @@ text: string;
7134
7163
  hide?: boolean | undefined;
7135
7164
  };
7136
7165
  maskClosable: boolean;
7137
- animated: string | boolean;
7138
7166
  footerCls: string | number | bigint | boolean | ClassArray | ClassDictionary | null;
7139
7167
  swipeTriggerCls: string | number | bigint | boolean | ClassArray | ClassDictionary | null;
7140
7168
  swipeTrigger: boolean;
@@ -7142,6 +7170,7 @@ swipeTrigger: boolean;
7142
7170
 
7143
7171
  export declare const DRAWER_DEFAULT_PROPS: {
7144
7172
  readonly headerCls: undefined;
7173
+ readonly animated: true;
7145
7174
  readonly open: undefined;
7146
7175
  readonly footer: undefined;
7147
7176
  readonly mask: true;
@@ -7169,7 +7198,6 @@ export declare const DRAWER_DEFAULT_PROPS: {
7169
7198
  readonly color: "neutral";
7170
7199
  };
7171
7200
  readonly maskClosable: true;
7172
- readonly animated: true;
7173
7201
  readonly footerCls: undefined;
7174
7202
  readonly swipeTriggerCls: undefined;
7175
7203
  readonly swipeTrigger: undefined;
@@ -8717,6 +8745,25 @@ export declare const INPUT_NUMBER_DEFAULT_PROPS: {
8717
8745
  readonly clearIcon: "tabler:circle-x";
8718
8746
  };
8719
8747
 
8748
+ /** Mobile keyboard hint used while keeping the native input as text. */
8749
+ export declare const INPUT_NUMBER_INPUT_MODE = "decimal";
8750
+
8751
+ /** Step icon size for small inputs. */
8752
+ export declare const INPUT_NUMBER_STEP_ICON_SIZE: {
8753
+ readonly sm: 12;
8754
+ readonly md: 14;
8755
+ readonly lg: 16;
8756
+ };
8757
+
8758
+ /** Delay, in milliseconds, between repeated step actions while holding a control. */
8759
+ export declare const INPUT_NUMBER_STEP_REPEAT_DELAY_MS = 50;
8760
+
8761
+ /** Default rendered input type used to avoid browser number coercion. */
8762
+ export declare const INPUT_NUMBER_TYPE = "text";
8763
+
8764
+ /** Additional width, in `ch`, added when content fitting is enabled. */
8765
+ export declare const INPUT_NUMBER_WIDTH_OFFSET_CH = 2;
8766
+
8720
8767
  /**
8721
8768
  * Emits for the Input component
8722
8769
  * Extends HasRootInputEmits and BaseInputEmits.
@@ -8763,7 +8810,7 @@ blur: () => void | undefined;
8763
8810
  select: () => void | undefined;
8764
8811
  setSelectionRange: (start: number, end: number, direction?: "none" | "forward" | "backward" | undefined) => void | undefined;
8765
8812
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
8766
- input: (event?: any) => any;
8813
+ input: (event?: Event | undefined) => any;
8767
8814
  clear: () => any;
8768
8815
  blur: (event: InputEvent) => any;
8769
8816
  change: (value?: number | undefined) => any;
@@ -8777,7 +8824,7 @@ type: "up" | "down";
8777
8824
  }) => any;
8778
8825
  keydownEnter: (event: KeyboardEvent) => any;
8779
8826
  }, string, PublicProps, Readonly<InputNumberProps> & Readonly<{
8780
- onInput?: ((event?: any) => any) | undefined;
8827
+ onInput?: ((event?: Event | undefined) => any) | undefined;
8781
8828
  onClear?: (() => any) | undefined;
8782
8829
  onBlur?: ((event: InputEvent) => any) | undefined;
8783
8830
  onChange?: ((value?: number | undefined) => any) | undefined;
@@ -8812,7 +8859,7 @@ export declare interface InputNumberEmits extends HasRootInputEmits, BaseInputEm
8812
8859
  /** Emitted when the input value changes */
8813
8860
  change: [value?: number];
8814
8861
  /** Emitted when the input value is being typed */
8815
- input: [event?: any];
8862
+ input: [event?: Event];
8816
8863
  /** Emitted when the Enter key is pressed */
8817
8864
  keydownEnter: [event: KeyboardEvent];
8818
8865
  keydown: [event: KeyboardEvent];
@@ -8831,7 +8878,14 @@ export declare interface InputNumberEmits extends HasRootInputEmits, BaseInputEm
8831
8878
  * Props for the InputNumber component
8832
8879
  */
8833
8880
  export declare interface InputNumberProps extends Omit<BaseInputProps, 'hasValue'> {
8834
- saveMode?: 'blur' | 'debounce' | 'realValid';
8881
+ /**
8882
+ * When true, width is calculated in px using canvas measureText
8883
+ * instead of ch units — more accurate for non-monospace fonts.
8884
+ */
8885
+ realContentFitWidth?: boolean;
8886
+ /** Controls when the value is committed to the parent. */
8887
+ saveMode?: InputSaveMode;
8888
+ /** Delay in ms used when `saveMode` is 'debounce'. */
8835
8889
  debounceDelay?: number;
8836
8890
  /** The ID for the input element */
8837
8891
  id?: string;
@@ -8872,7 +8926,11 @@ export declare const inputPrefix: string;
8872
8926
  * Extends BaseInputProps but omits hasValue since it's computed internally.
8873
8927
  */
8874
8928
  export declare interface InputProps extends Omit<BaseInputProps, 'hasValue'> {
8875
- placeholderCls?: ClassValue;
8929
+ /**
8930
+ * When true, width is calculated in px using canvas measureText
8931
+ * instead of ch units — more accurate for non-monospace fonts.
8932
+ */
8933
+ realContentFitWidth?: boolean;
8876
8934
  /**
8877
8935
  * The ID for the input element
8878
8936
  */
@@ -8912,6 +8970,16 @@ export declare interface InputProps extends Omit<BaseInputProps, 'hasValue'> {
8912
8970
  defaultValue?: string | null;
8913
8971
  }
8914
8972
 
8973
+ /**
8974
+ * Type representing the possible input save modes
8975
+ */
8976
+ export declare type InputSaveMode = (typeof InputSaveModes)[number];
8977
+
8978
+ /**
8979
+ * Array of possible input save modes
8980
+ */
8981
+ export declare const InputSaveModes: readonly ["blur", "debounce", "realValid"];
8982
+
8915
8983
  /**
8916
8984
  * Type representing the possible input sizes
8917
8985
  */
@@ -9797,6 +9865,7 @@ onAfterClose?: (() => any) | undefined;
9797
9865
  onAfterOpen?: (() => any) | undefined;
9798
9866
  }>, {
9799
9867
  headerCls: string | number | bigint | boolean | ClassArray | ClassDictionary | null;
9868
+ animated: string | boolean;
9800
9869
  open: boolean;
9801
9870
  footer: boolean | null;
9802
9871
  mask: boolean;
@@ -9823,7 +9892,6 @@ text: string;
9823
9892
  hide?: boolean | undefined;
9824
9893
  };
9825
9894
  maskClosable: boolean;
9826
- animated: string | boolean;
9827
9895
  asDrawerInMobile: boolean;
9828
9896
  mobileDrawerMinHeight: string | number;
9829
9897
  mobileDrawerHeight: string | number;
@@ -9835,6 +9903,7 @@ swipeTrigger: boolean;
9835
9903
 
9836
9904
  export declare const MODAL_DEFAULT_PROPS: {
9837
9905
  readonly headerCls: undefined;
9906
+ readonly animated: true;
9838
9907
  readonly open: undefined;
9839
9908
  readonly footer: undefined;
9840
9909
  readonly mask: true;
@@ -9861,7 +9930,6 @@ export declare const MODAL_DEFAULT_PROPS: {
9861
9930
  readonly color: "neutral";
9862
9931
  };
9863
9932
  readonly maskClosable: true;
9864
- readonly animated: true;
9865
9933
  readonly asDrawerInMobile: false;
9866
9934
  readonly mobileDrawerMinHeight: undefined;
9867
9935
  readonly mobileDrawerHeight: undefined;
@@ -10669,7 +10737,7 @@ declare interface PopperContentProps extends PrimitiveProps {
10669
10737
  * Will be reversed when collisions occur and avoidCollisions
10670
10738
  * is enabled.
10671
10739
  *
10672
- * @defaultValue "top"
10740
+ * @defaultValue "bottom"
10673
10741
  */
10674
10742
  side?: Side;
10675
10743
  /**
@@ -10735,6 +10803,13 @@ declare interface PopperContentProps extends PrimitiveProps {
10735
10803
  * @defaultValue 0
10736
10804
  */
10737
10805
  arrowPadding?: number;
10806
+ /**
10807
+ * When `true`, hides the arrow when it cannot be centered
10808
+ * to the reference element.
10809
+ *
10810
+ * @defaultValue true
10811
+ */
10812
+ hideShiftedArrow?: boolean;
10738
10813
  /**
10739
10814
  * The sticky behavior on the align axis. `partial` will keep the
10740
10815
  * content in the boundary as long as the trigger is at least partially
@@ -11100,14 +11175,14 @@ export declare const RADIO_GROUP_DEFAULT_PROPS: {
11100
11175
  };
11101
11176
 
11102
11177
  export declare const RadioGroup: __VLS_WithTemplateSlots_62<DefineComponent<RadioGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11103
- change: (payload: string) => any;
11104
- "update:modelValue": (payload: string) => any;
11178
+ change: (payload: AcceptableValue) => any;
11179
+ "update:modelValue": (payload: AcceptableValue) => any;
11105
11180
  }, string, PublicProps, Readonly<RadioGroupProps> & Readonly<{
11106
- onChange?: ((payload: string) => any) | undefined;
11107
- "onUpdate:modelValue"?: ((payload: string) => any) | undefined;
11181
+ onChange?: ((payload: AcceptableValue) => any) | undefined;
11182
+ "onUpdate:modelValue"?: ((payload: AcceptableValue) => any) | undefined;
11108
11183
  }>, {
11109
11184
  size: "2xsm" | "xsm";
11110
- orientation: "horizontal" | "vertical";
11185
+ orientation: DataOrientation;
11111
11186
  disabled: boolean;
11112
11187
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
11113
11188
  default?(_: {}): any;
@@ -11124,11 +11199,11 @@ export declare interface RadioGroupEmits extends RadioGroupRootEmits {
11124
11199
  export declare const RadioGroupItem: __VLS_WithTemplateSlots_63<DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11125
11200
  blur: (e: InputEvent) => any;
11126
11201
  focus: (e: InputEvent) => any;
11127
- "update:modelValue": (payload: string) => any;
11202
+ "update:modelValue": (payload: AcceptableValue) => any;
11128
11203
  }, string, PublicProps, Readonly<RadioGroupItemProps> & Readonly<{
11129
11204
  onBlur?: ((e: InputEvent) => any) | undefined;
11130
11205
  onFocus?: ((e: InputEvent) => any) | undefined;
11131
- "onUpdate:modelValue"?: ((payload: string) => any) | undefined;
11206
+ "onUpdate:modelValue"?: ((payload: AcceptableValue) => any) | undefined;
11132
11207
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>, Readonly<RadioGroupSlots> & RadioGroupSlots>;
11133
11208
 
11134
11209
  /**
@@ -11184,7 +11259,7 @@ export declare interface RadioGroupProps extends RadioGroupRootProps {
11184
11259
 
11185
11260
  declare type RadioGroupRootEmits = {
11186
11261
  /** Event handler called when the radio group value changes */
11187
- 'update:modelValue': [payload: string];
11262
+ 'update:modelValue': [payload: AcceptableValue];
11188
11263
  };
11189
11264
 
11190
11265
  declare interface RadioGroupRootProps extends PrimitiveProps, FormFieldProps {
@@ -11584,7 +11659,8 @@ declare interface ScrollAreaRootProps extends PrimitiveProps {
11584
11659
  * `auto` - means that scrollbars are visible when content is overflowing on the corresponding orientation. <br>
11585
11660
  * `always` - means that scrollbars are always visible regardless of whether the content is overflowing.<br>
11586
11661
  * `scroll` - means that scrollbars are visible when the user is scrolling along its corresponding orientation.<br>
11587
- * `hover` - when the user is scrolling along its corresponding orientation and when the user is hovering over the scroll area.
11662
+ * `hover` - when the user is scrolling along its corresponding orientation and when the user is hovering over the scroll area.<br>
11663
+ * `glimpse` - a hybrid approach that briefly shows scrollbars when the user enters the scroll area, then hides them until further interaction.
11588
11664
  */
11589
11665
  type?: ScrollType;
11590
11666
  /** The reading direction of the combobox when applicable. <br> If omitted, inherits globally from `ConfigProvider` or assumes LTR (left-to-right) reading mode. */
@@ -11627,7 +11703,7 @@ root: ({
11627
11703
  $: ComponentInternalInstance;
11628
11704
  $data: {};
11629
11705
  $props: {
11630
- readonly type?: ("scroll" | "auto" | "hover" | "always") | undefined;
11706
+ readonly type?: ("scroll" | "auto" | "hover" | "always" | "glimpse") | undefined;
11631
11707
  readonly dir?: ("ltr" | "rtl") | undefined;
11632
11708
  readonly scrollHideDelay?: number | undefined;
11633
11709
  readonly asChild?: boolean | undefined;
@@ -11651,10 +11727,7 @@ $options: ComponentOptionsBase<Readonly<ScrollAreaRootProps> & Readonly<{}>, {
11651
11727
  viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
11652
11728
  scrollTop: () => void;
11653
11729
  scrollTopLeft: () => void;
11654
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
11655
- type: "scroll" | "auto" | "hover" | "always";
11656
- scrollHideDelay: number;
11657
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
11730
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
11658
11731
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
11659
11732
  created?: ((() => void) | (() => void)[]) | undefined;
11660
11733
  beforeMount?: ((() => void) | (() => void)[]) | undefined;
@@ -11674,10 +11747,7 @@ errorCaptured?: (((err: unknown, instance: ComponentPublicInstance< {}, {}, {
11674
11747
  $forceUpdate: () => void;
11675
11748
  $nextTick: nextTick;
11676
11749
  $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;
11677
- } & Readonly<{
11678
- type: "scroll" | "auto" | "hover" | "always";
11679
- scrollHideDelay: number;
11680
- }> & Omit<Readonly<ScrollAreaRootProps> & Readonly<{}>, "type" | "scrollHideDelay" | "scrollTop" | "scrollTopLeft" | "viewport"> & ShallowUnwrapRef< {
11750
+ } & Readonly<{}> & Omit<Readonly<ScrollAreaRootProps> & Readonly<{}>, "scrollTop" | "scrollTopLeft" | "viewport"> & ShallowUnwrapRef< {
11681
11751
  viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
11682
11752
  scrollTop: () => void;
11683
11753
  scrollTopLeft: () => void;
@@ -11865,7 +11935,7 @@ export declare type ScrollContainerType = (typeof ScrollContainerTypes)[number];
11865
11935
  */
11866
11936
  export declare const ScrollContainerTypes: readonly ["auto", "always", "scroll", "hover"];
11867
11937
 
11868
- declare type ScrollType = 'auto' | 'always' | 'scroll' | 'hover';
11938
+ declare type ScrollType = 'auto' | 'always' | 'scroll' | 'hover' | 'glimpse';
11869
11939
 
11870
11940
  export declare const Segmented: __VLS_WithTemplateSlots_66<DefineComponent<SegmentedProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11871
11941
  change: (event?: string | number | undefined) => any;
@@ -13158,21 +13228,29 @@ export declare interface SwitchProps extends Omit<SwitchRootProps, 'asChild'> {
13158
13228
  noRing?: boolean;
13159
13229
  }
13160
13230
 
13161
- declare type SwitchRootEmits = {
13231
+ declare type SwitchRootEmits<T = boolean> = {
13162
13232
  /** Event handler called when the value of the switch changes. */
13163
- 'update:modelValue': [payload: boolean];
13233
+ 'update:modelValue': [payload: T];
13164
13234
  };
13165
13235
 
13166
- declare interface SwitchRootProps extends PrimitiveProps, FormFieldProps {
13236
+ declare interface SwitchRootProps<T = boolean> extends PrimitiveProps, FormFieldProps {
13167
13237
  /** The state of the switch when it is initially rendered. Use when you do not need to control its state. */
13168
- defaultValue?: boolean;
13238
+ defaultValue?: T;
13169
13239
  /** The controlled state of the switch. Can be bind as `v-model`. */
13170
- modelValue?: boolean | null;
13240
+ modelValue?: T | null;
13171
13241
  /** When `true`, prevents the user from interacting with the switch. */
13172
13242
  disabled?: boolean;
13173
13243
  id?: string;
13174
13244
  /** The value given as data when submitted with a `name`. */
13175
13245
  value?: string;
13246
+ /**
13247
+ * The value used when the switch is on. Defaults to `true`.
13248
+ */
13249
+ trueValue?: T;
13250
+ /**
13251
+ * The value used when the switch is off. Defaults to `false`.
13252
+ */
13253
+ falseValue?: T;
13176
13254
  }
13177
13255
 
13178
13256
  /**
@@ -13717,13 +13795,13 @@ export declare interface TabListSlots {
13717
13795
  }
13718
13796
 
13719
13797
  export declare const Tabs: __VLS_WithTemplateSlots_82<DefineComponent<TabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13720
- change: (payload: string | number) => any;
13721
- "update:modelValue": (payload: string | number) => any;
13798
+ change: (payload: StringOrNumber) => any;
13799
+ "update:modelValue": (payload: StringOrNumber) => any;
13722
13800
  dragStart: (event: SortableEvent, sortable: pantographSortable) => any;
13723
13801
  dragEnd: (event: SortableEvent, sortable: pantographSortable) => any;
13724
13802
  }, string, PublicProps, Readonly<TabsProps> & Readonly<{
13725
- onChange?: ((payload: string | number) => any) | undefined;
13726
- "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
13803
+ onChange?: ((payload: StringOrNumber) => any) | undefined;
13804
+ "onUpdate:modelValue"?: ((payload: StringOrNumber) => any) | undefined;
13727
13805
  onDragStart?: ((event: SortableEvent, sortable: pantographSortable) => any) | undefined;
13728
13806
  onDragEnd?: ((event: SortableEvent, sortable: pantographSortable) => any) | undefined;
13729
13807
  }>, {
@@ -14062,6 +14140,7 @@ export declare interface TextareaProps {
14062
14140
  defaultHeight?: string | number;
14063
14141
  /** Maximum height of the textarea */
14064
14142
  maxHeight?: string | number;
14143
+ /** it will remove important fg color */
14065
14144
  outsideFgColor?: boolean;
14066
14145
  readonly?: boolean;
14067
14146
  /**
@@ -14479,6 +14558,10 @@ declare interface TooltipProviderProps {
14479
14558
  * @defaultValue false
14480
14559
  */
14481
14560
  ignoreNonKeyboardFocus?: boolean;
14561
+ /**
14562
+ * Default settings that will be used by all tooltip components.
14563
+ */
14564
+ content?: TooltipContentProps;
14482
14565
  }
14483
14566
 
14484
14567
  declare type TooltipRootEmits = {
@@ -15703,6 +15786,10 @@ export declare const useConfig: (noDirProvider?: boolean) => {
15703
15786
  useCssInJs: (params: UseCssInJsParams) => void;
15704
15787
  };
15705
15788
 
15789
+ export declare const useContentFitWidth: (inputRef: Ref<HTMLInputElement | undefined>, getContentFit: () => boolean, getRealContentFitWidth: () => boolean | undefined, getPlaceholder: () => string | undefined, getValue: () => string | number | null | undefined) => {
15790
+ setWidth: () => void;
15791
+ };
15792
+
15706
15793
  /**
15707
15794
  * Composable function to manage dark mode
15708
15795
  * @param changeAbleDirectionElement - The element or selector to use for dark mode detection
@@ -15868,86 +15955,91 @@ export { }
15868
15955
 
15869
15956
  declare module 'vue' {
15870
15957
  interface GlobalComponents {
15871
- GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
15958
+ Image: DefineComponent<ImageProps, ImageSlots>;
15872
15959
  }
15873
15960
  }
15874
15961
 
15875
15962
 
15876
15963
  declare module 'vue' {
15877
15964
  interface GlobalComponents {
15878
- Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
15965
+ CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
15879
15966
  }
15880
15967
  }
15881
15968
 
15882
15969
 
15883
15970
  declare module 'vue' {
15884
15971
  interface GlobalComponents {
15885
- ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
15972
+ AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
15886
15973
  }
15887
15974
  }
15888
15975
 
15889
15976
 
15890
15977
  declare module 'vue' {
15891
15978
  interface GlobalComponents {
15892
- Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
15979
+ Card: DefineComponent<CardProps, CardSlots>;
15893
15980
  }
15894
15981
  }
15895
15982
 
15896
15983
 
15897
15984
  declare module 'vue' {
15898
15985
  interface GlobalComponents {
15899
- Label: DefineComponent<LabelProps, LabelSlots>;
15986
+ Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
15987
+ ComboboxInput: DefineComponent<ComboboxInputProps>;
15988
+ ComboboxOption: DefineComponent;
15900
15989
  }
15901
15990
  }
15902
15991
 
15903
15992
 
15904
15993
  declare module 'vue' {
15905
15994
  interface GlobalComponents {
15906
- AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
15995
+ ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
15907
15996
  }
15908
15997
  }
15909
15998
 
15910
15999
 
15911
16000
  declare module 'vue' {
15912
16001
  interface GlobalComponents {
15913
- Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
16002
+ Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
16003
+ MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
15914
16004
  }
15915
16005
  }
15916
16006
 
15917
16007
 
15918
16008
  declare module 'vue' {
15919
16009
  interface GlobalComponents {
15920
- PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
16010
+ Blanket: DefineComponent<BlanketProps>;
15921
16011
  }
15922
16012
  }
15923
16013
 
15924
16014
 
15925
16015
  declare module 'vue' {
15926
16016
  interface GlobalComponents {
15927
- IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
16017
+ ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
15928
16018
  }
15929
16019
  }
15930
16020
 
15931
16021
 
16022
+ /** component declare **/
15932
16023
  declare module 'vue' {
15933
16024
  interface GlobalComponents {
15934
- Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
15935
- UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
15936
- UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
16025
+ Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
16026
+ AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
15937
16027
  }
15938
16028
  }
15939
16029
 
15940
16030
 
15941
16031
  declare module 'vue' {
15942
16032
  interface GlobalComponents {
15943
- Card: DefineComponent<CardProps, CardSlots>;
16033
+ RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
16034
+ RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
15944
16035
  }
15945
16036
  }
15946
16037
 
15947
16038
 
15948
16039
  declare module 'vue' {
15949
16040
  interface GlobalComponents {
15950
- ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
16041
+ Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
16042
+ DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
15951
16043
  }
15952
16044
  }
15953
16045
 
@@ -15961,102 +16053,91 @@ declare module 'vue' {
15961
16053
 
15962
16054
  declare module 'vue' {
15963
16055
  interface GlobalComponents {
15964
- DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
16056
+ ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
15965
16057
  }
15966
16058
  }
15967
16059
 
15968
16060
 
15969
16061
  declare module 'vue' {
15970
16062
  interface GlobalComponents {
15971
- Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
16063
+ AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
15972
16064
  }
15973
16065
  }
15974
16066
 
15975
16067
 
15976
16068
  declare module 'vue' {
15977
16069
  interface GlobalComponents {
15978
- Divider: DefineComponent<DividerProps>;
16070
+ IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
15979
16071
  }
15980
16072
  }
15981
16073
 
15982
16074
 
15983
16075
  declare module 'vue' {
15984
16076
  interface GlobalComponents {
15985
- Blanket: DefineComponent<BlanketProps>;
16077
+ Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
15986
16078
  }
15987
16079
  }
15988
16080
 
15989
16081
 
15990
16082
  declare module 'vue' {
15991
16083
  interface GlobalComponents {
15992
- Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
15993
- SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
15994
- SelectLabel: DefineComponent;
16084
+ ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
15995
16085
  }
15996
16086
  }
15997
16087
 
15998
16088
 
15999
16089
  declare module 'vue' {
16000
16090
  interface GlobalComponents {
16001
- Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
16091
+ Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
16002
16092
  }
16003
16093
  }
16004
16094
 
16005
16095
 
16006
16096
  declare module 'vue' {
16007
16097
  interface GlobalComponents {
16008
- Button: DefineComponent<ButtonProps, ButtonSlots>;
16098
+ SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
16009
16099
  }
16010
16100
  }
16011
16101
 
16012
16102
 
16013
16103
  declare module 'vue' {
16014
16104
  interface GlobalComponents {
16015
- ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
16105
+ Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
16016
16106
  }
16017
16107
  }
16018
16108
 
16019
16109
 
16020
16110
  declare module 'vue' {
16021
16111
  interface GlobalComponents {
16022
- Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
16112
+ Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
16023
16113
  }
16024
16114
  }
16025
16115
 
16026
16116
 
16027
16117
  declare module 'vue' {
16028
16118
  interface GlobalComponents {
16029
- Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
16030
- Th: DefineComponent<ThProps, ThSlots>;
16031
- Td: DefineComponent<TdProps, TdSlots>;
16032
- Tr: DefineComponent<TrProps>;
16033
- TBody: DefineComponent<TBodyProps>;
16034
- THead: DefineComponent<THeadProps>;
16035
- TFoot: DefineComponent<TFootProps>;
16119
+ Button: DefineComponent<ButtonProps, ButtonSlots>;
16036
16120
  }
16037
16121
  }
16038
16122
 
16039
16123
 
16040
16124
  declare module 'vue' {
16041
16125
  interface GlobalComponents {
16042
- Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
16043
- DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
16126
+ Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
16044
16127
  }
16045
16128
  }
16046
16129
 
16047
16130
 
16048
16131
  declare module 'vue' {
16049
16132
  interface GlobalComponents {
16050
- Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
16051
- ComboboxInput: DefineComponent<ComboboxInputProps>;
16052
- ComboboxOption: DefineComponent;
16133
+ Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
16053
16134
  }
16054
16135
  }
16055
16136
 
16056
16137
 
16057
16138
  declare module 'vue' {
16058
16139
  interface GlobalComponents {
16059
- ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
16140
+ Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
16060
16141
  }
16061
16142
  }
16062
16143
 
@@ -16070,317 +16151,323 @@ declare module 'vue' {
16070
16151
 
16071
16152
  declare module 'vue' {
16072
16153
  interface GlobalComponents {
16073
- RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
16074
- RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
16154
+ Input: DefineComponent<InputProps, InputSlots, InputEmits>;
16075
16155
  }
16076
16156
  }
16077
16157
 
16078
16158
 
16079
- /**
16080
- * Global component declaration for TypeScript support
16081
- * Enables <Tooltip> usage in templates without explicit import
16082
- */
16083
16159
  declare module 'vue' {
16084
16160
  interface GlobalComponents {
16085
- Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
16086
- TooltipProvider: DefineComponent<TooltipProviderProps>;
16161
+ GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
16087
16162
  }
16088
16163
  }
16089
16164
 
16090
16165
 
16091
16166
  declare module 'vue' {
16092
16167
  interface GlobalComponents {
16093
- Image: DefineComponent<ImageProps, ImageSlots>;
16168
+ Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
16094
16169
  }
16095
16170
  }
16096
16171
 
16097
16172
 
16098
16173
  declare module 'vue' {
16099
16174
  interface GlobalComponents {
16100
- FormValidation: DefineComponent<FormValidationProps>;
16175
+ Badge: DefineComponent<BadgeProps, BadgeSlots>;
16101
16176
  }
16102
16177
  }
16103
16178
 
16104
16179
 
16105
16180
  declare module 'vue' {
16106
16181
  interface GlobalComponents {
16107
- HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
16182
+ Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
16183
+ DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
16108
16184
  }
16109
16185
  }
16110
16186
 
16111
16187
 
16112
16188
  declare module 'vue' {
16113
16189
  interface GlobalComponents {
16114
- PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
16190
+ DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
16115
16191
  }
16116
16192
  }
16117
16193
 
16118
16194
 
16119
16195
  declare module 'vue' {
16120
16196
  interface GlobalComponents {
16121
- Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
16197
+ Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
16198
+ Th: DefineComponent<ThProps, ThSlots>;
16199
+ Td: DefineComponent<TdProps, TdSlots>;
16200
+ Tr: DefineComponent<TrProps>;
16201
+ TBody: DefineComponent<TBodyProps>;
16202
+ THead: DefineComponent<THeadProps>;
16203
+ TFoot: DefineComponent<TFootProps>;
16122
16204
  }
16123
16205
  }
16124
16206
 
16125
16207
 
16126
16208
  declare module 'vue' {
16127
16209
  interface GlobalComponents {
16128
- MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
16210
+ PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
16129
16211
  }
16130
16212
  }
16131
16213
 
16132
16214
 
16133
16215
  declare module 'vue' {
16134
16216
  interface GlobalComponents {
16135
- Badge: DefineComponent<BadgeProps, BadgeSlots>;
16217
+ ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
16136
16218
  }
16137
16219
  }
16138
16220
 
16139
16221
 
16140
16222
  declare module 'vue' {
16141
16223
  interface GlobalComponents {
16142
- Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
16143
- Step: DefineComponent<StepItemProps, StepItemSlots>;
16224
+ HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
16144
16225
  }
16145
16226
  }
16146
16227
 
16147
16228
 
16148
16229
  declare module 'vue' {
16149
16230
  interface GlobalComponents {
16150
- Input: DefineComponent<InputProps, InputSlots, InputEmits>;
16231
+ ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
16151
16232
  }
16152
16233
  }
16153
16234
 
16154
16235
 
16155
16236
  declare module 'vue' {
16156
16237
  interface GlobalComponents {
16157
- Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
16238
+ ButtonGroup: DefineComponent<ButtonGroupProps>;
16158
16239
  }
16159
16240
  }
16160
16241
 
16161
16242
 
16162
16243
  declare module 'vue' {
16163
16244
  interface GlobalComponents {
16164
- Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
16245
+ Skeleton: DefineComponent<SkeletonProps>;
16165
16246
  }
16166
16247
  }
16167
16248
 
16168
16249
 
16169
16250
  declare module 'vue' {
16170
16251
  interface GlobalComponents {
16171
- Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
16252
+ Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
16172
16253
  }
16173
16254
  }
16174
16255
 
16175
16256
 
16176
16257
  declare module 'vue' {
16177
16258
  interface GlobalComponents {
16178
- ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
16259
+ Empty: DefineComponent<EmptyProps, EmptySlots>;
16179
16260
  }
16180
16261
  }
16181
16262
 
16182
16263
 
16183
16264
  declare module 'vue' {
16184
16265
  interface GlobalComponents {
16185
- Indicator: DefineComponent<IndicatorProps>;
16266
+ PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
16186
16267
  }
16187
16268
  }
16188
16269
 
16189
16270
 
16190
16271
  declare module 'vue' {
16191
16272
  interface GlobalComponents {
16192
- CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
16273
+ IndentLevel: DefineComponent<IndentLevelProps>;
16193
16274
  }
16194
16275
  }
16195
16276
 
16196
16277
 
16197
16278
  declare module 'vue' {
16198
16279
  interface GlobalComponents {
16199
- Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
16200
- ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
16280
+ Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
16201
16281
  }
16202
16282
  }
16203
16283
 
16204
16284
 
16205
16285
  declare module 'vue' {
16206
16286
  interface GlobalComponents {
16207
- Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
16287
+ FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
16208
16288
  }
16209
16289
  }
16210
16290
 
16211
16291
 
16212
16292
  declare module 'vue' {
16213
16293
  interface GlobalComponents {
16214
- FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
16294
+ ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
16215
16295
  }
16216
16296
  }
16217
16297
 
16218
16298
 
16219
16299
  declare module 'vue' {
16220
16300
  interface GlobalComponents {
16221
- InputGroup: DefineComponent<InputGroupProps>;
16301
+ MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
16222
16302
  }
16223
16303
  }
16224
16304
 
16225
16305
 
16226
16306
  declare module 'vue' {
16227
16307
  interface GlobalComponents {
16228
- SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
16308
+ FormValidation: DefineComponent<FormValidationProps>;
16229
16309
  }
16230
16310
  }
16231
16311
 
16232
16312
 
16233
16313
  declare module 'vue' {
16234
16314
  interface GlobalComponents {
16235
- Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
16315
+ Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
16236
16316
  }
16237
16317
  }
16238
16318
 
16239
16319
 
16240
16320
  declare module 'vue' {
16241
16321
  interface GlobalComponents {
16242
- Skeleton: DefineComponent<SkeletonProps>;
16322
+ Label: DefineComponent<LabelProps, LabelSlots>;
16243
16323
  }
16244
16324
  }
16245
16325
 
16246
16326
 
16247
16327
  declare module 'vue' {
16248
16328
  interface GlobalComponents {
16249
- Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
16250
- TabList: DefineComponent<TabListProps, TabListSlots>;
16251
- TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
16252
- TabContent: DefineComponent;
16329
+ GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
16253
16330
  }
16254
16331
  }
16255
16332
 
16256
16333
 
16257
- /** component declare **/
16258
16334
  declare module 'vue' {
16259
16335
  interface GlobalComponents {
16260
- Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
16261
- AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
16336
+ Divider: DefineComponent<DividerProps>;
16262
16337
  }
16263
16338
  }
16264
16339
 
16265
16340
 
16266
16341
  declare module 'vue' {
16267
16342
  interface GlobalComponents {
16268
- Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
16343
+ Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
16344
+ TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
16269
16345
  }
16270
16346
  }
16271
16347
 
16272
16348
 
16273
16349
  declare module 'vue' {
16274
16350
  interface GlobalComponents {
16275
- Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
16276
- TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
16351
+ Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
16277
16352
  }
16278
16353
  }
16279
16354
 
16280
16355
 
16281
16356
  declare module 'vue' {
16282
16357
  interface GlobalComponents {
16283
- ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
16358
+ Kbd: DefineComponent<KbdProps, KbdSlots>;
16284
16359
  }
16285
16360
  }
16286
16361
 
16287
16362
 
16288
16363
  declare module 'vue' {
16289
16364
  interface GlobalComponents {
16290
- Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
16365
+ Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16366
+ UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
16367
+ UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
16291
16368
  }
16292
16369
  }
16293
16370
 
16294
16371
 
16295
16372
  declare module 'vue' {
16296
16373
  interface GlobalComponents {
16297
- Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
16298
- DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
16374
+ Indicator: DefineComponent<IndicatorProps>;
16299
16375
  }
16300
16376
  }
16301
16377
 
16302
16378
 
16303
16379
  declare module 'vue' {
16304
16380
  interface GlobalComponents {
16305
- IndentLevel: DefineComponent<IndentLevelProps>;
16381
+ InputGroup: DefineComponent<InputGroupProps>;
16306
16382
  }
16307
16383
  }
16308
16384
 
16309
16385
 
16310
16386
  declare module 'vue' {
16311
16387
  interface GlobalComponents {
16312
- GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
16388
+ Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
16313
16389
  }
16314
16390
  }
16315
16391
 
16316
16392
 
16317
16393
  declare module 'vue' {
16318
16394
  interface GlobalComponents {
16319
- ScrollContainer: DefineComponent<ScrollContainerProps>;
16395
+ Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
16320
16396
  }
16321
16397
  }
16322
16398
 
16323
16399
 
16400
+ /**
16401
+ * Global component declaration for TypeScript support
16402
+ * Enables <Tooltip> usage in templates without explicit import
16403
+ */
16324
16404
  declare module 'vue' {
16325
16405
  interface GlobalComponents {
16326
- Kbd: DefineComponent<KbdProps, KbdSlots>;
16406
+ Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
16407
+ TooltipProvider: DefineComponent<TooltipProviderProps>;
16327
16408
  }
16328
16409
  }
16329
16410
 
16330
16411
 
16331
16412
  declare module 'vue' {
16332
16413
  interface GlobalComponents {
16333
- AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
16414
+ Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
16334
16415
  }
16335
16416
  }
16336
16417
 
16337
16418
 
16338
16419
  declare module 'vue' {
16339
16420
  interface GlobalComponents {
16340
- ButtonGroup: DefineComponent<ButtonGroupProps>;
16421
+ Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
16422
+ SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
16423
+ SelectLabel: DefineComponent;
16341
16424
  }
16342
16425
  }
16343
16426
 
16344
16427
 
16345
16428
  declare module 'vue' {
16346
16429
  interface GlobalComponents {
16347
- ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
16430
+ Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
16431
+ ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
16348
16432
  }
16349
16433
  }
16350
16434
 
16351
16435
 
16352
16436
  declare module 'vue' {
16353
16437
  interface GlobalComponents {
16354
- Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
16438
+ ScrollContainer: DefineComponent<ScrollContainerProps>;
16355
16439
  }
16356
16440
  }
16357
16441
 
16358
16442
 
16359
16443
  declare module 'vue' {
16360
16444
  interface GlobalComponents {
16361
- Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
16445
+ Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
16362
16446
  }
16363
16447
  }
16364
16448
 
16365
16449
 
16366
16450
  declare module 'vue' {
16367
16451
  interface GlobalComponents {
16368
- Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
16452
+ Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
16453
+ TabList: DefineComponent<TabListProps, TabListSlots>;
16454
+ TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
16455
+ TabContent: DefineComponent;
16369
16456
  }
16370
16457
  }
16371
16458
 
16372
16459
 
16373
16460
  declare module 'vue' {
16374
16461
  interface GlobalComponents {
16375
- Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
16376
- MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
16462
+ Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
16377
16463
  }
16378
16464
  }
16379
16465
 
16380
16466
 
16381
16467
  declare module 'vue' {
16382
16468
  interface GlobalComponents {
16383
- Empty: DefineComponent<EmptyProps, EmptySlots>;
16469
+ Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
16470
+ Step: DefineComponent<StepItemProps, StepItemSlots>;
16384
16471
  }
16385
16472
  }
16386
16473