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