@pantograph/vue 0.34.42 → 0.35.0
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 +237 -150
- package/dist/index.js +320 -313
- package/dist/index.umd.cjs +1 -1
- package/dist/nuxt.d.ts +99 -99
- package/dist/resolver.d.ts +99 -99
- package/dist/use/index.js +15058 -13683
- package/dist/use/index.umd.cjs +12 -6
- package/dist/use.d.ts +99 -99
- package/package.json +5 -4
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<{}>, {
|
|
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:
|
|
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?:
|
|
3389
|
+
defaultValue?: T | 'indeterminate';
|
|
3376
3390
|
/** The controlled value of the checkbox. Can be binded with v-model. */
|
|
3377
|
-
modelValue?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
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
|
-
|
|
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
|
-
|
|
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 "
|
|
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:
|
|
11104
|
-
"update:modelValue": (payload:
|
|
11178
|
+
change: (payload: AcceptableValue) => any;
|
|
11179
|
+
"update:modelValue": (payload: AcceptableValue) => any;
|
|
11105
11180
|
}, string, PublicProps, Readonly<RadioGroupProps> & Readonly<{
|
|
11106
|
-
onChange?: ((payload:
|
|
11107
|
-
"onUpdate:modelValue"?: ((payload:
|
|
11181
|
+
onChange?: ((payload: AcceptableValue) => any) | undefined;
|
|
11182
|
+
"onUpdate:modelValue"?: ((payload: AcceptableValue) => any) | undefined;
|
|
11108
11183
|
}>, {
|
|
11109
11184
|
size: "2xsm" | "xsm";
|
|
11110
|
-
orientation:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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?:
|
|
13238
|
+
defaultValue?: T;
|
|
13169
13239
|
/** The controlled state of the switch. Can be bind as `v-model`. */
|
|
13170
|
-
modelValue?:
|
|
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:
|
|
13721
|
-
"update:modelValue": (payload:
|
|
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:
|
|
13726
|
-
"onUpdate:modelValue"?: ((payload:
|
|
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
|
|
@@ -15866,521 +15953,521 @@ export declare type VisibleColorPair = Exclude<ColorPair, ColorPairHsv>;
|
|
|
15866
15953
|
export { }
|
|
15867
15954
|
|
|
15868
15955
|
|
|
15956
|
+
/** component declare **/
|
|
15869
15957
|
declare module 'vue' {
|
|
15870
15958
|
interface GlobalComponents {
|
|
15871
|
-
|
|
15959
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
15960
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
15872
15961
|
}
|
|
15873
15962
|
}
|
|
15874
15963
|
|
|
15875
15964
|
|
|
15876
15965
|
declare module 'vue' {
|
|
15877
15966
|
interface GlobalComponents {
|
|
15878
|
-
|
|
15967
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
15968
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
15879
15969
|
}
|
|
15880
15970
|
}
|
|
15881
15971
|
|
|
15882
15972
|
|
|
15883
15973
|
declare module 'vue' {
|
|
15884
15974
|
interface GlobalComponents {
|
|
15885
|
-
|
|
15975
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
15886
15976
|
}
|
|
15887
15977
|
}
|
|
15888
15978
|
|
|
15889
15979
|
|
|
15890
15980
|
declare module 'vue' {
|
|
15891
15981
|
interface GlobalComponents {
|
|
15892
|
-
|
|
15982
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
15893
15983
|
}
|
|
15894
15984
|
}
|
|
15895
15985
|
|
|
15896
15986
|
|
|
15897
15987
|
declare module 'vue' {
|
|
15898
15988
|
interface GlobalComponents {
|
|
15899
|
-
|
|
15989
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
15900
15990
|
}
|
|
15901
15991
|
}
|
|
15902
15992
|
|
|
15903
15993
|
|
|
15904
15994
|
declare module 'vue' {
|
|
15905
15995
|
interface GlobalComponents {
|
|
15906
|
-
|
|
15996
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
15907
15997
|
}
|
|
15908
15998
|
}
|
|
15909
15999
|
|
|
15910
16000
|
|
|
15911
16001
|
declare module 'vue' {
|
|
15912
16002
|
interface GlobalComponents {
|
|
15913
|
-
|
|
16003
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
16004
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
15914
16005
|
}
|
|
15915
16006
|
}
|
|
15916
16007
|
|
|
15917
16008
|
|
|
15918
16009
|
declare module 'vue' {
|
|
15919
16010
|
interface GlobalComponents {
|
|
15920
|
-
|
|
16011
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
15921
16012
|
}
|
|
15922
16013
|
}
|
|
15923
16014
|
|
|
15924
16015
|
|
|
15925
16016
|
declare module 'vue' {
|
|
15926
16017
|
interface GlobalComponents {
|
|
15927
|
-
|
|
16018
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
15928
16019
|
}
|
|
15929
16020
|
}
|
|
15930
16021
|
|
|
15931
16022
|
|
|
15932
16023
|
declare module 'vue' {
|
|
15933
16024
|
interface GlobalComponents {
|
|
15934
|
-
|
|
15935
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
15936
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16025
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
15937
16026
|
}
|
|
15938
16027
|
}
|
|
15939
16028
|
|
|
15940
16029
|
|
|
15941
16030
|
declare module 'vue' {
|
|
15942
16031
|
interface GlobalComponents {
|
|
15943
|
-
|
|
16032
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
15944
16033
|
}
|
|
15945
16034
|
}
|
|
15946
16035
|
|
|
15947
16036
|
|
|
15948
16037
|
declare module 'vue' {
|
|
15949
16038
|
interface GlobalComponents {
|
|
15950
|
-
|
|
16039
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
16040
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
15951
16041
|
}
|
|
15952
16042
|
}
|
|
15953
16043
|
|
|
15954
16044
|
|
|
15955
16045
|
declare module 'vue' {
|
|
15956
16046
|
interface GlobalComponents {
|
|
15957
|
-
|
|
16047
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16048
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16049
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
15958
16050
|
}
|
|
15959
16051
|
}
|
|
15960
16052
|
|
|
15961
16053
|
|
|
15962
16054
|
declare module 'vue' {
|
|
15963
16055
|
interface GlobalComponents {
|
|
15964
|
-
|
|
16056
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
15965
16057
|
}
|
|
15966
16058
|
}
|
|
15967
16059
|
|
|
15968
16060
|
|
|
15969
16061
|
declare module 'vue' {
|
|
15970
16062
|
interface GlobalComponents {
|
|
15971
|
-
|
|
16063
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
15972
16064
|
}
|
|
15973
16065
|
}
|
|
15974
16066
|
|
|
15975
16067
|
|
|
15976
16068
|
declare module 'vue' {
|
|
15977
16069
|
interface GlobalComponents {
|
|
15978
|
-
|
|
16070
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
15979
16071
|
}
|
|
15980
16072
|
}
|
|
15981
16073
|
|
|
15982
16074
|
|
|
15983
16075
|
declare module 'vue' {
|
|
15984
16076
|
interface GlobalComponents {
|
|
15985
|
-
|
|
16077
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
15986
16078
|
}
|
|
15987
16079
|
}
|
|
15988
16080
|
|
|
15989
16081
|
|
|
15990
16082
|
declare module 'vue' {
|
|
15991
16083
|
interface GlobalComponents {
|
|
15992
|
-
|
|
15993
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
15994
|
-
SelectLabel: DefineComponent;
|
|
16084
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
15995
16085
|
}
|
|
15996
16086
|
}
|
|
15997
16087
|
|
|
15998
16088
|
|
|
15999
16089
|
declare module 'vue' {
|
|
16000
16090
|
interface GlobalComponents {
|
|
16001
|
-
|
|
16091
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
16002
16092
|
}
|
|
16003
16093
|
}
|
|
16004
16094
|
|
|
16005
16095
|
|
|
16006
16096
|
declare module 'vue' {
|
|
16007
16097
|
interface GlobalComponents {
|
|
16008
|
-
|
|
16098
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
16009
16099
|
}
|
|
16010
16100
|
}
|
|
16011
16101
|
|
|
16012
16102
|
|
|
16013
16103
|
declare module 'vue' {
|
|
16014
16104
|
interface GlobalComponents {
|
|
16015
|
-
|
|
16105
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
16016
16106
|
}
|
|
16017
16107
|
}
|
|
16018
16108
|
|
|
16019
16109
|
|
|
16020
16110
|
declare module 'vue' {
|
|
16021
16111
|
interface GlobalComponents {
|
|
16022
|
-
|
|
16112
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
16023
16113
|
}
|
|
16024
16114
|
}
|
|
16025
16115
|
|
|
16026
16116
|
|
|
16027
16117
|
declare module 'vue' {
|
|
16028
16118
|
interface GlobalComponents {
|
|
16029
|
-
|
|
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
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
16036
16120
|
}
|
|
16037
16121
|
}
|
|
16038
16122
|
|
|
16039
16123
|
|
|
16040
16124
|
declare module 'vue' {
|
|
16041
16125
|
interface GlobalComponents {
|
|
16042
|
-
|
|
16043
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
16126
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
16044
16127
|
}
|
|
16045
16128
|
}
|
|
16046
16129
|
|
|
16047
16130
|
|
|
16048
16131
|
declare module 'vue' {
|
|
16049
16132
|
interface GlobalComponents {
|
|
16050
|
-
|
|
16051
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
16052
|
-
ComboboxOption: DefineComponent;
|
|
16133
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
16053
16134
|
}
|
|
16054
16135
|
}
|
|
16055
16136
|
|
|
16056
16137
|
|
|
16057
16138
|
declare module 'vue' {
|
|
16058
16139
|
interface GlobalComponents {
|
|
16059
|
-
|
|
16140
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
16060
16141
|
}
|
|
16061
16142
|
}
|
|
16062
16143
|
|
|
16063
16144
|
|
|
16064
16145
|
declare module 'vue' {
|
|
16065
16146
|
interface GlobalComponents {
|
|
16066
|
-
|
|
16147
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
16067
16148
|
}
|
|
16068
16149
|
}
|
|
16069
16150
|
|
|
16070
16151
|
|
|
16071
16152
|
declare module 'vue' {
|
|
16072
16153
|
interface GlobalComponents {
|
|
16073
|
-
|
|
16074
|
-
|
|
16154
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
16155
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16075
16156
|
}
|
|
16076
16157
|
}
|
|
16077
16158
|
|
|
16078
16159
|
|
|
16079
|
-
/**
|
|
16080
|
-
* Global component declaration for TypeScript support
|
|
16081
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
16082
|
-
*/
|
|
16083
16160
|
declare module 'vue' {
|
|
16084
16161
|
interface GlobalComponents {
|
|
16085
|
-
|
|
16086
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16162
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
16087
16163
|
}
|
|
16088
16164
|
}
|
|
16089
16165
|
|
|
16090
16166
|
|
|
16091
16167
|
declare module 'vue' {
|
|
16092
16168
|
interface GlobalComponents {
|
|
16093
|
-
|
|
16169
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
16170
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16094
16171
|
}
|
|
16095
16172
|
}
|
|
16096
16173
|
|
|
16097
16174
|
|
|
16098
16175
|
declare module 'vue' {
|
|
16099
16176
|
interface GlobalComponents {
|
|
16100
|
-
|
|
16177
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
16101
16178
|
}
|
|
16102
16179
|
}
|
|
16103
16180
|
|
|
16104
16181
|
|
|
16105
16182
|
declare module 'vue' {
|
|
16106
16183
|
interface GlobalComponents {
|
|
16107
|
-
|
|
16184
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
16108
16185
|
}
|
|
16109
16186
|
}
|
|
16110
16187
|
|
|
16111
16188
|
|
|
16189
|
+
/**
|
|
16190
|
+
* Global component declaration for TypeScript support
|
|
16191
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
16192
|
+
*/
|
|
16112
16193
|
declare module 'vue' {
|
|
16113
16194
|
interface GlobalComponents {
|
|
16114
|
-
|
|
16195
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
16196
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16115
16197
|
}
|
|
16116
16198
|
}
|
|
16117
16199
|
|
|
16118
16200
|
|
|
16119
16201
|
declare module 'vue' {
|
|
16120
16202
|
interface GlobalComponents {
|
|
16121
|
-
|
|
16203
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
16122
16204
|
}
|
|
16123
16205
|
}
|
|
16124
16206
|
|
|
16125
16207
|
|
|
16126
16208
|
declare module 'vue' {
|
|
16127
16209
|
interface GlobalComponents {
|
|
16128
|
-
|
|
16210
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
16211
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
16129
16212
|
}
|
|
16130
16213
|
}
|
|
16131
16214
|
|
|
16132
16215
|
|
|
16133
16216
|
declare module 'vue' {
|
|
16134
16217
|
interface GlobalComponents {
|
|
16135
|
-
|
|
16218
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
16136
16219
|
}
|
|
16137
16220
|
}
|
|
16138
16221
|
|
|
16139
16222
|
|
|
16140
16223
|
declare module 'vue' {
|
|
16141
16224
|
interface GlobalComponents {
|
|
16142
|
-
|
|
16143
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16225
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
16144
16226
|
}
|
|
16145
16227
|
}
|
|
16146
16228
|
|
|
16147
16229
|
|
|
16148
16230
|
declare module 'vue' {
|
|
16149
16231
|
interface GlobalComponents {
|
|
16150
|
-
|
|
16232
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
16233
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
16234
|
+
SelectLabel: DefineComponent;
|
|
16151
16235
|
}
|
|
16152
16236
|
}
|
|
16153
16237
|
|
|
16154
16238
|
|
|
16155
16239
|
declare module 'vue' {
|
|
16156
16240
|
interface GlobalComponents {
|
|
16157
|
-
|
|
16241
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
16158
16242
|
}
|
|
16159
16243
|
}
|
|
16160
16244
|
|
|
16161
16245
|
|
|
16162
16246
|
declare module 'vue' {
|
|
16163
16247
|
interface GlobalComponents {
|
|
16164
|
-
|
|
16248
|
+
Icon: DefineComponent<IconProps>;
|
|
16165
16249
|
}
|
|
16166
16250
|
}
|
|
16167
16251
|
|
|
16168
16252
|
|
|
16169
16253
|
declare module 'vue' {
|
|
16170
16254
|
interface GlobalComponents {
|
|
16171
|
-
|
|
16255
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
16172
16256
|
}
|
|
16173
16257
|
}
|
|
16174
16258
|
|
|
16175
16259
|
|
|
16176
16260
|
declare module 'vue' {
|
|
16177
16261
|
interface GlobalComponents {
|
|
16178
|
-
|
|
16262
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
16179
16263
|
}
|
|
16180
16264
|
}
|
|
16181
16265
|
|
|
16182
16266
|
|
|
16183
16267
|
declare module 'vue' {
|
|
16184
16268
|
interface GlobalComponents {
|
|
16185
|
-
|
|
16269
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
16186
16270
|
}
|
|
16187
16271
|
}
|
|
16188
16272
|
|
|
16189
16273
|
|
|
16190
16274
|
declare module 'vue' {
|
|
16191
16275
|
interface GlobalComponents {
|
|
16192
|
-
|
|
16276
|
+
Divider: DefineComponent<DividerProps>;
|
|
16193
16277
|
}
|
|
16194
16278
|
}
|
|
16195
16279
|
|
|
16196
16280
|
|
|
16197
16281
|
declare module 'vue' {
|
|
16198
16282
|
interface GlobalComponents {
|
|
16199
|
-
|
|
16200
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16283
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
16201
16284
|
}
|
|
16202
16285
|
}
|
|
16203
16286
|
|
|
16204
16287
|
|
|
16205
16288
|
declare module 'vue' {
|
|
16206
16289
|
interface GlobalComponents {
|
|
16207
|
-
|
|
16290
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
16208
16291
|
}
|
|
16209
16292
|
}
|
|
16210
16293
|
|
|
16211
16294
|
|
|
16212
16295
|
declare module 'vue' {
|
|
16213
16296
|
interface GlobalComponents {
|
|
16214
|
-
|
|
16297
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
16215
16298
|
}
|
|
16216
16299
|
}
|
|
16217
16300
|
|
|
16218
16301
|
|
|
16219
16302
|
declare module 'vue' {
|
|
16220
16303
|
interface GlobalComponents {
|
|
16221
|
-
|
|
16304
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
16222
16305
|
}
|
|
16223
16306
|
}
|
|
16224
16307
|
|
|
16225
16308
|
|
|
16226
16309
|
declare module 'vue' {
|
|
16227
16310
|
interface GlobalComponents {
|
|
16228
|
-
|
|
16311
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
16312
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
16313
|
+
ComboboxOption: DefineComponent;
|
|
16229
16314
|
}
|
|
16230
16315
|
}
|
|
16231
16316
|
|
|
16232
16317
|
|
|
16233
16318
|
declare module 'vue' {
|
|
16234
16319
|
interface GlobalComponents {
|
|
16235
|
-
|
|
16320
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
16236
16321
|
}
|
|
16237
16322
|
}
|
|
16238
16323
|
|
|
16239
16324
|
|
|
16240
16325
|
declare module 'vue' {
|
|
16241
16326
|
interface GlobalComponents {
|
|
16242
|
-
|
|
16327
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
16243
16328
|
}
|
|
16244
16329
|
}
|
|
16245
16330
|
|
|
16246
16331
|
|
|
16247
16332
|
declare module 'vue' {
|
|
16248
16333
|
interface GlobalComponents {
|
|
16249
|
-
|
|
16250
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16251
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16252
|
-
TabContent: DefineComponent;
|
|
16334
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
16253
16335
|
}
|
|
16254
16336
|
}
|
|
16255
16337
|
|
|
16256
16338
|
|
|
16257
|
-
/** component declare **/
|
|
16258
16339
|
declare module 'vue' {
|
|
16259
16340
|
interface GlobalComponents {
|
|
16260
|
-
|
|
16261
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
16341
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
16262
16342
|
}
|
|
16263
16343
|
}
|
|
16264
16344
|
|
|
16265
16345
|
|
|
16266
16346
|
declare module 'vue' {
|
|
16267
16347
|
interface GlobalComponents {
|
|
16268
|
-
|
|
16348
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
16269
16349
|
}
|
|
16270
16350
|
}
|
|
16271
16351
|
|
|
16272
16352
|
|
|
16273
16353
|
declare module 'vue' {
|
|
16274
16354
|
interface GlobalComponents {
|
|
16275
|
-
|
|
16276
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16355
|
+
Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
|
|
16277
16356
|
}
|
|
16278
16357
|
}
|
|
16279
16358
|
|
|
16280
16359
|
|
|
16281
16360
|
declare module 'vue' {
|
|
16282
16361
|
interface GlobalComponents {
|
|
16283
|
-
|
|
16362
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
16284
16363
|
}
|
|
16285
16364
|
}
|
|
16286
16365
|
|
|
16287
16366
|
|
|
16288
16367
|
declare module 'vue' {
|
|
16289
16368
|
interface GlobalComponents {
|
|
16290
|
-
|
|
16369
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
16370
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
16291
16371
|
}
|
|
16292
16372
|
}
|
|
16293
16373
|
|
|
16294
16374
|
|
|
16295
16375
|
declare module 'vue' {
|
|
16296
16376
|
interface GlobalComponents {
|
|
16297
|
-
|
|
16298
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16377
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
16299
16378
|
}
|
|
16300
16379
|
}
|
|
16301
16380
|
|
|
16302
16381
|
|
|
16303
16382
|
declare module 'vue' {
|
|
16304
16383
|
interface GlobalComponents {
|
|
16305
|
-
|
|
16384
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
16385
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16386
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16387
|
+
TabContent: DefineComponent;
|
|
16306
16388
|
}
|
|
16307
16389
|
}
|
|
16308
16390
|
|
|
16309
16391
|
|
|
16310
16392
|
declare module 'vue' {
|
|
16311
16393
|
interface GlobalComponents {
|
|
16312
|
-
|
|
16394
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
16313
16395
|
}
|
|
16314
16396
|
}
|
|
16315
16397
|
|
|
16316
16398
|
|
|
16317
16399
|
declare module 'vue' {
|
|
16318
16400
|
interface GlobalComponents {
|
|
16319
|
-
|
|
16401
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
16402
|
+
Th: DefineComponent<ThProps, ThSlots>;
|
|
16403
|
+
Td: DefineComponent<TdProps, TdSlots>;
|
|
16404
|
+
Tr: DefineComponent<TrProps>;
|
|
16405
|
+
TBody: DefineComponent<TBodyProps>;
|
|
16406
|
+
THead: DefineComponent<THeadProps>;
|
|
16407
|
+
TFoot: DefineComponent<TFootProps>;
|
|
16320
16408
|
}
|
|
16321
16409
|
}
|
|
16322
16410
|
|
|
16323
16411
|
|
|
16324
16412
|
declare module 'vue' {
|
|
16325
16413
|
interface GlobalComponents {
|
|
16326
|
-
|
|
16414
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
16327
16415
|
}
|
|
16328
16416
|
}
|
|
16329
16417
|
|
|
16330
16418
|
|
|
16331
16419
|
declare module 'vue' {
|
|
16332
16420
|
interface GlobalComponents {
|
|
16333
|
-
|
|
16421
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
16334
16422
|
}
|
|
16335
16423
|
}
|
|
16336
16424
|
|
|
16337
16425
|
|
|
16338
16426
|
declare module 'vue' {
|
|
16339
16427
|
interface GlobalComponents {
|
|
16340
|
-
|
|
16428
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
16341
16429
|
}
|
|
16342
16430
|
}
|
|
16343
16431
|
|
|
16344
16432
|
|
|
16345
16433
|
declare module 'vue' {
|
|
16346
16434
|
interface GlobalComponents {
|
|
16347
|
-
|
|
16435
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
16348
16436
|
}
|
|
16349
16437
|
}
|
|
16350
16438
|
|
|
16351
16439
|
|
|
16352
16440
|
declare module 'vue' {
|
|
16353
16441
|
interface GlobalComponents {
|
|
16354
|
-
|
|
16442
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
16355
16443
|
}
|
|
16356
16444
|
}
|
|
16357
16445
|
|
|
16358
16446
|
|
|
16359
16447
|
declare module 'vue' {
|
|
16360
16448
|
interface GlobalComponents {
|
|
16361
|
-
|
|
16449
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
16362
16450
|
}
|
|
16363
16451
|
}
|
|
16364
16452
|
|
|
16365
16453
|
|
|
16366
16454
|
declare module 'vue' {
|
|
16367
16455
|
interface GlobalComponents {
|
|
16368
|
-
|
|
16456
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
16369
16457
|
}
|
|
16370
16458
|
}
|
|
16371
16459
|
|
|
16372
16460
|
|
|
16373
16461
|
declare module 'vue' {
|
|
16374
16462
|
interface GlobalComponents {
|
|
16375
|
-
|
|
16376
|
-
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
16463
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
16377
16464
|
}
|
|
16378
16465
|
}
|
|
16379
16466
|
|
|
16380
16467
|
|
|
16381
16468
|
declare module 'vue' {
|
|
16382
16469
|
interface GlobalComponents {
|
|
16383
|
-
|
|
16470
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
16384
16471
|
}
|
|
16385
16472
|
}
|
|
16386
16473
|
|