@pantograph/vue 0.34.38 → 0.34.39
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/{ComponentMap-BqkOktnN.js → ComponentMap-BCdd4jAe.js} +2 -0
- package/dist/ComponentMap-DbbUe4Mn.js +1 -0
- package/dist/index.d.ts +244 -141
- package/dist/index.js +180 -177
- package/dist/index.umd.cjs +1 -1
- package/dist/nuxt/index.js +1 -1
- package/dist/nuxt/index.umd.cjs +1 -1
- package/dist/nuxt.d.ts +100 -93
- package/dist/resolver/index.js +1 -1
- package/dist/resolver/index.umd.cjs +1 -1
- package/dist/resolver.d.ts +100 -93
- package/dist/use/index.js +8347 -8164
- package/dist/use/index.umd.cjs +5 -5
- package/dist/use.d.ts +100 -93
- package/package.json +3 -3
- package/dist/ComponentMap-Dc0o97JR.js +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -610,6 +610,12 @@ declare type __VLS_WithTemplateSlots_92<T, S> = T & {
|
|
|
610
610
|
};
|
|
611
611
|
};
|
|
612
612
|
|
|
613
|
+
declare type __VLS_WithTemplateSlots_93<T, S> = T & {
|
|
614
|
+
new (): {
|
|
615
|
+
$slots: S;
|
|
616
|
+
};
|
|
617
|
+
};
|
|
618
|
+
|
|
613
619
|
declare type AcceptableValue = string | number | bigint | Record<string, any> | null;
|
|
614
620
|
|
|
615
621
|
export declare const Accordion: __VLS_WithTemplateSlots<DefineComponent<AccordionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -2383,6 +2389,7 @@ export declare interface BaseInputEmits {
|
|
|
2383
2389
|
* Props for the BaseInput component
|
|
2384
2390
|
*/
|
|
2385
2391
|
export declare interface BaseInputProps {
|
|
2392
|
+
noBg?: boolean;
|
|
2386
2393
|
dir?: Direction;
|
|
2387
2394
|
/**
|
|
2388
2395
|
* Whether the input is read-only
|
|
@@ -2429,6 +2436,7 @@ export declare interface BaseInputProps {
|
|
|
2429
2436
|
* CSS classes to apply to the input
|
|
2430
2437
|
*/
|
|
2431
2438
|
class?: ClassValue;
|
|
2439
|
+
inputCls?: ClassValue;
|
|
2432
2440
|
/**
|
|
2433
2441
|
* Whether to allow clearing the input
|
|
2434
2442
|
*/
|
|
@@ -4339,11 +4347,12 @@ export declare const COMBO_BOX_DEFAULT_PROPS: {
|
|
|
4339
4347
|
readonly indicatorIcon: "tabler:check";
|
|
4340
4348
|
readonly trailingIcon: "tabler:chevron-down";
|
|
4341
4349
|
readonly samePopupWidth: true;
|
|
4350
|
+
readonly wrapped: true;
|
|
4342
4351
|
readonly popupHeight: 384;
|
|
4343
4352
|
readonly bordered: true;
|
|
4344
4353
|
readonly checkbox: true;
|
|
4345
4354
|
readonly zIndex: 1000;
|
|
4346
|
-
readonly disableOutsidePointerEvents:
|
|
4355
|
+
readonly disableOutsidePointerEvents: false;
|
|
4347
4356
|
readonly clearOnChangeMultiple: true;
|
|
4348
4357
|
readonly resetSearchTermOnBlur: true;
|
|
4349
4358
|
readonly resetSearchTermOnSelect: false;
|
|
@@ -4359,6 +4368,7 @@ export declare const COMBO_BOX_TRIGGER_DEFAULT_PROPS: {
|
|
|
4359
4368
|
readonly open: undefined;
|
|
4360
4369
|
readonly readonly: undefined;
|
|
4361
4370
|
readonly trailingIcon: "tabler:chevron-down";
|
|
4371
|
+
readonly wrapped: true;
|
|
4362
4372
|
readonly selectedItemIconAsTrailingIcon: true;
|
|
4363
4373
|
readonly noValueOnPlaceholder: undefined;
|
|
4364
4374
|
readonly showTreeTagStrategy: "all";
|
|
@@ -4893,6 +4903,23 @@ triggerProps: ComputedRef<Record<string, any>>;
|
|
|
4893
4903
|
* - Keyboard navigation
|
|
4894
4904
|
*/
|
|
4895
4905
|
isHeaderSearch: ComputedRef<boolean>;
|
|
4906
|
+
/**
|
|
4907
|
+
* Combobox Component
|
|
4908
|
+
*
|
|
4909
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4910
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4911
|
+
*
|
|
4912
|
+
* @component Combobox
|
|
4913
|
+
* @description Provides a searchable dropdown with support for:
|
|
4914
|
+
* - Single and multiple selection modes
|
|
4915
|
+
* - Tree/hierarchical option structures
|
|
4916
|
+
* - Virtual scrolling for large datasets
|
|
4917
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4918
|
+
* - Header and footer slots
|
|
4919
|
+
* - Loading and empty states
|
|
4920
|
+
* - Keyboard navigation
|
|
4921
|
+
*/
|
|
4922
|
+
rootSlotProps: ComputedRef<ComboboxSlotProps>;
|
|
4896
4923
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4897
4924
|
search: (value?: string | null | undefined) => any;
|
|
4898
4925
|
select: (value: string | undefined, selected: boolean, option?: ComboboxFlattenOptionType | undefined) => any;
|
|
@@ -4943,6 +4970,7 @@ disableOutsidePointerEvents: boolean;
|
|
|
4943
4970
|
zIndex: string | number;
|
|
4944
4971
|
trailingIcon: string | boolean;
|
|
4945
4972
|
checkbox: boolean;
|
|
4973
|
+
wrapped: boolean;
|
|
4946
4974
|
selectedItemIconAsTrailingIcon: boolean;
|
|
4947
4975
|
indicatorIcon: string;
|
|
4948
4976
|
loadingRowCount: number;
|
|
@@ -5024,6 +5052,7 @@ export declare interface ComboboxContext {
|
|
|
5024
5052
|
triggerProps: ComputedRef<Record<string, any>>;
|
|
5025
5053
|
/** True when noTrigger, noPopover, or headerSearch (header search / inline mode) */
|
|
5026
5054
|
isHeaderSearch: ComputedRef<boolean>;
|
|
5055
|
+
rootSlotProps: ComputedRef<ComboboxSlotProps>;
|
|
5027
5056
|
}
|
|
5028
5057
|
|
|
5029
5058
|
/**
|
|
@@ -5205,7 +5234,7 @@ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side'
|
|
|
5205
5234
|
/** Whether to use tree mode */
|
|
5206
5235
|
tree?: boolean;
|
|
5207
5236
|
/** Props to pass to the Tree component */
|
|
5208
|
-
treeProps?: Omit<TreeProps, 'modelValue' | 'checkedKeys' | 'expandedKeys'>;
|
|
5237
|
+
treeProps?: Omit<TreeProps, 'modelValue' | 'checkedKeys' | 'expandedKeys' | 'data'>;
|
|
5209
5238
|
/** Strategy for showing tree tags in multiple mode */
|
|
5210
5239
|
showTreeTagStrategy?: ComboboxTreeTagStrategy;
|
|
5211
5240
|
/** Whether content should fit the trigger width */
|
|
@@ -5270,12 +5299,8 @@ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side'
|
|
|
5270
5299
|
scrollAreaCls?: ClassValue;
|
|
5271
5300
|
/** CSS classes for the trigger leading element */
|
|
5272
5301
|
triggerLeadingCls?: ClassValue;
|
|
5273
|
-
/** CSS classes for the trigger content */
|
|
5274
|
-
triggerContentCls?: ClassValue;
|
|
5275
5302
|
/** CSS classes for the trigger placeholder */
|
|
5276
5303
|
triggerContentPlaceholderCls?: ClassValue;
|
|
5277
|
-
/** CSS classes for the trigger value */
|
|
5278
|
-
triggerContentValueCls?: ClassValue;
|
|
5279
5304
|
/** CSS classes for the trigger trailing element */
|
|
5280
5305
|
triggerTrailingCls?: ClassValue;
|
|
5281
5306
|
/** CSS classes for item leading element */
|
|
@@ -5347,28 +5372,26 @@ export declare type ComboboxSize = (typeof ComboboxSizes)[number];
|
|
|
5347
5372
|
*/
|
|
5348
5373
|
export declare const ComboboxSizes: readonly ["sm", "md", "lg"];
|
|
5349
5374
|
|
|
5375
|
+
export declare interface ComboboxSlotProps {
|
|
5376
|
+
options: ComboboxFlattenOptionType[];
|
|
5377
|
+
isEmpty: boolean;
|
|
5378
|
+
search: string | undefined;
|
|
5379
|
+
}
|
|
5380
|
+
|
|
5350
5381
|
/**
|
|
5351
5382
|
* Slots interface for the Combobox component
|
|
5352
5383
|
* @interface ComboboxSlots
|
|
5353
5384
|
*/
|
|
5354
5385
|
export declare interface ComboboxSlots {
|
|
5355
|
-
content?: (data?:
|
|
5356
|
-
isEmpty: boolean;
|
|
5357
|
-
search: string | undefined;
|
|
5358
|
-
}) => never;
|
|
5386
|
+
content?: (data?: ComboboxSlotProps) => never;
|
|
5359
5387
|
trigger?: (data: Omit<ComboboxTriggerDefSlotProps, 'option'>) => never;
|
|
5388
|
+
triggerLeading?: (data: Omit<ComboboxTriggerDefSlotProps, 'option'>) => never;
|
|
5360
5389
|
triggerTrailing?: (data: Omit<ComboboxTriggerDefSlotProps, 'option'>) => never;
|
|
5361
5390
|
tagLeading?: (data: ComboboxTriggerTagSlotProps) => never;
|
|
5362
5391
|
empty?: (data?: object) => never;
|
|
5363
5392
|
loading?: (data?: object) => never;
|
|
5364
|
-
header?: (data?:
|
|
5365
|
-
|
|
5366
|
-
search: string | undefined;
|
|
5367
|
-
}) => never;
|
|
5368
|
-
footer?: (data?: {
|
|
5369
|
-
isEmpty: boolean;
|
|
5370
|
-
search: string | undefined;
|
|
5371
|
-
}) => never;
|
|
5393
|
+
header?: (data?: ComboboxSlotProps) => never;
|
|
5394
|
+
footer?: (data?: ComboboxSlotProps) => never;
|
|
5372
5395
|
emptyTitle?: (data?: object) => never;
|
|
5373
5396
|
emptyDescription?: (data?: object) => never;
|
|
5374
5397
|
emptyActions?: (data?: object) => never;
|
|
@@ -5406,6 +5429,7 @@ bordered: boolean;
|
|
|
5406
5429
|
open: boolean;
|
|
5407
5430
|
readonly: boolean;
|
|
5408
5431
|
trailingIcon: string | boolean;
|
|
5432
|
+
wrapped: boolean;
|
|
5409
5433
|
selectedItemIconAsTrailingIcon: boolean;
|
|
5410
5434
|
noValueOnPlaceholder: boolean;
|
|
5411
5435
|
showTreeTagStrategy: "all" | "child" | "parent";
|
|
@@ -5426,7 +5450,7 @@ export declare interface ComboboxTriggerDefSlotProps {
|
|
|
5426
5450
|
|
|
5427
5451
|
export declare const comboboxTriggerPrefix: string;
|
|
5428
5452
|
|
|
5429
|
-
export declare interface ComboboxTriggerProps extends Partial<Pick<ComboboxProps, 'triggerMinWidth' | 'triggerCls' | 'triggerTrailingCls' | 'triggerLeadingCls' | '
|
|
5453
|
+
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'>> {
|
|
5430
5454
|
triggerOnly?: boolean;
|
|
5431
5455
|
}
|
|
5432
5456
|
|
|
@@ -5553,8 +5577,8 @@ export declare type ConfigProviderSlots = {
|
|
|
5553
5577
|
|
|
5554
5578
|
export declare interface ConfirmDialogProps extends Omit<AlertDialogProps, 'title' | 'description' | 'screen' | 'to'>, Omit<AlertDialogSlots, 'title' | 'description'> {
|
|
5555
5579
|
config?: ConfigProviderProps;
|
|
5556
|
-
title
|
|
5557
|
-
description
|
|
5580
|
+
title?: AlertDialogProps['title'] | AlertDialogSlots['title'];
|
|
5581
|
+
description?: AlertDialogProps['description'] | AlertDialogSlots['description'];
|
|
5558
5582
|
}
|
|
5559
5583
|
|
|
5560
5584
|
declare interface CreateAlertDialogParams extends ConfirmDialogProps, PropEmits {
|
|
@@ -8649,9 +8673,7 @@ disabled: boolean;
|
|
|
8649
8673
|
bordered: boolean;
|
|
8650
8674
|
readonly: boolean;
|
|
8651
8675
|
clearIcon: string;
|
|
8652
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
8653
|
-
inputRef: HTMLInputElement;
|
|
8654
|
-
}, HTMLDivElement>, Readonly<InputSlots> & InputSlots>;
|
|
8676
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<InputSlots> & InputSlots>;
|
|
8655
8677
|
|
|
8656
8678
|
/**
|
|
8657
8679
|
* Default props for the Input component
|
|
@@ -8674,6 +8696,8 @@ export declare const INPUT_GROUP_DEFAULT_PROPS: {};
|
|
|
8674
8696
|
export declare const INPUT_NUMBER_DEFAULT_PROPS: {
|
|
8675
8697
|
readonly controls: true;
|
|
8676
8698
|
readonly step: 1;
|
|
8699
|
+
readonly saveMode: "blur";
|
|
8700
|
+
readonly debounceDelay: 300;
|
|
8677
8701
|
readonly readonly: undefined;
|
|
8678
8702
|
readonly disabled: undefined;
|
|
8679
8703
|
readonly bordered: true;
|
|
@@ -8759,6 +8783,8 @@ bordered: boolean;
|
|
|
8759
8783
|
step: number;
|
|
8760
8784
|
readonly: boolean;
|
|
8761
8785
|
clearIcon: string;
|
|
8786
|
+
saveMode: "blur" | "debounce" | "realValid";
|
|
8787
|
+
debounceDelay: number;
|
|
8762
8788
|
controls: boolean;
|
|
8763
8789
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
8764
8790
|
inputRef: HTMLInputElement;
|
|
@@ -8792,6 +8818,8 @@ export declare interface InputNumberEmits extends HasRootInputEmits, BaseInputEm
|
|
|
8792
8818
|
* Props for the InputNumber component
|
|
8793
8819
|
*/
|
|
8794
8820
|
export declare interface InputNumberProps extends Omit<BaseInputProps, 'hasValue'> {
|
|
8821
|
+
saveMode?: 'blur' | 'debounce' | 'realValid';
|
|
8822
|
+
debounceDelay?: number;
|
|
8795
8823
|
/** The ID for the input element */
|
|
8796
8824
|
id?: string;
|
|
8797
8825
|
/** The type of input (e.g., number, text) */
|
|
@@ -8830,6 +8858,7 @@ export declare const inputPrefix: string;
|
|
|
8830
8858
|
* Extends BaseInputProps but omits hasValue since it's computed internally.
|
|
8831
8859
|
*/
|
|
8832
8860
|
export declare interface InputProps extends Omit<BaseInputProps, 'hasValue'> {
|
|
8861
|
+
placeholderCls?: ClassValue;
|
|
8833
8862
|
/**
|
|
8834
8863
|
* The ID for the input element
|
|
8835
8864
|
*/
|
|
@@ -8883,6 +8912,7 @@ export declare const InputSizes: readonly ["sm", "md", "lg"];
|
|
|
8883
8912
|
* Extends BaseInputSlots but omits default, extra, and value slots
|
|
8884
8913
|
*/
|
|
8885
8914
|
export declare interface InputSlots extends Omit<BaseInputSlots, 'default' | 'extra' | 'value'> {
|
|
8915
|
+
placeholder?: (data?: object) => never;
|
|
8886
8916
|
}
|
|
8887
8917
|
|
|
8888
8918
|
/**
|
|
@@ -12318,12 +12348,13 @@ export declare interface SelectProps extends SelectRootProps, Omit<SelectTrigger
|
|
|
12318
12348
|
optionContentCls?: ClassValue;
|
|
12319
12349
|
emptyCls?: ClassValue;
|
|
12320
12350
|
skeletonCls?: ClassValue;
|
|
12321
|
-
|
|
12351
|
+
scrollAreaCls?: ClassValue;
|
|
12322
12352
|
emptyProps?: EmptyProps;
|
|
12323
12353
|
samePopupWidth?: boolean;
|
|
12324
12354
|
popupHeight?: string | number;
|
|
12325
12355
|
popupWidth?: string | number;
|
|
12326
12356
|
minWidth?: string | number;
|
|
12357
|
+
triggerMinWidth?: string | number;
|
|
12327
12358
|
}
|
|
12328
12359
|
|
|
12329
12360
|
/**
|
|
@@ -12591,7 +12622,72 @@ export declare type SkeletonType = (typeof SkeletonTypes)[number];
|
|
|
12591
12622
|
*/
|
|
12592
12623
|
export declare const SkeletonTypes: readonly ["avatar", "input", "button", "paragraph", "headline", "list", "base", "custom", "custom-items"];
|
|
12593
12624
|
|
|
12594
|
-
export declare const
|
|
12625
|
+
export declare const Spinner: __VLS_WithTemplateSlots_70<DefineComponent<SpinnerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SpinnerProps> & Readonly<{}>, {
|
|
12626
|
+
size: "sm" | "md" | "lg";
|
|
12627
|
+
duration: number;
|
|
12628
|
+
zIndex: number;
|
|
12629
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<SpinnerSlots> & SpinnerSlots>;
|
|
12630
|
+
|
|
12631
|
+
/**
|
|
12632
|
+
* Default props for the Spinner component
|
|
12633
|
+
*/
|
|
12634
|
+
export declare const SPINNER_DEFAULT_PROPS: {
|
|
12635
|
+
readonly zIndex: 1000;
|
|
12636
|
+
readonly duration: 700;
|
|
12637
|
+
readonly size: "md";
|
|
12638
|
+
};
|
|
12639
|
+
|
|
12640
|
+
/**
|
|
12641
|
+
* Emits for the Spinner component
|
|
12642
|
+
*/
|
|
12643
|
+
export declare interface SpinnerEmits {
|
|
12644
|
+
/** Emitted when the spinner is clicked */
|
|
12645
|
+
click: [event: Event];
|
|
12646
|
+
}
|
|
12647
|
+
|
|
12648
|
+
/**
|
|
12649
|
+
* Props for the Spinner component
|
|
12650
|
+
*/
|
|
12651
|
+
export declare interface SpinnerProps {
|
|
12652
|
+
loading?: boolean;
|
|
12653
|
+
fitContent?: boolean;
|
|
12654
|
+
dir?: Direction;
|
|
12655
|
+
zIndex?: number;
|
|
12656
|
+
/** CSS classes to apply to the root spinner element */
|
|
12657
|
+
class?: ClassValue;
|
|
12658
|
+
contentCls?: ClassValue;
|
|
12659
|
+
indicatorCls?: ClassValue;
|
|
12660
|
+
duration?: number;
|
|
12661
|
+
/** CSS classes to apply to the text element */
|
|
12662
|
+
textCls?: ClassValue;
|
|
12663
|
+
blanketCls?: ClassValue;
|
|
12664
|
+
/** The spinner text */
|
|
12665
|
+
text?: string;
|
|
12666
|
+
size?: SpinnerSize;
|
|
12667
|
+
}
|
|
12668
|
+
|
|
12669
|
+
/**
|
|
12670
|
+
* Type representing available sizes for Spinner component
|
|
12671
|
+
*/
|
|
12672
|
+
export declare type SpinnerSize = (typeof SpinnerSizes)[number];
|
|
12673
|
+
|
|
12674
|
+
/**
|
|
12675
|
+
* Array of available sizes for Spinner component
|
|
12676
|
+
*/
|
|
12677
|
+
export declare const SpinnerSizes: readonly ["sm", "md", "lg"];
|
|
12678
|
+
|
|
12679
|
+
/**
|
|
12680
|
+
* Slots for the Spinner component
|
|
12681
|
+
*/
|
|
12682
|
+
export declare interface SpinnerSlots {
|
|
12683
|
+
/** Custom spinner content */
|
|
12684
|
+
default?: (params?: object) => never;
|
|
12685
|
+
/** Custom indicator content */
|
|
12686
|
+
indicator?: (params?: object) => never;
|
|
12687
|
+
text?: (params?: object) => never;
|
|
12688
|
+
}
|
|
12689
|
+
|
|
12690
|
+
export declare const Step: __VLS_WithTemplateSlots_72<DefineComponent<StepItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StepItemProps> & Readonly<{}>, {
|
|
12595
12691
|
disabled: boolean;
|
|
12596
12692
|
status: "error" | "current" | "completed" | "upcoming";
|
|
12597
12693
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<StepItemSlots> & StepItemSlots>;
|
|
@@ -12784,7 +12880,7 @@ export declare const StepperSizes: readonly ["sm", "md", "lg"];
|
|
|
12784
12880
|
*/
|
|
12785
12881
|
export declare const stepPrefix: string;
|
|
12786
12882
|
|
|
12787
|
-
export declare const Steps:
|
|
12883
|
+
export declare const Steps: __VLS_WithTemplateSlots_71<DefineComponent<StepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12788
12884
|
change: (value?: number | undefined) => any;
|
|
12789
12885
|
"update:modelValue": (value?: number | undefined) => any;
|
|
12790
12886
|
}, string, PublicProps, Readonly<StepsProps> & Readonly<{
|
|
@@ -12897,7 +12993,7 @@ export declare const SUB_MENU_DEFAULT_PROPS: {
|
|
|
12897
12993
|
readonly branchIcon: "tabler:chevron-right";
|
|
12898
12994
|
};
|
|
12899
12995
|
|
|
12900
|
-
export declare const SubMenu:
|
|
12996
|
+
export declare const SubMenu: __VLS_WithTemplateSlots_73<DefineComponent<SubMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12901
12997
|
"update:open": (value: boolean) => any;
|
|
12902
12998
|
}, string, PublicProps, Readonly<SubMenuProps> & Readonly<{
|
|
12903
12999
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
@@ -12970,7 +13066,7 @@ export declare interface SubMenuSlots extends MenuItemSlots {
|
|
|
12970
13066
|
}) => never;
|
|
12971
13067
|
}
|
|
12972
13068
|
|
|
12973
|
-
export declare const Switch:
|
|
13069
|
+
export declare const Switch: __VLS_WithTemplateSlots_74<DefineComponent<SwitchProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12974
13070
|
blur: (e: InputEvent) => any;
|
|
12975
13071
|
change: (value: boolean) => any;
|
|
12976
13072
|
focus: (e: InputEvent) => any;
|
|
@@ -13088,11 +13184,11 @@ export declare interface SwitchSlots {
|
|
|
13088
13184
|
}) => never;
|
|
13089
13185
|
}
|
|
13090
13186
|
|
|
13091
|
-
export declare const TabContent:
|
|
13187
|
+
export declare const TabContent: __VLS_WithTemplateSlots_85<DefineComponent<TabsContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
13092
13188
|
default?(_: {}): any;
|
|
13093
13189
|
}>;
|
|
13094
13190
|
|
|
13095
|
-
export declare const Table:
|
|
13191
|
+
export declare const Table: __VLS_WithTemplateSlots_75<DefineComponent<TableProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TableProps> & Readonly<{}>, {
|
|
13096
13192
|
size: "lg" | "xlg";
|
|
13097
13193
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableElement>, {
|
|
13098
13194
|
default?(_: {}): any;
|
|
@@ -13130,7 +13226,7 @@ export declare type TableSize = (typeof TableSizes)[number];
|
|
|
13130
13226
|
*/
|
|
13131
13227
|
export declare const TableSizes: readonly ["lg", "xlg"];
|
|
13132
13228
|
|
|
13133
|
-
export declare const TabList:
|
|
13229
|
+
export declare const TabList: __VLS_WithTemplateSlots_83<DefineComponent<TabListProps, {
|
|
13134
13230
|
measure: () => void;
|
|
13135
13231
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TabListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
13136
13232
|
leftScrollRef: ({
|
|
@@ -13595,7 +13691,7 @@ export declare interface TabListSlots {
|
|
|
13595
13691
|
default?: (data?: object) => never;
|
|
13596
13692
|
}
|
|
13597
13693
|
|
|
13598
|
-
export declare const Tabs:
|
|
13694
|
+
export declare const Tabs: __VLS_WithTemplateSlots_82<DefineComponent<TabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13599
13695
|
change: (payload: string | number) => any;
|
|
13600
13696
|
"update:modelValue": (payload: string | number) => any;
|
|
13601
13697
|
dragStart: (event: SortableEvent, sortable: pantographSortable) => any;
|
|
@@ -13742,7 +13838,7 @@ declare interface TabsTriggerProps extends PrimitiveProps {
|
|
|
13742
13838
|
disabled?: boolean;
|
|
13743
13839
|
}
|
|
13744
13840
|
|
|
13745
|
-
export declare const TabTrigger:
|
|
13841
|
+
export declare const TabTrigger: __VLS_WithTemplateSlots_84<DefineComponent<TabTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TabTriggerProps> & Readonly<{}>, {
|
|
13746
13842
|
loading: boolean;
|
|
13747
13843
|
draggable: boolean;
|
|
13748
13844
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<TabTriggerSlots> & TabTriggerSlots>;
|
|
@@ -13791,7 +13887,7 @@ export declare interface TabTriggerSlots {
|
|
|
13791
13887
|
badgeIcon?: (data?: object) => never;
|
|
13792
13888
|
}
|
|
13793
13889
|
|
|
13794
|
-
export declare const TBody:
|
|
13890
|
+
export declare const TBody: __VLS_WithTemplateSlots_79<DefineComponent<TBodyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableSectionElement>, {
|
|
13795
13891
|
default?(_: {}): any;
|
|
13796
13892
|
}>;
|
|
13797
13893
|
|
|
@@ -13803,7 +13899,7 @@ export declare interface TBodyProps {
|
|
|
13803
13899
|
class?: ClassValue;
|
|
13804
13900
|
}
|
|
13805
13901
|
|
|
13806
|
-
export declare const Td:
|
|
13902
|
+
export declare const Td: __VLS_WithTemplateSlots_77<DefineComponent<TdProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TdProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>, Readonly<TdSlots> & TdSlots>;
|
|
13807
13903
|
|
|
13808
13904
|
/**
|
|
13809
13905
|
* Props for the Td component (table data cell)
|
|
@@ -13965,7 +14061,7 @@ export declare type TextareaStatus = (typeof TextareaStatuses)[number];
|
|
|
13965
14061
|
*/
|
|
13966
14062
|
export declare const TextareaStatuses: readonly ["error", "warning", "success", "none"];
|
|
13967
14063
|
|
|
13968
|
-
export declare const TFoot:
|
|
14064
|
+
export declare const TFoot: __VLS_WithTemplateSlots_81<DefineComponent<TFootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TFootProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableSectionElement>, {
|
|
13969
14065
|
default?(_: {}): any;
|
|
13970
14066
|
}>;
|
|
13971
14067
|
|
|
@@ -13979,9 +14075,9 @@ export declare interface TFootProps {
|
|
|
13979
14075
|
sticky?: boolean;
|
|
13980
14076
|
}
|
|
13981
14077
|
|
|
13982
|
-
export declare const Th:
|
|
14078
|
+
export declare const Th: __VLS_WithTemplateSlots_76<DefineComponent<ThProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ThProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>, Readonly<ThSlots> & ThSlots>;
|
|
13983
14079
|
|
|
13984
|
-
export declare const THead:
|
|
14080
|
+
export declare const THead: __VLS_WithTemplateSlots_80<DefineComponent<THeadProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<THeadProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableSectionElement>, {
|
|
13985
14081
|
default?(_: {}): any;
|
|
13986
14082
|
}>;
|
|
13987
14083
|
|
|
@@ -14025,7 +14121,7 @@ export declare interface ThSlots {
|
|
|
14025
14121
|
after: (params?: object) => never;
|
|
14026
14122
|
}
|
|
14027
14123
|
|
|
14028
|
-
export declare const Toast:
|
|
14124
|
+
export declare const Toast: __VLS_WithTemplateSlots_86<DefineComponent<ToastProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14029
14125
|
cancel: (e: PointerEvent) => any;
|
|
14030
14126
|
ok: (e: PointerEvent) => any;
|
|
14031
14127
|
closeNotification: (e: PointerEvent) => any;
|
|
@@ -14183,7 +14279,7 @@ export declare type ToastType = (typeof ToastTypes)[number];
|
|
|
14183
14279
|
*/
|
|
14184
14280
|
export declare const ToastTypes: readonly ["info", "success", "warning", "error"];
|
|
14185
14281
|
|
|
14186
|
-
export declare const Tooltip:
|
|
14282
|
+
export declare const Tooltip: __VLS_WithTemplateSlots_87<DefineComponent<TooltipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14187
14283
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14188
14284
|
pointerDownOutside: (event: Event) => any;
|
|
14189
14285
|
"update:open": (value: boolean) => any;
|
|
@@ -14316,7 +14412,7 @@ export declare interface TooltipProps extends TooltipRootProps, TooltipProviderP
|
|
|
14316
14412
|
wrapperCls?: string;
|
|
14317
14413
|
}
|
|
14318
14414
|
|
|
14319
|
-
export declare const TooltipProvider:
|
|
14415
|
+
export declare const TooltipProvider: __VLS_WithTemplateSlots_88<DefineComponent<TooltipProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
14320
14416
|
default?(_: {}): any;
|
|
14321
14417
|
}>;
|
|
14322
14418
|
|
|
@@ -14472,11 +14568,11 @@ export declare interface TooltipSlots {
|
|
|
14472
14568
|
|
|
14473
14569
|
declare interface TooltipTriggerProps extends PopperAnchorProps {}
|
|
14474
14570
|
|
|
14475
|
-
export declare const Tr:
|
|
14571
|
+
export declare const Tr: __VLS_WithTemplateSlots_78<DefineComponent<TrProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TrProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>, {
|
|
14476
14572
|
default?(_: {}): any;
|
|
14477
14573
|
}>;
|
|
14478
14574
|
|
|
14479
|
-
export declare const Tree:
|
|
14575
|
+
export declare const Tree: __VLS_WithTemplateSlots_89<DefineComponent<TreeProps, {
|
|
14480
14576
|
disabled: ComputedRef<boolean | undefined>;
|
|
14481
14577
|
props: TreeProps;
|
|
14482
14578
|
dir: ComputedRef<Direction | undefined>;
|
|
@@ -14709,7 +14805,7 @@ export declare type TreeItem = object & TreeFlattenItem & {
|
|
|
14709
14805
|
_hidden?: boolean;
|
|
14710
14806
|
};
|
|
14711
14807
|
|
|
14712
|
-
export declare const TreeNode:
|
|
14808
|
+
export declare const TreeNode: __VLS_WithTemplateSlots_90<DefineComponent<TreeNodeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TreeNodeProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<TreeNodeSlots> & TreeNodeSlots>;
|
|
14713
14809
|
|
|
14714
14810
|
/**
|
|
14715
14811
|
* Props for the TreeNode component
|
|
@@ -14924,7 +15020,7 @@ export declare interface TrProps {
|
|
|
14924
15020
|
onMouseleave?: (event: MouseEvent) => void;
|
|
14925
15021
|
}
|
|
14926
15022
|
|
|
14927
|
-
export declare const Upload:
|
|
15023
|
+
export declare const Upload: __VLS_WithTemplateSlots_91<DefineComponent<UploadProps, {
|
|
14928
15024
|
listRef: Ref<any, any>;
|
|
14929
15025
|
progressSize: ComputedRef<any>;
|
|
14930
15026
|
resetRequest: ComputedRef<any>;
|
|
@@ -15318,7 +15414,7 @@ export declare interface UploadItemCustomActions {
|
|
|
15318
15414
|
remove?: boolean;
|
|
15319
15415
|
}
|
|
15320
15416
|
|
|
15321
|
-
export declare const UploadList:
|
|
15417
|
+
export declare const UploadList: __VLS_WithTemplateSlots_92<DefineComponent<Partial<UploadProps>, {
|
|
15322
15418
|
addFiles: (files: File[]) => void;
|
|
15323
15419
|
fileList: Ref<UploadFile[], UploadFile[]>;
|
|
15324
15420
|
getAccept: ComputedRef<string | undefined>;
|
|
@@ -15489,7 +15585,7 @@ export declare type UploadStatus = (typeof UploadStatuses)[number];
|
|
|
15489
15585
|
*/
|
|
15490
15586
|
export declare const UploadStatuses: readonly ["error", "paused", "done", "uploading", "waiting"];
|
|
15491
15587
|
|
|
15492
|
-
export declare const UploadTrigger:
|
|
15588
|
+
export declare const UploadTrigger: __VLS_WithTemplateSlots_93<DefineComponent<UploadBaseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
15493
15589
|
addFiles: (files: File[]) => any;
|
|
15494
15590
|
}, string, PublicProps, Readonly<UploadBaseProps> & Readonly<{
|
|
15495
15591
|
onAddFiles?: ((files: File[]) => any) | undefined;
|
|
@@ -15741,30 +15837,32 @@ export declare type VisibleColorPair = Exclude<ColorPair, ColorPairHsv>;
|
|
|
15741
15837
|
export { }
|
|
15742
15838
|
|
|
15743
15839
|
|
|
15840
|
+
/** component declare **/
|
|
15744
15841
|
declare module 'vue' {
|
|
15745
15842
|
interface GlobalComponents {
|
|
15746
|
-
|
|
15843
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
15844
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
15747
15845
|
}
|
|
15748
15846
|
}
|
|
15749
15847
|
|
|
15750
15848
|
|
|
15751
15849
|
declare module 'vue' {
|
|
15752
15850
|
interface GlobalComponents {
|
|
15753
|
-
|
|
15851
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
15754
15852
|
}
|
|
15755
15853
|
}
|
|
15756
15854
|
|
|
15757
15855
|
|
|
15758
15856
|
declare module 'vue' {
|
|
15759
15857
|
interface GlobalComponents {
|
|
15760
|
-
|
|
15858
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
15761
15859
|
}
|
|
15762
15860
|
}
|
|
15763
15861
|
|
|
15764
15862
|
|
|
15765
15863
|
declare module 'vue' {
|
|
15766
15864
|
interface GlobalComponents {
|
|
15767
|
-
|
|
15865
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
15768
15866
|
}
|
|
15769
15867
|
}
|
|
15770
15868
|
|
|
@@ -15778,428 +15876,433 @@ declare module 'vue' {
|
|
|
15778
15876
|
|
|
15779
15877
|
declare module 'vue' {
|
|
15780
15878
|
interface GlobalComponents {
|
|
15781
|
-
|
|
15879
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
15782
15880
|
}
|
|
15783
15881
|
}
|
|
15784
15882
|
|
|
15785
15883
|
|
|
15786
15884
|
declare module 'vue' {
|
|
15787
15885
|
interface GlobalComponents {
|
|
15788
|
-
|
|
15789
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
15790
|
-
ComboboxOption: DefineComponent;
|
|
15886
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
15791
15887
|
}
|
|
15792
15888
|
}
|
|
15793
15889
|
|
|
15794
15890
|
|
|
15795
15891
|
declare module 'vue' {
|
|
15796
15892
|
interface GlobalComponents {
|
|
15797
|
-
|
|
15893
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
15798
15894
|
}
|
|
15799
15895
|
}
|
|
15800
15896
|
|
|
15801
15897
|
|
|
15802
15898
|
declare module 'vue' {
|
|
15803
15899
|
interface GlobalComponents {
|
|
15804
|
-
|
|
15900
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
15805
15901
|
}
|
|
15806
15902
|
}
|
|
15807
15903
|
|
|
15808
15904
|
|
|
15809
15905
|
declare module 'vue' {
|
|
15810
15906
|
interface GlobalComponents {
|
|
15811
|
-
|
|
15907
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
15812
15908
|
}
|
|
15813
15909
|
}
|
|
15814
15910
|
|
|
15815
15911
|
|
|
15816
15912
|
declare module 'vue' {
|
|
15817
15913
|
interface GlobalComponents {
|
|
15818
|
-
|
|
15914
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
15819
15915
|
}
|
|
15820
15916
|
}
|
|
15821
15917
|
|
|
15822
15918
|
|
|
15823
15919
|
declare module 'vue' {
|
|
15824
15920
|
interface GlobalComponents {
|
|
15825
|
-
|
|
15921
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
15922
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
15826
15923
|
}
|
|
15827
15924
|
}
|
|
15828
15925
|
|
|
15829
15926
|
|
|
15830
15927
|
declare module 'vue' {
|
|
15831
15928
|
interface GlobalComponents {
|
|
15832
|
-
|
|
15833
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
15929
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
15834
15930
|
}
|
|
15835
15931
|
}
|
|
15836
15932
|
|
|
15837
15933
|
|
|
15838
15934
|
declare module 'vue' {
|
|
15839
15935
|
interface GlobalComponents {
|
|
15840
|
-
|
|
15936
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
15841
15937
|
}
|
|
15842
15938
|
}
|
|
15843
15939
|
|
|
15844
15940
|
|
|
15845
15941
|
declare module 'vue' {
|
|
15846
15942
|
interface GlobalComponents {
|
|
15847
|
-
|
|
15943
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
15848
15944
|
}
|
|
15849
15945
|
}
|
|
15850
15946
|
|
|
15851
15947
|
|
|
15852
15948
|
declare module 'vue' {
|
|
15853
15949
|
interface GlobalComponents {
|
|
15854
|
-
|
|
15855
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
15950
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
15856
15951
|
}
|
|
15857
15952
|
}
|
|
15858
15953
|
|
|
15859
15954
|
|
|
15860
15955
|
declare module 'vue' {
|
|
15861
15956
|
interface GlobalComponents {
|
|
15862
|
-
|
|
15957
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
15863
15958
|
}
|
|
15864
15959
|
}
|
|
15865
15960
|
|
|
15866
15961
|
|
|
15867
15962
|
declare module 'vue' {
|
|
15868
15963
|
interface GlobalComponents {
|
|
15869
|
-
|
|
15964
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
15870
15965
|
}
|
|
15871
15966
|
}
|
|
15872
15967
|
|
|
15873
15968
|
|
|
15874
15969
|
declare module 'vue' {
|
|
15875
15970
|
interface GlobalComponents {
|
|
15876
|
-
|
|
15971
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
15877
15972
|
}
|
|
15878
15973
|
}
|
|
15879
15974
|
|
|
15880
15975
|
|
|
15881
15976
|
declare module 'vue' {
|
|
15882
15977
|
interface GlobalComponents {
|
|
15883
|
-
|
|
15978
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
15884
15979
|
}
|
|
15885
15980
|
}
|
|
15886
15981
|
|
|
15887
15982
|
|
|
15888
15983
|
declare module 'vue' {
|
|
15889
15984
|
interface GlobalComponents {
|
|
15890
|
-
|
|
15985
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
15891
15986
|
}
|
|
15892
15987
|
}
|
|
15893
15988
|
|
|
15894
15989
|
|
|
15895
15990
|
declare module 'vue' {
|
|
15896
15991
|
interface GlobalComponents {
|
|
15897
|
-
|
|
15992
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
15898
15993
|
}
|
|
15899
15994
|
}
|
|
15900
15995
|
|
|
15901
15996
|
|
|
15902
15997
|
declare module 'vue' {
|
|
15903
15998
|
interface GlobalComponents {
|
|
15904
|
-
|
|
15905
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
15999
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
15906
16000
|
}
|
|
15907
16001
|
}
|
|
15908
16002
|
|
|
15909
16003
|
|
|
15910
16004
|
declare module 'vue' {
|
|
15911
16005
|
interface GlobalComponents {
|
|
15912
|
-
|
|
16006
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
15913
16007
|
}
|
|
15914
16008
|
}
|
|
15915
16009
|
|
|
15916
16010
|
|
|
15917
16011
|
declare module 'vue' {
|
|
15918
16012
|
interface GlobalComponents {
|
|
15919
|
-
|
|
16013
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
15920
16014
|
}
|
|
15921
16015
|
}
|
|
15922
16016
|
|
|
15923
16017
|
|
|
15924
16018
|
declare module 'vue' {
|
|
15925
16019
|
interface GlobalComponents {
|
|
15926
|
-
|
|
16020
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
15927
16021
|
}
|
|
15928
16022
|
}
|
|
15929
16023
|
|
|
15930
16024
|
|
|
15931
16025
|
declare module 'vue' {
|
|
15932
16026
|
interface GlobalComponents {
|
|
15933
|
-
|
|
16027
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
16028
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
15934
16029
|
}
|
|
15935
16030
|
}
|
|
15936
16031
|
|
|
15937
16032
|
|
|
15938
16033
|
declare module 'vue' {
|
|
15939
16034
|
interface GlobalComponents {
|
|
15940
|
-
|
|
16035
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
15941
16036
|
}
|
|
15942
16037
|
}
|
|
15943
16038
|
|
|
15944
16039
|
|
|
15945
16040
|
declare module 'vue' {
|
|
15946
16041
|
interface GlobalComponents {
|
|
15947
|
-
|
|
16042
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
15948
16043
|
}
|
|
15949
16044
|
}
|
|
15950
16045
|
|
|
15951
16046
|
|
|
15952
16047
|
declare module 'vue' {
|
|
15953
16048
|
interface GlobalComponents {
|
|
15954
|
-
|
|
16049
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
15955
16050
|
}
|
|
15956
16051
|
}
|
|
15957
16052
|
|
|
15958
16053
|
|
|
15959
16054
|
declare module 'vue' {
|
|
15960
16055
|
interface GlobalComponents {
|
|
15961
|
-
|
|
16056
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
15962
16057
|
}
|
|
15963
16058
|
}
|
|
15964
16059
|
|
|
15965
16060
|
|
|
15966
16061
|
declare module 'vue' {
|
|
15967
16062
|
interface GlobalComponents {
|
|
15968
|
-
|
|
16063
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
15969
16064
|
}
|
|
15970
16065
|
}
|
|
15971
16066
|
|
|
15972
16067
|
|
|
15973
16068
|
declare module 'vue' {
|
|
15974
16069
|
interface GlobalComponents {
|
|
15975
|
-
|
|
16070
|
+
Icon: DefineComponent<IconProps>;
|
|
15976
16071
|
}
|
|
15977
16072
|
}
|
|
15978
16073
|
|
|
15979
16074
|
|
|
15980
16075
|
declare module 'vue' {
|
|
15981
16076
|
interface GlobalComponents {
|
|
15982
|
-
|
|
15983
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
15984
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
15985
|
-
TabContent: DefineComponent;
|
|
16077
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
15986
16078
|
}
|
|
15987
16079
|
}
|
|
15988
16080
|
|
|
15989
16081
|
|
|
15990
16082
|
declare module 'vue' {
|
|
15991
16083
|
interface GlobalComponents {
|
|
15992
|
-
|
|
16084
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
15993
16085
|
}
|
|
15994
16086
|
}
|
|
15995
16087
|
|
|
15996
16088
|
|
|
15997
|
-
/** component declare **/
|
|
15998
16089
|
declare module 'vue' {
|
|
15999
16090
|
interface GlobalComponents {
|
|
16000
|
-
|
|
16001
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
16091
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
16002
16092
|
}
|
|
16003
16093
|
}
|
|
16004
16094
|
|
|
16005
16095
|
|
|
16006
16096
|
declare module 'vue' {
|
|
16007
16097
|
interface GlobalComponents {
|
|
16008
|
-
|
|
16098
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
16009
16099
|
}
|
|
16010
16100
|
}
|
|
16011
16101
|
|
|
16012
16102
|
|
|
16013
16103
|
declare module 'vue' {
|
|
16014
16104
|
interface GlobalComponents {
|
|
16015
|
-
|
|
16105
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
16016
16106
|
}
|
|
16017
16107
|
}
|
|
16018
16108
|
|
|
16019
16109
|
|
|
16020
16110
|
declare module 'vue' {
|
|
16021
16111
|
interface GlobalComponents {
|
|
16022
|
-
|
|
16112
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
16023
16113
|
}
|
|
16024
16114
|
}
|
|
16025
16115
|
|
|
16026
16116
|
|
|
16027
16117
|
declare module 'vue' {
|
|
16028
16118
|
interface GlobalComponents {
|
|
16029
|
-
|
|
16119
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
16030
16120
|
}
|
|
16031
16121
|
}
|
|
16032
16122
|
|
|
16033
16123
|
|
|
16034
16124
|
declare module 'vue' {
|
|
16035
16125
|
interface GlobalComponents {
|
|
16036
|
-
|
|
16037
|
-
|
|
16126
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
16127
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
16128
|
+
ComboboxOption: DefineComponent;
|
|
16038
16129
|
}
|
|
16039
16130
|
}
|
|
16040
16131
|
|
|
16041
16132
|
|
|
16042
16133
|
declare module 'vue' {
|
|
16043
16134
|
interface GlobalComponents {
|
|
16044
|
-
|
|
16135
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
16136
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
16045
16137
|
}
|
|
16046
16138
|
}
|
|
16047
16139
|
|
|
16048
16140
|
|
|
16049
16141
|
declare module 'vue' {
|
|
16050
16142
|
interface GlobalComponents {
|
|
16051
|
-
|
|
16143
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
16052
16144
|
}
|
|
16053
16145
|
}
|
|
16054
16146
|
|
|
16055
16147
|
|
|
16056
16148
|
declare module 'vue' {
|
|
16057
16149
|
interface GlobalComponents {
|
|
16058
|
-
|
|
16150
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
16059
16151
|
}
|
|
16060
16152
|
}
|
|
16061
16153
|
|
|
16062
16154
|
|
|
16063
16155
|
declare module 'vue' {
|
|
16064
16156
|
interface GlobalComponents {
|
|
16065
|
-
|
|
16157
|
+
Divider: DefineComponent<DividerProps>;
|
|
16066
16158
|
}
|
|
16067
16159
|
}
|
|
16068
16160
|
|
|
16069
16161
|
|
|
16070
16162
|
declare module 'vue' {
|
|
16071
16163
|
interface GlobalComponents {
|
|
16072
|
-
|
|
16164
|
+
Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
|
|
16073
16165
|
}
|
|
16074
16166
|
}
|
|
16075
16167
|
|
|
16076
16168
|
|
|
16077
16169
|
declare module 'vue' {
|
|
16078
16170
|
interface GlobalComponents {
|
|
16079
|
-
|
|
16080
|
-
|
|
16171
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
16172
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16081
16173
|
}
|
|
16082
16174
|
}
|
|
16083
16175
|
|
|
16084
16176
|
|
|
16085
16177
|
declare module 'vue' {
|
|
16086
16178
|
interface GlobalComponents {
|
|
16087
|
-
|
|
16179
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
16180
|
+
Th: DefineComponent<ThProps, ThSlots>;
|
|
16181
|
+
Td: DefineComponent<TdProps, TdSlots>;
|
|
16182
|
+
Tr: DefineComponent<TrProps>;
|
|
16183
|
+
TBody: DefineComponent<TBodyProps>;
|
|
16184
|
+
THead: DefineComponent<THeadProps>;
|
|
16185
|
+
TFoot: DefineComponent<TFootProps>;
|
|
16088
16186
|
}
|
|
16089
16187
|
}
|
|
16090
16188
|
|
|
16091
16189
|
|
|
16092
16190
|
declare module 'vue' {
|
|
16093
16191
|
interface GlobalComponents {
|
|
16094
|
-
|
|
16192
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
16095
16193
|
}
|
|
16096
16194
|
}
|
|
16097
16195
|
|
|
16098
16196
|
|
|
16099
16197
|
declare module 'vue' {
|
|
16100
16198
|
interface GlobalComponents {
|
|
16101
|
-
|
|
16102
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16199
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
16103
16200
|
}
|
|
16104
16201
|
}
|
|
16105
16202
|
|
|
16106
16203
|
|
|
16107
16204
|
declare module 'vue' {
|
|
16108
16205
|
interface GlobalComponents {
|
|
16109
|
-
|
|
16110
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16206
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
16111
16207
|
}
|
|
16112
16208
|
}
|
|
16113
16209
|
|
|
16114
16210
|
|
|
16115
16211
|
declare module 'vue' {
|
|
16116
16212
|
interface GlobalComponents {
|
|
16117
|
-
|
|
16213
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
16118
16214
|
}
|
|
16119
16215
|
}
|
|
16120
16216
|
|
|
16121
16217
|
|
|
16122
16218
|
declare module 'vue' {
|
|
16123
16219
|
interface GlobalComponents {
|
|
16124
|
-
|
|
16125
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
16126
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
16127
|
-
Tr: DefineComponent<TrProps>;
|
|
16128
|
-
TBody: DefineComponent<TBodyProps>;
|
|
16129
|
-
THead: DefineComponent<THeadProps>;
|
|
16130
|
-
TFoot: DefineComponent<TFootProps>;
|
|
16220
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
16131
16221
|
}
|
|
16132
16222
|
}
|
|
16133
16223
|
|
|
16134
16224
|
|
|
16135
16225
|
declare module 'vue' {
|
|
16136
16226
|
interface GlobalComponents {
|
|
16137
|
-
|
|
16227
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
16138
16228
|
}
|
|
16139
16229
|
}
|
|
16140
16230
|
|
|
16141
16231
|
|
|
16142
16232
|
declare module 'vue' {
|
|
16143
16233
|
interface GlobalComponents {
|
|
16144
|
-
|
|
16234
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
16145
16235
|
}
|
|
16146
16236
|
}
|
|
16147
16237
|
|
|
16148
16238
|
|
|
16149
16239
|
declare module 'vue' {
|
|
16150
16240
|
interface GlobalComponents {
|
|
16151
|
-
|
|
16241
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
16152
16242
|
}
|
|
16153
16243
|
}
|
|
16154
16244
|
|
|
16155
16245
|
|
|
16156
16246
|
declare module 'vue' {
|
|
16157
16247
|
interface GlobalComponents {
|
|
16158
|
-
|
|
16248
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
16249
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16159
16250
|
}
|
|
16160
16251
|
}
|
|
16161
16252
|
|
|
16162
16253
|
|
|
16163
16254
|
declare module 'vue' {
|
|
16164
16255
|
interface GlobalComponents {
|
|
16165
|
-
|
|
16256
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
16166
16257
|
}
|
|
16167
16258
|
}
|
|
16168
16259
|
|
|
16169
16260
|
|
|
16170
16261
|
declare module 'vue' {
|
|
16171
16262
|
interface GlobalComponents {
|
|
16172
|
-
|
|
16263
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
16173
16264
|
}
|
|
16174
16265
|
}
|
|
16175
16266
|
|
|
16176
16267
|
|
|
16177
16268
|
declare module 'vue' {
|
|
16178
16269
|
interface GlobalComponents {
|
|
16179
|
-
|
|
16270
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
16180
16271
|
}
|
|
16181
16272
|
}
|
|
16182
16273
|
|
|
16183
16274
|
|
|
16275
|
+
/**
|
|
16276
|
+
* Global component declaration for TypeScript support
|
|
16277
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
16278
|
+
*/
|
|
16184
16279
|
declare module 'vue' {
|
|
16185
16280
|
interface GlobalComponents {
|
|
16186
|
-
|
|
16281
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
16282
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16187
16283
|
}
|
|
16188
16284
|
}
|
|
16189
16285
|
|
|
16190
16286
|
|
|
16191
16287
|
declare module 'vue' {
|
|
16192
16288
|
interface GlobalComponents {
|
|
16193
|
-
|
|
16289
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
16290
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16194
16291
|
}
|
|
16195
16292
|
}
|
|
16196
16293
|
|
|
16197
16294
|
|
|
16198
16295
|
declare module 'vue' {
|
|
16199
16296
|
interface GlobalComponents {
|
|
16200
|
-
|
|
16201
|
-
|
|
16202
|
-
|
|
16297
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
16298
|
+
}
|
|
16299
|
+
}
|
|
16300
|
+
|
|
16301
|
+
|
|
16302
|
+
declare module 'vue' {
|
|
16303
|
+
interface GlobalComponents {
|
|
16304
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
16305
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
16203
16306
|
}
|
|
16204
16307
|
}
|
|
16205
16308
|
|
|
@@ -16215,21 +16318,23 @@ declare module 'vue' {
|
|
|
16215
16318
|
|
|
16216
16319
|
declare module 'vue' {
|
|
16217
16320
|
interface GlobalComponents {
|
|
16218
|
-
|
|
16321
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
16219
16322
|
}
|
|
16220
16323
|
}
|
|
16221
16324
|
|
|
16222
16325
|
|
|
16223
16326
|
declare module 'vue' {
|
|
16224
16327
|
interface GlobalComponents {
|
|
16225
|
-
|
|
16328
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
16226
16329
|
}
|
|
16227
16330
|
}
|
|
16228
16331
|
|
|
16229
16332
|
|
|
16230
16333
|
declare module 'vue' {
|
|
16231
16334
|
interface GlobalComponents {
|
|
16232
|
-
|
|
16335
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16336
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16337
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16233
16338
|
}
|
|
16234
16339
|
}
|
|
16235
16340
|
|
|
@@ -16241,14 +16346,12 @@ declare module 'vue' {
|
|
|
16241
16346
|
}
|
|
16242
16347
|
|
|
16243
16348
|
|
|
16244
|
-
/**
|
|
16245
|
-
* Global component declaration for TypeScript support
|
|
16246
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
16247
|
-
*/
|
|
16248
16349
|
declare module 'vue' {
|
|
16249
16350
|
interface GlobalComponents {
|
|
16250
|
-
|
|
16251
|
-
|
|
16351
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
16352
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16353
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16354
|
+
TabContent: DefineComponent;
|
|
16252
16355
|
}
|
|
16253
16356
|
}
|
|
16254
16357
|
|