@pantograph/vue 0.34.36 → 0.34.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +122 -95
- package/dist/index.js +309 -308
- package/dist/index.umd.cjs +1 -1
- package/dist/nuxt.d.ts +95 -95
- package/dist/resolver.d.ts +95 -95
- package/dist/use/index.js +3470 -3446
- package/dist/use/index.umd.cjs +5 -5
- package/dist/use.d.ts +95 -95
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4351,6 +4351,20 @@ export declare const COMBO_BOX_DEFAULT_PROPS: {
|
|
|
4351
4351
|
readonly showTreeTagStrategy: "all";
|
|
4352
4352
|
};
|
|
4353
4353
|
|
|
4354
|
+
export declare const COMBO_BOX_TRIGGER_DEFAULT_PROPS: {
|
|
4355
|
+
readonly triggerOnly: true;
|
|
4356
|
+
readonly disabled: undefined;
|
|
4357
|
+
readonly multiple: undefined;
|
|
4358
|
+
readonly bordered: true;
|
|
4359
|
+
readonly open: undefined;
|
|
4360
|
+
readonly readonly: undefined;
|
|
4361
|
+
readonly trailingIcon: "tabler:chevron-down";
|
|
4362
|
+
readonly selectedItemIconAsTrailingIcon: true;
|
|
4363
|
+
readonly noValueOnPlaceholder: undefined;
|
|
4364
|
+
readonly showTreeTagStrategy: "all";
|
|
4365
|
+
readonly tagRenderMode: "chip";
|
|
4366
|
+
};
|
|
4367
|
+
|
|
4354
4368
|
export declare const Combobox: __VLS_WithTemplateSlots_24<DefineComponent<ComboboxProps, {
|
|
4355
4369
|
/**
|
|
4356
4370
|
* Combobox Component
|
|
@@ -5386,6 +5400,16 @@ export declare const ComboboxTreeTagStrategies: readonly ["all", "parent", "chil
|
|
|
5386
5400
|
export declare type ComboboxTreeTagStrategy = (typeof ComboboxTreeTagStrategies)[number];
|
|
5387
5401
|
|
|
5388
5402
|
export declare const ComboboxTrigger: __VLS_WithTemplateSlots_27<DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {
|
|
5403
|
+
disabled: boolean;
|
|
5404
|
+
multiple: boolean;
|
|
5405
|
+
bordered: boolean;
|
|
5406
|
+
open: boolean;
|
|
5407
|
+
readonly: boolean;
|
|
5408
|
+
trailingIcon: string | boolean;
|
|
5409
|
+
selectedItemIconAsTrailingIcon: boolean;
|
|
5410
|
+
noValueOnPlaceholder: boolean;
|
|
5411
|
+
showTreeTagStrategy: "all" | "child" | "parent";
|
|
5412
|
+
tagRenderMode: "go" | "avatar" | "chip";
|
|
5389
5413
|
triggerOnly: boolean;
|
|
5390
5414
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<Partial<Pick<ComboboxSlots, "trigger" | "optionLeading" | "triggerTrailing" | "tagLeading">>> & Partial<Pick<ComboboxSlots, "trigger" | "optionLeading" | "triggerTrailing" | "tagLeading">>>;
|
|
5391
5415
|
|
|
@@ -8707,6 +8731,7 @@ clear: () => any;
|
|
|
8707
8731
|
blur: (event: InputEvent) => any;
|
|
8708
8732
|
change: (value?: number | undefined) => any;
|
|
8709
8733
|
focus: (event: InputEvent) => any;
|
|
8734
|
+
keydown: (event: KeyboardEvent) => any;
|
|
8710
8735
|
pointerdown: (event: PointerEvent) => any;
|
|
8711
8736
|
"update:modelValue": (value?: number | undefined) => any;
|
|
8712
8737
|
step: (event: {
|
|
@@ -8720,6 +8745,7 @@ onClear?: (() => any) | undefined;
|
|
|
8720
8745
|
onBlur?: ((event: InputEvent) => any) | undefined;
|
|
8721
8746
|
onChange?: ((value?: number | undefined) => any) | undefined;
|
|
8722
8747
|
onFocus?: ((event: InputEvent) => any) | undefined;
|
|
8748
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
8723
8749
|
onPointerdown?: ((event: PointerEvent) => any) | undefined;
|
|
8724
8750
|
"onUpdate:modelValue"?: ((value?: number | undefined) => any) | undefined;
|
|
8725
8751
|
onStep?: ((event: {
|
|
@@ -8750,6 +8776,7 @@ export declare interface InputNumberEmits extends HasRootInputEmits, BaseInputEm
|
|
|
8750
8776
|
input: [event?: any];
|
|
8751
8777
|
/** Emitted when the Enter key is pressed */
|
|
8752
8778
|
keydownEnter: [event: KeyboardEvent];
|
|
8779
|
+
keydown: [event: KeyboardEvent];
|
|
8753
8780
|
/** Emitted when the increment/decrement controls are used */
|
|
8754
8781
|
step: [
|
|
8755
8782
|
event: {
|
|
@@ -15716,21 +15743,21 @@ export { }
|
|
|
15716
15743
|
|
|
15717
15744
|
declare module 'vue' {
|
|
15718
15745
|
interface GlobalComponents {
|
|
15719
|
-
|
|
15746
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
15720
15747
|
}
|
|
15721
15748
|
}
|
|
15722
15749
|
|
|
15723
15750
|
|
|
15724
15751
|
declare module 'vue' {
|
|
15725
15752
|
interface GlobalComponents {
|
|
15726
|
-
|
|
15753
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
15727
15754
|
}
|
|
15728
15755
|
}
|
|
15729
15756
|
|
|
15730
15757
|
|
|
15731
15758
|
declare module 'vue' {
|
|
15732
15759
|
interface GlobalComponents {
|
|
15733
|
-
|
|
15760
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
15734
15761
|
}
|
|
15735
15762
|
}
|
|
15736
15763
|
|
|
@@ -15744,296 +15771,284 @@ declare module 'vue' {
|
|
|
15744
15771
|
|
|
15745
15772
|
declare module 'vue' {
|
|
15746
15773
|
interface GlobalComponents {
|
|
15747
|
-
|
|
15774
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
15748
15775
|
}
|
|
15749
15776
|
}
|
|
15750
15777
|
|
|
15751
15778
|
|
|
15752
15779
|
declare module 'vue' {
|
|
15753
15780
|
interface GlobalComponents {
|
|
15754
|
-
|
|
15781
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
15755
15782
|
}
|
|
15756
15783
|
}
|
|
15757
15784
|
|
|
15758
15785
|
|
|
15759
15786
|
declare module 'vue' {
|
|
15760
15787
|
interface GlobalComponents {
|
|
15761
|
-
|
|
15788
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
15789
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
15790
|
+
ComboboxOption: DefineComponent;
|
|
15762
15791
|
}
|
|
15763
15792
|
}
|
|
15764
15793
|
|
|
15765
15794
|
|
|
15766
15795
|
declare module 'vue' {
|
|
15767
15796
|
interface GlobalComponents {
|
|
15768
|
-
|
|
15797
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
15769
15798
|
}
|
|
15770
15799
|
}
|
|
15771
15800
|
|
|
15772
15801
|
|
|
15773
15802
|
declare module 'vue' {
|
|
15774
15803
|
interface GlobalComponents {
|
|
15775
|
-
|
|
15804
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
15776
15805
|
}
|
|
15777
15806
|
}
|
|
15778
15807
|
|
|
15779
15808
|
|
|
15780
15809
|
declare module 'vue' {
|
|
15781
15810
|
interface GlobalComponents {
|
|
15782
|
-
|
|
15811
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
15783
15812
|
}
|
|
15784
15813
|
}
|
|
15785
15814
|
|
|
15786
15815
|
|
|
15787
15816
|
declare module 'vue' {
|
|
15788
15817
|
interface GlobalComponents {
|
|
15789
|
-
|
|
15818
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
15790
15819
|
}
|
|
15791
15820
|
}
|
|
15792
15821
|
|
|
15793
15822
|
|
|
15794
15823
|
declare module 'vue' {
|
|
15795
15824
|
interface GlobalComponents {
|
|
15796
|
-
|
|
15825
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
15797
15826
|
}
|
|
15798
15827
|
}
|
|
15799
15828
|
|
|
15800
15829
|
|
|
15801
15830
|
declare module 'vue' {
|
|
15802
15831
|
interface GlobalComponents {
|
|
15803
|
-
|
|
15832
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
15833
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
15804
15834
|
}
|
|
15805
15835
|
}
|
|
15806
15836
|
|
|
15807
15837
|
|
|
15808
15838
|
declare module 'vue' {
|
|
15809
15839
|
interface GlobalComponents {
|
|
15810
|
-
|
|
15811
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
15812
|
-
SelectLabel: DefineComponent;
|
|
15840
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
15813
15841
|
}
|
|
15814
15842
|
}
|
|
15815
15843
|
|
|
15816
15844
|
|
|
15817
15845
|
declare module 'vue' {
|
|
15818
15846
|
interface GlobalComponents {
|
|
15819
|
-
|
|
15847
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
15820
15848
|
}
|
|
15821
15849
|
}
|
|
15822
15850
|
|
|
15823
15851
|
|
|
15824
15852
|
declare module 'vue' {
|
|
15825
15853
|
interface GlobalComponents {
|
|
15826
|
-
|
|
15854
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
15855
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
15827
15856
|
}
|
|
15828
15857
|
}
|
|
15829
15858
|
|
|
15830
15859
|
|
|
15831
15860
|
declare module 'vue' {
|
|
15832
15861
|
interface GlobalComponents {
|
|
15833
|
-
|
|
15834
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
15862
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
15835
15863
|
}
|
|
15836
15864
|
}
|
|
15837
15865
|
|
|
15838
15866
|
|
|
15839
15867
|
declare module 'vue' {
|
|
15840
15868
|
interface GlobalComponents {
|
|
15841
|
-
|
|
15869
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
15842
15870
|
}
|
|
15843
15871
|
}
|
|
15844
15872
|
|
|
15845
15873
|
|
|
15846
15874
|
declare module 'vue' {
|
|
15847
15875
|
interface GlobalComponents {
|
|
15848
|
-
|
|
15876
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
15849
15877
|
}
|
|
15850
15878
|
}
|
|
15851
15879
|
|
|
15852
15880
|
|
|
15853
15881
|
declare module 'vue' {
|
|
15854
15882
|
interface GlobalComponents {
|
|
15855
|
-
|
|
15883
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
15856
15884
|
}
|
|
15857
15885
|
}
|
|
15858
15886
|
|
|
15859
15887
|
|
|
15860
15888
|
declare module 'vue' {
|
|
15861
15889
|
interface GlobalComponents {
|
|
15862
|
-
|
|
15890
|
+
Divider: DefineComponent<DividerProps>;
|
|
15863
15891
|
}
|
|
15864
15892
|
}
|
|
15865
15893
|
|
|
15866
15894
|
|
|
15867
15895
|
declare module 'vue' {
|
|
15868
15896
|
interface GlobalComponents {
|
|
15869
|
-
|
|
15897
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
15870
15898
|
}
|
|
15871
15899
|
}
|
|
15872
15900
|
|
|
15873
15901
|
|
|
15874
15902
|
declare module 'vue' {
|
|
15875
15903
|
interface GlobalComponents {
|
|
15876
|
-
|
|
15877
|
-
|
|
15904
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
15905
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
15878
15906
|
}
|
|
15879
15907
|
}
|
|
15880
15908
|
|
|
15881
15909
|
|
|
15882
15910
|
declare module 'vue' {
|
|
15883
15911
|
interface GlobalComponents {
|
|
15884
|
-
|
|
15912
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
15885
15913
|
}
|
|
15886
15914
|
}
|
|
15887
15915
|
|
|
15888
15916
|
|
|
15889
15917
|
declare module 'vue' {
|
|
15890
15918
|
interface GlobalComponents {
|
|
15891
|
-
|
|
15919
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
15892
15920
|
}
|
|
15893
15921
|
}
|
|
15894
15922
|
|
|
15895
15923
|
|
|
15896
15924
|
declare module 'vue' {
|
|
15897
15925
|
interface GlobalComponents {
|
|
15898
|
-
|
|
15899
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
15900
|
-
ComboboxOption: DefineComponent;
|
|
15926
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
15901
15927
|
}
|
|
15902
15928
|
}
|
|
15903
15929
|
|
|
15904
15930
|
|
|
15905
15931
|
declare module 'vue' {
|
|
15906
15932
|
interface GlobalComponents {
|
|
15907
|
-
|
|
15908
|
-
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
15933
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
15909
15934
|
}
|
|
15910
15935
|
}
|
|
15911
15936
|
|
|
15912
15937
|
|
|
15913
15938
|
declare module 'vue' {
|
|
15914
15939
|
interface GlobalComponents {
|
|
15915
|
-
|
|
15916
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
15917
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
15940
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
15918
15941
|
}
|
|
15919
15942
|
}
|
|
15920
15943
|
|
|
15921
15944
|
|
|
15922
15945
|
declare module 'vue' {
|
|
15923
15946
|
interface GlobalComponents {
|
|
15924
|
-
|
|
15947
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
15925
15948
|
}
|
|
15926
15949
|
}
|
|
15927
15950
|
|
|
15928
15951
|
|
|
15929
15952
|
declare module 'vue' {
|
|
15930
15953
|
interface GlobalComponents {
|
|
15931
|
-
|
|
15932
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
15954
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
15933
15955
|
}
|
|
15934
15956
|
}
|
|
15935
15957
|
|
|
15936
15958
|
|
|
15937
15959
|
declare module 'vue' {
|
|
15938
15960
|
interface GlobalComponents {
|
|
15939
|
-
|
|
15940
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
15961
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
15941
15962
|
}
|
|
15942
15963
|
}
|
|
15943
15964
|
|
|
15944
15965
|
|
|
15945
15966
|
declare module 'vue' {
|
|
15946
15967
|
interface GlobalComponents {
|
|
15947
|
-
|
|
15968
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
15948
15969
|
}
|
|
15949
15970
|
}
|
|
15950
15971
|
|
|
15951
15972
|
|
|
15952
15973
|
declare module 'vue' {
|
|
15953
15974
|
interface GlobalComponents {
|
|
15954
|
-
|
|
15975
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
15955
15976
|
}
|
|
15956
15977
|
}
|
|
15957
15978
|
|
|
15958
15979
|
|
|
15959
15980
|
declare module 'vue' {
|
|
15960
15981
|
interface GlobalComponents {
|
|
15961
|
-
|
|
15962
|
-
|
|
15982
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
15983
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
15984
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
15985
|
+
TabContent: DefineComponent;
|
|
15963
15986
|
}
|
|
15964
15987
|
}
|
|
15965
15988
|
|
|
15966
15989
|
|
|
15967
15990
|
declare module 'vue' {
|
|
15968
15991
|
interface GlobalComponents {
|
|
15969
|
-
|
|
15970
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
15971
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
15972
|
-
Tr: DefineComponent<TrProps>;
|
|
15973
|
-
TBody: DefineComponent<TBodyProps>;
|
|
15974
|
-
THead: DefineComponent<THeadProps>;
|
|
15975
|
-
TFoot: DefineComponent<TFootProps>;
|
|
15992
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
15976
15993
|
}
|
|
15977
15994
|
}
|
|
15978
15995
|
|
|
15979
15996
|
|
|
15997
|
+
/** component declare **/
|
|
15980
15998
|
declare module 'vue' {
|
|
15981
15999
|
interface GlobalComponents {
|
|
15982
|
-
|
|
16000
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
16001
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
15983
16002
|
}
|
|
15984
16003
|
}
|
|
15985
16004
|
|
|
15986
16005
|
|
|
15987
16006
|
declare module 'vue' {
|
|
15988
16007
|
interface GlobalComponents {
|
|
15989
|
-
|
|
16008
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
15990
16009
|
}
|
|
15991
16010
|
}
|
|
15992
16011
|
|
|
15993
16012
|
|
|
15994
16013
|
declare module 'vue' {
|
|
15995
16014
|
interface GlobalComponents {
|
|
15996
|
-
|
|
16015
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
15997
16016
|
}
|
|
15998
16017
|
}
|
|
15999
16018
|
|
|
16000
16019
|
|
|
16001
16020
|
declare module 'vue' {
|
|
16002
16021
|
interface GlobalComponents {
|
|
16003
|
-
|
|
16022
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
16004
16023
|
}
|
|
16005
16024
|
}
|
|
16006
16025
|
|
|
16007
16026
|
|
|
16008
16027
|
declare module 'vue' {
|
|
16009
16028
|
interface GlobalComponents {
|
|
16010
|
-
|
|
16011
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16012
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16013
|
-
TabContent: DefineComponent;
|
|
16029
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
16014
16030
|
}
|
|
16015
16031
|
}
|
|
16016
16032
|
|
|
16017
16033
|
|
|
16018
16034
|
declare module 'vue' {
|
|
16019
16035
|
interface GlobalComponents {
|
|
16020
|
-
|
|
16036
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
16037
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16021
16038
|
}
|
|
16022
16039
|
}
|
|
16023
16040
|
|
|
16024
16041
|
|
|
16025
16042
|
declare module 'vue' {
|
|
16026
16043
|
interface GlobalComponents {
|
|
16027
|
-
|
|
16044
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
16028
16045
|
}
|
|
16029
16046
|
}
|
|
16030
16047
|
|
|
16031
16048
|
|
|
16032
|
-
/** component declare **/
|
|
16033
16049
|
declare module 'vue' {
|
|
16034
16050
|
interface GlobalComponents {
|
|
16035
|
-
|
|
16036
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
16051
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
16037
16052
|
}
|
|
16038
16053
|
}
|
|
16039
16054
|
|
|
@@ -16047,64 +16062,72 @@ declare module 'vue' {
|
|
|
16047
16062
|
|
|
16048
16063
|
declare module 'vue' {
|
|
16049
16064
|
interface GlobalComponents {
|
|
16050
|
-
|
|
16065
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
16051
16066
|
}
|
|
16052
16067
|
}
|
|
16053
16068
|
|
|
16054
16069
|
|
|
16055
16070
|
declare module 'vue' {
|
|
16056
16071
|
interface GlobalComponents {
|
|
16057
|
-
|
|
16058
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16072
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
16059
16073
|
}
|
|
16060
16074
|
}
|
|
16061
16075
|
|
|
16062
16076
|
|
|
16063
16077
|
declare module 'vue' {
|
|
16064
16078
|
interface GlobalComponents {
|
|
16065
|
-
|
|
16079
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
16080
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
16066
16081
|
}
|
|
16067
16082
|
}
|
|
16068
16083
|
|
|
16069
16084
|
|
|
16070
16085
|
declare module 'vue' {
|
|
16071
16086
|
interface GlobalComponents {
|
|
16072
|
-
|
|
16087
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
16073
16088
|
}
|
|
16074
16089
|
}
|
|
16075
16090
|
|
|
16076
16091
|
|
|
16077
16092
|
declare module 'vue' {
|
|
16078
16093
|
interface GlobalComponents {
|
|
16079
|
-
|
|
16094
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
16080
16095
|
}
|
|
16081
16096
|
}
|
|
16082
16097
|
|
|
16083
16098
|
|
|
16084
16099
|
declare module 'vue' {
|
|
16085
16100
|
interface GlobalComponents {
|
|
16086
|
-
|
|
16101
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
16102
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16087
16103
|
}
|
|
16088
16104
|
}
|
|
16089
16105
|
|
|
16090
16106
|
|
|
16091
16107
|
declare module 'vue' {
|
|
16092
16108
|
interface GlobalComponents {
|
|
16093
|
-
|
|
16109
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
16110
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16094
16111
|
}
|
|
16095
16112
|
}
|
|
16096
16113
|
|
|
16097
16114
|
|
|
16098
16115
|
declare module 'vue' {
|
|
16099
16116
|
interface GlobalComponents {
|
|
16100
|
-
|
|
16117
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
16101
16118
|
}
|
|
16102
16119
|
}
|
|
16103
16120
|
|
|
16104
16121
|
|
|
16105
16122
|
declare module 'vue' {
|
|
16106
16123
|
interface GlobalComponents {
|
|
16107
|
-
|
|
16124
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
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>;
|
|
16108
16131
|
}
|
|
16109
16132
|
}
|
|
16110
16133
|
|
|
@@ -16118,110 +16141,114 @@ declare module 'vue' {
|
|
|
16118
16141
|
|
|
16119
16142
|
declare module 'vue' {
|
|
16120
16143
|
interface GlobalComponents {
|
|
16121
|
-
|
|
16144
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
16122
16145
|
}
|
|
16123
16146
|
}
|
|
16124
16147
|
|
|
16125
16148
|
|
|
16126
16149
|
declare module 'vue' {
|
|
16127
16150
|
interface GlobalComponents {
|
|
16128
|
-
|
|
16151
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
16129
16152
|
}
|
|
16130
16153
|
}
|
|
16131
16154
|
|
|
16132
16155
|
|
|
16133
16156
|
declare module 'vue' {
|
|
16134
16157
|
interface GlobalComponents {
|
|
16135
|
-
|
|
16158
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
16136
16159
|
}
|
|
16137
16160
|
}
|
|
16138
16161
|
|
|
16139
16162
|
|
|
16140
16163
|
declare module 'vue' {
|
|
16141
16164
|
interface GlobalComponents {
|
|
16142
|
-
|
|
16165
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
16143
16166
|
}
|
|
16144
16167
|
}
|
|
16145
16168
|
|
|
16146
16169
|
|
|
16147
16170
|
declare module 'vue' {
|
|
16148
16171
|
interface GlobalComponents {
|
|
16149
|
-
|
|
16172
|
+
Icon: DefineComponent<IconProps>;
|
|
16150
16173
|
}
|
|
16151
16174
|
}
|
|
16152
16175
|
|
|
16153
16176
|
|
|
16154
16177
|
declare module 'vue' {
|
|
16155
16178
|
interface GlobalComponents {
|
|
16156
|
-
|
|
16179
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
16157
16180
|
}
|
|
16158
16181
|
}
|
|
16159
16182
|
|
|
16160
16183
|
|
|
16161
16184
|
declare module 'vue' {
|
|
16162
16185
|
interface GlobalComponents {
|
|
16163
|
-
|
|
16186
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
16164
16187
|
}
|
|
16165
16188
|
}
|
|
16166
16189
|
|
|
16167
16190
|
|
|
16168
16191
|
declare module 'vue' {
|
|
16169
16192
|
interface GlobalComponents {
|
|
16170
|
-
|
|
16193
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
16171
16194
|
}
|
|
16172
16195
|
}
|
|
16173
16196
|
|
|
16174
16197
|
|
|
16175
16198
|
declare module 'vue' {
|
|
16176
16199
|
interface GlobalComponents {
|
|
16177
|
-
|
|
16200
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16201
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16202
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16178
16203
|
}
|
|
16179
16204
|
}
|
|
16180
16205
|
|
|
16181
16206
|
|
|
16182
16207
|
declare module 'vue' {
|
|
16183
16208
|
interface GlobalComponents {
|
|
16184
|
-
|
|
16209
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
16210
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
16211
|
+
SelectLabel: DefineComponent;
|
|
16185
16212
|
}
|
|
16186
16213
|
}
|
|
16187
16214
|
|
|
16188
16215
|
|
|
16189
16216
|
declare module 'vue' {
|
|
16190
16217
|
interface GlobalComponents {
|
|
16191
|
-
|
|
16218
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
16192
16219
|
}
|
|
16193
16220
|
}
|
|
16194
16221
|
|
|
16195
16222
|
|
|
16196
|
-
/**
|
|
16197
|
-
* Global component declaration for TypeScript support
|
|
16198
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
16199
|
-
*/
|
|
16200
16223
|
declare module 'vue' {
|
|
16201
16224
|
interface GlobalComponents {
|
|
16202
|
-
|
|
16203
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16225
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
16204
16226
|
}
|
|
16205
16227
|
}
|
|
16206
16228
|
|
|
16207
16229
|
|
|
16208
16230
|
declare module 'vue' {
|
|
16209
16231
|
interface GlobalComponents {
|
|
16210
|
-
|
|
16232
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
16211
16233
|
}
|
|
16212
16234
|
}
|
|
16213
16235
|
|
|
16214
16236
|
|
|
16215
16237
|
declare module 'vue' {
|
|
16216
16238
|
interface GlobalComponents {
|
|
16217
|
-
|
|
16239
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
16218
16240
|
}
|
|
16219
16241
|
}
|
|
16220
16242
|
|
|
16221
16243
|
|
|
16244
|
+
/**
|
|
16245
|
+
* Global component declaration for TypeScript support
|
|
16246
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
16247
|
+
*/
|
|
16222
16248
|
declare module 'vue' {
|
|
16223
16249
|
interface GlobalComponents {
|
|
16224
|
-
|
|
16250
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
16251
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16225
16252
|
}
|
|
16226
16253
|
}
|
|
16227
16254
|
|