@pantograph/vue 0.34.41 → 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 +266 -151
- package/dist/index.js +320 -313
- package/dist/index.umd.cjs +1 -1
- package/dist/nuxt.d.ts +97 -97
- package/dist/resolver.d.ts +97 -97
- package/dist/use/index.js +15068 -13606
- package/dist/use/index.umd.cjs +12 -6
- package/dist/use.d.ts +97 -97
- package/package.json +7 -6
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: {
|
|
@@ -1152,7 +1161,8 @@ onOk?: ((event?: PointerEvent | undefined) => any) | undefined;
|
|
|
1152
1161
|
onAfterClose?: (() => any) | undefined;
|
|
1153
1162
|
onAfterOpen?: (() => any) | undefined;
|
|
1154
1163
|
}>, {
|
|
1155
|
-
type:
|
|
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;
|
|
@@ -1360,7 +1369,7 @@ export declare type AlertDialogType = (typeof AlertDialogTypes)[number];
|
|
|
1360
1369
|
* - `info`: Informational alerts with blue/sky color scheme
|
|
1361
1370
|
* - `danger`: Destructive action alerts with red color scheme
|
|
1362
1371
|
*/
|
|
1363
|
-
export declare const AlertDialogTypes:
|
|
1372
|
+
export declare const AlertDialogTypes: readonly ["info", "danger"];
|
|
1364
1373
|
|
|
1365
1374
|
/**
|
|
1366
1375
|
* Events emitted by the Alert component
|
|
@@ -2390,6 +2399,10 @@ export declare interface BaseInputEmits {
|
|
|
2390
2399
|
*/
|
|
2391
2400
|
export declare interface BaseInputProps {
|
|
2392
2401
|
noBg?: boolean;
|
|
2402
|
+
/**
|
|
2403
|
+
* Disable the focus ring on the input wrapper
|
|
2404
|
+
*/
|
|
2405
|
+
noRing?: boolean;
|
|
2393
2406
|
dir?: Direction;
|
|
2394
2407
|
/**
|
|
2395
2408
|
* Whether the input is read-only
|
|
@@ -2470,6 +2483,7 @@ export declare interface BaseInputProps {
|
|
|
2470
2483
|
* Whether the input should fit its content
|
|
2471
2484
|
*/
|
|
2472
2485
|
contentFit?: boolean;
|
|
2486
|
+
/** it will remove important fg color */
|
|
2473
2487
|
outsideFgColor?: boolean;
|
|
2474
2488
|
}
|
|
2475
2489
|
|
|
@@ -2794,7 +2808,9 @@ type: BooleanConstructor;
|
|
|
2794
2808
|
default: boolean;
|
|
2795
2809
|
};
|
|
2796
2810
|
as: {
|
|
2797
|
-
type: PropType<AsTag | Component>;
|
|
2811
|
+
type: PropType<AsTag | Component>; /**
|
|
2812
|
+
* Computed bindings for the button, omitting variant-related and badge-related attributes
|
|
2813
|
+
*/
|
|
2798
2814
|
default: string;
|
|
2799
2815
|
};
|
|
2800
2816
|
}>> & Readonly<{}>, () => VNode<RendererNode, RendererElement, {
|
|
@@ -2815,7 +2831,9 @@ type: BooleanConstructor;
|
|
|
2815
2831
|
default: boolean;
|
|
2816
2832
|
};
|
|
2817
2833
|
as: {
|
|
2818
|
-
type: PropType<AsTag | Component>;
|
|
2834
|
+
type: PropType<AsTag | Component>; /**
|
|
2835
|
+
* Computed bindings for the button, omitting variant-related and badge-related attributes
|
|
2836
|
+
*/
|
|
2819
2837
|
default: string;
|
|
2820
2838
|
};
|
|
2821
2839
|
}>> & Readonly<{}>, () => VNode<RendererNode, RendererElement, {
|
|
@@ -3284,6 +3302,10 @@ export declare type CheckboxGroupProps = PrimitiveProps & {
|
|
|
3284
3302
|
* Whether the checkbox group is disabled
|
|
3285
3303
|
*/
|
|
3286
3304
|
disabled?: boolean;
|
|
3305
|
+
/**
|
|
3306
|
+
* Whether to disable the focus ring on checkboxes (child checkboxes inherit unless overridden)
|
|
3307
|
+
*/
|
|
3308
|
+
noRing?: boolean;
|
|
3287
3309
|
/**
|
|
3288
3310
|
* Name for the checkbox group
|
|
3289
3311
|
*/
|
|
@@ -3303,6 +3325,8 @@ export declare type CheckboxGroupValue = (number | string)[];
|
|
|
3303
3325
|
* Props for the Checkbox component
|
|
3304
3326
|
*/
|
|
3305
3327
|
export declare interface CheckboxProps extends Omit<CheckboxRootProps, 'as' | 'asChild' | 'value'> {
|
|
3328
|
+
/** Whether to disable the focus ring */
|
|
3329
|
+
noRing?: boolean;
|
|
3306
3330
|
dir?: Direction;
|
|
3307
3331
|
/** deprecated */
|
|
3308
3332
|
checked?: CheckboxRootProps['modelValue'];
|
|
@@ -3355,16 +3379,16 @@ export declare interface CheckboxProps extends Omit<CheckboxRootProps, 'as' | 'a
|
|
|
3355
3379
|
unExtendParent?: boolean;
|
|
3356
3380
|
}
|
|
3357
3381
|
|
|
3358
|
-
declare type CheckboxRootEmits = {
|
|
3382
|
+
declare type CheckboxRootEmits<T = boolean> = {
|
|
3359
3383
|
/** Event handler called when the value of the checkbox changes. */
|
|
3360
|
-
'update:modelValue': [value:
|
|
3384
|
+
'update:modelValue': [value: T | 'indeterminate'];
|
|
3361
3385
|
};
|
|
3362
3386
|
|
|
3363
|
-
declare interface CheckboxRootProps extends PrimitiveProps, FormFieldProps {
|
|
3387
|
+
declare interface CheckboxRootProps<T = boolean> extends PrimitiveProps, FormFieldProps {
|
|
3364
3388
|
/** The value of the checkbox when it is initially rendered. Use when you do not need to control its value. */
|
|
3365
|
-
defaultValue?:
|
|
3389
|
+
defaultValue?: T | 'indeterminate';
|
|
3366
3390
|
/** The controlled value of the checkbox. Can be binded with v-model. */
|
|
3367
|
-
modelValue?:
|
|
3391
|
+
modelValue?: T | 'indeterminate' | null;
|
|
3368
3392
|
/** When `true`, prevents the user from interacting with the checkbox */
|
|
3369
3393
|
disabled?: boolean;
|
|
3370
3394
|
/**
|
|
@@ -3374,6 +3398,14 @@ declare interface CheckboxRootProps extends PrimitiveProps, FormFieldProps {
|
|
|
3374
3398
|
value?: AcceptableValue;
|
|
3375
3399
|
/** Id of the element */
|
|
3376
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;
|
|
3377
3409
|
}
|
|
3378
3410
|
|
|
3379
3411
|
/**
|
|
@@ -5195,7 +5227,12 @@ export declare const comboboxPrefix: string;
|
|
|
5195
5227
|
* Props interface for the Combobox component
|
|
5196
5228
|
* @interface ComboboxProps
|
|
5197
5229
|
*/
|
|
5198
|
-
export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side' | 'align' | 'flipOnDir' | 'containerProps' | 'open' | 'defaultOpen' | 'zIndex' | 'to' | 'sideOffset' | 'alignOffset' | 'reference' | 'prioritizePosition' | 'avoidCollisions' | 'dir' | 'noTrigger' | 'ignoreParentTo' | 'disableOutsidePointerEvents'>> {
|
|
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;
|
|
5199
5236
|
/**
|
|
5200
5237
|
* Base props
|
|
5201
5238
|
*/
|
|
@@ -5203,6 +5240,8 @@ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side'
|
|
|
5203
5240
|
modelValue?: string | string[];
|
|
5204
5241
|
/** Default selected value(s) */
|
|
5205
5242
|
defaultValue?: string | string[];
|
|
5243
|
+
/** Whether to disable the focus ring on the trigger */
|
|
5244
|
+
noRing?: boolean;
|
|
5206
5245
|
/** Whether multiple selection is enabled */
|
|
5207
5246
|
multiple?: boolean;
|
|
5208
5247
|
/** Whether the combobox is disabled */
|
|
@@ -5318,6 +5357,7 @@ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side'
|
|
|
5318
5357
|
labelCls?: ClassValue;
|
|
5319
5358
|
/** CSS classes for options container */
|
|
5320
5359
|
optionsCls?: ClassValue;
|
|
5360
|
+
loadingCls?: ClassValue;
|
|
5321
5361
|
/** CSS classes for option text */
|
|
5322
5362
|
optionTextCls?: ClassValue;
|
|
5323
5363
|
/** CSS classes for option content */
|
|
@@ -5451,7 +5491,7 @@ export declare interface ComboboxTriggerDefSlotProps {
|
|
|
5451
5491
|
|
|
5452
5492
|
export declare const comboboxTriggerPrefix: string;
|
|
5453
5493
|
|
|
5454
|
-
export declare interface ComboboxTriggerProps extends Partial<Pick<ComboboxProps, 'triggerMinWidth' | 'triggerCls' | 'triggerTrailingCls' | 'triggerLeadingCls' | 'triggerContentPlaceholderCls' | 'tagCls' | 'tree' | 'showTreeTagStrategy' | 'modelValue' | 'defaultValue' | 'multiple' | 'disabled' | 'readonly' | 'size' | 'status' | 'bordered' | 'noValueOnPlaceholder' | 'tagRenderMode' | 'getTagProps' | 'contentFit' | 'wrapped' | 'noTrailing' | 'leadingIcon' | 'trailingIcon' | 'selectedItemIconAsTrailingIcon' | 'maxCount' | 'placeholder' | 'options' | 'getLabel' | 'getValue' | 'getOptions' | 'getIcon' | 'dir' | 'open'>> {
|
|
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'>> {
|
|
5455
5495
|
triggerOnly?: boolean;
|
|
5456
5496
|
}
|
|
5457
5497
|
|
|
@@ -5629,6 +5669,7 @@ onAfterOpen?: (() => any) | undefined;
|
|
|
5629
5669
|
}>, {
|
|
5630
5670
|
type: "modal" | "drawer";
|
|
5631
5671
|
headerCls: string | number | bigint | boolean | ClassArray | ClassDictionary | null;
|
|
5672
|
+
animated: string | boolean;
|
|
5632
5673
|
open: boolean;
|
|
5633
5674
|
footer: boolean | null;
|
|
5634
5675
|
mask: boolean;
|
|
@@ -5656,7 +5697,6 @@ text: string;
|
|
|
5656
5697
|
hide?: boolean | undefined;
|
|
5657
5698
|
};
|
|
5658
5699
|
maskClosable: boolean;
|
|
5659
|
-
animated: string | boolean;
|
|
5660
5700
|
asDrawerInMobile: boolean;
|
|
5661
5701
|
mobileDrawerMinHeight: string | number;
|
|
5662
5702
|
mobileDrawerHeight: string | number;
|
|
@@ -7095,6 +7135,7 @@ onAfterClose?: (() => any) | undefined;
|
|
|
7095
7135
|
onAfterOpen?: (() => any) | undefined;
|
|
7096
7136
|
}>, {
|
|
7097
7137
|
headerCls: string | number | bigint | boolean | ClassArray | ClassDictionary | null;
|
|
7138
|
+
animated: string | boolean;
|
|
7098
7139
|
open: boolean;
|
|
7099
7140
|
footer: boolean | null;
|
|
7100
7141
|
mask: boolean;
|
|
@@ -7122,7 +7163,6 @@ text: string;
|
|
|
7122
7163
|
hide?: boolean | undefined;
|
|
7123
7164
|
};
|
|
7124
7165
|
maskClosable: boolean;
|
|
7125
|
-
animated: string | boolean;
|
|
7126
7166
|
footerCls: string | number | bigint | boolean | ClassArray | ClassDictionary | null;
|
|
7127
7167
|
swipeTriggerCls: string | number | bigint | boolean | ClassArray | ClassDictionary | null;
|
|
7128
7168
|
swipeTrigger: boolean;
|
|
@@ -7130,6 +7170,7 @@ swipeTrigger: boolean;
|
|
|
7130
7170
|
|
|
7131
7171
|
export declare const DRAWER_DEFAULT_PROPS: {
|
|
7132
7172
|
readonly headerCls: undefined;
|
|
7173
|
+
readonly animated: true;
|
|
7133
7174
|
readonly open: undefined;
|
|
7134
7175
|
readonly footer: undefined;
|
|
7135
7176
|
readonly mask: true;
|
|
@@ -7157,7 +7198,6 @@ export declare const DRAWER_DEFAULT_PROPS: {
|
|
|
7157
7198
|
readonly color: "neutral";
|
|
7158
7199
|
};
|
|
7159
7200
|
readonly maskClosable: true;
|
|
7160
|
-
readonly animated: true;
|
|
7161
7201
|
readonly footerCls: undefined;
|
|
7162
7202
|
readonly swipeTriggerCls: undefined;
|
|
7163
7203
|
readonly swipeTrigger: undefined;
|
|
@@ -8705,6 +8745,25 @@ export declare const INPUT_NUMBER_DEFAULT_PROPS: {
|
|
|
8705
8745
|
readonly clearIcon: "tabler:circle-x";
|
|
8706
8746
|
};
|
|
8707
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
|
+
|
|
8708
8767
|
/**
|
|
8709
8768
|
* Emits for the Input component
|
|
8710
8769
|
* Extends HasRootInputEmits and BaseInputEmits.
|
|
@@ -8751,7 +8810,7 @@ blur: () => void | undefined;
|
|
|
8751
8810
|
select: () => void | undefined;
|
|
8752
8811
|
setSelectionRange: (start: number, end: number, direction?: "none" | "forward" | "backward" | undefined) => void | undefined;
|
|
8753
8812
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
8754
|
-
input: (event?:
|
|
8813
|
+
input: (event?: Event | undefined) => any;
|
|
8755
8814
|
clear: () => any;
|
|
8756
8815
|
blur: (event: InputEvent) => any;
|
|
8757
8816
|
change: (value?: number | undefined) => any;
|
|
@@ -8765,7 +8824,7 @@ type: "up" | "down";
|
|
|
8765
8824
|
}) => any;
|
|
8766
8825
|
keydownEnter: (event: KeyboardEvent) => any;
|
|
8767
8826
|
}, string, PublicProps, Readonly<InputNumberProps> & Readonly<{
|
|
8768
|
-
onInput?: ((event?:
|
|
8827
|
+
onInput?: ((event?: Event | undefined) => any) | undefined;
|
|
8769
8828
|
onClear?: (() => any) | undefined;
|
|
8770
8829
|
onBlur?: ((event: InputEvent) => any) | undefined;
|
|
8771
8830
|
onChange?: ((value?: number | undefined) => any) | undefined;
|
|
@@ -8800,7 +8859,7 @@ export declare interface InputNumberEmits extends HasRootInputEmits, BaseInputEm
|
|
|
8800
8859
|
/** Emitted when the input value changes */
|
|
8801
8860
|
change: [value?: number];
|
|
8802
8861
|
/** Emitted when the input value is being typed */
|
|
8803
|
-
input: [event?:
|
|
8862
|
+
input: [event?: Event];
|
|
8804
8863
|
/** Emitted when the Enter key is pressed */
|
|
8805
8864
|
keydownEnter: [event: KeyboardEvent];
|
|
8806
8865
|
keydown: [event: KeyboardEvent];
|
|
@@ -8819,7 +8878,14 @@ export declare interface InputNumberEmits extends HasRootInputEmits, BaseInputEm
|
|
|
8819
8878
|
* Props for the InputNumber component
|
|
8820
8879
|
*/
|
|
8821
8880
|
export declare interface InputNumberProps extends Omit<BaseInputProps, 'hasValue'> {
|
|
8822
|
-
|
|
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'. */
|
|
8823
8889
|
debounceDelay?: number;
|
|
8824
8890
|
/** The ID for the input element */
|
|
8825
8891
|
id?: string;
|
|
@@ -8829,6 +8895,7 @@ export declare interface InputNumberProps extends Omit<BaseInputProps, 'hasValue
|
|
|
8829
8895
|
placeholder?: string;
|
|
8830
8896
|
/** Whether the input is disabled */
|
|
8831
8897
|
disabled?: boolean;
|
|
8898
|
+
noRing?: boolean;
|
|
8832
8899
|
/** Whether the input is required */
|
|
8833
8900
|
required?: boolean;
|
|
8834
8901
|
/** The current value of the input */
|
|
@@ -8859,7 +8926,11 @@ export declare const inputPrefix: string;
|
|
|
8859
8926
|
* Extends BaseInputProps but omits hasValue since it's computed internally.
|
|
8860
8927
|
*/
|
|
8861
8928
|
export declare interface InputProps extends Omit<BaseInputProps, 'hasValue'> {
|
|
8862
|
-
|
|
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;
|
|
8863
8934
|
/**
|
|
8864
8935
|
* The ID for the input element
|
|
8865
8936
|
*/
|
|
@@ -8880,6 +8951,7 @@ export declare interface InputProps extends Omit<BaseInputProps, 'hasValue'> {
|
|
|
8880
8951
|
* Whether the input is disabled
|
|
8881
8952
|
*/
|
|
8882
8953
|
disabled?: boolean;
|
|
8954
|
+
noRing?: boolean;
|
|
8883
8955
|
/**
|
|
8884
8956
|
* Whether the input is required
|
|
8885
8957
|
*/
|
|
@@ -8898,6 +8970,16 @@ export declare interface InputProps extends Omit<BaseInputProps, 'hasValue'> {
|
|
|
8898
8970
|
defaultValue?: string | null;
|
|
8899
8971
|
}
|
|
8900
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
|
+
|
|
8901
8983
|
/**
|
|
8902
8984
|
* Type representing the possible input sizes
|
|
8903
8985
|
*/
|
|
@@ -9102,6 +9184,8 @@ export declare interface LinkProps {
|
|
|
9102
9184
|
/** The text style for the link */
|
|
9103
9185
|
txs?: LinkStyle_2;
|
|
9104
9186
|
color?: string;
|
|
9187
|
+
/** Disable the focus ring */
|
|
9188
|
+
noRing?: boolean;
|
|
9105
9189
|
}
|
|
9106
9190
|
|
|
9107
9191
|
/**
|
|
@@ -9781,6 +9865,7 @@ onAfterClose?: (() => any) | undefined;
|
|
|
9781
9865
|
onAfterOpen?: (() => any) | undefined;
|
|
9782
9866
|
}>, {
|
|
9783
9867
|
headerCls: string | number | bigint | boolean | ClassArray | ClassDictionary | null;
|
|
9868
|
+
animated: string | boolean;
|
|
9784
9869
|
open: boolean;
|
|
9785
9870
|
footer: boolean | null;
|
|
9786
9871
|
mask: boolean;
|
|
@@ -9807,7 +9892,6 @@ text: string;
|
|
|
9807
9892
|
hide?: boolean | undefined;
|
|
9808
9893
|
};
|
|
9809
9894
|
maskClosable: boolean;
|
|
9810
|
-
animated: string | boolean;
|
|
9811
9895
|
asDrawerInMobile: boolean;
|
|
9812
9896
|
mobileDrawerMinHeight: string | number;
|
|
9813
9897
|
mobileDrawerHeight: string | number;
|
|
@@ -9819,6 +9903,7 @@ swipeTrigger: boolean;
|
|
|
9819
9903
|
|
|
9820
9904
|
export declare const MODAL_DEFAULT_PROPS: {
|
|
9821
9905
|
readonly headerCls: undefined;
|
|
9906
|
+
readonly animated: true;
|
|
9822
9907
|
readonly open: undefined;
|
|
9823
9908
|
readonly footer: undefined;
|
|
9824
9909
|
readonly mask: true;
|
|
@@ -9845,7 +9930,6 @@ export declare const MODAL_DEFAULT_PROPS: {
|
|
|
9845
9930
|
readonly color: "neutral";
|
|
9846
9931
|
};
|
|
9847
9932
|
readonly maskClosable: true;
|
|
9848
|
-
readonly animated: true;
|
|
9849
9933
|
readonly asDrawerInMobile: false;
|
|
9850
9934
|
readonly mobileDrawerMinHeight: undefined;
|
|
9851
9935
|
readonly mobileDrawerHeight: undefined;
|
|
@@ -10248,6 +10332,10 @@ export declare interface PinInputEmits extends PinInputRootEmits {
|
|
|
10248
10332
|
* Props for the PinInput component
|
|
10249
10333
|
*/
|
|
10250
10334
|
export declare interface PinInputProps extends Omit<PinInputRootProps, 'as' | 'asChild' | 'defaultValue'> {
|
|
10335
|
+
/**
|
|
10336
|
+
* Disable the focus ring on each cell
|
|
10337
|
+
*/
|
|
10338
|
+
noRing?: boolean;
|
|
10251
10339
|
/**
|
|
10252
10340
|
* Text direction for the component
|
|
10253
10341
|
*/
|
|
@@ -10649,7 +10737,7 @@ declare interface PopperContentProps extends PrimitiveProps {
|
|
|
10649
10737
|
* Will be reversed when collisions occur and avoidCollisions
|
|
10650
10738
|
* is enabled.
|
|
10651
10739
|
*
|
|
10652
|
-
* @defaultValue "
|
|
10740
|
+
* @defaultValue "bottom"
|
|
10653
10741
|
*/
|
|
10654
10742
|
side?: Side;
|
|
10655
10743
|
/**
|
|
@@ -10715,6 +10803,13 @@ declare interface PopperContentProps extends PrimitiveProps {
|
|
|
10715
10803
|
* @defaultValue 0
|
|
10716
10804
|
*/
|
|
10717
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;
|
|
10718
10813
|
/**
|
|
10719
10814
|
* The sticky behavior on the align axis. `partial` will keep the
|
|
10720
10815
|
* content in the boundary as long as the trigger is at least partially
|
|
@@ -10898,6 +10993,8 @@ declare interface ProgressProps extends ProgressCirclePathProps {
|
|
|
10898
10993
|
status?: ProgressStatus;
|
|
10899
10994
|
/** The label text for the progress indicator */
|
|
10900
10995
|
label?: string;
|
|
10996
|
+
/** CSS classes to apply to the label */
|
|
10997
|
+
labelCls?: ClassValue;
|
|
10901
10998
|
/** Validation message to display with the progress indicator */
|
|
10902
10999
|
validationMessage?: string;
|
|
10903
11000
|
/** Helper text to display below the progress indicator */
|
|
@@ -11078,14 +11175,14 @@ export declare const RADIO_GROUP_DEFAULT_PROPS: {
|
|
|
11078
11175
|
};
|
|
11079
11176
|
|
|
11080
11177
|
export declare const RadioGroup: __VLS_WithTemplateSlots_62<DefineComponent<RadioGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11081
|
-
change: (payload:
|
|
11082
|
-
"update:modelValue": (payload:
|
|
11178
|
+
change: (payload: AcceptableValue) => any;
|
|
11179
|
+
"update:modelValue": (payload: AcceptableValue) => any;
|
|
11083
11180
|
}, string, PublicProps, Readonly<RadioGroupProps> & Readonly<{
|
|
11084
|
-
onChange?: ((payload:
|
|
11085
|
-
"onUpdate:modelValue"?: ((payload:
|
|
11181
|
+
onChange?: ((payload: AcceptableValue) => any) | undefined;
|
|
11182
|
+
"onUpdate:modelValue"?: ((payload: AcceptableValue) => any) | undefined;
|
|
11086
11183
|
}>, {
|
|
11087
11184
|
size: "2xsm" | "xsm";
|
|
11088
|
-
orientation:
|
|
11185
|
+
orientation: DataOrientation;
|
|
11089
11186
|
disabled: boolean;
|
|
11090
11187
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
11091
11188
|
default?(_: {}): any;
|
|
@@ -11102,11 +11199,11 @@ export declare interface RadioGroupEmits extends RadioGroupRootEmits {
|
|
|
11102
11199
|
export declare const RadioGroupItem: __VLS_WithTemplateSlots_63<DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11103
11200
|
blur: (e: InputEvent) => any;
|
|
11104
11201
|
focus: (e: InputEvent) => any;
|
|
11105
|
-
"update:modelValue": (payload:
|
|
11202
|
+
"update:modelValue": (payload: AcceptableValue) => any;
|
|
11106
11203
|
}, string, PublicProps, Readonly<RadioGroupItemProps> & Readonly<{
|
|
11107
11204
|
onBlur?: ((e: InputEvent) => any) | undefined;
|
|
11108
11205
|
onFocus?: ((e: InputEvent) => any) | undefined;
|
|
11109
|
-
"onUpdate:modelValue"?: ((payload:
|
|
11206
|
+
"onUpdate:modelValue"?: ((payload: AcceptableValue) => any) | undefined;
|
|
11110
11207
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>, Readonly<RadioGroupSlots> & RadioGroupSlots>;
|
|
11111
11208
|
|
|
11112
11209
|
/**
|
|
@@ -11162,7 +11259,7 @@ export declare interface RadioGroupProps extends RadioGroupRootProps {
|
|
|
11162
11259
|
|
|
11163
11260
|
declare type RadioGroupRootEmits = {
|
|
11164
11261
|
/** Event handler called when the radio group value changes */
|
|
11165
|
-
'update:modelValue': [payload:
|
|
11262
|
+
'update:modelValue': [payload: AcceptableValue];
|
|
11166
11263
|
};
|
|
11167
11264
|
|
|
11168
11265
|
declare interface RadioGroupRootProps extends PrimitiveProps, FormFieldProps {
|
|
@@ -11562,7 +11659,8 @@ declare interface ScrollAreaRootProps extends PrimitiveProps {
|
|
|
11562
11659
|
* `auto` - means that scrollbars are visible when content is overflowing on the corresponding orientation. <br>
|
|
11563
11660
|
* `always` - means that scrollbars are always visible regardless of whether the content is overflowing.<br>
|
|
11564
11661
|
* `scroll` - means that scrollbars are visible when the user is scrolling along its corresponding orientation.<br>
|
|
11565
|
-
* `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.
|
|
11566
11664
|
*/
|
|
11567
11665
|
type?: ScrollType;
|
|
11568
11666
|
/** The reading direction of the combobox when applicable. <br> If omitted, inherits globally from `ConfigProvider` or assumes LTR (left-to-right) reading mode. */
|
|
@@ -11605,7 +11703,7 @@ root: ({
|
|
|
11605
11703
|
$: ComponentInternalInstance;
|
|
11606
11704
|
$data: {};
|
|
11607
11705
|
$props: {
|
|
11608
|
-
readonly type?: ("scroll" | "auto" | "hover" | "always") | undefined;
|
|
11706
|
+
readonly type?: ("scroll" | "auto" | "hover" | "always" | "glimpse") | undefined;
|
|
11609
11707
|
readonly dir?: ("ltr" | "rtl") | undefined;
|
|
11610
11708
|
readonly scrollHideDelay?: number | undefined;
|
|
11611
11709
|
readonly asChild?: boolean | undefined;
|
|
@@ -11629,10 +11727,7 @@ $options: ComponentOptionsBase<Readonly<ScrollAreaRootProps> & Readonly<{}>, {
|
|
|
11629
11727
|
viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
11630
11728
|
scrollTop: () => void;
|
|
11631
11729
|
scrollTopLeft: () => void;
|
|
11632
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
11633
|
-
type: "scroll" | "auto" | "hover" | "always";
|
|
11634
|
-
scrollHideDelay: number;
|
|
11635
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
11730
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
11636
11731
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
11637
11732
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
11638
11733
|
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -11652,10 +11747,7 @@ errorCaptured?: (((err: unknown, instance: ComponentPublicInstance< {}, {}, {
|
|
|
11652
11747
|
$forceUpdate: () => void;
|
|
11653
11748
|
$nextTick: nextTick;
|
|
11654
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;
|
|
11655
|
-
} & Readonly<{
|
|
11656
|
-
type: "scroll" | "auto" | "hover" | "always";
|
|
11657
|
-
scrollHideDelay: number;
|
|
11658
|
-
}> & Omit<Readonly<ScrollAreaRootProps> & Readonly<{}>, "type" | "scrollHideDelay" | "scrollTop" | "scrollTopLeft" | "viewport"> & ShallowUnwrapRef< {
|
|
11750
|
+
} & Readonly<{}> & Omit<Readonly<ScrollAreaRootProps> & Readonly<{}>, "scrollTop" | "scrollTopLeft" | "viewport"> & ShallowUnwrapRef< {
|
|
11659
11751
|
viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
11660
11752
|
scrollTop: () => void;
|
|
11661
11753
|
scrollTopLeft: () => void;
|
|
@@ -11843,7 +11935,7 @@ export declare type ScrollContainerType = (typeof ScrollContainerTypes)[number];
|
|
|
11843
11935
|
*/
|
|
11844
11936
|
export declare const ScrollContainerTypes: readonly ["auto", "always", "scroll", "hover"];
|
|
11845
11937
|
|
|
11846
|
-
declare type ScrollType = 'auto' | 'always' | 'scroll' | 'hover';
|
|
11938
|
+
declare type ScrollType = 'auto' | 'always' | 'scroll' | 'hover' | 'glimpse';
|
|
11847
11939
|
|
|
11848
11940
|
export declare const Segmented: __VLS_WithTemplateSlots_66<DefineComponent<SegmentedProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11849
11941
|
change: (event?: string | number | undefined) => any;
|
|
@@ -13132,23 +13224,33 @@ export declare interface SwitchProps extends Omit<SwitchRootProps, 'asChild'> {
|
|
|
13132
13224
|
labelCls?: ClassValue;
|
|
13133
13225
|
/** Text label for the Switch component */
|
|
13134
13226
|
label?: string;
|
|
13227
|
+
/** Whether to disable the focus ring */
|
|
13228
|
+
noRing?: boolean;
|
|
13135
13229
|
}
|
|
13136
13230
|
|
|
13137
|
-
declare type SwitchRootEmits = {
|
|
13231
|
+
declare type SwitchRootEmits<T = boolean> = {
|
|
13138
13232
|
/** Event handler called when the value of the switch changes. */
|
|
13139
|
-
'update:modelValue': [payload:
|
|
13233
|
+
'update:modelValue': [payload: T];
|
|
13140
13234
|
};
|
|
13141
13235
|
|
|
13142
|
-
declare interface SwitchRootProps extends PrimitiveProps, FormFieldProps {
|
|
13236
|
+
declare interface SwitchRootProps<T = boolean> extends PrimitiveProps, FormFieldProps {
|
|
13143
13237
|
/** The state of the switch when it is initially rendered. Use when you do not need to control its state. */
|
|
13144
|
-
defaultValue?:
|
|
13238
|
+
defaultValue?: T;
|
|
13145
13239
|
/** The controlled state of the switch. Can be bind as `v-model`. */
|
|
13146
|
-
modelValue?:
|
|
13240
|
+
modelValue?: T | null;
|
|
13147
13241
|
/** When `true`, prevents the user from interacting with the switch. */
|
|
13148
13242
|
disabled?: boolean;
|
|
13149
13243
|
id?: string;
|
|
13150
13244
|
/** The value given as data when submitted with a `name`. */
|
|
13151
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;
|
|
13152
13254
|
}
|
|
13153
13255
|
|
|
13154
13256
|
/**
|
|
@@ -13693,13 +13795,13 @@ export declare interface TabListSlots {
|
|
|
13693
13795
|
}
|
|
13694
13796
|
|
|
13695
13797
|
export declare const Tabs: __VLS_WithTemplateSlots_82<DefineComponent<TabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13696
|
-
change: (payload:
|
|
13697
|
-
"update:modelValue": (payload:
|
|
13798
|
+
change: (payload: StringOrNumber) => any;
|
|
13799
|
+
"update:modelValue": (payload: StringOrNumber) => any;
|
|
13698
13800
|
dragStart: (event: SortableEvent, sortable: pantographSortable) => any;
|
|
13699
13801
|
dragEnd: (event: SortableEvent, sortable: pantographSortable) => any;
|
|
13700
13802
|
}, string, PublicProps, Readonly<TabsProps> & Readonly<{
|
|
13701
|
-
onChange?: ((payload:
|
|
13702
|
-
"onUpdate:modelValue"?: ((payload:
|
|
13803
|
+
onChange?: ((payload: StringOrNumber) => any) | undefined;
|
|
13804
|
+
"onUpdate:modelValue"?: ((payload: StringOrNumber) => any) | undefined;
|
|
13703
13805
|
onDragStart?: ((event: SortableEvent, sortable: pantographSortable) => any) | undefined;
|
|
13704
13806
|
onDragEnd?: ((event: SortableEvent, sortable: pantographSortable) => any) | undefined;
|
|
13705
13807
|
}>, {
|
|
@@ -14038,8 +14140,13 @@ export declare interface TextareaProps {
|
|
|
14038
14140
|
defaultHeight?: string | number;
|
|
14039
14141
|
/** Maximum height of the textarea */
|
|
14040
14142
|
maxHeight?: string | number;
|
|
14143
|
+
/** it will remove important fg color */
|
|
14041
14144
|
outsideFgColor?: boolean;
|
|
14042
14145
|
readonly?: boolean;
|
|
14146
|
+
/**
|
|
14147
|
+
* Whether to disable the focus ring
|
|
14148
|
+
*/
|
|
14149
|
+
noRing?: boolean;
|
|
14043
14150
|
}
|
|
14044
14151
|
|
|
14045
14152
|
/**
|
|
@@ -14451,6 +14558,10 @@ declare interface TooltipProviderProps {
|
|
|
14451
14558
|
* @defaultValue false
|
|
14452
14559
|
*/
|
|
14453
14560
|
ignoreNonKeyboardFocus?: boolean;
|
|
14561
|
+
/**
|
|
14562
|
+
* Default settings that will be used by all tooltip components.
|
|
14563
|
+
*/
|
|
14564
|
+
content?: TooltipContentProps;
|
|
14454
14565
|
}
|
|
14455
14566
|
|
|
14456
14567
|
declare type TooltipRootEmits = {
|
|
@@ -15675,6 +15786,10 @@ export declare const useConfig: (noDirProvider?: boolean) => {
|
|
|
15675
15786
|
useCssInJs: (params: UseCssInJsParams) => void;
|
|
15676
15787
|
};
|
|
15677
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
|
+
|
|
15678
15793
|
/**
|
|
15679
15794
|
* Composable function to manage dark mode
|
|
15680
15795
|
* @param changeAbleDirectionElement - The element or selector to use for dark mode detection
|
|
@@ -15840,56 +15955,59 @@ export { }
|
|
|
15840
15955
|
|
|
15841
15956
|
declare module 'vue' {
|
|
15842
15957
|
interface GlobalComponents {
|
|
15843
|
-
|
|
15958
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
15844
15959
|
}
|
|
15845
15960
|
}
|
|
15846
15961
|
|
|
15847
15962
|
|
|
15848
15963
|
declare module 'vue' {
|
|
15849
15964
|
interface GlobalComponents {
|
|
15850
|
-
|
|
15965
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
15851
15966
|
}
|
|
15852
15967
|
}
|
|
15853
15968
|
|
|
15854
15969
|
|
|
15855
15970
|
declare module 'vue' {
|
|
15856
15971
|
interface GlobalComponents {
|
|
15857
|
-
|
|
15972
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
15858
15973
|
}
|
|
15859
15974
|
}
|
|
15860
15975
|
|
|
15861
15976
|
|
|
15862
15977
|
declare module 'vue' {
|
|
15863
15978
|
interface GlobalComponents {
|
|
15864
|
-
|
|
15979
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
15865
15980
|
}
|
|
15866
15981
|
}
|
|
15867
15982
|
|
|
15868
15983
|
|
|
15869
15984
|
declare module 'vue' {
|
|
15870
15985
|
interface GlobalComponents {
|
|
15871
|
-
|
|
15986
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
15987
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
15988
|
+
ComboboxOption: DefineComponent;
|
|
15872
15989
|
}
|
|
15873
15990
|
}
|
|
15874
15991
|
|
|
15875
15992
|
|
|
15876
15993
|
declare module 'vue' {
|
|
15877
15994
|
interface GlobalComponents {
|
|
15878
|
-
|
|
15995
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
15879
15996
|
}
|
|
15880
15997
|
}
|
|
15881
15998
|
|
|
15882
15999
|
|
|
15883
16000
|
declare module 'vue' {
|
|
15884
16001
|
interface GlobalComponents {
|
|
15885
|
-
|
|
16002
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
16003
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
15886
16004
|
}
|
|
15887
16005
|
}
|
|
15888
16006
|
|
|
15889
16007
|
|
|
15890
16008
|
declare module 'vue' {
|
|
15891
16009
|
interface GlobalComponents {
|
|
15892
|
-
|
|
16010
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
15893
16011
|
}
|
|
15894
16012
|
}
|
|
15895
16013
|
|
|
@@ -15901,230 +16019,223 @@ declare module 'vue' {
|
|
|
15901
16019
|
}
|
|
15902
16020
|
|
|
15903
16021
|
|
|
15904
|
-
/**
|
|
15905
|
-
* Global component declaration for TypeScript support
|
|
15906
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
15907
|
-
*/
|
|
16022
|
+
/** component declare **/
|
|
15908
16023
|
declare module 'vue' {
|
|
15909
16024
|
interface GlobalComponents {
|
|
15910
|
-
|
|
15911
|
-
|
|
16025
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
16026
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
15912
16027
|
}
|
|
15913
16028
|
}
|
|
15914
16029
|
|
|
15915
16030
|
|
|
15916
16031
|
declare module 'vue' {
|
|
15917
16032
|
interface GlobalComponents {
|
|
15918
|
-
|
|
16033
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
16034
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
15919
16035
|
}
|
|
15920
16036
|
}
|
|
15921
16037
|
|
|
15922
16038
|
|
|
15923
16039
|
declare module 'vue' {
|
|
15924
16040
|
interface GlobalComponents {
|
|
15925
|
-
|
|
16041
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
16042
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
15926
16043
|
}
|
|
15927
16044
|
}
|
|
15928
16045
|
|
|
15929
16046
|
|
|
15930
16047
|
declare module 'vue' {
|
|
15931
16048
|
interface GlobalComponents {
|
|
15932
|
-
|
|
16049
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
15933
16050
|
}
|
|
15934
16051
|
}
|
|
15935
16052
|
|
|
15936
16053
|
|
|
15937
16054
|
declare module 'vue' {
|
|
15938
16055
|
interface GlobalComponents {
|
|
15939
|
-
|
|
16056
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
15940
16057
|
}
|
|
15941
16058
|
}
|
|
15942
16059
|
|
|
15943
16060
|
|
|
15944
16061
|
declare module 'vue' {
|
|
15945
16062
|
interface GlobalComponents {
|
|
15946
|
-
|
|
16063
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
15947
16064
|
}
|
|
15948
16065
|
}
|
|
15949
16066
|
|
|
15950
16067
|
|
|
15951
16068
|
declare module 'vue' {
|
|
15952
16069
|
interface GlobalComponents {
|
|
15953
|
-
|
|
16070
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
15954
16071
|
}
|
|
15955
16072
|
}
|
|
15956
16073
|
|
|
15957
16074
|
|
|
15958
|
-
/** component declare **/
|
|
15959
16075
|
declare module 'vue' {
|
|
15960
16076
|
interface GlobalComponents {
|
|
15961
|
-
|
|
15962
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
16077
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
15963
16078
|
}
|
|
15964
16079
|
}
|
|
15965
16080
|
|
|
15966
16081
|
|
|
15967
16082
|
declare module 'vue' {
|
|
15968
16083
|
interface GlobalComponents {
|
|
15969
|
-
|
|
16084
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
15970
16085
|
}
|
|
15971
16086
|
}
|
|
15972
16087
|
|
|
15973
16088
|
|
|
15974
16089
|
declare module 'vue' {
|
|
15975
16090
|
interface GlobalComponents {
|
|
15976
|
-
|
|
15977
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16091
|
+
Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
|
|
15978
16092
|
}
|
|
15979
16093
|
}
|
|
15980
16094
|
|
|
15981
16095
|
|
|
15982
16096
|
declare module 'vue' {
|
|
15983
16097
|
interface GlobalComponents {
|
|
15984
|
-
|
|
16098
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
15985
16099
|
}
|
|
15986
16100
|
}
|
|
15987
16101
|
|
|
15988
16102
|
|
|
15989
16103
|
declare module 'vue' {
|
|
15990
16104
|
interface GlobalComponents {
|
|
15991
|
-
|
|
16105
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
15992
16106
|
}
|
|
15993
16107
|
}
|
|
15994
16108
|
|
|
15995
16109
|
|
|
15996
16110
|
declare module 'vue' {
|
|
15997
16111
|
interface GlobalComponents {
|
|
15998
|
-
|
|
16112
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
15999
16113
|
}
|
|
16000
16114
|
}
|
|
16001
16115
|
|
|
16002
16116
|
|
|
16003
16117
|
declare module 'vue' {
|
|
16004
16118
|
interface GlobalComponents {
|
|
16005
|
-
|
|
16119
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
16006
16120
|
}
|
|
16007
16121
|
}
|
|
16008
16122
|
|
|
16009
16123
|
|
|
16010
16124
|
declare module 'vue' {
|
|
16011
16125
|
interface GlobalComponents {
|
|
16012
|
-
|
|
16126
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
16013
16127
|
}
|
|
16014
16128
|
}
|
|
16015
16129
|
|
|
16016
16130
|
|
|
16017
16131
|
declare module 'vue' {
|
|
16018
16132
|
interface GlobalComponents {
|
|
16019
|
-
|
|
16020
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16133
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
16021
16134
|
}
|
|
16022
16135
|
}
|
|
16023
16136
|
|
|
16024
16137
|
|
|
16025
16138
|
declare module 'vue' {
|
|
16026
16139
|
interface GlobalComponents {
|
|
16027
|
-
|
|
16028
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
16029
|
-
SelectLabel: DefineComponent;
|
|
16140
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
16030
16141
|
}
|
|
16031
16142
|
}
|
|
16032
16143
|
|
|
16033
16144
|
|
|
16034
16145
|
declare module 'vue' {
|
|
16035
16146
|
interface GlobalComponents {
|
|
16036
|
-
|
|
16147
|
+
Icon: DefineComponent<IconProps>;
|
|
16037
16148
|
}
|
|
16038
16149
|
}
|
|
16039
16150
|
|
|
16040
16151
|
|
|
16041
16152
|
declare module 'vue' {
|
|
16042
16153
|
interface GlobalComponents {
|
|
16043
|
-
|
|
16154
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
16044
16155
|
}
|
|
16045
16156
|
}
|
|
16046
16157
|
|
|
16047
16158
|
|
|
16048
16159
|
declare module 'vue' {
|
|
16049
16160
|
interface GlobalComponents {
|
|
16050
|
-
|
|
16051
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
16052
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
16053
|
-
Tr: DefineComponent<TrProps>;
|
|
16054
|
-
TBody: DefineComponent<TBodyProps>;
|
|
16055
|
-
THead: DefineComponent<THeadProps>;
|
|
16056
|
-
TFoot: DefineComponent<TFootProps>;
|
|
16161
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
16057
16162
|
}
|
|
16058
16163
|
}
|
|
16059
16164
|
|
|
16060
16165
|
|
|
16061
16166
|
declare module 'vue' {
|
|
16062
16167
|
interface GlobalComponents {
|
|
16063
|
-
|
|
16168
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
16064
16169
|
}
|
|
16065
16170
|
}
|
|
16066
16171
|
|
|
16067
16172
|
|
|
16068
16173
|
declare module 'vue' {
|
|
16069
16174
|
interface GlobalComponents {
|
|
16070
|
-
|
|
16175
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
16071
16176
|
}
|
|
16072
16177
|
}
|
|
16073
16178
|
|
|
16074
16179
|
|
|
16075
16180
|
declare module 'vue' {
|
|
16076
16181
|
interface GlobalComponents {
|
|
16077
|
-
|
|
16182
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
16183
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16078
16184
|
}
|
|
16079
16185
|
}
|
|
16080
16186
|
|
|
16081
16187
|
|
|
16082
16188
|
declare module 'vue' {
|
|
16083
16189
|
interface GlobalComponents {
|
|
16084
|
-
|
|
16190
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
16085
16191
|
}
|
|
16086
16192
|
}
|
|
16087
16193
|
|
|
16088
16194
|
|
|
16089
16195
|
declare module 'vue' {
|
|
16090
16196
|
interface GlobalComponents {
|
|
16091
|
-
|
|
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>;
|
|
16092
16204
|
}
|
|
16093
16205
|
}
|
|
16094
16206
|
|
|
16095
16207
|
|
|
16096
16208
|
declare module 'vue' {
|
|
16097
16209
|
interface GlobalComponents {
|
|
16098
|
-
|
|
16210
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
16099
16211
|
}
|
|
16100
16212
|
}
|
|
16101
16213
|
|
|
16102
16214
|
|
|
16103
16215
|
declare module 'vue' {
|
|
16104
16216
|
interface GlobalComponents {
|
|
16105
|
-
|
|
16217
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
16106
16218
|
}
|
|
16107
16219
|
}
|
|
16108
16220
|
|
|
16109
16221
|
|
|
16110
16222
|
declare module 'vue' {
|
|
16111
16223
|
interface GlobalComponents {
|
|
16112
|
-
|
|
16113
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
16224
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
16114
16225
|
}
|
|
16115
16226
|
}
|
|
16116
16227
|
|
|
16117
16228
|
|
|
16118
16229
|
declare module 'vue' {
|
|
16119
16230
|
interface GlobalComponents {
|
|
16120
|
-
|
|
16231
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
16121
16232
|
}
|
|
16122
16233
|
}
|
|
16123
16234
|
|
|
16124
16235
|
|
|
16125
16236
|
declare module 'vue' {
|
|
16126
16237
|
interface GlobalComponents {
|
|
16127
|
-
|
|
16238
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
16128
16239
|
}
|
|
16129
16240
|
}
|
|
16130
16241
|
|
|
@@ -16138,221 +16249,225 @@ declare module 'vue' {
|
|
|
16138
16249
|
|
|
16139
16250
|
declare module 'vue' {
|
|
16140
16251
|
interface GlobalComponents {
|
|
16141
|
-
|
|
16252
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
16142
16253
|
}
|
|
16143
16254
|
}
|
|
16144
16255
|
|
|
16145
16256
|
|
|
16146
16257
|
declare module 'vue' {
|
|
16147
16258
|
interface GlobalComponents {
|
|
16148
|
-
|
|
16149
|
-
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
16259
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
16150
16260
|
}
|
|
16151
16261
|
}
|
|
16152
16262
|
|
|
16153
16263
|
|
|
16154
16264
|
declare module 'vue' {
|
|
16155
16265
|
interface GlobalComponents {
|
|
16156
|
-
|
|
16266
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
16157
16267
|
}
|
|
16158
16268
|
}
|
|
16159
16269
|
|
|
16160
16270
|
|
|
16161
16271
|
declare module 'vue' {
|
|
16162
16272
|
interface GlobalComponents {
|
|
16163
|
-
|
|
16273
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
16164
16274
|
}
|
|
16165
16275
|
}
|
|
16166
16276
|
|
|
16167
16277
|
|
|
16168
16278
|
declare module 'vue' {
|
|
16169
16279
|
interface GlobalComponents {
|
|
16170
|
-
|
|
16280
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
16171
16281
|
}
|
|
16172
16282
|
}
|
|
16173
16283
|
|
|
16174
16284
|
|
|
16175
16285
|
declare module 'vue' {
|
|
16176
16286
|
interface GlobalComponents {
|
|
16177
|
-
|
|
16178
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16179
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16180
|
-
TabContent: DefineComponent;
|
|
16287
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
16181
16288
|
}
|
|
16182
16289
|
}
|
|
16183
16290
|
|
|
16184
16291
|
|
|
16185
16292
|
declare module 'vue' {
|
|
16186
16293
|
interface GlobalComponents {
|
|
16187
|
-
|
|
16188
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16294
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
16189
16295
|
}
|
|
16190
16296
|
}
|
|
16191
16297
|
|
|
16192
16298
|
|
|
16193
16299
|
declare module 'vue' {
|
|
16194
16300
|
interface GlobalComponents {
|
|
16195
|
-
|
|
16301
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
16196
16302
|
}
|
|
16197
16303
|
}
|
|
16198
16304
|
|
|
16199
16305
|
|
|
16200
16306
|
declare module 'vue' {
|
|
16201
16307
|
interface GlobalComponents {
|
|
16202
|
-
|
|
16308
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
16203
16309
|
}
|
|
16204
16310
|
}
|
|
16205
16311
|
|
|
16206
16312
|
|
|
16207
16313
|
declare module 'vue' {
|
|
16208
16314
|
interface GlobalComponents {
|
|
16209
|
-
|
|
16210
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16315
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
16211
16316
|
}
|
|
16212
16317
|
}
|
|
16213
16318
|
|
|
16214
16319
|
|
|
16215
16320
|
declare module 'vue' {
|
|
16216
16321
|
interface GlobalComponents {
|
|
16217
|
-
|
|
16322
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
16218
16323
|
}
|
|
16219
16324
|
}
|
|
16220
16325
|
|
|
16221
16326
|
|
|
16222
16327
|
declare module 'vue' {
|
|
16223
16328
|
interface GlobalComponents {
|
|
16224
|
-
|
|
16225
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
16226
|
-
ComboboxOption: DefineComponent;
|
|
16329
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
16227
16330
|
}
|
|
16228
16331
|
}
|
|
16229
16332
|
|
|
16230
16333
|
|
|
16231
16334
|
declare module 'vue' {
|
|
16232
16335
|
interface GlobalComponents {
|
|
16233
|
-
|
|
16336
|
+
Divider: DefineComponent<DividerProps>;
|
|
16234
16337
|
}
|
|
16235
16338
|
}
|
|
16236
16339
|
|
|
16237
16340
|
|
|
16238
16341
|
declare module 'vue' {
|
|
16239
16342
|
interface GlobalComponents {
|
|
16240
|
-
|
|
16343
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
16344
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16241
16345
|
}
|
|
16242
16346
|
}
|
|
16243
16347
|
|
|
16244
16348
|
|
|
16245
16349
|
declare module 'vue' {
|
|
16246
16350
|
interface GlobalComponents {
|
|
16247
|
-
|
|
16351
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
16248
16352
|
}
|
|
16249
16353
|
}
|
|
16250
16354
|
|
|
16251
16355
|
|
|
16252
16356
|
declare module 'vue' {
|
|
16253
16357
|
interface GlobalComponents {
|
|
16254
|
-
|
|
16358
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
16255
16359
|
}
|
|
16256
16360
|
}
|
|
16257
16361
|
|
|
16258
16362
|
|
|
16259
16363
|
declare module 'vue' {
|
|
16260
16364
|
interface GlobalComponents {
|
|
16261
|
-
|
|
16262
|
-
|
|
16365
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16366
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16367
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16263
16368
|
}
|
|
16264
16369
|
}
|
|
16265
16370
|
|
|
16266
16371
|
|
|
16267
16372
|
declare module 'vue' {
|
|
16268
16373
|
interface GlobalComponents {
|
|
16269
|
-
|
|
16374
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
16270
16375
|
}
|
|
16271
16376
|
}
|
|
16272
16377
|
|
|
16273
16378
|
|
|
16274
16379
|
declare module 'vue' {
|
|
16275
16380
|
interface GlobalComponents {
|
|
16276
|
-
|
|
16381
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
16277
16382
|
}
|
|
16278
16383
|
}
|
|
16279
16384
|
|
|
16280
16385
|
|
|
16281
16386
|
declare module 'vue' {
|
|
16282
16387
|
interface GlobalComponents {
|
|
16283
|
-
|
|
16388
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
16284
16389
|
}
|
|
16285
16390
|
}
|
|
16286
16391
|
|
|
16287
16392
|
|
|
16288
16393
|
declare module 'vue' {
|
|
16289
16394
|
interface GlobalComponents {
|
|
16290
|
-
|
|
16395
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
16291
16396
|
}
|
|
16292
16397
|
}
|
|
16293
16398
|
|
|
16294
16399
|
|
|
16400
|
+
/**
|
|
16401
|
+
* Global component declaration for TypeScript support
|
|
16402
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
16403
|
+
*/
|
|
16295
16404
|
declare module 'vue' {
|
|
16296
16405
|
interface GlobalComponents {
|
|
16297
|
-
|
|
16406
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
16407
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16298
16408
|
}
|
|
16299
16409
|
}
|
|
16300
16410
|
|
|
16301
16411
|
|
|
16302
16412
|
declare module 'vue' {
|
|
16303
16413
|
interface GlobalComponents {
|
|
16304
|
-
|
|
16414
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
16305
16415
|
}
|
|
16306
16416
|
}
|
|
16307
16417
|
|
|
16308
16418
|
|
|
16309
16419
|
declare module 'vue' {
|
|
16310
16420
|
interface GlobalComponents {
|
|
16311
|
-
|
|
16421
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
16422
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
16423
|
+
SelectLabel: DefineComponent;
|
|
16312
16424
|
}
|
|
16313
16425
|
}
|
|
16314
16426
|
|
|
16315
16427
|
|
|
16316
16428
|
declare module 'vue' {
|
|
16317
16429
|
interface GlobalComponents {
|
|
16318
|
-
|
|
16430
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
16431
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16319
16432
|
}
|
|
16320
16433
|
}
|
|
16321
16434
|
|
|
16322
16435
|
|
|
16323
16436
|
declare module 'vue' {
|
|
16324
16437
|
interface GlobalComponents {
|
|
16325
|
-
|
|
16326
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16327
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16438
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
16328
16439
|
}
|
|
16329
16440
|
}
|
|
16330
16441
|
|
|
16331
16442
|
|
|
16332
16443
|
declare module 'vue' {
|
|
16333
16444
|
interface GlobalComponents {
|
|
16334
|
-
|
|
16445
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
16335
16446
|
}
|
|
16336
16447
|
}
|
|
16337
16448
|
|
|
16338
16449
|
|
|
16339
16450
|
declare module 'vue' {
|
|
16340
16451
|
interface GlobalComponents {
|
|
16341
|
-
|
|
16452
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
16453
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16454
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16455
|
+
TabContent: DefineComponent;
|
|
16342
16456
|
}
|
|
16343
16457
|
}
|
|
16344
16458
|
|
|
16345
16459
|
|
|
16346
16460
|
declare module 'vue' {
|
|
16347
16461
|
interface GlobalComponents {
|
|
16348
|
-
|
|
16462
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
16349
16463
|
}
|
|
16350
16464
|
}
|
|
16351
16465
|
|
|
16352
16466
|
|
|
16353
16467
|
declare module 'vue' {
|
|
16354
16468
|
interface GlobalComponents {
|
|
16355
|
-
|
|
16469
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
16470
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16356
16471
|
}
|
|
16357
16472
|
}
|
|
16358
16473
|
|