@pantograph/vue 0.34.40 → 0.34.42
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 +127 -98
- package/dist/nuxt.d.ts +94 -94
- package/dist/resolver.d.ts +94 -94
- package/dist/use/index.js +2800 -2714
- package/dist/use/index.umd.cjs +4 -4
- package/dist/use.d.ts +94 -94
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1152,7 +1152,7 @@ onOk?: ((event?: PointerEvent | undefined) => any) | undefined;
|
|
|
1152
1152
|
onAfterClose?: (() => any) | undefined;
|
|
1153
1153
|
onAfterOpen?: (() => any) | undefined;
|
|
1154
1154
|
}>, {
|
|
1155
|
-
type:
|
|
1155
|
+
type: "danger" | "info";
|
|
1156
1156
|
open: boolean;
|
|
1157
1157
|
mask: boolean;
|
|
1158
1158
|
width: string | number;
|
|
@@ -1360,7 +1360,7 @@ export declare type AlertDialogType = (typeof AlertDialogTypes)[number];
|
|
|
1360
1360
|
* - `info`: Informational alerts with blue/sky color scheme
|
|
1361
1361
|
* - `danger`: Destructive action alerts with red color scheme
|
|
1362
1362
|
*/
|
|
1363
|
-
export declare const AlertDialogTypes:
|
|
1363
|
+
export declare const AlertDialogTypes: readonly ["info", "danger"];
|
|
1364
1364
|
|
|
1365
1365
|
/**
|
|
1366
1366
|
* Events emitted by the Alert component
|
|
@@ -2390,6 +2390,10 @@ export declare interface BaseInputEmits {
|
|
|
2390
2390
|
*/
|
|
2391
2391
|
export declare interface BaseInputProps {
|
|
2392
2392
|
noBg?: boolean;
|
|
2393
|
+
/**
|
|
2394
|
+
* Disable the focus ring on the input wrapper
|
|
2395
|
+
*/
|
|
2396
|
+
noRing?: boolean;
|
|
2393
2397
|
dir?: Direction;
|
|
2394
2398
|
/**
|
|
2395
2399
|
* Whether the input is read-only
|
|
@@ -3284,6 +3288,10 @@ export declare type CheckboxGroupProps = PrimitiveProps & {
|
|
|
3284
3288
|
* Whether the checkbox group is disabled
|
|
3285
3289
|
*/
|
|
3286
3290
|
disabled?: boolean;
|
|
3291
|
+
/**
|
|
3292
|
+
* Whether to disable the focus ring on checkboxes (child checkboxes inherit unless overridden)
|
|
3293
|
+
*/
|
|
3294
|
+
noRing?: boolean;
|
|
3287
3295
|
/**
|
|
3288
3296
|
* Name for the checkbox group
|
|
3289
3297
|
*/
|
|
@@ -3303,6 +3311,8 @@ export declare type CheckboxGroupValue = (number | string)[];
|
|
|
3303
3311
|
* Props for the Checkbox component
|
|
3304
3312
|
*/
|
|
3305
3313
|
export declare interface CheckboxProps extends Omit<CheckboxRootProps, 'as' | 'asChild' | 'value'> {
|
|
3314
|
+
/** Whether to disable the focus ring */
|
|
3315
|
+
noRing?: boolean;
|
|
3306
3316
|
dir?: Direction;
|
|
3307
3317
|
/** deprecated */
|
|
3308
3318
|
checked?: CheckboxRootProps['modelValue'];
|
|
@@ -5195,7 +5205,7 @@ export declare const comboboxPrefix: string;
|
|
|
5195
5205
|
* Props interface for the Combobox component
|
|
5196
5206
|
* @interface ComboboxProps
|
|
5197
5207
|
*/
|
|
5198
|
-
export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side' | 'align' | 'flipOnDir' | 'containerProps' | 'open' | 'defaultOpen' | 'zIndex' | 'to' | 'sideOffset' | 'alignOffset' | 'reference' | 'prioritizePosition' | 'avoidCollisions' | 'dir' | 'noTrigger' | 'ignoreParentTo' | 'disableOutsidePointerEvents'>> {
|
|
5208
|
+
export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side' | 'align' | 'flipOnDir' | 'sideFlip' | 'alignFlip' | 'containerProps' | 'open' | 'defaultOpen' | 'zIndex' | 'to' | 'sideOffset' | 'alignOffset' | 'reference' | 'prioritizePosition' | 'avoidCollisions' | 'dir' | 'noTrigger' | 'ignoreParentTo' | 'disableOutsidePointerEvents'>> {
|
|
5199
5209
|
/**
|
|
5200
5210
|
* Base props
|
|
5201
5211
|
*/
|
|
@@ -5203,6 +5213,8 @@ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side'
|
|
|
5203
5213
|
modelValue?: string | string[];
|
|
5204
5214
|
/** Default selected value(s) */
|
|
5205
5215
|
defaultValue?: string | string[];
|
|
5216
|
+
/** Whether to disable the focus ring on the trigger */
|
|
5217
|
+
noRing?: boolean;
|
|
5206
5218
|
/** Whether multiple selection is enabled */
|
|
5207
5219
|
multiple?: boolean;
|
|
5208
5220
|
/** Whether the combobox is disabled */
|
|
@@ -5219,6 +5231,7 @@ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side'
|
|
|
5219
5231
|
resetSearchTermOnSelect?: boolean;
|
|
5220
5232
|
/** Size of the combobox */
|
|
5221
5233
|
size?: ComboboxSize;
|
|
5234
|
+
triggerSize?: ComboboxSize;
|
|
5222
5235
|
/** Status of the combobox */
|
|
5223
5236
|
status?: ComboboxStatus;
|
|
5224
5237
|
/** Whether to show value in placeholder */
|
|
@@ -5450,7 +5463,7 @@ export declare interface ComboboxTriggerDefSlotProps {
|
|
|
5450
5463
|
|
|
5451
5464
|
export declare const comboboxTriggerPrefix: string;
|
|
5452
5465
|
|
|
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'>> {
|
|
5466
|
+
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' | 'noRing'>> {
|
|
5454
5467
|
triggerOnly?: boolean;
|
|
5455
5468
|
}
|
|
5456
5469
|
|
|
@@ -8828,6 +8841,7 @@ export declare interface InputNumberProps extends Omit<BaseInputProps, 'hasValue
|
|
|
8828
8841
|
placeholder?: string;
|
|
8829
8842
|
/** Whether the input is disabled */
|
|
8830
8843
|
disabled?: boolean;
|
|
8844
|
+
noRing?: boolean;
|
|
8831
8845
|
/** Whether the input is required */
|
|
8832
8846
|
required?: boolean;
|
|
8833
8847
|
/** The current value of the input */
|
|
@@ -8879,6 +8893,7 @@ export declare interface InputProps extends Omit<BaseInputProps, 'hasValue'> {
|
|
|
8879
8893
|
* Whether the input is disabled
|
|
8880
8894
|
*/
|
|
8881
8895
|
disabled?: boolean;
|
|
8896
|
+
noRing?: boolean;
|
|
8882
8897
|
/**
|
|
8883
8898
|
* Whether the input is required
|
|
8884
8899
|
*/
|
|
@@ -9101,6 +9116,8 @@ export declare interface LinkProps {
|
|
|
9101
9116
|
/** The text style for the link */
|
|
9102
9117
|
txs?: LinkStyle_2;
|
|
9103
9118
|
color?: string;
|
|
9119
|
+
/** Disable the focus ring */
|
|
9120
|
+
noRing?: boolean;
|
|
9104
9121
|
}
|
|
9105
9122
|
|
|
9106
9123
|
/**
|
|
@@ -10247,6 +10264,10 @@ export declare interface PinInputEmits extends PinInputRootEmits {
|
|
|
10247
10264
|
* Props for the PinInput component
|
|
10248
10265
|
*/
|
|
10249
10266
|
export declare interface PinInputProps extends Omit<PinInputRootProps, 'as' | 'asChild' | 'defaultValue'> {
|
|
10267
|
+
/**
|
|
10268
|
+
* Disable the focus ring on each cell
|
|
10269
|
+
*/
|
|
10270
|
+
noRing?: boolean;
|
|
10250
10271
|
/**
|
|
10251
10272
|
* Text direction for the component
|
|
10252
10273
|
*/
|
|
@@ -10897,6 +10918,8 @@ declare interface ProgressProps extends ProgressCirclePathProps {
|
|
|
10897
10918
|
status?: ProgressStatus;
|
|
10898
10919
|
/** The label text for the progress indicator */
|
|
10899
10920
|
label?: string;
|
|
10921
|
+
/** CSS classes to apply to the label */
|
|
10922
|
+
labelCls?: ClassValue;
|
|
10900
10923
|
/** Validation message to display with the progress indicator */
|
|
10901
10924
|
validationMessage?: string;
|
|
10902
10925
|
/** Helper text to display below the progress indicator */
|
|
@@ -13131,6 +13154,8 @@ export declare interface SwitchProps extends Omit<SwitchRootProps, 'asChild'> {
|
|
|
13131
13154
|
labelCls?: ClassValue;
|
|
13132
13155
|
/** Text label for the Switch component */
|
|
13133
13156
|
label?: string;
|
|
13157
|
+
/** Whether to disable the focus ring */
|
|
13158
|
+
noRing?: boolean;
|
|
13134
13159
|
}
|
|
13135
13160
|
|
|
13136
13161
|
declare type SwitchRootEmits = {
|
|
@@ -14039,6 +14064,10 @@ export declare interface TextareaProps {
|
|
|
14039
14064
|
maxHeight?: string | number;
|
|
14040
14065
|
outsideFgColor?: boolean;
|
|
14041
14066
|
readonly?: boolean;
|
|
14067
|
+
/**
|
|
14068
|
+
* Whether to disable the focus ring
|
|
14069
|
+
*/
|
|
14070
|
+
noRing?: boolean;
|
|
14042
14071
|
}
|
|
14043
14072
|
|
|
14044
14073
|
/**
|
|
@@ -15839,172 +15868,179 @@ export { }
|
|
|
15839
15868
|
|
|
15840
15869
|
declare module 'vue' {
|
|
15841
15870
|
interface GlobalComponents {
|
|
15842
|
-
|
|
15871
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
15843
15872
|
}
|
|
15844
15873
|
}
|
|
15845
15874
|
|
|
15846
15875
|
|
|
15847
15876
|
declare module 'vue' {
|
|
15848
15877
|
interface GlobalComponents {
|
|
15849
|
-
|
|
15878
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
15850
15879
|
}
|
|
15851
15880
|
}
|
|
15852
15881
|
|
|
15853
15882
|
|
|
15854
15883
|
declare module 'vue' {
|
|
15855
15884
|
interface GlobalComponents {
|
|
15856
|
-
|
|
15885
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
15857
15886
|
}
|
|
15858
15887
|
}
|
|
15859
15888
|
|
|
15860
15889
|
|
|
15861
15890
|
declare module 'vue' {
|
|
15862
15891
|
interface GlobalComponents {
|
|
15863
|
-
|
|
15892
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
15864
15893
|
}
|
|
15865
15894
|
}
|
|
15866
15895
|
|
|
15867
15896
|
|
|
15868
15897
|
declare module 'vue' {
|
|
15869
15898
|
interface GlobalComponents {
|
|
15870
|
-
|
|
15899
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
15871
15900
|
}
|
|
15872
15901
|
}
|
|
15873
15902
|
|
|
15874
15903
|
|
|
15875
15904
|
declare module 'vue' {
|
|
15876
15905
|
interface GlobalComponents {
|
|
15877
|
-
|
|
15906
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
15878
15907
|
}
|
|
15879
15908
|
}
|
|
15880
15909
|
|
|
15881
15910
|
|
|
15882
15911
|
declare module 'vue' {
|
|
15883
15912
|
interface GlobalComponents {
|
|
15884
|
-
|
|
15913
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
15885
15914
|
}
|
|
15886
15915
|
}
|
|
15887
15916
|
|
|
15888
15917
|
|
|
15889
15918
|
declare module 'vue' {
|
|
15890
15919
|
interface GlobalComponents {
|
|
15891
|
-
|
|
15920
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
15892
15921
|
}
|
|
15893
15922
|
}
|
|
15894
15923
|
|
|
15895
15924
|
|
|
15896
15925
|
declare module 'vue' {
|
|
15897
15926
|
interface GlobalComponents {
|
|
15898
|
-
|
|
15899
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
15927
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
15900
15928
|
}
|
|
15901
15929
|
}
|
|
15902
15930
|
|
|
15903
15931
|
|
|
15904
15932
|
declare module 'vue' {
|
|
15905
15933
|
interface GlobalComponents {
|
|
15906
|
-
|
|
15907
|
-
|
|
15934
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
15935
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
15936
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
15908
15937
|
}
|
|
15909
15938
|
}
|
|
15910
15939
|
|
|
15911
15940
|
|
|
15912
15941
|
declare module 'vue' {
|
|
15913
15942
|
interface GlobalComponents {
|
|
15914
|
-
|
|
15943
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
15915
15944
|
}
|
|
15916
15945
|
}
|
|
15917
15946
|
|
|
15918
15947
|
|
|
15919
15948
|
declare module 'vue' {
|
|
15920
15949
|
interface GlobalComponents {
|
|
15921
|
-
|
|
15950
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
15922
15951
|
}
|
|
15923
15952
|
}
|
|
15924
15953
|
|
|
15925
15954
|
|
|
15926
15955
|
declare module 'vue' {
|
|
15927
15956
|
interface GlobalComponents {
|
|
15928
|
-
|
|
15957
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
15929
15958
|
}
|
|
15930
15959
|
}
|
|
15931
15960
|
|
|
15932
15961
|
|
|
15933
15962
|
declare module 'vue' {
|
|
15934
15963
|
interface GlobalComponents {
|
|
15935
|
-
|
|
15964
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
15936
15965
|
}
|
|
15937
15966
|
}
|
|
15938
15967
|
|
|
15939
15968
|
|
|
15940
15969
|
declare module 'vue' {
|
|
15941
15970
|
interface GlobalComponents {
|
|
15942
|
-
|
|
15971
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
15943
15972
|
}
|
|
15944
15973
|
}
|
|
15945
15974
|
|
|
15946
15975
|
|
|
15947
15976
|
declare module 'vue' {
|
|
15948
15977
|
interface GlobalComponents {
|
|
15949
|
-
|
|
15978
|
+
Divider: DefineComponent<DividerProps>;
|
|
15950
15979
|
}
|
|
15951
15980
|
}
|
|
15952
15981
|
|
|
15953
15982
|
|
|
15954
15983
|
declare module 'vue' {
|
|
15955
15984
|
interface GlobalComponents {
|
|
15956
|
-
|
|
15985
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
15957
15986
|
}
|
|
15958
15987
|
}
|
|
15959
15988
|
|
|
15960
15989
|
|
|
15961
15990
|
declare module 'vue' {
|
|
15962
15991
|
interface GlobalComponents {
|
|
15963
|
-
|
|
15992
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
15993
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
15994
|
+
SelectLabel: DefineComponent;
|
|
15964
15995
|
}
|
|
15965
15996
|
}
|
|
15966
15997
|
|
|
15967
15998
|
|
|
15968
15999
|
declare module 'vue' {
|
|
15969
16000
|
interface GlobalComponents {
|
|
15970
|
-
|
|
15971
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
15972
|
-
SelectLabel: DefineComponent;
|
|
16001
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
15973
16002
|
}
|
|
15974
16003
|
}
|
|
15975
16004
|
|
|
15976
16005
|
|
|
15977
16006
|
declare module 'vue' {
|
|
15978
16007
|
interface GlobalComponents {
|
|
15979
|
-
|
|
16008
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
15980
16009
|
}
|
|
15981
16010
|
}
|
|
15982
16011
|
|
|
15983
16012
|
|
|
15984
16013
|
declare module 'vue' {
|
|
15985
16014
|
interface GlobalComponents {
|
|
15986
|
-
|
|
16015
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
15987
16016
|
}
|
|
15988
16017
|
}
|
|
15989
16018
|
|
|
15990
16019
|
|
|
15991
16020
|
declare module 'vue' {
|
|
15992
16021
|
interface GlobalComponents {
|
|
15993
|
-
|
|
16022
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
15994
16023
|
}
|
|
15995
16024
|
}
|
|
15996
16025
|
|
|
15997
16026
|
|
|
15998
16027
|
declare module 'vue' {
|
|
15999
16028
|
interface GlobalComponents {
|
|
16000
|
-
|
|
16029
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
16030
|
+
Th: DefineComponent<ThProps, ThSlots>;
|
|
16031
|
+
Td: DefineComponent<TdProps, TdSlots>;
|
|
16032
|
+
Tr: DefineComponent<TrProps>;
|
|
16033
|
+
TBody: DefineComponent<TBodyProps>;
|
|
16034
|
+
THead: DefineComponent<THeadProps>;
|
|
16035
|
+
TFoot: DefineComponent<TFootProps>;
|
|
16001
16036
|
}
|
|
16002
16037
|
}
|
|
16003
16038
|
|
|
16004
16039
|
|
|
16005
16040
|
declare module 'vue' {
|
|
16006
16041
|
interface GlobalComponents {
|
|
16007
|
-
|
|
16042
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
16043
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
16008
16044
|
}
|
|
16009
16045
|
}
|
|
16010
16046
|
|
|
@@ -16020,155 +16056,148 @@ declare module 'vue' {
|
|
|
16020
16056
|
|
|
16021
16057
|
declare module 'vue' {
|
|
16022
16058
|
interface GlobalComponents {
|
|
16023
|
-
|
|
16059
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
16024
16060
|
}
|
|
16025
16061
|
}
|
|
16026
16062
|
|
|
16027
16063
|
|
|
16028
16064
|
declare module 'vue' {
|
|
16029
16065
|
interface GlobalComponents {
|
|
16030
|
-
|
|
16066
|
+
Icon: DefineComponent<IconProps>;
|
|
16031
16067
|
}
|
|
16032
16068
|
}
|
|
16033
16069
|
|
|
16034
16070
|
|
|
16035
16071
|
declare module 'vue' {
|
|
16036
16072
|
interface GlobalComponents {
|
|
16037
|
-
|
|
16038
|
-
|
|
16039
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
16040
|
-
Tr: DefineComponent<TrProps>;
|
|
16041
|
-
TBody: DefineComponent<TBodyProps>;
|
|
16042
|
-
THead: DefineComponent<THeadProps>;
|
|
16043
|
-
TFoot: DefineComponent<TFootProps>;
|
|
16073
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
16074
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
16044
16075
|
}
|
|
16045
16076
|
}
|
|
16046
16077
|
|
|
16047
16078
|
|
|
16048
|
-
/**
|
|
16079
|
+
/**
|
|
16080
|
+
* Global component declaration for TypeScript support
|
|
16081
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
16082
|
+
*/
|
|
16049
16083
|
declare module 'vue' {
|
|
16050
16084
|
interface GlobalComponents {
|
|
16051
|
-
|
|
16052
|
-
|
|
16085
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
16086
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16053
16087
|
}
|
|
16054
16088
|
}
|
|
16055
16089
|
|
|
16056
16090
|
|
|
16057
16091
|
declare module 'vue' {
|
|
16058
16092
|
interface GlobalComponents {
|
|
16059
|
-
|
|
16093
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
16060
16094
|
}
|
|
16061
16095
|
}
|
|
16062
16096
|
|
|
16063
16097
|
|
|
16064
16098
|
declare module 'vue' {
|
|
16065
16099
|
interface GlobalComponents {
|
|
16066
|
-
|
|
16100
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
16067
16101
|
}
|
|
16068
16102
|
}
|
|
16069
16103
|
|
|
16070
16104
|
|
|
16071
16105
|
declare module 'vue' {
|
|
16072
16106
|
interface GlobalComponents {
|
|
16073
|
-
|
|
16107
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
16074
16108
|
}
|
|
16075
16109
|
}
|
|
16076
16110
|
|
|
16077
16111
|
|
|
16078
16112
|
declare module 'vue' {
|
|
16079
16113
|
interface GlobalComponents {
|
|
16080
|
-
|
|
16114
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
16081
16115
|
}
|
|
16082
16116
|
}
|
|
16083
16117
|
|
|
16084
16118
|
|
|
16085
16119
|
declare module 'vue' {
|
|
16086
16120
|
interface GlobalComponents {
|
|
16087
|
-
|
|
16121
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
16088
16122
|
}
|
|
16089
16123
|
}
|
|
16090
16124
|
|
|
16091
16125
|
|
|
16092
16126
|
declare module 'vue' {
|
|
16093
16127
|
interface GlobalComponents {
|
|
16094
|
-
|
|
16095
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16128
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
16096
16129
|
}
|
|
16097
16130
|
}
|
|
16098
16131
|
|
|
16099
16132
|
|
|
16100
16133
|
declare module 'vue' {
|
|
16101
16134
|
interface GlobalComponents {
|
|
16102
|
-
|
|
16135
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
16103
16136
|
}
|
|
16104
16137
|
}
|
|
16105
16138
|
|
|
16106
16139
|
|
|
16107
16140
|
declare module 'vue' {
|
|
16108
16141
|
interface GlobalComponents {
|
|
16109
|
-
|
|
16110
|
-
|
|
16142
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
16143
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16111
16144
|
}
|
|
16112
16145
|
}
|
|
16113
16146
|
|
|
16114
16147
|
|
|
16115
16148
|
declare module 'vue' {
|
|
16116
16149
|
interface GlobalComponents {
|
|
16117
|
-
|
|
16150
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
16118
16151
|
}
|
|
16119
16152
|
}
|
|
16120
16153
|
|
|
16121
16154
|
|
|
16122
16155
|
declare module 'vue' {
|
|
16123
16156
|
interface GlobalComponents {
|
|
16124
|
-
|
|
16157
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
16125
16158
|
}
|
|
16126
16159
|
}
|
|
16127
16160
|
|
|
16128
16161
|
|
|
16129
16162
|
declare module 'vue' {
|
|
16130
16163
|
interface GlobalComponents {
|
|
16131
|
-
|
|
16164
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
16132
16165
|
}
|
|
16133
16166
|
}
|
|
16134
16167
|
|
|
16135
16168
|
|
|
16136
16169
|
declare module 'vue' {
|
|
16137
16170
|
interface GlobalComponents {
|
|
16138
|
-
|
|
16171
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
16139
16172
|
}
|
|
16140
16173
|
}
|
|
16141
16174
|
|
|
16142
16175
|
|
|
16143
16176
|
declare module 'vue' {
|
|
16144
16177
|
interface GlobalComponents {
|
|
16145
|
-
|
|
16178
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
16146
16179
|
}
|
|
16147
16180
|
}
|
|
16148
16181
|
|
|
16149
16182
|
|
|
16150
16183
|
declare module 'vue' {
|
|
16151
16184
|
interface GlobalComponents {
|
|
16152
|
-
|
|
16153
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
16154
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16185
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
16155
16186
|
}
|
|
16156
16187
|
}
|
|
16157
16188
|
|
|
16158
16189
|
|
|
16159
16190
|
declare module 'vue' {
|
|
16160
16191
|
interface GlobalComponents {
|
|
16161
|
-
|
|
16162
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16163
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16164
|
-
TabContent: DefineComponent;
|
|
16192
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
16165
16193
|
}
|
|
16166
16194
|
}
|
|
16167
16195
|
|
|
16168
16196
|
|
|
16169
16197
|
declare module 'vue' {
|
|
16170
16198
|
interface GlobalComponents {
|
|
16171
|
-
|
|
16199
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
16200
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16172
16201
|
}
|
|
16173
16202
|
}
|
|
16174
16203
|
|
|
@@ -16182,155 +16211,154 @@ declare module 'vue' {
|
|
|
16182
16211
|
|
|
16183
16212
|
declare module 'vue' {
|
|
16184
16213
|
interface GlobalComponents {
|
|
16185
|
-
|
|
16214
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
16186
16215
|
}
|
|
16187
16216
|
}
|
|
16188
16217
|
|
|
16189
16218
|
|
|
16190
16219
|
declare module 'vue' {
|
|
16191
16220
|
interface GlobalComponents {
|
|
16192
|
-
|
|
16221
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
16193
16222
|
}
|
|
16194
16223
|
}
|
|
16195
16224
|
|
|
16196
16225
|
|
|
16197
16226
|
declare module 'vue' {
|
|
16198
16227
|
interface GlobalComponents {
|
|
16199
|
-
|
|
16228
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
16200
16229
|
}
|
|
16201
16230
|
}
|
|
16202
16231
|
|
|
16203
16232
|
|
|
16204
16233
|
declare module 'vue' {
|
|
16205
16234
|
interface GlobalComponents {
|
|
16206
|
-
|
|
16207
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
16235
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
16208
16236
|
}
|
|
16209
16237
|
}
|
|
16210
16238
|
|
|
16211
16239
|
|
|
16212
16240
|
declare module 'vue' {
|
|
16213
16241
|
interface GlobalComponents {
|
|
16214
|
-
|
|
16242
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
16215
16243
|
}
|
|
16216
16244
|
}
|
|
16217
16245
|
|
|
16218
16246
|
|
|
16219
16247
|
declare module 'vue' {
|
|
16220
16248
|
interface GlobalComponents {
|
|
16221
|
-
|
|
16249
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
16250
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16251
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16252
|
+
TabContent: DefineComponent;
|
|
16222
16253
|
}
|
|
16223
16254
|
}
|
|
16224
16255
|
|
|
16225
16256
|
|
|
16257
|
+
/** component declare **/
|
|
16226
16258
|
declare module 'vue' {
|
|
16227
16259
|
interface GlobalComponents {
|
|
16228
|
-
|
|
16260
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
16261
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
16229
16262
|
}
|
|
16230
16263
|
}
|
|
16231
16264
|
|
|
16232
16265
|
|
|
16233
16266
|
declare module 'vue' {
|
|
16234
16267
|
interface GlobalComponents {
|
|
16235
|
-
|
|
16268
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
16236
16269
|
}
|
|
16237
16270
|
}
|
|
16238
16271
|
|
|
16239
16272
|
|
|
16240
16273
|
declare module 'vue' {
|
|
16241
16274
|
interface GlobalComponents {
|
|
16242
|
-
|
|
16275
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
16276
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16243
16277
|
}
|
|
16244
16278
|
}
|
|
16245
16279
|
|
|
16246
16280
|
|
|
16247
16281
|
declare module 'vue' {
|
|
16248
16282
|
interface GlobalComponents {
|
|
16249
|
-
|
|
16283
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
16250
16284
|
}
|
|
16251
16285
|
}
|
|
16252
16286
|
|
|
16253
16287
|
|
|
16254
16288
|
declare module 'vue' {
|
|
16255
16289
|
interface GlobalComponents {
|
|
16256
|
-
|
|
16290
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
16257
16291
|
}
|
|
16258
16292
|
}
|
|
16259
16293
|
|
|
16260
16294
|
|
|
16261
16295
|
declare module 'vue' {
|
|
16262
16296
|
interface GlobalComponents {
|
|
16263
|
-
|
|
16297
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
16298
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
16264
16299
|
}
|
|
16265
16300
|
}
|
|
16266
16301
|
|
|
16267
16302
|
|
|
16268
|
-
/**
|
|
16269
|
-
* Global component declaration for TypeScript support
|
|
16270
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
16271
|
-
*/
|
|
16272
16303
|
declare module 'vue' {
|
|
16273
16304
|
interface GlobalComponents {
|
|
16274
|
-
|
|
16275
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16305
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
16276
16306
|
}
|
|
16277
16307
|
}
|
|
16278
16308
|
|
|
16279
16309
|
|
|
16280
16310
|
declare module 'vue' {
|
|
16281
16311
|
interface GlobalComponents {
|
|
16282
|
-
|
|
16283
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16312
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
16284
16313
|
}
|
|
16285
16314
|
}
|
|
16286
16315
|
|
|
16287
16316
|
|
|
16288
16317
|
declare module 'vue' {
|
|
16289
16318
|
interface GlobalComponents {
|
|
16290
|
-
|
|
16319
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
16291
16320
|
}
|
|
16292
16321
|
}
|
|
16293
16322
|
|
|
16294
16323
|
|
|
16295
16324
|
declare module 'vue' {
|
|
16296
16325
|
interface GlobalComponents {
|
|
16297
|
-
|
|
16326
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
16298
16327
|
}
|
|
16299
16328
|
}
|
|
16300
16329
|
|
|
16301
16330
|
|
|
16302
16331
|
declare module 'vue' {
|
|
16303
16332
|
interface GlobalComponents {
|
|
16304
|
-
|
|
16305
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
16333
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
16306
16334
|
}
|
|
16307
16335
|
}
|
|
16308
16336
|
|
|
16309
16337
|
|
|
16310
16338
|
declare module 'vue' {
|
|
16311
16339
|
interface GlobalComponents {
|
|
16312
|
-
|
|
16340
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
16313
16341
|
}
|
|
16314
16342
|
}
|
|
16315
16343
|
|
|
16316
16344
|
|
|
16317
16345
|
declare module 'vue' {
|
|
16318
16346
|
interface GlobalComponents {
|
|
16319
|
-
|
|
16347
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
16320
16348
|
}
|
|
16321
16349
|
}
|
|
16322
16350
|
|
|
16323
16351
|
|
|
16324
16352
|
declare module 'vue' {
|
|
16325
16353
|
interface GlobalComponents {
|
|
16326
|
-
|
|
16354
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
16327
16355
|
}
|
|
16328
16356
|
}
|
|
16329
16357
|
|
|
16330
16358
|
|
|
16331
16359
|
declare module 'vue' {
|
|
16332
16360
|
interface GlobalComponents {
|
|
16333
|
-
|
|
16361
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
16334
16362
|
}
|
|
16335
16363
|
}
|
|
16336
16364
|
|
|
@@ -16344,14 +16372,15 @@ declare module 'vue' {
|
|
|
16344
16372
|
|
|
16345
16373
|
declare module 'vue' {
|
|
16346
16374
|
interface GlobalComponents {
|
|
16347
|
-
|
|
16375
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
16376
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
16348
16377
|
}
|
|
16349
16378
|
}
|
|
16350
16379
|
|
|
16351
16380
|
|
|
16352
16381
|
declare module 'vue' {
|
|
16353
16382
|
interface GlobalComponents {
|
|
16354
|
-
|
|
16383
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
16355
16384
|
}
|
|
16356
16385
|
}
|
|
16357
16386
|
|