@vtj/ui 0.16.15 → 0.16.16
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.mjs +2 -2
- package/dist/index.umd.js +2 -2
- package/package.json +3 -3
- package/types/components/attachment/Attachment.d.ts +5 -5
- package/types/components/dialog/Dialog.d.ts +13 -13
- package/types/components/dialog-form/DialogForm.d.ts +37 -37
- package/types/components/dialog-grid/DialogGrid.d.ts +37 -37
- package/types/components/field/Field.d.ts +11 -11
- package/types/components/form/Form.d.ts +5 -5
- package/types/components/grid/renderers/components/GridEdit.d.ts +9 -9
- package/types/components/grid-editor/GridEditor.d.ts +9 -9
- package/types/components/mask/Mask.d.ts +7 -7
- package/types/components/mask/components/Tabs.d.ts +4 -4
- package/types/components/panel/Panel.d.ts +7 -7
- package/types/components/picker/Dialog.d.ts +6 -6
- package/types/components/query-form/QueryForm.d.ts +21 -21
- package/types/version.d.ts +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComponentInternalInstance, VNode, RendererNode, RendererElement, DefineComponent, ShallowRef, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle,
|
|
1
|
+
import { ComponentInternalInstance, VNode, RendererNode, RendererElement, DefineComponent, ShallowRef, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ComponentCustomProperties, Ref, Reactive, PublicProps } from 'vue';
|
|
2
2
|
import { BaseSize } from '../shared';
|
|
3
3
|
import { DialogMode } from '../dialog';
|
|
4
4
|
import { DraggableOptions, ResizableOptions } from '../..';
|
|
@@ -546,9 +546,9 @@ declare function __VLS_template(): {
|
|
|
546
546
|
autoPointer: {
|
|
547
547
|
type: BooleanConstructor;
|
|
548
548
|
};
|
|
549
|
-
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> &
|
|
550
|
-
$vtjEl:
|
|
551
|
-
}
|
|
549
|
+
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & {
|
|
550
|
+
$vtjEl: any;
|
|
551
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
552
552
|
$slots: {
|
|
553
553
|
default?(_: {}): any;
|
|
554
554
|
};
|
|
@@ -674,9 +674,9 @@ declare function __VLS_template(): {
|
|
|
674
674
|
footer: {
|
|
675
675
|
type: PropType<ContainerProps>;
|
|
676
676
|
};
|
|
677
|
-
}>> & Readonly<{}>, "bodyRef" | ("radius" | "fit" | "border" | "card")> &
|
|
678
|
-
bodyRef:
|
|
679
|
-
}
|
|
677
|
+
}>> & Readonly<{}>, "bodyRef" | ("radius" | "fit" | "border" | "card")> & {
|
|
678
|
+
bodyRef: any;
|
|
679
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
680
680
|
$slots: {
|
|
681
681
|
header?(_: {}): any;
|
|
682
682
|
title?(_: {}): any;
|
|
@@ -1145,9 +1145,9 @@ declare function __VLS_template(): {
|
|
|
1145
1145
|
isOutside: ShallowRef<boolean, boolean>;
|
|
1146
1146
|
stop: () => void;
|
|
1147
1147
|
}) => any) | undefined;
|
|
1148
|
-
}>, "close" | "cancel" | "submit" | "hide" | "show" | "$vtjEl" | "maximized" | "minimized" | "componentInstance" | "state" | "changeMode" | "panelRef" | "iframeRef" | ("size" | "primary" | "mode" | "pure" | "draggable" | "width" | "height" | "modelValue" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding")> &
|
|
1149
|
-
$vtjEl:
|
|
1150
|
-
panelRef:
|
|
1148
|
+
}>, "close" | "cancel" | "submit" | "hide" | "show" | "$vtjEl" | "maximized" | "minimized" | "componentInstance" | "state" | "changeMode" | "panelRef" | "iframeRef" | ("size" | "primary" | "mode" | "pure" | "draggable" | "width" | "height" | "modelValue" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding")> & {
|
|
1149
|
+
$vtjEl: any;
|
|
1150
|
+
panelRef: any;
|
|
1151
1151
|
state: {
|
|
1152
1152
|
mode: DialogMode;
|
|
1153
1153
|
wrapperWidth: number;
|
|
@@ -1160,8 +1160,8 @@ declare function __VLS_template(): {
|
|
|
1160
1160
|
dragging: boolean;
|
|
1161
1161
|
resizing: boolean;
|
|
1162
1162
|
};
|
|
1163
|
-
maximized:
|
|
1164
|
-
minimized:
|
|
1163
|
+
maximized: boolean;
|
|
1164
|
+
minimized: boolean;
|
|
1165
1165
|
changeMode: (mode: DialogMode) => void;
|
|
1166
1166
|
show: () => void;
|
|
1167
1167
|
hide: () => void;
|
|
@@ -1171,8 +1171,8 @@ declare function __VLS_template(): {
|
|
|
1171
1171
|
componentInstance: {
|
|
1172
1172
|
componentInstance: Record<string, any>;
|
|
1173
1173
|
} | undefined;
|
|
1174
|
-
iframeRef:
|
|
1175
|
-
}
|
|
1174
|
+
iframeRef: any;
|
|
1175
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
1176
1176
|
$slots: {
|
|
1177
1177
|
actions?(_: {}): any;
|
|
1178
1178
|
default?(_: {}): any;
|
|
@@ -1299,7 +1299,7 @@ declare function __VLS_template(): {
|
|
|
1299
1299
|
validateOnRuleChange: boolean;
|
|
1300
1300
|
}> & Omit<Readonly< FormProps> & Readonly<{
|
|
1301
1301
|
onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
1302
|
-
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> &
|
|
1302
|
+
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> & {
|
|
1303
1303
|
validate: (callback?: FormValidateCallback) => FormValidationResult;
|
|
1304
1304
|
validateField: (props?: Arrayable<FormItemProp>, callback?: FormValidateCallback) => FormValidationResult;
|
|
1305
1305
|
resetFields: (props?: Arrayable<FormItemProp>) => void;
|
|
@@ -1308,7 +1308,7 @@ declare function __VLS_template(): {
|
|
|
1308
1308
|
getField: (prop: FormItemProp) => FormItemContext | undefined;
|
|
1309
1309
|
fields: Reactive< FormItemContext[]>;
|
|
1310
1310
|
setInitialValues: (initModel: Record<string, any>) => void;
|
|
1311
|
-
}
|
|
1311
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
1312
1312
|
$slots: {
|
|
1313
1313
|
default?: (props: {}) => any;
|
|
1314
1314
|
};
|
|
@@ -1465,14 +1465,14 @@ declare function __VLS_template(): {
|
|
|
1465
1465
|
onChange?: ((model: Record<string, any>) => any) | undefined;
|
|
1466
1466
|
onReset?: (() => any) | undefined;
|
|
1467
1467
|
onSubmit?: ((model: Record<string, any>) => any) | undefined;
|
|
1468
|
-
}>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky")> &
|
|
1469
|
-
formRef:
|
|
1468
|
+
}>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky")> & {
|
|
1469
|
+
formRef: any;
|
|
1470
1470
|
model: FormModel;
|
|
1471
1471
|
submit: () => Promise<void>;
|
|
1472
1472
|
reset: (fields?: string[] | string) => void;
|
|
1473
1473
|
validate: () => Promise<any>;
|
|
1474
1474
|
clearValidate: () => void;
|
|
1475
|
-
}
|
|
1475
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
1476
1476
|
$slots: {
|
|
1477
1477
|
default?(_: {}): any;
|
|
1478
1478
|
footer?(_: {}): any;
|
|
@@ -2085,9 +2085,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
2085
2085
|
autoPointer: {
|
|
2086
2086
|
type: BooleanConstructor;
|
|
2087
2087
|
};
|
|
2088
|
-
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> &
|
|
2089
|
-
$vtjEl:
|
|
2090
|
-
}
|
|
2088
|
+
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & {
|
|
2089
|
+
$vtjEl: any;
|
|
2090
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
2091
2091
|
$slots: {
|
|
2092
2092
|
default?(_: {}): any;
|
|
2093
2093
|
};
|
|
@@ -2213,9 +2213,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
2213
2213
|
footer: {
|
|
2214
2214
|
type: PropType<ContainerProps>;
|
|
2215
2215
|
};
|
|
2216
|
-
}>> & Readonly<{}>, "bodyRef" | ("radius" | "fit" | "border" | "card")> &
|
|
2217
|
-
bodyRef:
|
|
2218
|
-
}
|
|
2216
|
+
}>> & Readonly<{}>, "bodyRef" | ("radius" | "fit" | "border" | "card")> & {
|
|
2217
|
+
bodyRef: any;
|
|
2218
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
2219
2219
|
$slots: {
|
|
2220
2220
|
header?(_: {}): any;
|
|
2221
2221
|
title?(_: {}): any;
|
|
@@ -2684,9 +2684,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
2684
2684
|
isOutside: ShallowRef<boolean, boolean>;
|
|
2685
2685
|
stop: () => void;
|
|
2686
2686
|
}) => any) | undefined;
|
|
2687
|
-
}>, "close" | "cancel" | "submit" | "hide" | "show" | "$vtjEl" | "maximized" | "minimized" | "componentInstance" | "state" | "changeMode" | "panelRef" | "iframeRef" | ("size" | "primary" | "mode" | "pure" | "draggable" | "width" | "height" | "modelValue" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding")> &
|
|
2688
|
-
$vtjEl:
|
|
2689
|
-
panelRef:
|
|
2687
|
+
}>, "close" | "cancel" | "submit" | "hide" | "show" | "$vtjEl" | "maximized" | "minimized" | "componentInstance" | "state" | "changeMode" | "panelRef" | "iframeRef" | ("size" | "primary" | "mode" | "pure" | "draggable" | "width" | "height" | "modelValue" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding")> & {
|
|
2688
|
+
$vtjEl: any;
|
|
2689
|
+
panelRef: any;
|
|
2690
2690
|
state: {
|
|
2691
2691
|
mode: DialogMode;
|
|
2692
2692
|
wrapperWidth: number;
|
|
@@ -2699,8 +2699,8 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
2699
2699
|
dragging: boolean;
|
|
2700
2700
|
resizing: boolean;
|
|
2701
2701
|
};
|
|
2702
|
-
maximized:
|
|
2703
|
-
minimized:
|
|
2702
|
+
maximized: boolean;
|
|
2703
|
+
minimized: boolean;
|
|
2704
2704
|
changeMode: (mode: DialogMode) => void;
|
|
2705
2705
|
show: () => void;
|
|
2706
2706
|
hide: () => void;
|
|
@@ -2710,8 +2710,8 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
2710
2710
|
componentInstance: {
|
|
2711
2711
|
componentInstance: Record<string, any>;
|
|
2712
2712
|
} | undefined;
|
|
2713
|
-
iframeRef:
|
|
2714
|
-
}
|
|
2713
|
+
iframeRef: any;
|
|
2714
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
2715
2715
|
$slots: {
|
|
2716
2716
|
actions?(_: {}): any;
|
|
2717
2717
|
default?(_: {}): any;
|
|
@@ -2838,7 +2838,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
2838
2838
|
validateOnRuleChange: boolean;
|
|
2839
2839
|
}> & Omit<Readonly< FormProps> & Readonly<{
|
|
2840
2840
|
onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
2841
|
-
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> &
|
|
2841
|
+
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> & {
|
|
2842
2842
|
validate: (callback?: FormValidateCallback) => FormValidationResult;
|
|
2843
2843
|
validateField: (props?: Arrayable<FormItemProp>, callback?: FormValidateCallback) => FormValidationResult;
|
|
2844
2844
|
resetFields: (props?: Arrayable<FormItemProp>) => void;
|
|
@@ -2847,7 +2847,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
2847
2847
|
getField: (prop: FormItemProp) => FormItemContext | undefined;
|
|
2848
2848
|
fields: Reactive< FormItemContext[]>;
|
|
2849
2849
|
setInitialValues: (initModel: Record<string, any>) => void;
|
|
2850
|
-
}
|
|
2850
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
2851
2851
|
$slots: {
|
|
2852
2852
|
default?: (props: {}) => any;
|
|
2853
2853
|
};
|
|
@@ -3004,14 +3004,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
3004
3004
|
onChange?: ((model: Record<string, any>) => any) | undefined;
|
|
3005
3005
|
onReset?: (() => any) | undefined;
|
|
3006
3006
|
onSubmit?: ((model: Record<string, any>) => any) | undefined;
|
|
3007
|
-
}>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky")> &
|
|
3008
|
-
formRef:
|
|
3007
|
+
}>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky")> & {
|
|
3008
|
+
formRef: any;
|
|
3009
3009
|
model: FormModel;
|
|
3010
3010
|
submit: () => Promise<void>;
|
|
3011
3011
|
reset: (fields?: string[] | string) => void;
|
|
3012
3012
|
validate: () => Promise<any>;
|
|
3013
3013
|
clearValidate: () => void;
|
|
3014
|
-
}
|
|
3014
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
3015
3015
|
$slots: {
|
|
3016
3016
|
default?(_: {}): any;
|
|
3017
3017
|
footer?(_: {}): any;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DialogGridProps } from './types';
|
|
2
2
|
import { VxeTableConstructor, VxeGridConstructor, VxeTableProps, VxeGridEventProps, VxeGridSlots, VxeTableDataRow, SlotVNodeType, VxeGridInstance } from 'vxe-table';
|
|
3
|
-
import { ComponentInternalInstance, VNode, RendererNode, RendererElement, DefineComponent, ShallowRef, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle,
|
|
3
|
+
import { ComponentInternalInstance, VNode, RendererNode, RendererElement, DefineComponent, ShallowRef, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ComponentCustomProperties, Ref, PublicProps } from 'vue';
|
|
4
4
|
import { BaseSize, DialogMode, IconParam, ContainerDirection, ContainerWrap, ContainerJustifyContent, ContainerAlignItems, ContainerAlignContent, PanelBadge, HeaderProps, ContainerProps, GridColumns, GridCustomInfo, GridLoader, GridCellRenders, GridEditRenders, GridFilterRenders, GridSortableEvent, GridSortableOptions } from '..';
|
|
5
5
|
import { DraggableOptions, ResizableOptions } from '../..';
|
|
6
6
|
import { UseMouseSourceType, Position } from '@vueuse/core';
|
|
@@ -560,9 +560,9 @@ declare function __VLS_template(): {
|
|
|
560
560
|
autoPointer: {
|
|
561
561
|
type: BooleanConstructor;
|
|
562
562
|
};
|
|
563
|
-
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> &
|
|
564
|
-
$vtjEl:
|
|
565
|
-
}
|
|
563
|
+
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & {
|
|
564
|
+
$vtjEl: any;
|
|
565
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
566
566
|
$slots: {
|
|
567
567
|
default?(_: {}): any;
|
|
568
568
|
};
|
|
@@ -688,9 +688,9 @@ declare function __VLS_template(): {
|
|
|
688
688
|
footer: {
|
|
689
689
|
type: PropType<ContainerProps>;
|
|
690
690
|
};
|
|
691
|
-
}>> & Readonly<{}>, "bodyRef" | ("radius" | "fit" | "border" | "card")> &
|
|
692
|
-
bodyRef:
|
|
693
|
-
}
|
|
691
|
+
}>> & Readonly<{}>, "bodyRef" | ("radius" | "fit" | "border" | "card")> & {
|
|
692
|
+
bodyRef: any;
|
|
693
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
694
694
|
$slots: {
|
|
695
695
|
header?(_: {}): any;
|
|
696
696
|
title?(_: {}): any;
|
|
@@ -1159,9 +1159,9 @@ declare function __VLS_template(): {
|
|
|
1159
1159
|
isOutside: ShallowRef<boolean, boolean>;
|
|
1160
1160
|
stop: () => void;
|
|
1161
1161
|
}) => any) | undefined;
|
|
1162
|
-
}>, "close" | "cancel" | "submit" | "hide" | "show" | "$vtjEl" | "maximized" | "minimized" | "componentInstance" | "state" | "changeMode" | "panelRef" | "iframeRef" | ("size" | "primary" | "mode" | "pure" | "draggable" | "width" | "height" | "modelValue" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding")> &
|
|
1163
|
-
$vtjEl:
|
|
1164
|
-
panelRef:
|
|
1162
|
+
}>, "close" | "cancel" | "submit" | "hide" | "show" | "$vtjEl" | "maximized" | "minimized" | "componentInstance" | "state" | "changeMode" | "panelRef" | "iframeRef" | ("size" | "primary" | "mode" | "pure" | "draggable" | "width" | "height" | "modelValue" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding")> & {
|
|
1163
|
+
$vtjEl: any;
|
|
1164
|
+
panelRef: any;
|
|
1165
1165
|
state: {
|
|
1166
1166
|
mode: DialogMode;
|
|
1167
1167
|
wrapperWidth: number;
|
|
@@ -1174,8 +1174,8 @@ declare function __VLS_template(): {
|
|
|
1174
1174
|
dragging: boolean;
|
|
1175
1175
|
resizing: boolean;
|
|
1176
1176
|
};
|
|
1177
|
-
maximized:
|
|
1178
|
-
minimized:
|
|
1177
|
+
maximized: boolean;
|
|
1178
|
+
minimized: boolean;
|
|
1179
1179
|
changeMode: (mode: DialogMode) => void;
|
|
1180
1180
|
show: () => void;
|
|
1181
1181
|
hide: () => void;
|
|
@@ -1185,8 +1185,8 @@ declare function __VLS_template(): {
|
|
|
1185
1185
|
componentInstance: {
|
|
1186
1186
|
componentInstance: Record<string, any>;
|
|
1187
1187
|
} | undefined;
|
|
1188
|
-
iframeRef:
|
|
1189
|
-
}
|
|
1188
|
+
iframeRef: any;
|
|
1189
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
1190
1190
|
$slots: {
|
|
1191
1191
|
actions?(_: {}): any;
|
|
1192
1192
|
default?(_: {}): any;
|
|
@@ -1969,7 +1969,7 @@ declare function __VLS_template(): {
|
|
|
1969
1969
|
onCellSelected?: ((params: any) => any) | undefined;
|
|
1970
1970
|
onEditChange?: ((data: any[]) => any) | undefined;
|
|
1971
1971
|
onLoaded?: ((rows: any[]) => any) | undefined;
|
|
1972
|
-
}>, "search" | "load" | "state" | "remove" | "setSelectCell" | "validate" | "vxeRef" | ("auto" | "resizable" | "editable" | "page" | "pageSize" | "columns" | "rowSortable" | "columnSortable" | "customable" | "pager" | "pageSizes" | "virtual") | "doLayout" | "insertActived" | "getSelected" | "getRows" | "setActived" | "getRecords" | "$vtjDynamicSlots"> &
|
|
1972
|
+
}>, "search" | "load" | "state" | "remove" | "setSelectCell" | "validate" | "vxeRef" | ("auto" | "resizable" | "editable" | "page" | "pageSize" | "columns" | "rowSortable" | "columnSortable" | "customable" | "pager" | "pageSizes" | "virtual") | "doLayout" | "insertActived" | "getSelected" | "getRows" | "setActived" | "getRecords" | "$vtjDynamicSlots"> & {
|
|
1973
1973
|
state: {
|
|
1974
1974
|
[x: string]: any;
|
|
1975
1975
|
page?: number | undefined;
|
|
@@ -2437,9 +2437,9 @@ declare function __VLS_template(): {
|
|
|
2437
2437
|
};
|
|
2438
2438
|
load: (reset?: boolean) => Promise<void>;
|
|
2439
2439
|
search: (reset?: boolean) => Promise<boolean>;
|
|
2440
|
-
vxeRef:
|
|
2441
|
-
rowSortable:
|
|
2442
|
-
columnSortable:
|
|
2440
|
+
vxeRef: VxeGridInstance | undefined;
|
|
2441
|
+
rowSortable: any;
|
|
2442
|
+
columnSortable: any[];
|
|
2443
2443
|
insertActived: (record?: any, row?: any) => Promise<void>;
|
|
2444
2444
|
validate: () => Promise<import("vxe-table").VxeTableDefines.ValidatorErrorMapParams<any> | undefined>;
|
|
2445
2445
|
getSelected: () => any;
|
|
@@ -2455,7 +2455,7 @@ declare function __VLS_template(): {
|
|
|
2455
2455
|
} | undefined;
|
|
2456
2456
|
setSelectCell: (row?: any, column?: any) => void;
|
|
2457
2457
|
$vtjDynamicSlots: () => string[];
|
|
2458
|
-
}
|
|
2458
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
2459
2459
|
$slots: Partial<Record<string, (_: {
|
|
2460
2460
|
[key: string]: any;
|
|
2461
2461
|
$table: VxeTableConstructor<any>;
|
|
@@ -3024,9 +3024,9 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
3024
3024
|
autoPointer: {
|
|
3025
3025
|
type: BooleanConstructor;
|
|
3026
3026
|
};
|
|
3027
|
-
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> &
|
|
3028
|
-
$vtjEl:
|
|
3029
|
-
}
|
|
3027
|
+
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & {
|
|
3028
|
+
$vtjEl: any;
|
|
3029
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
3030
3030
|
$slots: {
|
|
3031
3031
|
default?(_: {}): any;
|
|
3032
3032
|
};
|
|
@@ -3152,9 +3152,9 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
3152
3152
|
footer: {
|
|
3153
3153
|
type: PropType<ContainerProps>;
|
|
3154
3154
|
};
|
|
3155
|
-
}>> & Readonly<{}>, "bodyRef" | ("radius" | "fit" | "border" | "card")> &
|
|
3156
|
-
bodyRef:
|
|
3157
|
-
}
|
|
3155
|
+
}>> & Readonly<{}>, "bodyRef" | ("radius" | "fit" | "border" | "card")> & {
|
|
3156
|
+
bodyRef: any;
|
|
3157
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
3158
3158
|
$slots: {
|
|
3159
3159
|
header?(_: {}): any;
|
|
3160
3160
|
title?(_: {}): any;
|
|
@@ -3623,9 +3623,9 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
3623
3623
|
isOutside: ShallowRef<boolean, boolean>;
|
|
3624
3624
|
stop: () => void;
|
|
3625
3625
|
}) => any) | undefined;
|
|
3626
|
-
}>, "close" | "cancel" | "submit" | "hide" | "show" | "$vtjEl" | "maximized" | "minimized" | "componentInstance" | "state" | "changeMode" | "panelRef" | "iframeRef" | ("size" | "primary" | "mode" | "pure" | "draggable" | "width" | "height" | "modelValue" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding")> &
|
|
3627
|
-
$vtjEl:
|
|
3628
|
-
panelRef:
|
|
3626
|
+
}>, "close" | "cancel" | "submit" | "hide" | "show" | "$vtjEl" | "maximized" | "minimized" | "componentInstance" | "state" | "changeMode" | "panelRef" | "iframeRef" | ("size" | "primary" | "mode" | "pure" | "draggable" | "width" | "height" | "modelValue" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding")> & {
|
|
3627
|
+
$vtjEl: any;
|
|
3628
|
+
panelRef: any;
|
|
3629
3629
|
state: {
|
|
3630
3630
|
mode: DialogMode;
|
|
3631
3631
|
wrapperWidth: number;
|
|
@@ -3638,8 +3638,8 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
3638
3638
|
dragging: boolean;
|
|
3639
3639
|
resizing: boolean;
|
|
3640
3640
|
};
|
|
3641
|
-
maximized:
|
|
3642
|
-
minimized:
|
|
3641
|
+
maximized: boolean;
|
|
3642
|
+
minimized: boolean;
|
|
3643
3643
|
changeMode: (mode: DialogMode) => void;
|
|
3644
3644
|
show: () => void;
|
|
3645
3645
|
hide: () => void;
|
|
@@ -3649,8 +3649,8 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
3649
3649
|
componentInstance: {
|
|
3650
3650
|
componentInstance: Record<string, any>;
|
|
3651
3651
|
} | undefined;
|
|
3652
|
-
iframeRef:
|
|
3653
|
-
}
|
|
3652
|
+
iframeRef: any;
|
|
3653
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
3654
3654
|
$slots: {
|
|
3655
3655
|
actions?(_: {}): any;
|
|
3656
3656
|
default?(_: {}): any;
|
|
@@ -4433,7 +4433,7 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
4433
4433
|
onCellSelected?: ((params: any) => any) | undefined;
|
|
4434
4434
|
onEditChange?: ((data: any[]) => any) | undefined;
|
|
4435
4435
|
onLoaded?: ((rows: any[]) => any) | undefined;
|
|
4436
|
-
}>, "search" | "load" | "state" | "remove" | "setSelectCell" | "validate" | "vxeRef" | ("auto" | "resizable" | "editable" | "page" | "pageSize" | "columns" | "rowSortable" | "columnSortable" | "customable" | "pager" | "pageSizes" | "virtual") | "doLayout" | "insertActived" | "getSelected" | "getRows" | "setActived" | "getRecords" | "$vtjDynamicSlots"> &
|
|
4436
|
+
}>, "search" | "load" | "state" | "remove" | "setSelectCell" | "validate" | "vxeRef" | ("auto" | "resizable" | "editable" | "page" | "pageSize" | "columns" | "rowSortable" | "columnSortable" | "customable" | "pager" | "pageSizes" | "virtual") | "doLayout" | "insertActived" | "getSelected" | "getRows" | "setActived" | "getRecords" | "$vtjDynamicSlots"> & {
|
|
4437
4437
|
state: {
|
|
4438
4438
|
[x: string]: any;
|
|
4439
4439
|
page?: number | undefined;
|
|
@@ -4901,9 +4901,9 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
4901
4901
|
};
|
|
4902
4902
|
load: (reset?: boolean) => Promise<void>;
|
|
4903
4903
|
search: (reset?: boolean) => Promise<boolean>;
|
|
4904
|
-
vxeRef:
|
|
4905
|
-
rowSortable:
|
|
4906
|
-
columnSortable:
|
|
4904
|
+
vxeRef: VxeGridInstance | undefined;
|
|
4905
|
+
rowSortable: any;
|
|
4906
|
+
columnSortable: any[];
|
|
4907
4907
|
insertActived: (record?: any, row?: any) => Promise<void>;
|
|
4908
4908
|
validate: () => Promise<import("vxe-table").VxeTableDefines.ValidatorErrorMapParams<any> | undefined>;
|
|
4909
4909
|
getSelected: () => any;
|
|
@@ -4919,7 +4919,7 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
4919
4919
|
} | undefined;
|
|
4920
4920
|
setSelectCell: (row?: any, column?: any) => void;
|
|
4921
4921
|
$vtjDynamicSlots: () => string[];
|
|
4922
|
-
}
|
|
4922
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
4923
4923
|
$slots: Partial<Record<string, (_: {
|
|
4924
4924
|
[key: string]: any;
|
|
4925
4925
|
$table: VxeTableConstructor<any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComputedRef, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, Ref, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle,
|
|
1
|
+
import { ComputedRef, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, Ref, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ComponentCustomProperties, DefineComponent, ExtractPropTypes, PropType, VNode, PublicProps, RendererNode, RendererElement } from 'vue';
|
|
2
2
|
import { FieldEditorProps, FieldOption, FieldOptionsLoader } from './types';
|
|
3
3
|
import { BaseSize } from '../../';
|
|
4
4
|
import { FormItemProp, FormItemRule, FormItemValidateState, ComponentSize, FormItemProps, FormValidateCallback, FormValidationResult, ElTooltipProps, UseTooltipProps } from 'element-plus';
|
|
@@ -89,15 +89,15 @@ declare function __VLS_template(): {
|
|
|
89
89
|
labelPosition: "left" | "right" | "top" | "";
|
|
90
90
|
inlineMessage: boolean;
|
|
91
91
|
showMessage: boolean;
|
|
92
|
-
}> & Omit<Readonly< FormItemProps> & Readonly<{}>, "size" | "required" | "validateState" | "clearValidate" | "validate" | "labelPosition" | "inlineMessage" | "showMessage" | "validateMessage" | "resetField" | "setInitialValue"> &
|
|
93
|
-
size:
|
|
94
|
-
validateMessage:
|
|
95
|
-
validateState:
|
|
92
|
+
}> & Omit<Readonly< FormItemProps> & Readonly<{}>, "size" | "required" | "validateState" | "clearValidate" | "validate" | "labelPosition" | "inlineMessage" | "showMessage" | "validateMessage" | "resetField" | "setInitialValue"> & {
|
|
93
|
+
size: "" | "large" | "default" | "small";
|
|
94
|
+
validateMessage: string;
|
|
95
|
+
validateState: "" | "success" | "error" | "validating";
|
|
96
96
|
validate: (trigger: string, callback?: FormValidateCallback) => FormValidationResult;
|
|
97
97
|
clearValidate: () => void;
|
|
98
98
|
resetField: () => void;
|
|
99
99
|
setInitialValue: (value: any) => void;
|
|
100
|
-
}
|
|
100
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
101
101
|
$slots: {
|
|
102
102
|
label?: (props: {
|
|
103
103
|
label: string;
|
|
@@ -344,15 +344,15 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
344
344
|
labelPosition: "left" | "right" | "top" | "";
|
|
345
345
|
inlineMessage: boolean;
|
|
346
346
|
showMessage: boolean;
|
|
347
|
-
}> & Omit<Readonly< FormItemProps> & Readonly<{}>, "size" | "required" | "validateState" | "clearValidate" | "validate" | "labelPosition" | "inlineMessage" | "showMessage" | "validateMessage" | "resetField" | "setInitialValue"> &
|
|
348
|
-
size:
|
|
349
|
-
validateMessage:
|
|
350
|
-
validateState:
|
|
347
|
+
}> & Omit<Readonly< FormItemProps> & Readonly<{}>, "size" | "required" | "validateState" | "clearValidate" | "validate" | "labelPosition" | "inlineMessage" | "showMessage" | "validateMessage" | "resetField" | "setInitialValue"> & {
|
|
348
|
+
size: "" | "large" | "default" | "small";
|
|
349
|
+
validateMessage: string;
|
|
350
|
+
validateState: "" | "success" | "error" | "validating";
|
|
351
351
|
validate: (trigger: string, callback?: FormValidateCallback) => FormValidationResult;
|
|
352
352
|
clearValidate: () => void;
|
|
353
353
|
resetField: () => void;
|
|
354
354
|
setInitialValue: (value: any) => void;
|
|
355
|
-
}
|
|
355
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
356
356
|
$slots: {
|
|
357
357
|
label?: (props: {
|
|
358
358
|
label: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FormModel } from './types';
|
|
2
|
-
import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, Reactive, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle,
|
|
2
|
+
import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, Reactive, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ComponentCustomProperties, DefineComponent, ExtractPropTypes, PropType, Ref, PublicProps } from 'vue';
|
|
3
3
|
import { FormRules, ComponentSize, FormItemProp, FormProps, FormValidateCallback, FormValidationResult, FormItemContext, ElTooltipProps, UseTooltipProps } from 'element-plus';
|
|
4
4
|
import { Arrayable } from 'element-plus/es/utils/typescript.mjs';
|
|
5
5
|
import { OnCleanup } from '@vue/reactivity';
|
|
@@ -96,7 +96,7 @@ declare function __VLS_template(): {
|
|
|
96
96
|
validateOnRuleChange: boolean;
|
|
97
97
|
}> & Omit<Readonly< FormProps> & Readonly<{
|
|
98
98
|
onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
99
|
-
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> &
|
|
99
|
+
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> & {
|
|
100
100
|
validate: (callback?: FormValidateCallback) => FormValidationResult;
|
|
101
101
|
validateField: (props?: Arrayable<FormItemProp>, callback?: FormValidateCallback) => FormValidationResult;
|
|
102
102
|
resetFields: (props?: Arrayable<FormItemProp>) => void;
|
|
@@ -105,7 +105,7 @@ declare function __VLS_template(): {
|
|
|
105
105
|
getField: (prop: FormItemProp) => FormItemContext | undefined;
|
|
106
106
|
fields: Reactive< FormItemContext[]>;
|
|
107
107
|
setInitialValues: (initModel: Record<string, any>) => void;
|
|
108
|
-
}
|
|
108
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
109
109
|
$slots: {
|
|
110
110
|
default?: (props: {}) => any;
|
|
111
111
|
};
|
|
@@ -309,7 +309,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
309
309
|
validateOnRuleChange: boolean;
|
|
310
310
|
}> & Omit<Readonly< FormProps> & Readonly<{
|
|
311
311
|
onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
312
|
-
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> &
|
|
312
|
+
}>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> & {
|
|
313
313
|
validate: (callback?: FormValidateCallback) => FormValidationResult;
|
|
314
314
|
validateField: (props?: Arrayable<FormItemProp>, callback?: FormValidateCallback) => FormValidationResult;
|
|
315
315
|
resetFields: (props?: Arrayable<FormItemProp>) => void;
|
|
@@ -318,7 +318,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
318
318
|
getField: (prop: FormItemProp) => FormItemContext | undefined;
|
|
319
319
|
fields: Reactive< FormItemContext[]>;
|
|
320
320
|
setInitialValues: (initModel: Record<string, any>) => void;
|
|
321
|
-
}
|
|
321
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
322
322
|
$slots: {
|
|
323
323
|
default?: (props: {}) => any;
|
|
324
324
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { VxeGlobalRendererHandles } from '../../types';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives, ComponentInternalInstance, StyleValue, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ShallowRef, ComputedRef, CSSProperties, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle,
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives, ComponentInternalInstance, StyleValue, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ShallowRef, ComputedRef, CSSProperties, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ComponentCustomProperties } from 'vue';
|
|
3
3
|
import { GridEditorProps } from '../../..';
|
|
4
4
|
import { ComponentSize, InputModelModifiers, InputType, InputAutoSize, InputProps } from 'element-plus';
|
|
5
5
|
import { IconPropType } from 'element-plus/es/utils/index.mjs';
|
|
@@ -180,19 +180,19 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
|
180
180
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
181
181
|
onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
|
|
182
182
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
183
|
-
}>, "clear" | "disabled" | "type" | "ref" | "input" | "select" | "textarea" | "tabindex" | "focus" | "blur" | "modelValue" | "validateEvent" | "modelModifiers" | "autosize" | "autocomplete" | "clearIcon" | "wordLimitPosition" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> &
|
|
184
|
-
input:
|
|
185
|
-
textarea:
|
|
186
|
-
ref:
|
|
187
|
-
textareaStyle:
|
|
188
|
-
autosize:
|
|
189
|
-
isComposing:
|
|
183
|
+
}>, "clear" | "disabled" | "type" | "ref" | "input" | "select" | "textarea" | "tabindex" | "focus" | "blur" | "modelValue" | "validateEvent" | "modelModifiers" | "autosize" | "autocomplete" | "clearIcon" | "wordLimitPosition" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & {
|
|
184
|
+
input: HTMLInputElement | undefined;
|
|
185
|
+
textarea: HTMLTextAreaElement | undefined;
|
|
186
|
+
ref: HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
187
|
+
textareaStyle: StyleValue;
|
|
188
|
+
autosize: InputAutoSize | undefined;
|
|
189
|
+
isComposing: boolean;
|
|
190
190
|
focus: () => void | undefined;
|
|
191
191
|
blur: () => void | undefined;
|
|
192
192
|
select: () => void;
|
|
193
193
|
clear: (evt?: MouseEvent) => void;
|
|
194
194
|
resizeTextarea: () => void;
|
|
195
|
-
}
|
|
195
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
196
196
|
$slots: {
|
|
197
197
|
prepend?: (props: {}) => any;
|
|
198
198
|
} & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { GridEditorProps } from './types';
|
|
2
|
-
import { DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, StyleValue, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ShallowRef, ComputedRef, CSSProperties, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle,
|
|
2
|
+
import { DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, StyleValue, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ShallowRef, ComputedRef, CSSProperties, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ComponentCustomProperties } from 'vue';
|
|
3
3
|
import { ComponentSize, InputModelModifiers, InputType, InputAutoSize, InputProps } from 'element-plus';
|
|
4
4
|
import { IconPropType } from 'element-plus/es/utils/index.mjs';
|
|
5
5
|
import { OnCleanup } from '@vue/reactivity';
|
|
@@ -174,19 +174,19 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
174
174
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
175
175
|
onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
|
|
176
176
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
177
|
-
}>, "clear" | "disabled" | "type" | "ref" | "input" | "select" | "textarea" | "tabindex" | "focus" | "blur" | "modelValue" | "validateEvent" | "modelModifiers" | "autosize" | "autocomplete" | "clearIcon" | "wordLimitPosition" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> &
|
|
178
|
-
input:
|
|
179
|
-
textarea:
|
|
180
|
-
ref:
|
|
181
|
-
textareaStyle:
|
|
182
|
-
autosize:
|
|
183
|
-
isComposing:
|
|
177
|
+
}>, "clear" | "disabled" | "type" | "ref" | "input" | "select" | "textarea" | "tabindex" | "focus" | "blur" | "modelValue" | "validateEvent" | "modelModifiers" | "autosize" | "autocomplete" | "clearIcon" | "wordLimitPosition" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & {
|
|
178
|
+
input: HTMLInputElement | undefined;
|
|
179
|
+
textarea: HTMLTextAreaElement | undefined;
|
|
180
|
+
ref: HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
181
|
+
textareaStyle: StyleValue;
|
|
182
|
+
autosize: InputAutoSize | undefined;
|
|
183
|
+
isComposing: boolean;
|
|
184
184
|
focus: () => void | undefined;
|
|
185
185
|
blur: () => void | undefined;
|
|
186
186
|
select: () => void;
|
|
187
187
|
clear: (evt?: MouseEvent) => void;
|
|
188
188
|
resizeTextarea: () => void;
|
|
189
|
-
}
|
|
189
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
190
190
|
$slots: {
|
|
191
191
|
prepend?: (props: {}) => any;
|
|
192
192
|
} & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ActionMenuItem } from '../';
|
|
2
2
|
import { MaskTab } from './types';
|
|
3
|
-
import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, ComputedRef, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle,
|
|
3
|
+
import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, ComputedRef, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ComponentCustomProperties, DefineComponent, StyleValue } from 'vue';
|
|
4
4
|
import { Props } from './components/Tabs';
|
|
5
5
|
import { MenuDataItem } from '../menu';
|
|
6
6
|
import { ContainerWrap, ContainerDirection, ContainerJustifyContent, ContainerAlignItems, ContainerAlignContent } from '../container';
|
|
@@ -274,9 +274,9 @@ declare function __VLS_template(): {
|
|
|
274
274
|
autoPointer: {
|
|
275
275
|
type: BooleanConstructor;
|
|
276
276
|
};
|
|
277
|
-
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> &
|
|
278
|
-
$vtjEl:
|
|
279
|
-
}
|
|
277
|
+
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & {
|
|
278
|
+
$vtjEl: any;
|
|
279
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
280
280
|
$slots: {
|
|
281
281
|
default?(_: {}): any;
|
|
282
282
|
};
|
|
@@ -1559,9 +1559,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1559
1559
|
autoPointer: {
|
|
1560
1560
|
type: BooleanConstructor;
|
|
1561
1561
|
};
|
|
1562
|
-
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> &
|
|
1563
|
-
$vtjEl:
|
|
1564
|
-
}
|
|
1562
|
+
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & {
|
|
1563
|
+
$vtjEl: any;
|
|
1564
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
1565
1565
|
$slots: {
|
|
1566
1566
|
default?(_: {}): any;
|
|
1567
1567
|
};
|