@pantograph/vue 0.34.38 → 0.34.40
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 +248 -145
- 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 +104 -97
- package/dist/resolver/index.js +1 -1
- package/dist/resolver/index.umd.cjs +1 -1
- package/dist/resolver.d.ts +104 -97
- package/dist/use/index.js +8351 -8168
- package/dist/use/index.umd.cjs +5 -5
- package/dist/use.d.ts +104 -97
- 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;
|
|
@@ -15743,65 +15839,72 @@ export { }
|
|
|
15743
15839
|
|
|
15744
15840
|
declare module 'vue' {
|
|
15745
15841
|
interface GlobalComponents {
|
|
15746
|
-
|
|
15842
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
15747
15843
|
}
|
|
15748
15844
|
}
|
|
15749
15845
|
|
|
15750
15846
|
|
|
15751
15847
|
declare module 'vue' {
|
|
15752
15848
|
interface GlobalComponents {
|
|
15753
|
-
|
|
15849
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
15754
15850
|
}
|
|
15755
15851
|
}
|
|
15756
15852
|
|
|
15757
15853
|
|
|
15758
15854
|
declare module 'vue' {
|
|
15759
15855
|
interface GlobalComponents {
|
|
15760
|
-
|
|
15856
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
15761
15857
|
}
|
|
15762
15858
|
}
|
|
15763
15859
|
|
|
15764
15860
|
|
|
15765
15861
|
declare module 'vue' {
|
|
15766
15862
|
interface GlobalComponents {
|
|
15767
|
-
|
|
15863
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
15768
15864
|
}
|
|
15769
15865
|
}
|
|
15770
15866
|
|
|
15771
15867
|
|
|
15772
15868
|
declare module 'vue' {
|
|
15773
15869
|
interface GlobalComponents {
|
|
15774
|
-
|
|
15870
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
15775
15871
|
}
|
|
15776
15872
|
}
|
|
15777
15873
|
|
|
15778
15874
|
|
|
15779
15875
|
declare module 'vue' {
|
|
15780
15876
|
interface GlobalComponents {
|
|
15781
|
-
|
|
15877
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
15782
15878
|
}
|
|
15783
15879
|
}
|
|
15784
15880
|
|
|
15785
15881
|
|
|
15786
15882
|
declare module 'vue' {
|
|
15787
15883
|
interface GlobalComponents {
|
|
15788
|
-
|
|
15789
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
15790
|
-
ComboboxOption: DefineComponent;
|
|
15884
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
15791
15885
|
}
|
|
15792
15886
|
}
|
|
15793
15887
|
|
|
15794
15888
|
|
|
15795
15889
|
declare module 'vue' {
|
|
15796
15890
|
interface GlobalComponents {
|
|
15797
|
-
|
|
15891
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
15798
15892
|
}
|
|
15799
15893
|
}
|
|
15800
15894
|
|
|
15801
15895
|
|
|
15802
15896
|
declare module 'vue' {
|
|
15803
15897
|
interface GlobalComponents {
|
|
15804
|
-
|
|
15898
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
15899
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
15900
|
+
}
|
|
15901
|
+
}
|
|
15902
|
+
|
|
15903
|
+
|
|
15904
|
+
declare module 'vue' {
|
|
15905
|
+
interface GlobalComponents {
|
|
15906
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
15907
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
15805
15908
|
}
|
|
15806
15909
|
}
|
|
15807
15910
|
|
|
@@ -15815,440 +15918,440 @@ declare module 'vue' {
|
|
|
15815
15918
|
|
|
15816
15919
|
declare module 'vue' {
|
|
15817
15920
|
interface GlobalComponents {
|
|
15818
|
-
|
|
15921
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
15819
15922
|
}
|
|
15820
15923
|
}
|
|
15821
15924
|
|
|
15822
15925
|
|
|
15823
15926
|
declare module 'vue' {
|
|
15824
15927
|
interface GlobalComponents {
|
|
15825
|
-
|
|
15928
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
15826
15929
|
}
|
|
15827
15930
|
}
|
|
15828
15931
|
|
|
15829
15932
|
|
|
15830
15933
|
declare module 'vue' {
|
|
15831
15934
|
interface GlobalComponents {
|
|
15832
|
-
|
|
15833
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
15935
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
15834
15936
|
}
|
|
15835
15937
|
}
|
|
15836
15938
|
|
|
15837
15939
|
|
|
15838
15940
|
declare module 'vue' {
|
|
15839
15941
|
interface GlobalComponents {
|
|
15840
|
-
|
|
15942
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
15841
15943
|
}
|
|
15842
15944
|
}
|
|
15843
15945
|
|
|
15844
15946
|
|
|
15845
15947
|
declare module 'vue' {
|
|
15846
15948
|
interface GlobalComponents {
|
|
15847
|
-
|
|
15949
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
15848
15950
|
}
|
|
15849
15951
|
}
|
|
15850
15952
|
|
|
15851
15953
|
|
|
15852
15954
|
declare module 'vue' {
|
|
15853
15955
|
interface GlobalComponents {
|
|
15854
|
-
|
|
15855
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
15956
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
15856
15957
|
}
|
|
15857
15958
|
}
|
|
15858
15959
|
|
|
15859
15960
|
|
|
15860
15961
|
declare module 'vue' {
|
|
15861
15962
|
interface GlobalComponents {
|
|
15862
|
-
|
|
15963
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
15863
15964
|
}
|
|
15864
15965
|
}
|
|
15865
15966
|
|
|
15866
15967
|
|
|
15867
15968
|
declare module 'vue' {
|
|
15868
15969
|
interface GlobalComponents {
|
|
15869
|
-
|
|
15970
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
15971
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
15972
|
+
SelectLabel: DefineComponent;
|
|
15870
15973
|
}
|
|
15871
15974
|
}
|
|
15872
15975
|
|
|
15873
15976
|
|
|
15874
15977
|
declare module 'vue' {
|
|
15875
15978
|
interface GlobalComponents {
|
|
15876
|
-
|
|
15979
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
15877
15980
|
}
|
|
15878
15981
|
}
|
|
15879
15982
|
|
|
15880
15983
|
|
|
15881
15984
|
declare module 'vue' {
|
|
15882
15985
|
interface GlobalComponents {
|
|
15883
|
-
|
|
15986
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
15884
15987
|
}
|
|
15885
15988
|
}
|
|
15886
15989
|
|
|
15887
15990
|
|
|
15888
15991
|
declare module 'vue' {
|
|
15889
15992
|
interface GlobalComponents {
|
|
15890
|
-
|
|
15993
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
15891
15994
|
}
|
|
15892
15995
|
}
|
|
15893
15996
|
|
|
15894
15997
|
|
|
15895
15998
|
declare module 'vue' {
|
|
15896
15999
|
interface GlobalComponents {
|
|
15897
|
-
|
|
16000
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
15898
16001
|
}
|
|
15899
16002
|
}
|
|
15900
16003
|
|
|
15901
16004
|
|
|
15902
16005
|
declare module 'vue' {
|
|
15903
16006
|
interface GlobalComponents {
|
|
15904
|
-
|
|
15905
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
16007
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
15906
16008
|
}
|
|
15907
16009
|
}
|
|
15908
16010
|
|
|
15909
16011
|
|
|
15910
16012
|
declare module 'vue' {
|
|
15911
16013
|
interface GlobalComponents {
|
|
15912
|
-
|
|
16014
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
16015
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
16016
|
+
ComboboxOption: DefineComponent;
|
|
15913
16017
|
}
|
|
15914
16018
|
}
|
|
15915
16019
|
|
|
15916
16020
|
|
|
15917
16021
|
declare module 'vue' {
|
|
15918
16022
|
interface GlobalComponents {
|
|
15919
|
-
|
|
16023
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
15920
16024
|
}
|
|
15921
16025
|
}
|
|
15922
16026
|
|
|
15923
16027
|
|
|
15924
16028
|
declare module 'vue' {
|
|
15925
16029
|
interface GlobalComponents {
|
|
15926
|
-
|
|
16030
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
15927
16031
|
}
|
|
15928
16032
|
}
|
|
15929
16033
|
|
|
15930
16034
|
|
|
15931
16035
|
declare module 'vue' {
|
|
15932
16036
|
interface GlobalComponents {
|
|
15933
|
-
|
|
16037
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
16038
|
+
Th: DefineComponent<ThProps, ThSlots>;
|
|
16039
|
+
Td: DefineComponent<TdProps, TdSlots>;
|
|
16040
|
+
Tr: DefineComponent<TrProps>;
|
|
16041
|
+
TBody: DefineComponent<TBodyProps>;
|
|
16042
|
+
THead: DefineComponent<THeadProps>;
|
|
16043
|
+
TFoot: DefineComponent<TFootProps>;
|
|
15934
16044
|
}
|
|
15935
16045
|
}
|
|
15936
16046
|
|
|
15937
16047
|
|
|
16048
|
+
/** component declare **/
|
|
15938
16049
|
declare module 'vue' {
|
|
15939
16050
|
interface GlobalComponents {
|
|
15940
|
-
|
|
16051
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
16052
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
15941
16053
|
}
|
|
15942
16054
|
}
|
|
15943
16055
|
|
|
15944
16056
|
|
|
15945
16057
|
declare module 'vue' {
|
|
15946
16058
|
interface GlobalComponents {
|
|
15947
|
-
|
|
16059
|
+
Icon: DefineComponent<IconProps>;
|
|
15948
16060
|
}
|
|
15949
16061
|
}
|
|
15950
16062
|
|
|
15951
16063
|
|
|
15952
16064
|
declare module 'vue' {
|
|
15953
16065
|
interface GlobalComponents {
|
|
15954
|
-
|
|
16066
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
15955
16067
|
}
|
|
15956
16068
|
}
|
|
15957
16069
|
|
|
15958
16070
|
|
|
15959
16071
|
declare module 'vue' {
|
|
15960
16072
|
interface GlobalComponents {
|
|
15961
|
-
|
|
16073
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
15962
16074
|
}
|
|
15963
16075
|
}
|
|
15964
16076
|
|
|
15965
16077
|
|
|
15966
16078
|
declare module 'vue' {
|
|
15967
16079
|
interface GlobalComponents {
|
|
15968
|
-
|
|
16080
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
15969
16081
|
}
|
|
15970
16082
|
}
|
|
15971
16083
|
|
|
15972
16084
|
|
|
15973
16085
|
declare module 'vue' {
|
|
15974
16086
|
interface GlobalComponents {
|
|
15975
|
-
|
|
16087
|
+
Divider: DefineComponent<DividerProps>;
|
|
15976
16088
|
}
|
|
15977
16089
|
}
|
|
15978
16090
|
|
|
15979
16091
|
|
|
15980
16092
|
declare module 'vue' {
|
|
15981
16093
|
interface GlobalComponents {
|
|
15982
|
-
|
|
15983
|
-
|
|
15984
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
15985
|
-
TabContent: DefineComponent;
|
|
16094
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
16095
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
15986
16096
|
}
|
|
15987
16097
|
}
|
|
15988
16098
|
|
|
15989
16099
|
|
|
15990
16100
|
declare module 'vue' {
|
|
15991
16101
|
interface GlobalComponents {
|
|
15992
|
-
|
|
16102
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
15993
16103
|
}
|
|
15994
16104
|
}
|
|
15995
16105
|
|
|
15996
16106
|
|
|
15997
|
-
/** component declare **/
|
|
15998
16107
|
declare module 'vue' {
|
|
15999
16108
|
interface GlobalComponents {
|
|
16000
|
-
|
|
16001
|
-
|
|
16109
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
16110
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
16002
16111
|
}
|
|
16003
16112
|
}
|
|
16004
16113
|
|
|
16005
16114
|
|
|
16006
16115
|
declare module 'vue' {
|
|
16007
16116
|
interface GlobalComponents {
|
|
16008
|
-
|
|
16117
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
16009
16118
|
}
|
|
16010
16119
|
}
|
|
16011
16120
|
|
|
16012
16121
|
|
|
16013
16122
|
declare module 'vue' {
|
|
16014
16123
|
interface GlobalComponents {
|
|
16015
|
-
|
|
16124
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
16016
16125
|
}
|
|
16017
16126
|
}
|
|
16018
16127
|
|
|
16019
16128
|
|
|
16020
16129
|
declare module 'vue' {
|
|
16021
16130
|
interface GlobalComponents {
|
|
16022
|
-
|
|
16131
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
16023
16132
|
}
|
|
16024
16133
|
}
|
|
16025
16134
|
|
|
16026
16135
|
|
|
16027
16136
|
declare module 'vue' {
|
|
16028
16137
|
interface GlobalComponents {
|
|
16029
|
-
|
|
16138
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
16030
16139
|
}
|
|
16031
16140
|
}
|
|
16032
16141
|
|
|
16033
16142
|
|
|
16034
16143
|
declare module 'vue' {
|
|
16035
16144
|
interface GlobalComponents {
|
|
16036
|
-
|
|
16037
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16145
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
16038
16146
|
}
|
|
16039
16147
|
}
|
|
16040
16148
|
|
|
16041
16149
|
|
|
16042
16150
|
declare module 'vue' {
|
|
16043
16151
|
interface GlobalComponents {
|
|
16044
|
-
|
|
16152
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16153
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16154
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16045
16155
|
}
|
|
16046
16156
|
}
|
|
16047
16157
|
|
|
16048
16158
|
|
|
16049
16159
|
declare module 'vue' {
|
|
16050
16160
|
interface GlobalComponents {
|
|
16051
|
-
|
|
16161
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
16162
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16163
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16164
|
+
TabContent: DefineComponent;
|
|
16052
16165
|
}
|
|
16053
16166
|
}
|
|
16054
16167
|
|
|
16055
16168
|
|
|
16056
16169
|
declare module 'vue' {
|
|
16057
16170
|
interface GlobalComponents {
|
|
16058
|
-
|
|
16171
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
16059
16172
|
}
|
|
16060
16173
|
}
|
|
16061
16174
|
|
|
16062
16175
|
|
|
16063
16176
|
declare module 'vue' {
|
|
16064
16177
|
interface GlobalComponents {
|
|
16065
|
-
|
|
16178
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
16066
16179
|
}
|
|
16067
16180
|
}
|
|
16068
16181
|
|
|
16069
16182
|
|
|
16070
16183
|
declare module 'vue' {
|
|
16071
16184
|
interface GlobalComponents {
|
|
16072
|
-
|
|
16185
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
16073
16186
|
}
|
|
16074
16187
|
}
|
|
16075
16188
|
|
|
16076
16189
|
|
|
16077
16190
|
declare module 'vue' {
|
|
16078
16191
|
interface GlobalComponents {
|
|
16079
|
-
|
|
16080
|
-
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
16192
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
16081
16193
|
}
|
|
16082
16194
|
}
|
|
16083
16195
|
|
|
16084
16196
|
|
|
16085
16197
|
declare module 'vue' {
|
|
16086
16198
|
interface GlobalComponents {
|
|
16087
|
-
|
|
16199
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
16088
16200
|
}
|
|
16089
16201
|
}
|
|
16090
16202
|
|
|
16091
16203
|
|
|
16092
16204
|
declare module 'vue' {
|
|
16093
16205
|
interface GlobalComponents {
|
|
16094
|
-
|
|
16206
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
16207
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16095
16208
|
}
|
|
16096
16209
|
}
|
|
16097
16210
|
|
|
16098
16211
|
|
|
16099
16212
|
declare module 'vue' {
|
|
16100
16213
|
interface GlobalComponents {
|
|
16101
|
-
|
|
16102
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16214
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
16103
16215
|
}
|
|
16104
16216
|
}
|
|
16105
16217
|
|
|
16106
16218
|
|
|
16107
16219
|
declare module 'vue' {
|
|
16108
16220
|
interface GlobalComponents {
|
|
16109
|
-
|
|
16110
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16221
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
16111
16222
|
}
|
|
16112
16223
|
}
|
|
16113
16224
|
|
|
16114
16225
|
|
|
16115
16226
|
declare module 'vue' {
|
|
16116
16227
|
interface GlobalComponents {
|
|
16117
|
-
|
|
16228
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
16118
16229
|
}
|
|
16119
16230
|
}
|
|
16120
16231
|
|
|
16121
16232
|
|
|
16122
16233
|
declare module 'vue' {
|
|
16123
16234
|
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>;
|
|
16235
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
16131
16236
|
}
|
|
16132
16237
|
}
|
|
16133
16238
|
|
|
16134
16239
|
|
|
16135
16240
|
declare module 'vue' {
|
|
16136
16241
|
interface GlobalComponents {
|
|
16137
|
-
|
|
16242
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
16138
16243
|
}
|
|
16139
16244
|
}
|
|
16140
16245
|
|
|
16141
16246
|
|
|
16142
16247
|
declare module 'vue' {
|
|
16143
16248
|
interface GlobalComponents {
|
|
16144
|
-
|
|
16249
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
16145
16250
|
}
|
|
16146
16251
|
}
|
|
16147
16252
|
|
|
16148
16253
|
|
|
16149
16254
|
declare module 'vue' {
|
|
16150
16255
|
interface GlobalComponents {
|
|
16151
|
-
|
|
16256
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
16152
16257
|
}
|
|
16153
16258
|
}
|
|
16154
16259
|
|
|
16155
16260
|
|
|
16156
16261
|
declare module 'vue' {
|
|
16157
16262
|
interface GlobalComponents {
|
|
16158
|
-
|
|
16263
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
16159
16264
|
}
|
|
16160
16265
|
}
|
|
16161
16266
|
|
|
16162
16267
|
|
|
16268
|
+
/**
|
|
16269
|
+
* Global component declaration for TypeScript support
|
|
16270
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
16271
|
+
*/
|
|
16163
16272
|
declare module 'vue' {
|
|
16164
16273
|
interface GlobalComponents {
|
|
16165
|
-
|
|
16274
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
16275
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16166
16276
|
}
|
|
16167
16277
|
}
|
|
16168
16278
|
|
|
16169
16279
|
|
|
16170
16280
|
declare module 'vue' {
|
|
16171
16281
|
interface GlobalComponents {
|
|
16172
|
-
|
|
16282
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
16283
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16173
16284
|
}
|
|
16174
16285
|
}
|
|
16175
16286
|
|
|
16176
16287
|
|
|
16177
16288
|
declare module 'vue' {
|
|
16178
16289
|
interface GlobalComponents {
|
|
16179
|
-
|
|
16290
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
16180
16291
|
}
|
|
16181
16292
|
}
|
|
16182
16293
|
|
|
16183
16294
|
|
|
16184
16295
|
declare module 'vue' {
|
|
16185
16296
|
interface GlobalComponents {
|
|
16186
|
-
|
|
16297
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
16187
16298
|
}
|
|
16188
16299
|
}
|
|
16189
16300
|
|
|
16190
16301
|
|
|
16191
16302
|
declare module 'vue' {
|
|
16192
16303
|
interface GlobalComponents {
|
|
16193
|
-
|
|
16304
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
16305
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
16194
16306
|
}
|
|
16195
16307
|
}
|
|
16196
16308
|
|
|
16197
16309
|
|
|
16198
16310
|
declare module 'vue' {
|
|
16199
16311
|
interface GlobalComponents {
|
|
16200
|
-
|
|
16201
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16202
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16312
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
16203
16313
|
}
|
|
16204
16314
|
}
|
|
16205
16315
|
|
|
16206
16316
|
|
|
16207
16317
|
declare module 'vue' {
|
|
16208
16318
|
interface GlobalComponents {
|
|
16209
|
-
|
|
16210
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
16211
|
-
SelectLabel: DefineComponent;
|
|
16319
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
16212
16320
|
}
|
|
16213
16321
|
}
|
|
16214
16322
|
|
|
16215
16323
|
|
|
16216
16324
|
declare module 'vue' {
|
|
16217
16325
|
interface GlobalComponents {
|
|
16218
|
-
|
|
16326
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
16219
16327
|
}
|
|
16220
16328
|
}
|
|
16221
16329
|
|
|
16222
16330
|
|
|
16223
16331
|
declare module 'vue' {
|
|
16224
16332
|
interface GlobalComponents {
|
|
16225
|
-
|
|
16333
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
16226
16334
|
}
|
|
16227
16335
|
}
|
|
16228
16336
|
|
|
16229
16337
|
|
|
16230
16338
|
declare module 'vue' {
|
|
16231
16339
|
interface GlobalComponents {
|
|
16232
|
-
|
|
16340
|
+
Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
|
|
16233
16341
|
}
|
|
16234
16342
|
}
|
|
16235
16343
|
|
|
16236
16344
|
|
|
16237
16345
|
declare module 'vue' {
|
|
16238
16346
|
interface GlobalComponents {
|
|
16239
|
-
|
|
16347
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
16240
16348
|
}
|
|
16241
16349
|
}
|
|
16242
16350
|
|
|
16243
16351
|
|
|
16244
|
-
/**
|
|
16245
|
-
* Global component declaration for TypeScript support
|
|
16246
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
16247
|
-
*/
|
|
16248
16352
|
declare module 'vue' {
|
|
16249
16353
|
interface GlobalComponents {
|
|
16250
|
-
|
|
16251
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16354
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
16252
16355
|
}
|
|
16253
16356
|
}
|
|
16254
16357
|
|