@dazhicheng/ui 1.6.25 → 1.6.26
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/components/tt-api-component/index.d.ts +35 -24
- package/dist/components/tt-api-component/index.vue.d.ts +34 -0
- package/dist/components/tt-area/TtArea.vue.d.ts +2 -0
- package/dist/components/tt-area/index.d.ts +1 -1
- package/dist/components/tt-button/components/AddButton.vue.d.ts +2 -0
- package/dist/components/tt-button/index.d.ts +589 -260
- package/dist/components/tt-button/index.vue.d.ts +466 -0
- package/dist/components/tt-checkbox/index.d.ts +35 -26
- package/dist/components/tt-checkbox/index.vue.d.ts +28 -0
- package/dist/components/tt-drawer/index.d.ts +299 -306
- package/dist/components/tt-drawer/src/{RenderDrawer.d.ts → RenderDrawer.vue.d.ts} +146 -149
- package/dist/components/tt-drawer/src/components/{DrawerFooter.d.ts → DrawerFooter.vue.d.ts} +16 -18
- package/dist/components/tt-drawer/src/components/{DrawerHeader.d.ts → DrawerHeader.vue.d.ts} +3 -4
- package/dist/components/tt-drawer/src/hooks/useDrawerRender.d.ts +2 -2
- package/dist/components/tt-drawer/src/hooks/useResizable.d.ts +2 -2
- package/dist/components/tt-drawer/src/utils/drawer-api.d.ts +2 -4
- package/dist/components/tt-empty/index.d.ts +8 -10
- package/dist/components/tt-form/src/components/{ExpandableArrow.d.ts → ExpandableArrow.vue.d.ts} +4 -5
- package/dist/components/tt-form/src/components/{FormActions.d.ts → FormActions.vue.d.ts} +5 -6
- package/dist/components/tt-form/src/components/{FormElInput.d.ts → FormElInput.vue.d.ts} +101 -105
- package/dist/components/tt-form/src/components/Slot.d.ts +4 -4
- package/dist/components/tt-form/src/form/{FormControl.d.ts → FormControl.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form/{FormDescription.d.ts → FormDescription.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form/{FormItem.d.ts → FormItem.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form/{FormLabel.d.ts → FormLabel.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form/FormMessage.vue.d.ts +2 -0
- package/dist/components/tt-form/src/form/FormMessageToolTip.vue.d.ts +8 -0
- package/dist/components/tt-form/src/form/{FormWarnMessage.d.ts → FormWarnMessage.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form/{RenderContent.d.ts → RenderContent.vue.d.ts} +4 -4
- package/dist/components/tt-form/src/form/index.d.ts +8 -8
- package/dist/components/tt-form/src/form/useFormField.d.ts +5 -6
- package/dist/components/tt-form/src/form-render/{FormField.d.ts → FormField.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form-render/FormFieldContact.d.ts +6 -6
- package/dist/components/tt-form/src/form-render/{FormLabel.d.ts → FormLabel.vue.d.ts} +2 -3
- package/dist/components/tt-form/src/form-render/array-register/FormArrayRegister.d.ts +11 -14
- package/dist/components/tt-form/src/form-render/context.d.ts +4 -5
- package/dist/components/tt-form/src/form-render/dependencies.d.ts +6 -7
- package/dist/components/tt-form/src/form-render/expandable.d.ts +3 -4
- package/dist/components/tt-form/src/form-render/{form.d.ts → form.vue.d.ts} +8 -9
- package/dist/components/tt-form/src/form-render/index.d.ts +3 -3
- package/dist/components/tt-form/src/formApi.d.ts +3 -3
- package/dist/components/tt-form/src/group-form/{GroupForm.d.ts → GroupForm.vue.d.ts} +5 -7
- package/dist/components/tt-form/src/group-form/{GroupSection.d.ts → GroupSection.vue.d.ts} +5 -7
- package/dist/components/tt-form/src/group-form/{LazyFormField.d.ts → LazyFormField.vue.d.ts} +3 -5
- package/dist/components/tt-form/src/group-form/groupFormApi.d.ts +5 -7
- package/dist/components/tt-form/src/hooks/useFormFieldBus.d.ts +2 -3
- package/dist/components/tt-form/src/hooks/useForwardProps.d.ts +2 -2
- package/dist/components/tt-form/src/hooks/useForwardPropsEmits.d.ts +2 -2
- package/dist/components/tt-form/src/index.vue.d.ts +216 -0
- package/dist/components/tt-form/src/useForm.d.ts +1 -2
- package/dist/components/tt-form/src/useFormContext.d.ts +1 -2
- package/dist/components/tt-form-item-error-tooltip/index.d.ts +337 -61
- package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +298 -0
- package/dist/components/tt-icon/components/AddIcon.vue.d.ts +7 -0
- package/dist/components/tt-icon/components/SubIcon.vue.d.ts +7 -0
- package/dist/components/tt-icon/index.d.ts +115 -24
- package/dist/components/tt-icon/index.vue.d.ts +32 -0
- package/dist/components/tt-image/index.d.ts +41 -45
- package/dist/components/tt-image/src/components/ImageViewer.d.ts +26 -30
- package/dist/components/tt-image/tt-image.d.ts +34 -36
- package/dist/components/tt-loading/index.d.ts +2 -5
- package/dist/components/tt-loading/src/loading.vue.d.ts +12 -0
- package/dist/components/tt-log/index.d.ts +6 -7
- package/dist/components/tt-log/index.vue.d.ts +5 -0
- package/dist/components/tt-modal/index.d.ts +364 -371
- package/dist/components/tt-modal/src/{RenderModal.d.ts → RenderModal.vue.d.ts} +115 -118
- package/dist/components/tt-modal/src/components/{ModalFooter.d.ts → ModalFooter.vue.d.ts} +23 -26
- package/dist/components/tt-modal/src/components/{ModalHeader.d.ts → ModalHeader.vue.d.ts} +3 -4
- package/dist/components/tt-modal/src/components/{ModalWrapper.d.ts → ModalWrapper.vue.d.ts} +24 -27
- package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +29 -32
- package/dist/components/tt-modal/src/typing.d.ts +2 -2
- package/dist/components/tt-modal/src/utils/modal-api.d.ts +1 -2
- package/dist/components/tt-modal-form/hooks/useModalFormSlot.d.ts +2 -3
- package/dist/components/tt-modal-form/index.d.ts +2 -46
- package/dist/components/tt-modal-form/index.vue.d.ts +45 -0
- package/dist/components/tt-modal-form/useModalForm.d.ts +3 -4
- package/dist/components/tt-nav-anchor/index.d.ts +12 -15
- package/dist/components/tt-nav-anchor/src/{TtNavAnchor.d.ts → TtNavAnchor.vue.d.ts} +4 -4
- package/dist/components/tt-panel-select/index.d.ts +1 -1
- package/dist/components/tt-panel-select/src/components/{PanelLeft.d.ts → PanelLeft.vue.d.ts} +3 -4
- package/dist/components/tt-panel-select/src/components/{PanelMiddle.d.ts → PanelMiddle.vue.d.ts} +80 -83
- package/dist/components/tt-panel-select/src/components/{PanelRight.d.ts → PanelRight.vue.d.ts} +32 -34
- package/dist/components/tt-panel-select/src/hooks/usePanelData.d.ts +6 -7
- package/dist/components/tt-panel-select/src/hooks/usePanelSelection.d.ts +5 -5
- package/dist/components/tt-panel-select/src/{index.d.ts → index.vue.d.ts} +80 -84
- package/dist/components/tt-radio-group/index.d.ts +50 -31
- package/dist/components/tt-radio-group/index.vue.d.ts +33 -0
- package/dist/components/tt-select/index.d.ts +1 -1
- package/dist/components/tt-select/src/{Select.d.ts → Select.vue.d.ts} +141 -146
- package/dist/components/tt-select/src/components/{SelectTable.d.ts → SelectTable.vue.d.ts} +36 -40
- package/dist/components/tt-select/src/components/{Table.d.ts → Table.vue.d.ts} +38 -41
- package/dist/components/tt-select/src/hooks/useGrid.d.ts +2 -2
- package/dist/components/tt-select/src/hooks/usePagination.d.ts +3 -4
- package/dist/components/tt-select/src/hooks/useSelect.d.ts +2 -2
- package/dist/components/tt-select/src/hooks/useSelectTableEvent.d.ts +1 -1
- package/dist/components/tt-table/index.d.ts +279 -287
- package/dist/components/tt-table/src/{Table.d.ts → Table.vue.d.ts} +204 -209
- package/dist/components/tt-table/src/{TableForm.d.ts → TableForm.vue.d.ts} +80 -83
- package/dist/components/tt-table/src/components/RowContext.d.ts +5 -5
- package/dist/components/tt-table/src/components/{TableAction.d.ts → TableAction.vue.d.ts} +4 -4
- package/dist/components/tt-table/src/components/TableButtons.d.ts +5 -5
- package/dist/components/tt-table/src/components/{TableColumnModal.d.ts → TableColumnModal.vue.d.ts} +4 -5
- package/dist/components/tt-table/src/components/{TableToolbarTools.d.ts → TableToolbarTools.vue.d.ts} +6 -7
- package/dist/components/tt-table/src/hooks/useColumns.d.ts +44 -45
- package/dist/components/tt-table/src/hooks/usePagination.d.ts +33 -33
- package/dist/components/tt-table/src/hooks/useQuery.d.ts +2 -2
- package/dist/components/tt-table/src/hooks/useRowSelection.d.ts +2 -2
- package/dist/components/tt-table/src/hooks/useSideSlot.d.ts +110 -112
- package/dist/components/tt-table/src/hooks/useTableData.d.ts +2 -2
- package/dist/components/tt-table/src/props.d.ts +17 -19
- package/dist/components/tt-table/src/utils/table-api.d.ts +4 -4
- package/dist/components/tt-table/src/utils/table-form-api.d.ts +1 -2
- package/dist/components/tt-text/index.d.ts +59 -34
- package/dist/components/tt-text/index.vue.d.ts +50 -0
- package/dist/components/tt-upload/index.d.ts +311 -317
- package/dist/components/tt-upload/src/TtUpload.vue.d.ts +517 -0
- package/dist/components/tt-upload/src/typing.d.ts +47 -49
- package/dist/hooks/useLoading.d.ts +2 -2
- package/dist/hooks/useScreenshotOss.d.ts +2 -2
- package/dist/index.d.ts +1 -2
- package/package.json +3 -3
- package/dist/components/tt-area/TtArea.d.ts +0 -3
- package/dist/components/tt-button/components/AddButton.d.ts +0 -3
- package/dist/components/tt-form/src/form/FormMessage.d.ts +0 -3
- package/dist/components/tt-form/src/form/FormMessageToolTip.d.ts +0 -9
- package/dist/components/tt-form/src/index.d.ts +0 -217
- package/dist/components/tt-icon/components/AddIcon.d.ts +0 -8
- package/dist/components/tt-icon/components/SubIcon.d.ts +0 -8
- package/dist/components/tt-loading/src/loading.d.ts +0 -13
- package/dist/components/tt-upload/src/TtUpload.d.ts +0 -519
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import { PropType, nextTick
|
|
1
|
+
import { PropType, nextTick } from 'vue';
|
|
2
2
|
import { DrawerInstance, TtDrawerExtendedDrawerApi } from './typing';
|
|
3
3
|
import { Recordable } from '../../types';
|
|
4
|
-
import { DialogBeforeCloseFn, DialogTransition, DrawerProps, ButtonProps } from 'element-plus';
|
|
5
|
-
import { IconPropType, EpPropFinalized, EpPropMergeType } from 'element-plus/es/utils/index.mjs';
|
|
6
|
-
import { OnCleanup } from '@vue/reactivity';
|
|
7
4
|
declare function __VLS_template(): {
|
|
8
5
|
attrs: Partial<{}>;
|
|
9
6
|
slots: Readonly<{
|
|
@@ -19,7 +16,7 @@ declare function __VLS_template(): {
|
|
|
19
16
|
};
|
|
20
17
|
refs: {
|
|
21
18
|
drawerRef: ({
|
|
22
|
-
$: ComponentInternalInstance;
|
|
19
|
+
$: import('vue').ComponentInternalInstance;
|
|
23
20
|
$data: {};
|
|
24
21
|
$props: {
|
|
25
22
|
readonly direction?: "ltr" | "rtl" | "ttb" | "btt" | undefined;
|
|
@@ -30,7 +27,7 @@ declare function __VLS_template(): {
|
|
|
30
27
|
readonly headerAriaLevel?: string | undefined;
|
|
31
28
|
readonly appendToBody?: boolean | undefined;
|
|
32
29
|
readonly appendTo?: (string | HTMLElement) | undefined;
|
|
33
|
-
readonly beforeClose?: DialogBeforeCloseFn | undefined;
|
|
30
|
+
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
34
31
|
readonly destroyOnClose?: boolean | undefined;
|
|
35
32
|
readonly closeOnClickModal?: boolean | undefined;
|
|
36
33
|
readonly closeOnPressEscape?: boolean | undefined;
|
|
@@ -45,10 +42,10 @@ declare function __VLS_template(): {
|
|
|
45
42
|
readonly width?: string | number | undefined;
|
|
46
43
|
readonly zIndex?: number | undefined;
|
|
47
44
|
readonly trapFocus?: boolean | undefined;
|
|
48
|
-
readonly transition?: DialogTransition | undefined;
|
|
45
|
+
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
49
46
|
readonly center?: boolean | undefined;
|
|
50
47
|
readonly alignCenter?: boolean | undefined;
|
|
51
|
-
readonly closeIcon?: IconPropType | undefined;
|
|
48
|
+
readonly closeIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
52
49
|
readonly draggable?: boolean | undefined;
|
|
53
50
|
readonly overflow?: boolean | undefined;
|
|
54
51
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -68,7 +65,7 @@ declare function __VLS_template(): {
|
|
|
68
65
|
readonly onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
69
66
|
readonly "onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
|
|
70
67
|
readonly "onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
|
|
71
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
68
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
72
69
|
$attrs: {
|
|
73
70
|
[x: string]: unknown;
|
|
74
71
|
};
|
|
@@ -76,14 +73,14 @@ declare function __VLS_template(): {
|
|
|
76
73
|
[x: string]: unknown;
|
|
77
74
|
};
|
|
78
75
|
$slots: Readonly<{
|
|
79
|
-
[name: string]: Slot<any> | undefined;
|
|
76
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
80
77
|
}>;
|
|
81
|
-
$root: ComponentPublicInstance | null;
|
|
82
|
-
$parent: ComponentPublicInstance | null;
|
|
78
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
79
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
83
80
|
$host: Element | null;
|
|
84
81
|
$emit: ((event: "close") => void) & ((event: "resize", evt: MouseEvent, size: number) => void) & ((event: "open") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "closed") => void) & ((event: "opened") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void) & ((event: "resize-start", evt: MouseEvent, size: number) => void) & ((event: "resize-end", evt: MouseEvent, size: number) => void);
|
|
85
82
|
$el: any;
|
|
86
|
-
$options: ComponentOptionsBase<Readonly<
|
|
83
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').DrawerProps> & Readonly<{
|
|
87
84
|
onClose?: (() => any) | undefined;
|
|
88
85
|
onResize?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
89
86
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -98,7 +95,7 @@ declare function __VLS_template(): {
|
|
|
98
95
|
handleClose: () => void;
|
|
99
96
|
afterEnter: () => void;
|
|
100
97
|
afterLeave: () => void;
|
|
101
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
98
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
102
99
|
close: () => void;
|
|
103
100
|
resize: (evt: MouseEvent, size: number) => void;
|
|
104
101
|
"update:modelValue": (value: boolean) => void;
|
|
@@ -113,7 +110,7 @@ declare function __VLS_template(): {
|
|
|
113
110
|
appendTo: string | HTMLElement;
|
|
114
111
|
title: string;
|
|
115
112
|
size: string | number;
|
|
116
|
-
transition: DialogTransition;
|
|
113
|
+
transition: import('element-plus').DialogTransition;
|
|
117
114
|
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
118
115
|
overflow: boolean;
|
|
119
116
|
closeOnClickModal: boolean;
|
|
@@ -129,7 +126,7 @@ declare function __VLS_template(): {
|
|
|
129
126
|
ariaLevel: string;
|
|
130
127
|
withHeader: boolean;
|
|
131
128
|
modalFade: boolean;
|
|
132
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
129
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
133
130
|
beforeCreate?: (() => void) | (() => void)[];
|
|
134
131
|
created?: (() => void) | (() => void)[];
|
|
135
132
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -142,18 +139,18 @@ declare function __VLS_template(): {
|
|
|
142
139
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
143
140
|
destroyed?: (() => void) | (() => void)[];
|
|
144
141
|
unmounted?: (() => void) | (() => void)[];
|
|
145
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
146
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
147
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
142
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
143
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
144
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
148
145
|
};
|
|
149
146
|
$forceUpdate: () => void;
|
|
150
147
|
$nextTick: typeof nextTick;
|
|
151
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
148
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
152
149
|
} & Readonly<{
|
|
153
150
|
appendTo: string | HTMLElement;
|
|
154
151
|
title: string;
|
|
155
152
|
size: string | number;
|
|
156
|
-
transition: DialogTransition;
|
|
153
|
+
transition: import('element-plus').DialogTransition;
|
|
157
154
|
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
158
155
|
overflow: boolean;
|
|
159
156
|
closeOnClickModal: boolean;
|
|
@@ -169,7 +166,7 @@ declare function __VLS_template(): {
|
|
|
169
166
|
ariaLevel: string;
|
|
170
167
|
withHeader: boolean;
|
|
171
168
|
modalFade: boolean;
|
|
172
|
-
}> & Omit<Readonly<
|
|
169
|
+
}> & Omit<Readonly<import('element-plus').DrawerProps> & Readonly<{
|
|
173
170
|
onClose?: (() => any) | undefined;
|
|
174
171
|
onResize?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
175
172
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -180,11 +177,11 @@ declare function __VLS_template(): {
|
|
|
180
177
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
181
178
|
"onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
182
179
|
"onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
183
|
-
}>, "title" | "appendTo" | "transition" | "size" | "draggable" | "showClose" | "closeOnPressEscape" | "direction" | "overflow" | "modal" | "closeOnClickModal" | "lockScroll" | "openDelay" | "closeDelay" | "headerAriaLevel" | "alignCenter" | "ariaLevel" | "handleClose" | "withHeader" | "modalFade" | "afterEnter" | "afterLeave"> & ShallowUnwrapRef<{
|
|
180
|
+
}>, "title" | "appendTo" | "transition" | "size" | "draggable" | "showClose" | "closeOnPressEscape" | "direction" | "overflow" | "modal" | "closeOnClickModal" | "lockScroll" | "openDelay" | "closeDelay" | "headerAriaLevel" | "alignCenter" | "ariaLevel" | "handleClose" | "withHeader" | "modalFade" | "afterEnter" | "afterLeave"> & import('vue').ShallowUnwrapRef<{
|
|
184
181
|
handleClose: () => void;
|
|
185
182
|
afterEnter: () => void;
|
|
186
183
|
afterLeave: () => void;
|
|
187
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
184
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
188
185
|
$slots: {
|
|
189
186
|
header?: (props: {
|
|
190
187
|
close: () => void;
|
|
@@ -203,7 +200,7 @@ declare function __VLS_template(): {
|
|
|
203
200
|
rootEl: any;
|
|
204
201
|
};
|
|
205
202
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
206
|
-
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
203
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
207
204
|
/** drawerApi */
|
|
208
205
|
drawerApi: {
|
|
209
206
|
type: PropType<TtDrawerExtendedDrawerApi>;
|
|
@@ -212,14 +209,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
212
209
|
confirmLoading: any;
|
|
213
210
|
showCancelBtn: any;
|
|
214
211
|
cancelButtonProps: {
|
|
215
|
-
type: PropType<Partial<
|
|
216
|
-
default: Partial<
|
|
212
|
+
type: PropType<Partial<import('element-plus').ButtonProps>>;
|
|
213
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
217
214
|
};
|
|
218
215
|
cancelText: any;
|
|
219
216
|
showOkBtn: any;
|
|
220
217
|
okButtonProps: {
|
|
221
|
-
type: PropType<Partial<
|
|
222
|
-
default: Partial<
|
|
218
|
+
type: PropType<Partial<import('element-plus').ButtonProps>>;
|
|
219
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
223
220
|
};
|
|
224
221
|
okText: any;
|
|
225
222
|
okType: any;
|
|
@@ -249,25 +246,25 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
249
246
|
type: BooleanConstructor;
|
|
250
247
|
default: () => boolean | undefined;
|
|
251
248
|
};
|
|
252
|
-
direction: EpPropFinalized<StringConstructor, "ltr" | "rtl" | "ttb" | "btt", unknown, "rtl", boolean>;
|
|
249
|
+
direction: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, "ltr" | "rtl" | "ttb" | "btt", unknown, "rtl", boolean>;
|
|
253
250
|
resizable: BooleanConstructor;
|
|
254
|
-
withHeader: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
255
|
-
modalFade: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
256
|
-
headerAriaLevel: EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
251
|
+
withHeader: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
252
|
+
modalFade: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
253
|
+
headerAriaLevel: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
257
254
|
appendToBody: BooleanConstructor;
|
|
258
|
-
appendTo: EpPropFinalized<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>) | (((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>)) | null)[], unknown, unknown, "body", boolean>;
|
|
255
|
+
appendTo: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>) | (((new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>)) | null)[], unknown, unknown, "body", boolean>;
|
|
259
256
|
beforeClose: {
|
|
260
|
-
readonly type: PropType<
|
|
257
|
+
readonly type: PropType<import('element-plus').DialogBeforeCloseFn>;
|
|
261
258
|
readonly required: false;
|
|
262
259
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
263
260
|
__epPropKey: true;
|
|
264
261
|
};
|
|
265
|
-
closeOnClickModal: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
266
|
-
closeOnPressEscape: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
267
|
-
lockScroll: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
262
|
+
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
263
|
+
closeOnPressEscape: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
264
|
+
lockScroll: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
268
265
|
modalPenetrable: BooleanConstructor;
|
|
269
|
-
openDelay: EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
270
|
-
closeDelay: EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
266
|
+
openDelay: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
267
|
+
closeDelay: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
271
268
|
top: {
|
|
272
269
|
readonly type: PropType<string>;
|
|
273
270
|
readonly required: false;
|
|
@@ -280,7 +277,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
280
277
|
bodyClass: StringConstructor;
|
|
281
278
|
footerClass: StringConstructor;
|
|
282
279
|
width: {
|
|
283
|
-
readonly type: PropType<
|
|
280
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
284
281
|
readonly required: false;
|
|
285
282
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
286
283
|
__epPropKey: true;
|
|
@@ -292,23 +289,23 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
292
289
|
__epPropKey: true;
|
|
293
290
|
};
|
|
294
291
|
trapFocus: BooleanConstructor;
|
|
295
|
-
transition: EpPropFinalized<(new (...args: any[]) => string | TransitionProps) | (() => DialogTransition) | (((new (...args: any[]) => string | TransitionProps) | (() => DialogTransition)) | null)[], unknown, unknown, undefined, boolean>;
|
|
292
|
+
transition: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | import('vue').TransitionProps) | (() => import('element-plus').DialogTransition) | (((new (...args: any[]) => string | import('vue').TransitionProps) | (() => import('element-plus').DialogTransition)) | null)[], unknown, unknown, undefined, boolean>;
|
|
296
293
|
center: BooleanConstructor;
|
|
297
|
-
alignCenter: EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
294
|
+
alignCenter: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
298
295
|
closeIcon: {
|
|
299
|
-
readonly type: PropType<
|
|
296
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | (((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component)) | null)[], unknown, unknown>>;
|
|
300
297
|
readonly required: false;
|
|
301
298
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
302
299
|
__epPropKey: true;
|
|
303
300
|
};
|
|
304
|
-
draggable: EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
305
|
-
overflow: EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
301
|
+
draggable: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
302
|
+
overflow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
306
303
|
fullscreen: BooleanConstructor;
|
|
307
|
-
showClose: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
308
|
-
ariaLevel: EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
304
|
+
showClose: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
305
|
+
ariaLevel: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
309
306
|
}>, {
|
|
310
|
-
drawerRef: Ref<({
|
|
311
|
-
$: ComponentInternalInstance;
|
|
307
|
+
drawerRef: import('vue').Ref<({
|
|
308
|
+
$: import('vue').ComponentInternalInstance;
|
|
312
309
|
$data: {};
|
|
313
310
|
$props: {
|
|
314
311
|
readonly direction?: "ltr" | "rtl" | "ttb" | "btt" | undefined;
|
|
@@ -319,7 +316,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
319
316
|
readonly headerAriaLevel?: string | undefined;
|
|
320
317
|
readonly appendToBody?: boolean | undefined;
|
|
321
318
|
readonly appendTo?: (string | HTMLElement) | undefined;
|
|
322
|
-
readonly beforeClose?: DialogBeforeCloseFn | undefined;
|
|
319
|
+
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
323
320
|
readonly destroyOnClose?: boolean | undefined;
|
|
324
321
|
readonly closeOnClickModal?: boolean | undefined;
|
|
325
322
|
readonly closeOnPressEscape?: boolean | undefined;
|
|
@@ -334,10 +331,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
334
331
|
readonly width?: string | number | undefined;
|
|
335
332
|
readonly zIndex?: number | undefined;
|
|
336
333
|
readonly trapFocus?: boolean | undefined;
|
|
337
|
-
readonly transition?: DialogTransition | undefined;
|
|
334
|
+
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
338
335
|
readonly center?: boolean | undefined;
|
|
339
336
|
readonly alignCenter?: boolean | undefined;
|
|
340
|
-
readonly closeIcon?: IconPropType | undefined;
|
|
337
|
+
readonly closeIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
341
338
|
readonly draggable?: boolean | undefined;
|
|
342
339
|
readonly overflow?: boolean | undefined;
|
|
343
340
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -357,7 +354,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
357
354
|
readonly onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
358
355
|
readonly "onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
|
|
359
356
|
readonly "onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
|
|
360
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
357
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
361
358
|
$attrs: {
|
|
362
359
|
[x: string]: unknown;
|
|
363
360
|
};
|
|
@@ -365,14 +362,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
365
362
|
[x: string]: unknown;
|
|
366
363
|
};
|
|
367
364
|
$slots: Readonly<{
|
|
368
|
-
[name: string]: Slot<any> | undefined;
|
|
365
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
369
366
|
}>;
|
|
370
|
-
$root: ComponentPublicInstance | null;
|
|
371
|
-
$parent: ComponentPublicInstance | null;
|
|
367
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
368
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
372
369
|
$host: Element | null;
|
|
373
370
|
$emit: ((event: "close") => void) & ((event: "resize", evt: MouseEvent, size: number) => void) & ((event: "open") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "closed") => void) & ((event: "opened") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void) & ((event: "resize-start", evt: MouseEvent, size: number) => void) & ((event: "resize-end", evt: MouseEvent, size: number) => void);
|
|
374
371
|
$el: any;
|
|
375
|
-
$options: ComponentOptionsBase<Readonly<
|
|
372
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').DrawerProps> & Readonly<{
|
|
376
373
|
onClose?: (() => any) | undefined;
|
|
377
374
|
onResize?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
378
375
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -387,7 +384,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
387
384
|
handleClose: () => void;
|
|
388
385
|
afterEnter: () => void;
|
|
389
386
|
afterLeave: () => void;
|
|
390
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
387
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
391
388
|
close: () => void;
|
|
392
389
|
resize: (evt: MouseEvent, size: number) => void;
|
|
393
390
|
"update:modelValue": (value: boolean) => void;
|
|
@@ -402,7 +399,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
402
399
|
appendTo: string | HTMLElement;
|
|
403
400
|
title: string;
|
|
404
401
|
size: string | number;
|
|
405
|
-
transition: DialogTransition;
|
|
402
|
+
transition: import('element-plus').DialogTransition;
|
|
406
403
|
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
407
404
|
overflow: boolean;
|
|
408
405
|
closeOnClickModal: boolean;
|
|
@@ -418,7 +415,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
418
415
|
ariaLevel: string;
|
|
419
416
|
withHeader: boolean;
|
|
420
417
|
modalFade: boolean;
|
|
421
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
418
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
422
419
|
beforeCreate?: (() => void) | (() => void)[];
|
|
423
420
|
created?: (() => void) | (() => void)[];
|
|
424
421
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -431,18 +428,18 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
431
428
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
432
429
|
destroyed?: (() => void) | (() => void)[];
|
|
433
430
|
unmounted?: (() => void) | (() => void)[];
|
|
434
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
435
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
436
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
431
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
432
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
433
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
437
434
|
};
|
|
438
435
|
$forceUpdate: () => void;
|
|
439
436
|
$nextTick: typeof nextTick;
|
|
440
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
437
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
441
438
|
} & Readonly<{
|
|
442
439
|
appendTo: string | HTMLElement;
|
|
443
440
|
title: string;
|
|
444
441
|
size: string | number;
|
|
445
|
-
transition: DialogTransition;
|
|
442
|
+
transition: import('element-plus').DialogTransition;
|
|
446
443
|
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
447
444
|
overflow: boolean;
|
|
448
445
|
closeOnClickModal: boolean;
|
|
@@ -458,7 +455,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
458
455
|
ariaLevel: string;
|
|
459
456
|
withHeader: boolean;
|
|
460
457
|
modalFade: boolean;
|
|
461
|
-
}> & Omit<Readonly<
|
|
458
|
+
}> & Omit<Readonly<import('element-plus').DrawerProps> & Readonly<{
|
|
462
459
|
onClose?: (() => any) | undefined;
|
|
463
460
|
onResize?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
464
461
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -469,11 +466,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
469
466
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
470
467
|
"onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
471
468
|
"onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
472
|
-
}>, "title" | "appendTo" | "transition" | "size" | "draggable" | "showClose" | "closeOnPressEscape" | "direction" | "overflow" | "modal" | "closeOnClickModal" | "lockScroll" | "openDelay" | "closeDelay" | "headerAriaLevel" | "alignCenter" | "ariaLevel" | "handleClose" | "withHeader" | "modalFade" | "afterEnter" | "afterLeave"> & ShallowUnwrapRef<{
|
|
469
|
+
}>, "title" | "appendTo" | "transition" | "size" | "draggable" | "showClose" | "closeOnPressEscape" | "direction" | "overflow" | "modal" | "closeOnClickModal" | "lockScroll" | "openDelay" | "closeDelay" | "headerAriaLevel" | "alignCenter" | "ariaLevel" | "handleClose" | "withHeader" | "modalFade" | "afterEnter" | "afterLeave"> & import('vue').ShallowUnwrapRef<{
|
|
473
470
|
handleClose: () => void;
|
|
474
471
|
afterEnter: () => void;
|
|
475
472
|
afterLeave: () => void;
|
|
476
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
473
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
477
474
|
$slots: {
|
|
478
475
|
header?: (props: {
|
|
479
476
|
close: () => void;
|
|
@@ -488,7 +485,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
488
485
|
footer?: (props: {}) => any;
|
|
489
486
|
};
|
|
490
487
|
}) | null, ({
|
|
491
|
-
$: ComponentInternalInstance;
|
|
488
|
+
$: import('vue').ComponentInternalInstance;
|
|
492
489
|
$data: {};
|
|
493
490
|
$props: {
|
|
494
491
|
readonly direction?: "ltr" | "rtl" | "ttb" | "btt" | undefined;
|
|
@@ -499,7 +496,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
499
496
|
readonly headerAriaLevel?: string | undefined;
|
|
500
497
|
readonly appendToBody?: boolean | undefined;
|
|
501
498
|
readonly appendTo?: (string | HTMLElement) | undefined;
|
|
502
|
-
readonly beforeClose?: DialogBeforeCloseFn | undefined;
|
|
499
|
+
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
503
500
|
readonly destroyOnClose?: boolean | undefined;
|
|
504
501
|
readonly closeOnClickModal?: boolean | undefined;
|
|
505
502
|
readonly closeOnPressEscape?: boolean | undefined;
|
|
@@ -514,10 +511,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
514
511
|
readonly width?: string | number | undefined;
|
|
515
512
|
readonly zIndex?: number | undefined;
|
|
516
513
|
readonly trapFocus?: boolean | undefined;
|
|
517
|
-
readonly transition?: DialogTransition | undefined;
|
|
514
|
+
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
518
515
|
readonly center?: boolean | undefined;
|
|
519
516
|
readonly alignCenter?: boolean | undefined;
|
|
520
|
-
readonly closeIcon?: IconPropType | undefined;
|
|
517
|
+
readonly closeIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
521
518
|
readonly draggable?: boolean | undefined;
|
|
522
519
|
readonly overflow?: boolean | undefined;
|
|
523
520
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -537,7 +534,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
537
534
|
readonly onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
538
535
|
readonly "onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
|
|
539
536
|
readonly "onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
|
|
540
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
537
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
541
538
|
$attrs: {
|
|
542
539
|
[x: string]: unknown;
|
|
543
540
|
};
|
|
@@ -545,14 +542,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
545
542
|
[x: string]: unknown;
|
|
546
543
|
};
|
|
547
544
|
$slots: Readonly<{
|
|
548
|
-
[name: string]: Slot<any> | undefined;
|
|
545
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
549
546
|
}>;
|
|
550
|
-
$root: ComponentPublicInstance | null;
|
|
551
|
-
$parent: ComponentPublicInstance | null;
|
|
547
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
548
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
552
549
|
$host: Element | null;
|
|
553
550
|
$emit: ((event: "close") => void) & ((event: "resize", evt: MouseEvent, size: number) => void) & ((event: "open") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "closed") => void) & ((event: "opened") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void) & ((event: "resize-start", evt: MouseEvent, size: number) => void) & ((event: "resize-end", evt: MouseEvent, size: number) => void);
|
|
554
551
|
$el: any;
|
|
555
|
-
$options: ComponentOptionsBase<Readonly<
|
|
552
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').DrawerProps> & Readonly<{
|
|
556
553
|
onClose?: (() => any) | undefined;
|
|
557
554
|
onResize?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
558
555
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -567,7 +564,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
567
564
|
handleClose: () => void;
|
|
568
565
|
afterEnter: () => void;
|
|
569
566
|
afterLeave: () => void;
|
|
570
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
567
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
571
568
|
close: () => void;
|
|
572
569
|
resize: (evt: MouseEvent, size: number) => void;
|
|
573
570
|
"update:modelValue": (value: boolean) => void;
|
|
@@ -582,7 +579,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
582
579
|
appendTo: string | HTMLElement;
|
|
583
580
|
title: string;
|
|
584
581
|
size: string | number;
|
|
585
|
-
transition: DialogTransition;
|
|
582
|
+
transition: import('element-plus').DialogTransition;
|
|
586
583
|
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
587
584
|
overflow: boolean;
|
|
588
585
|
closeOnClickModal: boolean;
|
|
@@ -598,7 +595,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
598
595
|
ariaLevel: string;
|
|
599
596
|
withHeader: boolean;
|
|
600
597
|
modalFade: boolean;
|
|
601
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
598
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
602
599
|
beforeCreate?: (() => void) | (() => void)[];
|
|
603
600
|
created?: (() => void) | (() => void)[];
|
|
604
601
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -611,18 +608,18 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
611
608
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
612
609
|
destroyed?: (() => void) | (() => void)[];
|
|
613
610
|
unmounted?: (() => void) | (() => void)[];
|
|
614
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
615
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
616
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
611
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
612
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
613
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
617
614
|
};
|
|
618
615
|
$forceUpdate: () => void;
|
|
619
616
|
$nextTick: typeof nextTick;
|
|
620
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
617
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
621
618
|
} & Readonly<{
|
|
622
619
|
appendTo: string | HTMLElement;
|
|
623
620
|
title: string;
|
|
624
621
|
size: string | number;
|
|
625
|
-
transition: DialogTransition;
|
|
622
|
+
transition: import('element-plus').DialogTransition;
|
|
626
623
|
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
627
624
|
overflow: boolean;
|
|
628
625
|
closeOnClickModal: boolean;
|
|
@@ -638,7 +635,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
638
635
|
ariaLevel: string;
|
|
639
636
|
withHeader: boolean;
|
|
640
637
|
modalFade: boolean;
|
|
641
|
-
}> & Omit<Readonly<
|
|
638
|
+
}> & Omit<Readonly<import('element-plus').DrawerProps> & Readonly<{
|
|
642
639
|
onClose?: (() => any) | undefined;
|
|
643
640
|
onResize?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
644
641
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -649,11 +646,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
649
646
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
650
647
|
"onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
651
648
|
"onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
652
|
-
}>, "title" | "appendTo" | "transition" | "size" | "draggable" | "showClose" | "closeOnPressEscape" | "direction" | "overflow" | "modal" | "closeOnClickModal" | "lockScroll" | "openDelay" | "closeDelay" | "headerAriaLevel" | "alignCenter" | "ariaLevel" | "handleClose" | "withHeader" | "modalFade" | "afterEnter" | "afterLeave"> & ShallowUnwrapRef<{
|
|
649
|
+
}>, "title" | "appendTo" | "transition" | "size" | "draggable" | "showClose" | "closeOnPressEscape" | "direction" | "overflow" | "modal" | "closeOnClickModal" | "lockScroll" | "openDelay" | "closeDelay" | "headerAriaLevel" | "alignCenter" | "ariaLevel" | "handleClose" | "withHeader" | "modalFade" | "afterEnter" | "afterLeave"> & import('vue').ShallowUnwrapRef<{
|
|
653
650
|
handleClose: () => void;
|
|
654
651
|
afterEnter: () => void;
|
|
655
652
|
afterLeave: () => void;
|
|
656
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
653
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
657
654
|
$slots: {
|
|
658
655
|
header?: (props: {
|
|
659
656
|
close: () => void;
|
|
@@ -669,11 +666,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
669
666
|
};
|
|
670
667
|
}) | null>;
|
|
671
668
|
drawerApi: TtDrawerExtendedDrawerApi;
|
|
672
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
669
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
673
670
|
"update:visible": (args_0: boolean) => any;
|
|
674
671
|
"visible-change": (args_0: boolean) => any;
|
|
675
672
|
register: (instance: DrawerInstance, uid: number) => any;
|
|
676
|
-
}, string, PublicProps, Readonly<
|
|
673
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
677
674
|
/** drawerApi */
|
|
678
675
|
drawerApi: {
|
|
679
676
|
type: PropType<TtDrawerExtendedDrawerApi>;
|
|
@@ -682,14 +679,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
682
679
|
confirmLoading: any;
|
|
683
680
|
showCancelBtn: any;
|
|
684
681
|
cancelButtonProps: {
|
|
685
|
-
type: PropType<Partial<
|
|
686
|
-
default: Partial<
|
|
682
|
+
type: PropType<Partial<import('element-plus').ButtonProps>>;
|
|
683
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
687
684
|
};
|
|
688
685
|
cancelText: any;
|
|
689
686
|
showOkBtn: any;
|
|
690
687
|
okButtonProps: {
|
|
691
|
-
type: PropType<Partial<
|
|
692
|
-
default: Partial<
|
|
688
|
+
type: PropType<Partial<import('element-plus').ButtonProps>>;
|
|
689
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
693
690
|
};
|
|
694
691
|
okText: any;
|
|
695
692
|
okType: any;
|
|
@@ -719,25 +716,25 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
719
716
|
type: BooleanConstructor;
|
|
720
717
|
default: () => boolean | undefined;
|
|
721
718
|
};
|
|
722
|
-
direction: EpPropFinalized<StringConstructor, "ltr" | "rtl" | "ttb" | "btt", unknown, "rtl", boolean>;
|
|
719
|
+
direction: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, "ltr" | "rtl" | "ttb" | "btt", unknown, "rtl", boolean>;
|
|
723
720
|
resizable: BooleanConstructor;
|
|
724
|
-
withHeader: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
725
|
-
modalFade: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
726
|
-
headerAriaLevel: EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
721
|
+
withHeader: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
722
|
+
modalFade: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
723
|
+
headerAriaLevel: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
727
724
|
appendToBody: BooleanConstructor;
|
|
728
|
-
appendTo: EpPropFinalized<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>) | (((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>)) | null)[], unknown, unknown, "body", boolean>;
|
|
725
|
+
appendTo: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>) | (((new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>)) | null)[], unknown, unknown, "body", boolean>;
|
|
729
726
|
beforeClose: {
|
|
730
|
-
readonly type: PropType<
|
|
727
|
+
readonly type: PropType<import('element-plus').DialogBeforeCloseFn>;
|
|
731
728
|
readonly required: false;
|
|
732
729
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
733
730
|
__epPropKey: true;
|
|
734
731
|
};
|
|
735
|
-
closeOnClickModal: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
736
|
-
closeOnPressEscape: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
737
|
-
lockScroll: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
732
|
+
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
733
|
+
closeOnPressEscape: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
734
|
+
lockScroll: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
738
735
|
modalPenetrable: BooleanConstructor;
|
|
739
|
-
openDelay: EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
740
|
-
closeDelay: EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
736
|
+
openDelay: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
737
|
+
closeDelay: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
741
738
|
top: {
|
|
742
739
|
readonly type: PropType<string>;
|
|
743
740
|
readonly required: false;
|
|
@@ -750,7 +747,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
750
747
|
bodyClass: StringConstructor;
|
|
751
748
|
footerClass: StringConstructor;
|
|
752
749
|
width: {
|
|
753
|
-
readonly type: PropType<
|
|
750
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
754
751
|
readonly required: false;
|
|
755
752
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
756
753
|
__epPropKey: true;
|
|
@@ -762,20 +759,20 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
762
759
|
__epPropKey: true;
|
|
763
760
|
};
|
|
764
761
|
trapFocus: BooleanConstructor;
|
|
765
|
-
transition: EpPropFinalized<(new (...args: any[]) => string | TransitionProps) | (() => DialogTransition) | (((new (...args: any[]) => string | TransitionProps) | (() => DialogTransition)) | null)[], unknown, unknown, undefined, boolean>;
|
|
762
|
+
transition: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | import('vue').TransitionProps) | (() => import('element-plus').DialogTransition) | (((new (...args: any[]) => string | import('vue').TransitionProps) | (() => import('element-plus').DialogTransition)) | null)[], unknown, unknown, undefined, boolean>;
|
|
766
763
|
center: BooleanConstructor;
|
|
767
|
-
alignCenter: EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
764
|
+
alignCenter: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
768
765
|
closeIcon: {
|
|
769
|
-
readonly type: PropType<
|
|
766
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | (((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component)) | null)[], unknown, unknown>>;
|
|
770
767
|
readonly required: false;
|
|
771
768
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
772
769
|
__epPropKey: true;
|
|
773
770
|
};
|
|
774
|
-
draggable: EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
775
|
-
overflow: EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
771
|
+
draggable: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
772
|
+
overflow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
776
773
|
fullscreen: BooleanConstructor;
|
|
777
|
-
showClose: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
778
|
-
ariaLevel: EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
774
|
+
showClose: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
775
|
+
ariaLevel: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
779
776
|
}>> & Readonly<{
|
|
780
777
|
"onUpdate:visible"?: ((args_0: boolean) => any) | undefined;
|
|
781
778
|
"onVisible-change"?: ((args_0: boolean) => any) | undefined;
|
|
@@ -783,23 +780,23 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
783
780
|
}>, {
|
|
784
781
|
title: any;
|
|
785
782
|
visible: any;
|
|
786
|
-
appendTo: EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>) | null)[], unknown, unknown>;
|
|
787
|
-
transition: EpPropMergeType<(new (...args: any[]) => string | TransitionProps) | (() => DialogTransition) | ((new (...args: any[]) => string | TransitionProps) | (() => DialogTransition) | null)[], unknown, unknown>;
|
|
783
|
+
appendTo: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | (((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement)) | null)[], unknown, unknown>) | null)[], unknown, unknown>;
|
|
784
|
+
transition: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | import('vue').TransitionProps) | (() => import('element-plus').DialogTransition) | ((new (...args: any[]) => string | import('vue').TransitionProps) | (() => import('element-plus').DialogTransition) | null)[], unknown, unknown>;
|
|
788
785
|
size: any;
|
|
789
786
|
class: any;
|
|
790
787
|
center: boolean;
|
|
791
788
|
height: any;
|
|
792
|
-
draggable: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
793
|
-
showClose: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
789
|
+
draggable: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
790
|
+
showClose: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
794
791
|
loading: any;
|
|
795
792
|
modelValue: boolean;
|
|
796
|
-
closeOnPressEscape: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
793
|
+
closeOnPressEscape: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
797
794
|
loadingText: any;
|
|
798
795
|
showFooter: any;
|
|
799
796
|
resizable: boolean;
|
|
800
797
|
fullscreen: boolean;
|
|
801
|
-
direction: EpPropMergeType<StringConstructor, "ltr" | "rtl" | "ttb" | "btt", unknown>;
|
|
802
|
-
overflow: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
798
|
+
direction: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "ltr" | "rtl" | "ttb" | "btt", unknown>;
|
|
799
|
+
overflow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
803
800
|
testId: any;
|
|
804
801
|
modal: boolean;
|
|
805
802
|
cancelText: any;
|
|
@@ -807,30 +804,30 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
807
804
|
showCancelBtn: any;
|
|
808
805
|
showOkBtn: any;
|
|
809
806
|
confirmLoading: any;
|
|
810
|
-
okButtonProps: Partial<
|
|
811
|
-
cancelButtonProps: Partial<
|
|
807
|
+
okButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
808
|
+
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
812
809
|
appendToBody: boolean;
|
|
813
810
|
destroyOnClose: boolean;
|
|
814
|
-
closeOnClickModal: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
815
|
-
lockScroll: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
811
|
+
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
812
|
+
lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
816
813
|
modalPenetrable: boolean;
|
|
817
814
|
openDelay: number;
|
|
818
815
|
closeDelay: number;
|
|
819
816
|
trapFocus: boolean;
|
|
820
817
|
headerAriaLevel: string;
|
|
821
|
-
alignCenter: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
818
|
+
alignCenter: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
822
819
|
ariaLevel: string;
|
|
823
820
|
showConfirm: any;
|
|
824
821
|
maskClosable: any;
|
|
825
822
|
confirmContent: any;
|
|
826
823
|
footerHeight: string | number;
|
|
827
|
-
withHeader: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
828
|
-
modalFade: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
824
|
+
withHeader: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
825
|
+
modalFade: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
829
826
|
okType: any;
|
|
830
827
|
drawerApi: TtDrawerExtendedDrawerApi;
|
|
831
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
828
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
832
829
|
drawerRef: ({
|
|
833
|
-
$: ComponentInternalInstance;
|
|
830
|
+
$: import('vue').ComponentInternalInstance;
|
|
834
831
|
$data: {};
|
|
835
832
|
$props: {
|
|
836
833
|
readonly direction?: "ltr" | "rtl" | "ttb" | "btt" | undefined;
|
|
@@ -841,7 +838,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
841
838
|
readonly headerAriaLevel?: string | undefined;
|
|
842
839
|
readonly appendToBody?: boolean | undefined;
|
|
843
840
|
readonly appendTo?: (string | HTMLElement) | undefined;
|
|
844
|
-
readonly beforeClose?: DialogBeforeCloseFn | undefined;
|
|
841
|
+
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
845
842
|
readonly destroyOnClose?: boolean | undefined;
|
|
846
843
|
readonly closeOnClickModal?: boolean | undefined;
|
|
847
844
|
readonly closeOnPressEscape?: boolean | undefined;
|
|
@@ -856,10 +853,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
856
853
|
readonly width?: string | number | undefined;
|
|
857
854
|
readonly zIndex?: number | undefined;
|
|
858
855
|
readonly trapFocus?: boolean | undefined;
|
|
859
|
-
readonly transition?: DialogTransition | undefined;
|
|
856
|
+
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
860
857
|
readonly center?: boolean | undefined;
|
|
861
858
|
readonly alignCenter?: boolean | undefined;
|
|
862
|
-
readonly closeIcon?: IconPropType | undefined;
|
|
859
|
+
readonly closeIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
863
860
|
readonly draggable?: boolean | undefined;
|
|
864
861
|
readonly overflow?: boolean | undefined;
|
|
865
862
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -879,7 +876,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
879
876
|
readonly onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
880
877
|
readonly "onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
|
|
881
878
|
readonly "onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
|
|
882
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
879
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
883
880
|
$attrs: {
|
|
884
881
|
[x: string]: unknown;
|
|
885
882
|
};
|
|
@@ -887,14 +884,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
887
884
|
[x: string]: unknown;
|
|
888
885
|
};
|
|
889
886
|
$slots: Readonly<{
|
|
890
|
-
[name: string]: Slot<any> | undefined;
|
|
887
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
891
888
|
}>;
|
|
892
|
-
$root: ComponentPublicInstance | null;
|
|
893
|
-
$parent: ComponentPublicInstance | null;
|
|
889
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
890
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
894
891
|
$host: Element | null;
|
|
895
892
|
$emit: ((event: "close") => void) & ((event: "resize", evt: MouseEvent, size: number) => void) & ((event: "open") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "closed") => void) & ((event: "opened") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void) & ((event: "resize-start", evt: MouseEvent, size: number) => void) & ((event: "resize-end", evt: MouseEvent, size: number) => void);
|
|
896
893
|
$el: any;
|
|
897
|
-
$options: ComponentOptionsBase<Readonly<
|
|
894
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').DrawerProps> & Readonly<{
|
|
898
895
|
onClose?: (() => any) | undefined;
|
|
899
896
|
onResize?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
900
897
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -909,7 +906,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
909
906
|
handleClose: () => void;
|
|
910
907
|
afterEnter: () => void;
|
|
911
908
|
afterLeave: () => void;
|
|
912
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
909
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
913
910
|
close: () => void;
|
|
914
911
|
resize: (evt: MouseEvent, size: number) => void;
|
|
915
912
|
"update:modelValue": (value: boolean) => void;
|
|
@@ -924,7 +921,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
924
921
|
appendTo: string | HTMLElement;
|
|
925
922
|
title: string;
|
|
926
923
|
size: string | number;
|
|
927
|
-
transition: DialogTransition;
|
|
924
|
+
transition: import('element-plus').DialogTransition;
|
|
928
925
|
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
929
926
|
overflow: boolean;
|
|
930
927
|
closeOnClickModal: boolean;
|
|
@@ -940,7 +937,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
940
937
|
ariaLevel: string;
|
|
941
938
|
withHeader: boolean;
|
|
942
939
|
modalFade: boolean;
|
|
943
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
940
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
944
941
|
beforeCreate?: (() => void) | (() => void)[];
|
|
945
942
|
created?: (() => void) | (() => void)[];
|
|
946
943
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -953,18 +950,18 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
953
950
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
954
951
|
destroyed?: (() => void) | (() => void)[];
|
|
955
952
|
unmounted?: (() => void) | (() => void)[];
|
|
956
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
957
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
958
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
953
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
954
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
955
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
959
956
|
};
|
|
960
957
|
$forceUpdate: () => void;
|
|
961
958
|
$nextTick: typeof nextTick;
|
|
962
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
959
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
963
960
|
} & Readonly<{
|
|
964
961
|
appendTo: string | HTMLElement;
|
|
965
962
|
title: string;
|
|
966
963
|
size: string | number;
|
|
967
|
-
transition: DialogTransition;
|
|
964
|
+
transition: import('element-plus').DialogTransition;
|
|
968
965
|
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
969
966
|
overflow: boolean;
|
|
970
967
|
closeOnClickModal: boolean;
|
|
@@ -980,7 +977,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
980
977
|
ariaLevel: string;
|
|
981
978
|
withHeader: boolean;
|
|
982
979
|
modalFade: boolean;
|
|
983
|
-
}> & Omit<Readonly<
|
|
980
|
+
}> & Omit<Readonly<import('element-plus').DrawerProps> & Readonly<{
|
|
984
981
|
onClose?: (() => any) | undefined;
|
|
985
982
|
onResize?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
986
983
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -991,11 +988,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
991
988
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
992
989
|
"onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
993
990
|
"onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined;
|
|
994
|
-
}>, "title" | "appendTo" | "transition" | "size" | "draggable" | "showClose" | "closeOnPressEscape" | "direction" | "overflow" | "modal" | "closeOnClickModal" | "lockScroll" | "openDelay" | "closeDelay" | "headerAriaLevel" | "alignCenter" | "ariaLevel" | "handleClose" | "withHeader" | "modalFade" | "afterEnter" | "afterLeave"> & ShallowUnwrapRef<{
|
|
991
|
+
}>, "title" | "appendTo" | "transition" | "size" | "draggable" | "showClose" | "closeOnPressEscape" | "direction" | "overflow" | "modal" | "closeOnClickModal" | "lockScroll" | "openDelay" | "closeDelay" | "headerAriaLevel" | "alignCenter" | "ariaLevel" | "handleClose" | "withHeader" | "modalFade" | "afterEnter" | "afterLeave"> & import('vue').ShallowUnwrapRef<{
|
|
995
992
|
handleClose: () => void;
|
|
996
993
|
afterEnter: () => void;
|
|
997
994
|
afterLeave: () => void;
|
|
998
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
995
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
999
996
|
$slots: {
|
|
1000
997
|
header?: (props: {
|
|
1001
998
|
close: () => void;
|