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