@pantograph/vue 0.34.37 → 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 +248 -142
- 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 +101 -94
- package/dist/resolver/index.js +1 -1
- package/dist/resolver/index.umd.cjs +1 -1
- package/dist/resolver.d.ts +101 -94
- package/dist/use/index.js +8347 -8164
- package/dist/use/index.umd.cjs +5 -5
- package/dist/use.d.ts +101 -94
- 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;
|
|
@@ -8731,6 +8755,7 @@ clear: () => any;
|
|
|
8731
8755
|
blur: (event: InputEvent) => any;
|
|
8732
8756
|
change: (value?: number | undefined) => any;
|
|
8733
8757
|
focus: (event: InputEvent) => any;
|
|
8758
|
+
keydown: (event: KeyboardEvent) => any;
|
|
8734
8759
|
pointerdown: (event: PointerEvent) => any;
|
|
8735
8760
|
"update:modelValue": (value?: number | undefined) => any;
|
|
8736
8761
|
step: (event: {
|
|
@@ -8744,6 +8769,7 @@ onClear?: (() => any) | undefined;
|
|
|
8744
8769
|
onBlur?: ((event: InputEvent) => any) | undefined;
|
|
8745
8770
|
onChange?: ((value?: number | undefined) => any) | undefined;
|
|
8746
8771
|
onFocus?: ((event: InputEvent) => any) | undefined;
|
|
8772
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
8747
8773
|
onPointerdown?: ((event: PointerEvent) => any) | undefined;
|
|
8748
8774
|
"onUpdate:modelValue"?: ((value?: number | undefined) => any) | undefined;
|
|
8749
8775
|
onStep?: ((event: {
|
|
@@ -8757,6 +8783,8 @@ bordered: boolean;
|
|
|
8757
8783
|
step: number;
|
|
8758
8784
|
readonly: boolean;
|
|
8759
8785
|
clearIcon: string;
|
|
8786
|
+
saveMode: "blur" | "debounce" | "realValid";
|
|
8787
|
+
debounceDelay: number;
|
|
8760
8788
|
controls: boolean;
|
|
8761
8789
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
8762
8790
|
inputRef: HTMLInputElement;
|
|
@@ -8774,6 +8802,7 @@ export declare interface InputNumberEmits extends HasRootInputEmits, BaseInputEm
|
|
|
8774
8802
|
input: [event?: any];
|
|
8775
8803
|
/** Emitted when the Enter key is pressed */
|
|
8776
8804
|
keydownEnter: [event: KeyboardEvent];
|
|
8805
|
+
keydown: [event: KeyboardEvent];
|
|
8777
8806
|
/** Emitted when the increment/decrement controls are used */
|
|
8778
8807
|
step: [
|
|
8779
8808
|
event: {
|
|
@@ -8789,6 +8818,8 @@ export declare interface InputNumberEmits extends HasRootInputEmits, BaseInputEm
|
|
|
8789
8818
|
* Props for the InputNumber component
|
|
8790
8819
|
*/
|
|
8791
8820
|
export declare interface InputNumberProps extends Omit<BaseInputProps, 'hasValue'> {
|
|
8821
|
+
saveMode?: 'blur' | 'debounce' | 'realValid';
|
|
8822
|
+
debounceDelay?: number;
|
|
8792
8823
|
/** The ID for the input element */
|
|
8793
8824
|
id?: string;
|
|
8794
8825
|
/** The type of input (e.g., number, text) */
|
|
@@ -8827,6 +8858,7 @@ export declare const inputPrefix: string;
|
|
|
8827
8858
|
* Extends BaseInputProps but omits hasValue since it's computed internally.
|
|
8828
8859
|
*/
|
|
8829
8860
|
export declare interface InputProps extends Omit<BaseInputProps, 'hasValue'> {
|
|
8861
|
+
placeholderCls?: ClassValue;
|
|
8830
8862
|
/**
|
|
8831
8863
|
* The ID for the input element
|
|
8832
8864
|
*/
|
|
@@ -8880,6 +8912,7 @@ export declare const InputSizes: readonly ["sm", "md", "lg"];
|
|
|
8880
8912
|
* Extends BaseInputSlots but omits default, extra, and value slots
|
|
8881
8913
|
*/
|
|
8882
8914
|
export declare interface InputSlots extends Omit<BaseInputSlots, 'default' | 'extra' | 'value'> {
|
|
8915
|
+
placeholder?: (data?: object) => never;
|
|
8883
8916
|
}
|
|
8884
8917
|
|
|
8885
8918
|
/**
|
|
@@ -12315,12 +12348,13 @@ export declare interface SelectProps extends SelectRootProps, Omit<SelectTrigger
|
|
|
12315
12348
|
optionContentCls?: ClassValue;
|
|
12316
12349
|
emptyCls?: ClassValue;
|
|
12317
12350
|
skeletonCls?: ClassValue;
|
|
12318
|
-
|
|
12351
|
+
scrollAreaCls?: ClassValue;
|
|
12319
12352
|
emptyProps?: EmptyProps;
|
|
12320
12353
|
samePopupWidth?: boolean;
|
|
12321
12354
|
popupHeight?: string | number;
|
|
12322
12355
|
popupWidth?: string | number;
|
|
12323
12356
|
minWidth?: string | number;
|
|
12357
|
+
triggerMinWidth?: string | number;
|
|
12324
12358
|
}
|
|
12325
12359
|
|
|
12326
12360
|
/**
|
|
@@ -12588,7 +12622,72 @@ export declare type SkeletonType = (typeof SkeletonTypes)[number];
|
|
|
12588
12622
|
*/
|
|
12589
12623
|
export declare const SkeletonTypes: readonly ["avatar", "input", "button", "paragraph", "headline", "list", "base", "custom", "custom-items"];
|
|
12590
12624
|
|
|
12591
|
-
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<{}>, {
|
|
12592
12691
|
disabled: boolean;
|
|
12593
12692
|
status: "error" | "current" | "completed" | "upcoming";
|
|
12594
12693
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<StepItemSlots> & StepItemSlots>;
|
|
@@ -12781,7 +12880,7 @@ export declare const StepperSizes: readonly ["sm", "md", "lg"];
|
|
|
12781
12880
|
*/
|
|
12782
12881
|
export declare const stepPrefix: string;
|
|
12783
12882
|
|
|
12784
|
-
export declare const Steps:
|
|
12883
|
+
export declare const Steps: __VLS_WithTemplateSlots_71<DefineComponent<StepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12785
12884
|
change: (value?: number | undefined) => any;
|
|
12786
12885
|
"update:modelValue": (value?: number | undefined) => any;
|
|
12787
12886
|
}, string, PublicProps, Readonly<StepsProps> & Readonly<{
|
|
@@ -12894,7 +12993,7 @@ export declare const SUB_MENU_DEFAULT_PROPS: {
|
|
|
12894
12993
|
readonly branchIcon: "tabler:chevron-right";
|
|
12895
12994
|
};
|
|
12896
12995
|
|
|
12897
|
-
export declare const SubMenu:
|
|
12996
|
+
export declare const SubMenu: __VLS_WithTemplateSlots_73<DefineComponent<SubMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12898
12997
|
"update:open": (value: boolean) => any;
|
|
12899
12998
|
}, string, PublicProps, Readonly<SubMenuProps> & Readonly<{
|
|
12900
12999
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
@@ -12967,7 +13066,7 @@ export declare interface SubMenuSlots extends MenuItemSlots {
|
|
|
12967
13066
|
}) => never;
|
|
12968
13067
|
}
|
|
12969
13068
|
|
|
12970
|
-
export declare const Switch:
|
|
13069
|
+
export declare const Switch: __VLS_WithTemplateSlots_74<DefineComponent<SwitchProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12971
13070
|
blur: (e: InputEvent) => any;
|
|
12972
13071
|
change: (value: boolean) => any;
|
|
12973
13072
|
focus: (e: InputEvent) => any;
|
|
@@ -13085,11 +13184,11 @@ export declare interface SwitchSlots {
|
|
|
13085
13184
|
}) => never;
|
|
13086
13185
|
}
|
|
13087
13186
|
|
|
13088
|
-
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>, {
|
|
13089
13188
|
default?(_: {}): any;
|
|
13090
13189
|
}>;
|
|
13091
13190
|
|
|
13092
|
-
export declare const Table:
|
|
13191
|
+
export declare const Table: __VLS_WithTemplateSlots_75<DefineComponent<TableProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TableProps> & Readonly<{}>, {
|
|
13093
13192
|
size: "lg" | "xlg";
|
|
13094
13193
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableElement>, {
|
|
13095
13194
|
default?(_: {}): any;
|
|
@@ -13127,7 +13226,7 @@ export declare type TableSize = (typeof TableSizes)[number];
|
|
|
13127
13226
|
*/
|
|
13128
13227
|
export declare const TableSizes: readonly ["lg", "xlg"];
|
|
13129
13228
|
|
|
13130
|
-
export declare const TabList:
|
|
13229
|
+
export declare const TabList: __VLS_WithTemplateSlots_83<DefineComponent<TabListProps, {
|
|
13131
13230
|
measure: () => void;
|
|
13132
13231
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TabListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
13133
13232
|
leftScrollRef: ({
|
|
@@ -13592,7 +13691,7 @@ export declare interface TabListSlots {
|
|
|
13592
13691
|
default?: (data?: object) => never;
|
|
13593
13692
|
}
|
|
13594
13693
|
|
|
13595
|
-
export declare const Tabs:
|
|
13694
|
+
export declare const Tabs: __VLS_WithTemplateSlots_82<DefineComponent<TabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13596
13695
|
change: (payload: string | number) => any;
|
|
13597
13696
|
"update:modelValue": (payload: string | number) => any;
|
|
13598
13697
|
dragStart: (event: SortableEvent, sortable: pantographSortable) => any;
|
|
@@ -13739,7 +13838,7 @@ declare interface TabsTriggerProps extends PrimitiveProps {
|
|
|
13739
13838
|
disabled?: boolean;
|
|
13740
13839
|
}
|
|
13741
13840
|
|
|
13742
|
-
export declare const TabTrigger:
|
|
13841
|
+
export declare const TabTrigger: __VLS_WithTemplateSlots_84<DefineComponent<TabTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TabTriggerProps> & Readonly<{}>, {
|
|
13743
13842
|
loading: boolean;
|
|
13744
13843
|
draggable: boolean;
|
|
13745
13844
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<TabTriggerSlots> & TabTriggerSlots>;
|
|
@@ -13788,7 +13887,7 @@ export declare interface TabTriggerSlots {
|
|
|
13788
13887
|
badgeIcon?: (data?: object) => never;
|
|
13789
13888
|
}
|
|
13790
13889
|
|
|
13791
|
-
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>, {
|
|
13792
13891
|
default?(_: {}): any;
|
|
13793
13892
|
}>;
|
|
13794
13893
|
|
|
@@ -13800,7 +13899,7 @@ export declare interface TBodyProps {
|
|
|
13800
13899
|
class?: ClassValue;
|
|
13801
13900
|
}
|
|
13802
13901
|
|
|
13803
|
-
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>;
|
|
13804
13903
|
|
|
13805
13904
|
/**
|
|
13806
13905
|
* Props for the Td component (table data cell)
|
|
@@ -13962,7 +14061,7 @@ export declare type TextareaStatus = (typeof TextareaStatuses)[number];
|
|
|
13962
14061
|
*/
|
|
13963
14062
|
export declare const TextareaStatuses: readonly ["error", "warning", "success", "none"];
|
|
13964
14063
|
|
|
13965
|
-
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>, {
|
|
13966
14065
|
default?(_: {}): any;
|
|
13967
14066
|
}>;
|
|
13968
14067
|
|
|
@@ -13976,9 +14075,9 @@ export declare interface TFootProps {
|
|
|
13976
14075
|
sticky?: boolean;
|
|
13977
14076
|
}
|
|
13978
14077
|
|
|
13979
|
-
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>;
|
|
13980
14079
|
|
|
13981
|
-
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>, {
|
|
13982
14081
|
default?(_: {}): any;
|
|
13983
14082
|
}>;
|
|
13984
14083
|
|
|
@@ -14022,7 +14121,7 @@ export declare interface ThSlots {
|
|
|
14022
14121
|
after: (params?: object) => never;
|
|
14023
14122
|
}
|
|
14024
14123
|
|
|
14025
|
-
export declare const Toast:
|
|
14124
|
+
export declare const Toast: __VLS_WithTemplateSlots_86<DefineComponent<ToastProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14026
14125
|
cancel: (e: PointerEvent) => any;
|
|
14027
14126
|
ok: (e: PointerEvent) => any;
|
|
14028
14127
|
closeNotification: (e: PointerEvent) => any;
|
|
@@ -14180,7 +14279,7 @@ export declare type ToastType = (typeof ToastTypes)[number];
|
|
|
14180
14279
|
*/
|
|
14181
14280
|
export declare const ToastTypes: readonly ["info", "success", "warning", "error"];
|
|
14182
14281
|
|
|
14183
|
-
export declare const Tooltip:
|
|
14282
|
+
export declare const Tooltip: __VLS_WithTemplateSlots_87<DefineComponent<TooltipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14184
14283
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14185
14284
|
pointerDownOutside: (event: Event) => any;
|
|
14186
14285
|
"update:open": (value: boolean) => any;
|
|
@@ -14313,7 +14412,7 @@ export declare interface TooltipProps extends TooltipRootProps, TooltipProviderP
|
|
|
14313
14412
|
wrapperCls?: string;
|
|
14314
14413
|
}
|
|
14315
14414
|
|
|
14316
|
-
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>, {
|
|
14317
14416
|
default?(_: {}): any;
|
|
14318
14417
|
}>;
|
|
14319
14418
|
|
|
@@ -14469,11 +14568,11 @@ export declare interface TooltipSlots {
|
|
|
14469
14568
|
|
|
14470
14569
|
declare interface TooltipTriggerProps extends PopperAnchorProps {}
|
|
14471
14570
|
|
|
14472
|
-
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>, {
|
|
14473
14572
|
default?(_: {}): any;
|
|
14474
14573
|
}>;
|
|
14475
14574
|
|
|
14476
|
-
export declare const Tree:
|
|
14575
|
+
export declare const Tree: __VLS_WithTemplateSlots_89<DefineComponent<TreeProps, {
|
|
14477
14576
|
disabled: ComputedRef<boolean | undefined>;
|
|
14478
14577
|
props: TreeProps;
|
|
14479
14578
|
dir: ComputedRef<Direction | undefined>;
|
|
@@ -14706,7 +14805,7 @@ export declare type TreeItem = object & TreeFlattenItem & {
|
|
|
14706
14805
|
_hidden?: boolean;
|
|
14707
14806
|
};
|
|
14708
14807
|
|
|
14709
|
-
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>;
|
|
14710
14809
|
|
|
14711
14810
|
/**
|
|
14712
14811
|
* Props for the TreeNode component
|
|
@@ -14921,7 +15020,7 @@ export declare interface TrProps {
|
|
|
14921
15020
|
onMouseleave?: (event: MouseEvent) => void;
|
|
14922
15021
|
}
|
|
14923
15022
|
|
|
14924
|
-
export declare const Upload:
|
|
15023
|
+
export declare const Upload: __VLS_WithTemplateSlots_91<DefineComponent<UploadProps, {
|
|
14925
15024
|
listRef: Ref<any, any>;
|
|
14926
15025
|
progressSize: ComputedRef<any>;
|
|
14927
15026
|
resetRequest: ComputedRef<any>;
|
|
@@ -15315,7 +15414,7 @@ export declare interface UploadItemCustomActions {
|
|
|
15315
15414
|
remove?: boolean;
|
|
15316
15415
|
}
|
|
15317
15416
|
|
|
15318
|
-
export declare const UploadList:
|
|
15417
|
+
export declare const UploadList: __VLS_WithTemplateSlots_92<DefineComponent<Partial<UploadProps>, {
|
|
15319
15418
|
addFiles: (files: File[]) => void;
|
|
15320
15419
|
fileList: Ref<UploadFile[], UploadFile[]>;
|
|
15321
15420
|
getAccept: ComputedRef<string | undefined>;
|
|
@@ -15486,7 +15585,7 @@ export declare type UploadStatus = (typeof UploadStatuses)[number];
|
|
|
15486
15585
|
*/
|
|
15487
15586
|
export declare const UploadStatuses: readonly ["error", "paused", "done", "uploading", "waiting"];
|
|
15488
15587
|
|
|
15489
|
-
export declare const UploadTrigger:
|
|
15588
|
+
export declare const UploadTrigger: __VLS_WithTemplateSlots_93<DefineComponent<UploadBaseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
15490
15589
|
addFiles: (files: File[]) => any;
|
|
15491
15590
|
}, string, PublicProps, Readonly<UploadBaseProps> & Readonly<{
|
|
15492
15591
|
onAddFiles?: ((files: File[]) => any) | undefined;
|
|
@@ -15738,30 +15837,32 @@ export declare type VisibleColorPair = Exclude<ColorPair, ColorPairHsv>;
|
|
|
15738
15837
|
export { }
|
|
15739
15838
|
|
|
15740
15839
|
|
|
15840
|
+
/** component declare **/
|
|
15741
15841
|
declare module 'vue' {
|
|
15742
15842
|
interface GlobalComponents {
|
|
15743
|
-
|
|
15843
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
15844
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
15744
15845
|
}
|
|
15745
15846
|
}
|
|
15746
15847
|
|
|
15747
15848
|
|
|
15748
15849
|
declare module 'vue' {
|
|
15749
15850
|
interface GlobalComponents {
|
|
15750
|
-
|
|
15851
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
15751
15852
|
}
|
|
15752
15853
|
}
|
|
15753
15854
|
|
|
15754
15855
|
|
|
15755
15856
|
declare module 'vue' {
|
|
15756
15857
|
interface GlobalComponents {
|
|
15757
|
-
|
|
15858
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
15758
15859
|
}
|
|
15759
15860
|
}
|
|
15760
15861
|
|
|
15761
15862
|
|
|
15762
15863
|
declare module 'vue' {
|
|
15763
15864
|
interface GlobalComponents {
|
|
15764
|
-
|
|
15865
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
15765
15866
|
}
|
|
15766
15867
|
}
|
|
15767
15868
|
|
|
@@ -15775,461 +15876,456 @@ declare module 'vue' {
|
|
|
15775
15876
|
|
|
15776
15877
|
declare module 'vue' {
|
|
15777
15878
|
interface GlobalComponents {
|
|
15778
|
-
|
|
15879
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
15779
15880
|
}
|
|
15780
15881
|
}
|
|
15781
15882
|
|
|
15782
15883
|
|
|
15783
15884
|
declare module 'vue' {
|
|
15784
15885
|
interface GlobalComponents {
|
|
15785
|
-
|
|
15886
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
15786
15887
|
}
|
|
15787
15888
|
}
|
|
15788
15889
|
|
|
15789
15890
|
|
|
15790
15891
|
declare module 'vue' {
|
|
15791
15892
|
interface GlobalComponents {
|
|
15792
|
-
|
|
15893
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
15793
15894
|
}
|
|
15794
15895
|
}
|
|
15795
15896
|
|
|
15796
15897
|
|
|
15797
15898
|
declare module 'vue' {
|
|
15798
15899
|
interface GlobalComponents {
|
|
15799
|
-
|
|
15900
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
15800
15901
|
}
|
|
15801
15902
|
}
|
|
15802
15903
|
|
|
15803
15904
|
|
|
15804
15905
|
declare module 'vue' {
|
|
15805
15906
|
interface GlobalComponents {
|
|
15806
|
-
|
|
15907
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
15807
15908
|
}
|
|
15808
15909
|
}
|
|
15809
15910
|
|
|
15810
15911
|
|
|
15811
15912
|
declare module 'vue' {
|
|
15812
15913
|
interface GlobalComponents {
|
|
15813
|
-
|
|
15914
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
15814
15915
|
}
|
|
15815
15916
|
}
|
|
15816
15917
|
|
|
15817
15918
|
|
|
15818
15919
|
declare module 'vue' {
|
|
15819
15920
|
interface GlobalComponents {
|
|
15820
|
-
|
|
15921
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
15922
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
15821
15923
|
}
|
|
15822
15924
|
}
|
|
15823
15925
|
|
|
15824
15926
|
|
|
15825
15927
|
declare module 'vue' {
|
|
15826
15928
|
interface GlobalComponents {
|
|
15827
|
-
|
|
15929
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
15828
15930
|
}
|
|
15829
15931
|
}
|
|
15830
15932
|
|
|
15831
15933
|
|
|
15832
15934
|
declare module 'vue' {
|
|
15833
15935
|
interface GlobalComponents {
|
|
15834
|
-
|
|
15936
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
15835
15937
|
}
|
|
15836
15938
|
}
|
|
15837
15939
|
|
|
15838
15940
|
|
|
15839
15941
|
declare module 'vue' {
|
|
15840
15942
|
interface GlobalComponents {
|
|
15841
|
-
|
|
15943
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
15842
15944
|
}
|
|
15843
15945
|
}
|
|
15844
15946
|
|
|
15845
15947
|
|
|
15846
15948
|
declare module 'vue' {
|
|
15847
15949
|
interface GlobalComponents {
|
|
15848
|
-
|
|
15950
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
15849
15951
|
}
|
|
15850
15952
|
}
|
|
15851
15953
|
|
|
15852
15954
|
|
|
15853
15955
|
declare module 'vue' {
|
|
15854
15956
|
interface GlobalComponents {
|
|
15855
|
-
|
|
15957
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
15856
15958
|
}
|
|
15857
15959
|
}
|
|
15858
15960
|
|
|
15859
15961
|
|
|
15860
15962
|
declare module 'vue' {
|
|
15861
15963
|
interface GlobalComponents {
|
|
15862
|
-
|
|
15964
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
15863
15965
|
}
|
|
15864
15966
|
}
|
|
15865
15967
|
|
|
15866
15968
|
|
|
15867
15969
|
declare module 'vue' {
|
|
15868
15970
|
interface GlobalComponents {
|
|
15869
|
-
|
|
15971
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
15870
15972
|
}
|
|
15871
15973
|
}
|
|
15872
15974
|
|
|
15873
15975
|
|
|
15874
15976
|
declare module 'vue' {
|
|
15875
15977
|
interface GlobalComponents {
|
|
15876
|
-
|
|
15978
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
15877
15979
|
}
|
|
15878
15980
|
}
|
|
15879
15981
|
|
|
15880
15982
|
|
|
15881
15983
|
declare module 'vue' {
|
|
15882
15984
|
interface GlobalComponents {
|
|
15883
|
-
|
|
15985
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
15884
15986
|
}
|
|
15885
15987
|
}
|
|
15886
15988
|
|
|
15887
15989
|
|
|
15888
15990
|
declare module 'vue' {
|
|
15889
15991
|
interface GlobalComponents {
|
|
15890
|
-
|
|
15992
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
15891
15993
|
}
|
|
15892
15994
|
}
|
|
15893
15995
|
|
|
15894
15996
|
|
|
15895
15997
|
declare module 'vue' {
|
|
15896
15998
|
interface GlobalComponents {
|
|
15897
|
-
|
|
15999
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
15898
16000
|
}
|
|
15899
16001
|
}
|
|
15900
16002
|
|
|
15901
16003
|
|
|
15902
16004
|
declare module 'vue' {
|
|
15903
16005
|
interface GlobalComponents {
|
|
15904
|
-
|
|
16006
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
15905
16007
|
}
|
|
15906
16008
|
}
|
|
15907
16009
|
|
|
15908
16010
|
|
|
15909
16011
|
declare module 'vue' {
|
|
15910
16012
|
interface GlobalComponents {
|
|
15911
|
-
|
|
16013
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
15912
16014
|
}
|
|
15913
16015
|
}
|
|
15914
16016
|
|
|
15915
16017
|
|
|
15916
16018
|
declare module 'vue' {
|
|
15917
16019
|
interface GlobalComponents {
|
|
15918
|
-
|
|
16020
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
15919
16021
|
}
|
|
15920
16022
|
}
|
|
15921
16023
|
|
|
15922
16024
|
|
|
15923
16025
|
declare module 'vue' {
|
|
15924
16026
|
interface GlobalComponents {
|
|
15925
|
-
|
|
16027
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
16028
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
15926
16029
|
}
|
|
15927
16030
|
}
|
|
15928
16031
|
|
|
15929
16032
|
|
|
15930
16033
|
declare module 'vue' {
|
|
15931
16034
|
interface GlobalComponents {
|
|
15932
|
-
|
|
16035
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
15933
16036
|
}
|
|
15934
16037
|
}
|
|
15935
16038
|
|
|
15936
16039
|
|
|
15937
16040
|
declare module 'vue' {
|
|
15938
16041
|
interface GlobalComponents {
|
|
15939
|
-
|
|
15940
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
16042
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
15941
16043
|
}
|
|
15942
16044
|
}
|
|
15943
16045
|
|
|
15944
16046
|
|
|
15945
16047
|
declare module 'vue' {
|
|
15946
16048
|
interface GlobalComponents {
|
|
15947
|
-
|
|
16049
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
15948
16050
|
}
|
|
15949
16051
|
}
|
|
15950
16052
|
|
|
15951
16053
|
|
|
15952
16054
|
declare module 'vue' {
|
|
15953
16055
|
interface GlobalComponents {
|
|
15954
|
-
|
|
16056
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
15955
16057
|
}
|
|
15956
16058
|
}
|
|
15957
16059
|
|
|
15958
16060
|
|
|
15959
16061
|
declare module 'vue' {
|
|
15960
16062
|
interface GlobalComponents {
|
|
15961
|
-
|
|
16063
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
15962
16064
|
}
|
|
15963
16065
|
}
|
|
15964
16066
|
|
|
15965
16067
|
|
|
15966
16068
|
declare module 'vue' {
|
|
15967
16069
|
interface GlobalComponents {
|
|
15968
|
-
|
|
16070
|
+
Icon: DefineComponent<IconProps>;
|
|
15969
16071
|
}
|
|
15970
16072
|
}
|
|
15971
16073
|
|
|
15972
16074
|
|
|
15973
16075
|
declare module 'vue' {
|
|
15974
16076
|
interface GlobalComponents {
|
|
15975
|
-
|
|
16077
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
15976
16078
|
}
|
|
15977
16079
|
}
|
|
15978
16080
|
|
|
15979
16081
|
|
|
15980
16082
|
declare module 'vue' {
|
|
15981
16083
|
interface GlobalComponents {
|
|
15982
|
-
|
|
16084
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
15983
16085
|
}
|
|
15984
16086
|
}
|
|
15985
16087
|
|
|
15986
16088
|
|
|
15987
16089
|
declare module 'vue' {
|
|
15988
16090
|
interface GlobalComponents {
|
|
15989
|
-
|
|
15990
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
16091
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
15991
16092
|
}
|
|
15992
16093
|
}
|
|
15993
16094
|
|
|
15994
16095
|
|
|
15995
16096
|
declare module 'vue' {
|
|
15996
16097
|
interface GlobalComponents {
|
|
15997
|
-
|
|
16098
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
15998
16099
|
}
|
|
15999
16100
|
}
|
|
16000
16101
|
|
|
16001
16102
|
|
|
16002
16103
|
declare module 'vue' {
|
|
16003
16104
|
interface GlobalComponents {
|
|
16004
|
-
|
|
16105
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
16005
16106
|
}
|
|
16006
16107
|
}
|
|
16007
16108
|
|
|
16008
16109
|
|
|
16009
|
-
/** component declare **/
|
|
16010
16110
|
declare module 'vue' {
|
|
16011
16111
|
interface GlobalComponents {
|
|
16012
|
-
|
|
16013
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
16112
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
16014
16113
|
}
|
|
16015
16114
|
}
|
|
16016
16115
|
|
|
16017
16116
|
|
|
16018
16117
|
declare module 'vue' {
|
|
16019
16118
|
interface GlobalComponents {
|
|
16020
|
-
|
|
16021
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
16022
|
-
ComboboxOption: DefineComponent;
|
|
16119
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
16023
16120
|
}
|
|
16024
16121
|
}
|
|
16025
16122
|
|
|
16026
16123
|
|
|
16027
16124
|
declare module 'vue' {
|
|
16028
16125
|
interface GlobalComponents {
|
|
16029
|
-
|
|
16126
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
16127
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
16128
|
+
ComboboxOption: DefineComponent;
|
|
16030
16129
|
}
|
|
16031
16130
|
}
|
|
16032
16131
|
|
|
16033
16132
|
|
|
16034
16133
|
declare module 'vue' {
|
|
16035
16134
|
interface GlobalComponents {
|
|
16036
|
-
|
|
16135
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
16136
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
16037
16137
|
}
|
|
16038
16138
|
}
|
|
16039
16139
|
|
|
16040
16140
|
|
|
16041
16141
|
declare module 'vue' {
|
|
16042
16142
|
interface GlobalComponents {
|
|
16043
|
-
|
|
16143
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
16044
16144
|
}
|
|
16045
16145
|
}
|
|
16046
16146
|
|
|
16047
16147
|
|
|
16048
16148
|
declare module 'vue' {
|
|
16049
16149
|
interface GlobalComponents {
|
|
16050
|
-
|
|
16150
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
16051
16151
|
}
|
|
16052
16152
|
}
|
|
16053
16153
|
|
|
16054
16154
|
|
|
16055
16155
|
declare module 'vue' {
|
|
16056
16156
|
interface GlobalComponents {
|
|
16057
|
-
|
|
16157
|
+
Divider: DefineComponent<DividerProps>;
|
|
16058
16158
|
}
|
|
16059
16159
|
}
|
|
16060
16160
|
|
|
16061
16161
|
|
|
16062
16162
|
declare module 'vue' {
|
|
16063
16163
|
interface GlobalComponents {
|
|
16064
|
-
|
|
16164
|
+
Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
|
|
16065
16165
|
}
|
|
16066
16166
|
}
|
|
16067
16167
|
|
|
16068
16168
|
|
|
16069
16169
|
declare module 'vue' {
|
|
16070
16170
|
interface GlobalComponents {
|
|
16071
|
-
|
|
16171
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
16172
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16072
16173
|
}
|
|
16073
16174
|
}
|
|
16074
16175
|
|
|
16075
16176
|
|
|
16076
16177
|
declare module 'vue' {
|
|
16077
16178
|
interface GlobalComponents {
|
|
16078
|
-
|
|
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>;
|
|
16079
16186
|
}
|
|
16080
16187
|
}
|
|
16081
16188
|
|
|
16082
16189
|
|
|
16083
16190
|
declare module 'vue' {
|
|
16084
16191
|
interface GlobalComponents {
|
|
16085
|
-
|
|
16192
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
16086
16193
|
}
|
|
16087
16194
|
}
|
|
16088
16195
|
|
|
16089
16196
|
|
|
16090
16197
|
declare module 'vue' {
|
|
16091
16198
|
interface GlobalComponents {
|
|
16092
|
-
|
|
16199
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
16093
16200
|
}
|
|
16094
16201
|
}
|
|
16095
16202
|
|
|
16096
16203
|
|
|
16097
16204
|
declare module 'vue' {
|
|
16098
16205
|
interface GlobalComponents {
|
|
16099
|
-
|
|
16206
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
16100
16207
|
}
|
|
16101
16208
|
}
|
|
16102
16209
|
|
|
16103
16210
|
|
|
16104
16211
|
declare module 'vue' {
|
|
16105
16212
|
interface GlobalComponents {
|
|
16106
|
-
|
|
16107
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16213
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
16108
16214
|
}
|
|
16109
16215
|
}
|
|
16110
16216
|
|
|
16111
16217
|
|
|
16112
16218
|
declare module 'vue' {
|
|
16113
16219
|
interface GlobalComponents {
|
|
16114
|
-
|
|
16115
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16220
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
16116
16221
|
}
|
|
16117
16222
|
}
|
|
16118
16223
|
|
|
16119
16224
|
|
|
16120
16225
|
declare module 'vue' {
|
|
16121
16226
|
interface GlobalComponents {
|
|
16122
|
-
|
|
16123
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
16124
|
-
SelectLabel: DefineComponent;
|
|
16227
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
16125
16228
|
}
|
|
16126
16229
|
}
|
|
16127
16230
|
|
|
16128
16231
|
|
|
16129
16232
|
declare module 'vue' {
|
|
16130
16233
|
interface GlobalComponents {
|
|
16131
|
-
|
|
16234
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
16132
16235
|
}
|
|
16133
16236
|
}
|
|
16134
16237
|
|
|
16135
16238
|
|
|
16136
16239
|
declare module 'vue' {
|
|
16137
16240
|
interface GlobalComponents {
|
|
16138
|
-
|
|
16241
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
16139
16242
|
}
|
|
16140
16243
|
}
|
|
16141
16244
|
|
|
16142
16245
|
|
|
16143
16246
|
declare module 'vue' {
|
|
16144
16247
|
interface GlobalComponents {
|
|
16145
|
-
|
|
16248
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
16249
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16146
16250
|
}
|
|
16147
16251
|
}
|
|
16148
16252
|
|
|
16149
16253
|
|
|
16150
16254
|
declare module 'vue' {
|
|
16151
16255
|
interface GlobalComponents {
|
|
16152
|
-
|
|
16153
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16154
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16155
|
-
TabContent: DefineComponent;
|
|
16256
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
16156
16257
|
}
|
|
16157
16258
|
}
|
|
16158
16259
|
|
|
16159
16260
|
|
|
16160
16261
|
declare module 'vue' {
|
|
16161
16262
|
interface GlobalComponents {
|
|
16162
|
-
|
|
16163
|
-
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
16263
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
16164
16264
|
}
|
|
16165
16265
|
}
|
|
16166
16266
|
|
|
16167
16267
|
|
|
16168
16268
|
declare module 'vue' {
|
|
16169
16269
|
interface GlobalComponents {
|
|
16170
|
-
|
|
16171
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
16172
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
16173
|
-
Tr: DefineComponent<TrProps>;
|
|
16174
|
-
TBody: DefineComponent<TBodyProps>;
|
|
16175
|
-
THead: DefineComponent<THeadProps>;
|
|
16176
|
-
TFoot: DefineComponent<TFootProps>;
|
|
16270
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
16177
16271
|
}
|
|
16178
16272
|
}
|
|
16179
16273
|
|
|
16180
16274
|
|
|
16275
|
+
/**
|
|
16276
|
+
* Global component declaration for TypeScript support
|
|
16277
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
16278
|
+
*/
|
|
16181
16279
|
declare module 'vue' {
|
|
16182
16280
|
interface GlobalComponents {
|
|
16183
|
-
|
|
16281
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
16282
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16184
16283
|
}
|
|
16185
16284
|
}
|
|
16186
16285
|
|
|
16187
16286
|
|
|
16188
16287
|
declare module 'vue' {
|
|
16189
16288
|
interface GlobalComponents {
|
|
16190
|
-
|
|
16191
|
-
|
|
16289
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
16290
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16192
16291
|
}
|
|
16193
16292
|
}
|
|
16194
16293
|
|
|
16195
16294
|
|
|
16196
16295
|
declare module 'vue' {
|
|
16197
16296
|
interface GlobalComponents {
|
|
16198
|
-
|
|
16297
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
16199
16298
|
}
|
|
16200
16299
|
}
|
|
16201
16300
|
|
|
16202
16301
|
|
|
16203
16302
|
declare module 'vue' {
|
|
16204
16303
|
interface GlobalComponents {
|
|
16205
|
-
|
|
16206
|
-
|
|
16304
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
16305
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
16207
16306
|
}
|
|
16208
16307
|
}
|
|
16209
16308
|
|
|
16210
16309
|
|
|
16211
16310
|
declare module 'vue' {
|
|
16212
16311
|
interface GlobalComponents {
|
|
16213
|
-
|
|
16312
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
16313
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
16314
|
+
SelectLabel: DefineComponent;
|
|
16214
16315
|
}
|
|
16215
16316
|
}
|
|
16216
16317
|
|
|
16217
16318
|
|
|
16218
16319
|
declare module 'vue' {
|
|
16219
16320
|
interface GlobalComponents {
|
|
16220
|
-
|
|
16321
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
16221
16322
|
}
|
|
16222
16323
|
}
|
|
16223
16324
|
|
|
16224
16325
|
|
|
16225
|
-
/**
|
|
16226
|
-
* Global component declaration for TypeScript support
|
|
16227
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
16228
|
-
*/
|
|
16229
16326
|
declare module 'vue' {
|
|
16230
16327
|
interface GlobalComponents {
|
|
16231
|
-
|
|
16232
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16328
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
16233
16329
|
}
|
|
16234
16330
|
}
|
|
16235
16331
|
|
|
@@ -16245,7 +16341,17 @@ declare module 'vue' {
|
|
|
16245
16341
|
|
|
16246
16342
|
declare module 'vue' {
|
|
16247
16343
|
interface GlobalComponents {
|
|
16248
|
-
|
|
16344
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
16345
|
+
}
|
|
16346
|
+
}
|
|
16347
|
+
|
|
16348
|
+
|
|
16349
|
+
declare module 'vue' {
|
|
16350
|
+
interface GlobalComponents {
|
|
16351
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
16352
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16353
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16354
|
+
TabContent: DefineComponent;
|
|
16249
16355
|
}
|
|
16250
16356
|
}
|
|
16251
16357
|
|