@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
1
|
import { TipConfig } from '../../../directives/disabled-tip';
|
|
2
|
-
import { PropType, Slot, nextTick
|
|
2
|
+
import { PropType, Slot, nextTick } from 'vue';
|
|
3
3
|
import { ModalMethods, TtModalExtendedModalApi } from './typing';
|
|
4
|
-
import { ButtonProps, DialogBeforeCloseFn, DialogTransition } from 'element-plus';
|
|
5
|
-
import { OnCleanup } from '@vue/reactivity';
|
|
6
|
-
import { EpPropFinalized, EpPropMergeType } from 'element-plus/es/utils/index.mjs';
|
|
7
4
|
declare function __VLS_template(): {
|
|
8
5
|
attrs: Partial<{}>;
|
|
9
6
|
slots: Readonly<{
|
|
@@ -21,7 +18,7 @@ declare function __VLS_template(): {
|
|
|
21
18
|
};
|
|
22
19
|
refs: {
|
|
23
20
|
modalWrapperRef: ({
|
|
24
|
-
$: ComponentInternalInstance;
|
|
21
|
+
$: import('vue').ComponentInternalInstance;
|
|
25
22
|
$data: {};
|
|
26
23
|
$props: Partial<{
|
|
27
24
|
title: any;
|
|
@@ -44,10 +41,10 @@ declare function __VLS_template(): {
|
|
|
44
41
|
showOkBtn: boolean;
|
|
45
42
|
confirmLoading: boolean;
|
|
46
43
|
cancelLoading: boolean;
|
|
47
|
-
okButtonProps: Partial<
|
|
44
|
+
okButtonProps: Partial<import('element-plus').ButtonProps> & {
|
|
48
45
|
disabledTip?: TipConfig | TipConfig[];
|
|
49
46
|
};
|
|
50
|
-
cancelButtonProps: Partial<
|
|
47
|
+
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
51
48
|
isBottom: boolean;
|
|
52
49
|
}> & Omit<{
|
|
53
50
|
readonly title: any;
|
|
@@ -70,17 +67,17 @@ declare function __VLS_template(): {
|
|
|
70
67
|
readonly showOkBtn: boolean;
|
|
71
68
|
readonly confirmLoading: boolean;
|
|
72
69
|
readonly cancelLoading: boolean;
|
|
73
|
-
readonly okButtonProps: Partial<
|
|
70
|
+
readonly okButtonProps: Partial<import('element-plus').ButtonProps> & {
|
|
74
71
|
disabledTip?: TipConfig | TipConfig[];
|
|
75
72
|
};
|
|
76
|
-
readonly cancelButtonProps: Partial<
|
|
73
|
+
readonly cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
77
74
|
readonly isBottom: boolean;
|
|
78
75
|
readonly top?: string | undefined;
|
|
79
76
|
readonly width?: string | number | undefined;
|
|
80
77
|
readonly closeFunc?: (() => Promise<boolean>) | undefined;
|
|
81
78
|
readonly loadingTip?: string | undefined;
|
|
82
79
|
readonly "onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
83
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "title" | "visible" | "size" | "height" | "draggable" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "fullscreen" | "testId" | "modal" | "contained" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom">;
|
|
80
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "visible" | "size" | "height" | "draggable" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "fullscreen" | "testId" | "modal" | "contained" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom">;
|
|
84
81
|
$attrs: {
|
|
85
82
|
[x: string]: unknown;
|
|
86
83
|
};
|
|
@@ -92,12 +89,12 @@ declare function __VLS_template(): {
|
|
|
92
89
|
$slots: Readonly<{
|
|
93
90
|
[name: string]: Slot<any> | undefined;
|
|
94
91
|
}>;
|
|
95
|
-
$root: ComponentPublicInstance | null;
|
|
96
|
-
$parent: ComponentPublicInstance | null;
|
|
92
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
93
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
97
94
|
$host: Element | null;
|
|
98
95
|
$emit: (event: "is-scroll", ...args: any[]) => void;
|
|
99
96
|
$el: HTMLDivElement;
|
|
100
|
-
$options: ComponentOptionsBase<Readonly<
|
|
97
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
101
98
|
contained: {
|
|
102
99
|
type: BooleanConstructor;
|
|
103
100
|
default: boolean;
|
|
@@ -168,14 +165,14 @@ declare function __VLS_template(): {
|
|
|
168
165
|
default: string;
|
|
169
166
|
};
|
|
170
167
|
okButtonProps: {
|
|
171
|
-
type: PropType<Partial<
|
|
168
|
+
type: PropType<Partial<import('element-plus').ButtonProps> & {
|
|
172
169
|
disabledTip?: TipConfig | TipConfig[];
|
|
173
170
|
}>;
|
|
174
|
-
default: Partial<
|
|
171
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
175
172
|
};
|
|
176
173
|
cancelButtonProps: {
|
|
177
|
-
type: PropType<Partial<
|
|
178
|
-
default: Partial<
|
|
174
|
+
type: PropType<Partial<import('element-plus').ButtonProps>>;
|
|
175
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
179
176
|
};
|
|
180
177
|
isBottom: {
|
|
181
178
|
type: BooleanConstructor;
|
|
@@ -190,8 +187,8 @@ declare function __VLS_template(): {
|
|
|
190
187
|
}>, {
|
|
191
188
|
onScrollBottom: () => void;
|
|
192
189
|
setModalHeight: () => void;
|
|
193
|
-
elm: Ref<any, any>;
|
|
194
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
190
|
+
elm: import('vue').Ref<any, any>;
|
|
191
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
195
192
|
"is-scroll": (...args: any[]) => void;
|
|
196
193
|
}, string, {
|
|
197
194
|
title: any;
|
|
@@ -214,12 +211,12 @@ declare function __VLS_template(): {
|
|
|
214
211
|
showOkBtn: boolean;
|
|
215
212
|
confirmLoading: boolean;
|
|
216
213
|
cancelLoading: boolean;
|
|
217
|
-
okButtonProps: Partial<
|
|
214
|
+
okButtonProps: Partial<import('element-plus').ButtonProps> & {
|
|
218
215
|
disabledTip?: TipConfig | TipConfig[];
|
|
219
216
|
};
|
|
220
|
-
cancelButtonProps: Partial<
|
|
217
|
+
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
221
218
|
isBottom: boolean;
|
|
222
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
219
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
223
220
|
beforeCreate?: (() => void) | (() => void)[];
|
|
224
221
|
created?: (() => void) | (() => void)[];
|
|
225
222
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -232,13 +229,13 @@ declare function __VLS_template(): {
|
|
|
232
229
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
233
230
|
destroyed?: (() => void) | (() => void)[];
|
|
234
231
|
unmounted?: (() => void) | (() => void)[];
|
|
235
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
236
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
237
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
232
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
233
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
234
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
238
235
|
};
|
|
239
236
|
$forceUpdate: () => void;
|
|
240
237
|
$nextTick: typeof nextTick;
|
|
241
|
-
$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;
|
|
238
|
+
$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;
|
|
242
239
|
} & Readonly<{
|
|
243
240
|
title: any;
|
|
244
241
|
visible: boolean;
|
|
@@ -260,12 +257,12 @@ declare function __VLS_template(): {
|
|
|
260
257
|
showOkBtn: boolean;
|
|
261
258
|
confirmLoading: boolean;
|
|
262
259
|
cancelLoading: boolean;
|
|
263
|
-
okButtonProps: Partial<
|
|
260
|
+
okButtonProps: Partial<import('element-plus').ButtonProps> & {
|
|
264
261
|
disabledTip?: TipConfig | TipConfig[];
|
|
265
262
|
};
|
|
266
|
-
cancelButtonProps: Partial<
|
|
263
|
+
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
267
264
|
isBottom: boolean;
|
|
268
|
-
}> & Omit<Readonly<
|
|
265
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
269
266
|
contained: {
|
|
270
267
|
type: BooleanConstructor;
|
|
271
268
|
default: boolean;
|
|
@@ -336,14 +333,14 @@ declare function __VLS_template(): {
|
|
|
336
333
|
default: string;
|
|
337
334
|
};
|
|
338
335
|
okButtonProps: {
|
|
339
|
-
type: PropType<Partial<
|
|
336
|
+
type: PropType<Partial<import('element-plus').ButtonProps> & {
|
|
340
337
|
disabledTip?: TipConfig | TipConfig[];
|
|
341
338
|
}>;
|
|
342
|
-
default: Partial<
|
|
339
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
343
340
|
};
|
|
344
341
|
cancelButtonProps: {
|
|
345
|
-
type: PropType<Partial<
|
|
346
|
-
default: Partial<
|
|
342
|
+
type: PropType<Partial<import('element-plus').ButtonProps>>;
|
|
343
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
347
344
|
};
|
|
348
345
|
isBottom: {
|
|
349
346
|
type: BooleanConstructor;
|
|
@@ -355,11 +352,11 @@ declare function __VLS_template(): {
|
|
|
355
352
|
};
|
|
356
353
|
}>> & Readonly<{
|
|
357
354
|
"onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
358
|
-
}>, "onScrollBottom" | "setModalHeight" | "elm" | ("title" | "visible" | "size" | "height" | "draggable" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "fullscreen" | "testId" | "modal" | "contained" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom")> & ShallowUnwrapRef<{
|
|
355
|
+
}>, "onScrollBottom" | "setModalHeight" | "elm" | ("title" | "visible" | "size" | "height" | "draggable" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "fullscreen" | "testId" | "modal" | "contained" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom")> & import('vue').ShallowUnwrapRef<{
|
|
359
356
|
onScrollBottom: () => void;
|
|
360
357
|
setModalHeight: () => void;
|
|
361
|
-
elm: Ref<any, any>;
|
|
362
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
358
|
+
elm: import('vue').Ref<any, any>;
|
|
359
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
363
360
|
$slots: {
|
|
364
361
|
default?(_: {}): any;
|
|
365
362
|
};
|
|
@@ -368,7 +365,7 @@ declare function __VLS_template(): {
|
|
|
368
365
|
rootEl: HTMLDivElement;
|
|
369
366
|
};
|
|
370
367
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
371
|
-
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
368
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
372
369
|
/** modalApi */
|
|
373
370
|
modalApi: {
|
|
374
371
|
type: PropType<TtModalExtendedModalApi>;
|
|
@@ -440,14 +437,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
440
437
|
default: string;
|
|
441
438
|
};
|
|
442
439
|
okButtonProps: {
|
|
443
|
-
type: PropType<Partial<
|
|
440
|
+
type: PropType<Partial<import('element-plus').ButtonProps> & {
|
|
444
441
|
disabledTip?: TipConfig | TipConfig[];
|
|
445
442
|
}>;
|
|
446
|
-
default: Partial<
|
|
443
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
447
444
|
};
|
|
448
445
|
cancelButtonProps: {
|
|
449
|
-
type: PropType<Partial<
|
|
450
|
-
default: Partial<
|
|
446
|
+
type: PropType<Partial<import('element-plus').ButtonProps>>;
|
|
447
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
451
448
|
};
|
|
452
449
|
isBottom: {
|
|
453
450
|
type: BooleanConstructor;
|
|
@@ -458,20 +455,20 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
458
455
|
default: () => boolean | undefined;
|
|
459
456
|
};
|
|
460
457
|
appendToBody: BooleanConstructor;
|
|
461
|
-
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>;
|
|
458
|
+
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>;
|
|
462
459
|
beforeClose: {
|
|
463
|
-
readonly type: PropType<
|
|
460
|
+
readonly type: PropType<import('element-plus').DialogBeforeCloseFn>;
|
|
464
461
|
readonly required: false;
|
|
465
462
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
466
463
|
__epPropKey: true;
|
|
467
464
|
};
|
|
468
465
|
destroyOnClose: BooleanConstructor;
|
|
469
|
-
closeOnClickModal: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
470
|
-
closeOnPressEscape: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
471
|
-
lockScroll: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
466
|
+
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
467
|
+
closeOnPressEscape: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
468
|
+
lockScroll: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
472
469
|
modalPenetrable: BooleanConstructor;
|
|
473
|
-
openDelay: EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
474
|
-
closeDelay: EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
470
|
+
openDelay: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
471
|
+
closeDelay: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
475
472
|
modelValue: BooleanConstructor;
|
|
476
473
|
modalClass: StringConstructor;
|
|
477
474
|
headerClass: StringConstructor;
|
|
@@ -484,26 +481,26 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
484
481
|
__epPropKey: true;
|
|
485
482
|
};
|
|
486
483
|
trapFocus: BooleanConstructor;
|
|
487
|
-
headerAriaLevel: EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
488
|
-
transition: EpPropFinalized<(new (...args: any[]) => string | TransitionProps) | (() => DialogTransition) | (((new (...args: any[]) => string | TransitionProps) | (() => DialogTransition)) | null)[], unknown, unknown, undefined, boolean>;
|
|
484
|
+
headerAriaLevel: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
485
|
+
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>;
|
|
489
486
|
center: BooleanConstructor;
|
|
490
|
-
alignCenter: EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
487
|
+
alignCenter: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
491
488
|
closeIcon: {
|
|
492
|
-
readonly type: PropType<
|
|
489
|
+
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>>;
|
|
493
490
|
readonly required: false;
|
|
494
491
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
495
492
|
__epPropKey: true;
|
|
496
493
|
};
|
|
497
|
-
overflow: EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
498
|
-
showClose: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
499
|
-
ariaLevel: EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
494
|
+
overflow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
495
|
+
showClose: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
496
|
+
ariaLevel: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
500
497
|
}>, {
|
|
501
498
|
modalApi: TtModalExtendedModalApi;
|
|
502
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
499
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
503
500
|
"update:visible": (args_0: boolean) => any;
|
|
504
501
|
"visible-change": (args_0: boolean) => any;
|
|
505
502
|
register: (args_0: ModalMethods, args_1: string) => any;
|
|
506
|
-
}, string, PublicProps, Readonly<
|
|
503
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
507
504
|
/** modalApi */
|
|
508
505
|
modalApi: {
|
|
509
506
|
type: PropType<TtModalExtendedModalApi>;
|
|
@@ -575,14 +572,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
575
572
|
default: string;
|
|
576
573
|
};
|
|
577
574
|
okButtonProps: {
|
|
578
|
-
type: PropType<Partial<
|
|
575
|
+
type: PropType<Partial<import('element-plus').ButtonProps> & {
|
|
579
576
|
disabledTip?: TipConfig | TipConfig[];
|
|
580
577
|
}>;
|
|
581
|
-
default: Partial<
|
|
578
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
582
579
|
};
|
|
583
580
|
cancelButtonProps: {
|
|
584
|
-
type: PropType<Partial<
|
|
585
|
-
default: Partial<
|
|
581
|
+
type: PropType<Partial<import('element-plus').ButtonProps>>;
|
|
582
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
586
583
|
};
|
|
587
584
|
isBottom: {
|
|
588
585
|
type: BooleanConstructor;
|
|
@@ -593,20 +590,20 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
593
590
|
default: () => boolean | undefined;
|
|
594
591
|
};
|
|
595
592
|
appendToBody: BooleanConstructor;
|
|
596
|
-
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>;
|
|
593
|
+
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>;
|
|
597
594
|
beforeClose: {
|
|
598
|
-
readonly type: PropType<
|
|
595
|
+
readonly type: PropType<import('element-plus').DialogBeforeCloseFn>;
|
|
599
596
|
readonly required: false;
|
|
600
597
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
601
598
|
__epPropKey: true;
|
|
602
599
|
};
|
|
603
600
|
destroyOnClose: BooleanConstructor;
|
|
604
|
-
closeOnClickModal: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
605
|
-
closeOnPressEscape: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
606
|
-
lockScroll: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
601
|
+
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
602
|
+
closeOnPressEscape: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
603
|
+
lockScroll: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
607
604
|
modalPenetrable: BooleanConstructor;
|
|
608
|
-
openDelay: EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
609
|
-
closeDelay: EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
605
|
+
openDelay: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
606
|
+
closeDelay: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
610
607
|
modelValue: BooleanConstructor;
|
|
611
608
|
modalClass: StringConstructor;
|
|
612
609
|
headerClass: StringConstructor;
|
|
@@ -619,19 +616,19 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
619
616
|
__epPropKey: true;
|
|
620
617
|
};
|
|
621
618
|
trapFocus: BooleanConstructor;
|
|
622
|
-
headerAriaLevel: EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
623
|
-
transition: EpPropFinalized<(new (...args: any[]) => string | TransitionProps) | (() => DialogTransition) | (((new (...args: any[]) => string | TransitionProps) | (() => DialogTransition)) | null)[], unknown, unknown, undefined, boolean>;
|
|
619
|
+
headerAriaLevel: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
620
|
+
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>;
|
|
624
621
|
center: BooleanConstructor;
|
|
625
|
-
alignCenter: EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
622
|
+
alignCenter: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
626
623
|
closeIcon: {
|
|
627
|
-
readonly type: PropType<
|
|
624
|
+
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>>;
|
|
628
625
|
readonly required: false;
|
|
629
626
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
630
627
|
__epPropKey: true;
|
|
631
628
|
};
|
|
632
|
-
overflow: EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
633
|
-
showClose: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
634
|
-
ariaLevel: EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
629
|
+
overflow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
630
|
+
showClose: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
631
|
+
ariaLevel: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
635
632
|
}>> & Readonly<{
|
|
636
633
|
"onUpdate:visible"?: ((args_0: boolean) => any) | undefined;
|
|
637
634
|
"onVisible-change"?: ((args_0: boolean) => any) | undefined;
|
|
@@ -639,21 +636,21 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
639
636
|
}>, {
|
|
640
637
|
title: any;
|
|
641
638
|
visible: boolean;
|
|
642
|
-
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>;
|
|
643
|
-
transition: EpPropMergeType<(new (...args: any[]) => string | TransitionProps) | (() => DialogTransition) | ((new (...args: any[]) => string | TransitionProps) | (() => DialogTransition) | null)[], unknown, unknown>;
|
|
639
|
+
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>;
|
|
640
|
+
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>;
|
|
644
641
|
size: "small" | "medium" | "mini";
|
|
645
642
|
center: boolean;
|
|
646
643
|
height: any;
|
|
647
644
|
draggable: boolean;
|
|
648
|
-
showClose: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
645
|
+
showClose: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
649
646
|
loading: boolean;
|
|
650
647
|
modelValue: boolean;
|
|
651
|
-
closeOnPressEscape: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
648
|
+
closeOnPressEscape: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
652
649
|
scrollTop: boolean;
|
|
653
650
|
minHeight: any;
|
|
654
651
|
showFooter: boolean;
|
|
655
652
|
fullscreen: boolean;
|
|
656
|
-
overflow: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
653
|
+
overflow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
657
654
|
testId: any;
|
|
658
655
|
modal: boolean;
|
|
659
656
|
cancelText: string;
|
|
@@ -663,26 +660,26 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
663
660
|
showOkBtn: boolean;
|
|
664
661
|
confirmLoading: boolean;
|
|
665
662
|
cancelLoading: boolean;
|
|
666
|
-
okButtonProps: Partial<
|
|
663
|
+
okButtonProps: Partial<import('element-plus').ButtonProps> & {
|
|
667
664
|
disabledTip?: TipConfig | TipConfig[];
|
|
668
665
|
};
|
|
669
|
-
cancelButtonProps: Partial<
|
|
666
|
+
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
670
667
|
isBottom: boolean;
|
|
671
668
|
appendToBody: boolean;
|
|
672
669
|
destroyOnClose: boolean;
|
|
673
|
-
closeOnClickModal: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
674
|
-
lockScroll: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
670
|
+
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
671
|
+
lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
675
672
|
modalPenetrable: boolean;
|
|
676
673
|
openDelay: number;
|
|
677
674
|
closeDelay: number;
|
|
678
675
|
trapFocus: boolean;
|
|
679
676
|
headerAriaLevel: string;
|
|
680
|
-
alignCenter: EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
677
|
+
alignCenter: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
681
678
|
ariaLevel: string;
|
|
682
679
|
modalApi: TtModalExtendedModalApi;
|
|
683
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
680
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
684
681
|
modalWrapperRef: ({
|
|
685
|
-
$: ComponentInternalInstance;
|
|
682
|
+
$: import('vue').ComponentInternalInstance;
|
|
686
683
|
$data: {};
|
|
687
684
|
$props: Partial<{
|
|
688
685
|
title: any;
|
|
@@ -705,10 +702,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
705
702
|
showOkBtn: boolean;
|
|
706
703
|
confirmLoading: boolean;
|
|
707
704
|
cancelLoading: boolean;
|
|
708
|
-
okButtonProps: Partial<
|
|
705
|
+
okButtonProps: Partial<import('element-plus').ButtonProps> & {
|
|
709
706
|
disabledTip?: TipConfig | TipConfig[];
|
|
710
707
|
};
|
|
711
|
-
cancelButtonProps: Partial<
|
|
708
|
+
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
712
709
|
isBottom: boolean;
|
|
713
710
|
}> & Omit<{
|
|
714
711
|
readonly title: any;
|
|
@@ -731,17 +728,17 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
731
728
|
readonly showOkBtn: boolean;
|
|
732
729
|
readonly confirmLoading: boolean;
|
|
733
730
|
readonly cancelLoading: boolean;
|
|
734
|
-
readonly okButtonProps: Partial<
|
|
731
|
+
readonly okButtonProps: Partial<import('element-plus').ButtonProps> & {
|
|
735
732
|
disabledTip?: TipConfig | TipConfig[];
|
|
736
733
|
};
|
|
737
|
-
readonly cancelButtonProps: Partial<
|
|
734
|
+
readonly cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
738
735
|
readonly isBottom: boolean;
|
|
739
736
|
readonly top?: string | undefined;
|
|
740
737
|
readonly width?: string | number | undefined;
|
|
741
738
|
readonly closeFunc?: (() => Promise<boolean>) | undefined;
|
|
742
739
|
readonly loadingTip?: string | undefined;
|
|
743
740
|
readonly "onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
744
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "title" | "visible" | "size" | "height" | "draggable" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "fullscreen" | "testId" | "modal" | "contained" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom">;
|
|
741
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "visible" | "size" | "height" | "draggable" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "fullscreen" | "testId" | "modal" | "contained" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom">;
|
|
745
742
|
$attrs: {
|
|
746
743
|
[x: string]: unknown;
|
|
747
744
|
};
|
|
@@ -753,12 +750,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
753
750
|
$slots: Readonly<{
|
|
754
751
|
[name: string]: Slot<any> | undefined;
|
|
755
752
|
}>;
|
|
756
|
-
$root: ComponentPublicInstance | null;
|
|
757
|
-
$parent: ComponentPublicInstance | null;
|
|
753
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
754
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
758
755
|
$host: Element | null;
|
|
759
756
|
$emit: (event: "is-scroll", ...args: any[]) => void;
|
|
760
757
|
$el: HTMLDivElement;
|
|
761
|
-
$options: ComponentOptionsBase<Readonly<
|
|
758
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
762
759
|
contained: {
|
|
763
760
|
type: BooleanConstructor;
|
|
764
761
|
default: boolean;
|
|
@@ -829,14 +826,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
829
826
|
default: string;
|
|
830
827
|
};
|
|
831
828
|
okButtonProps: {
|
|
832
|
-
type: PropType<Partial<
|
|
829
|
+
type: PropType<Partial<import('element-plus').ButtonProps> & {
|
|
833
830
|
disabledTip?: TipConfig | TipConfig[];
|
|
834
831
|
}>;
|
|
835
|
-
default: Partial<
|
|
832
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
836
833
|
};
|
|
837
834
|
cancelButtonProps: {
|
|
838
|
-
type: PropType<Partial<
|
|
839
|
-
default: Partial<
|
|
835
|
+
type: PropType<Partial<import('element-plus').ButtonProps>>;
|
|
836
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
840
837
|
};
|
|
841
838
|
isBottom: {
|
|
842
839
|
type: BooleanConstructor;
|
|
@@ -851,8 +848,8 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
851
848
|
}>, {
|
|
852
849
|
onScrollBottom: () => void;
|
|
853
850
|
setModalHeight: () => void;
|
|
854
|
-
elm: Ref<any, any>;
|
|
855
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
851
|
+
elm: import('vue').Ref<any, any>;
|
|
852
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
856
853
|
"is-scroll": (...args: any[]) => void;
|
|
857
854
|
}, string, {
|
|
858
855
|
title: any;
|
|
@@ -875,12 +872,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
875
872
|
showOkBtn: boolean;
|
|
876
873
|
confirmLoading: boolean;
|
|
877
874
|
cancelLoading: boolean;
|
|
878
|
-
okButtonProps: Partial<
|
|
875
|
+
okButtonProps: Partial<import('element-plus').ButtonProps> & {
|
|
879
876
|
disabledTip?: TipConfig | TipConfig[];
|
|
880
877
|
};
|
|
881
|
-
cancelButtonProps: Partial<
|
|
878
|
+
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
882
879
|
isBottom: boolean;
|
|
883
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
880
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
884
881
|
beforeCreate?: (() => void) | (() => void)[];
|
|
885
882
|
created?: (() => void) | (() => void)[];
|
|
886
883
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -893,13 +890,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
893
890
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
894
891
|
destroyed?: (() => void) | (() => void)[];
|
|
895
892
|
unmounted?: (() => void) | (() => void)[];
|
|
896
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
897
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
898
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
893
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
894
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
895
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
899
896
|
};
|
|
900
897
|
$forceUpdate: () => void;
|
|
901
898
|
$nextTick: typeof nextTick;
|
|
902
|
-
$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;
|
|
899
|
+
$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;
|
|
903
900
|
} & Readonly<{
|
|
904
901
|
title: any;
|
|
905
902
|
visible: boolean;
|
|
@@ -921,12 +918,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
921
918
|
showOkBtn: boolean;
|
|
922
919
|
confirmLoading: boolean;
|
|
923
920
|
cancelLoading: boolean;
|
|
924
|
-
okButtonProps: Partial<
|
|
921
|
+
okButtonProps: Partial<import('element-plus').ButtonProps> & {
|
|
925
922
|
disabledTip?: TipConfig | TipConfig[];
|
|
926
923
|
};
|
|
927
|
-
cancelButtonProps: Partial<
|
|
924
|
+
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
928
925
|
isBottom: boolean;
|
|
929
|
-
}> & Omit<Readonly<
|
|
926
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
930
927
|
contained: {
|
|
931
928
|
type: BooleanConstructor;
|
|
932
929
|
default: boolean;
|
|
@@ -997,14 +994,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
997
994
|
default: string;
|
|
998
995
|
};
|
|
999
996
|
okButtonProps: {
|
|
1000
|
-
type: PropType<Partial<
|
|
997
|
+
type: PropType<Partial<import('element-plus').ButtonProps> & {
|
|
1001
998
|
disabledTip?: TipConfig | TipConfig[];
|
|
1002
999
|
}>;
|
|
1003
|
-
default: Partial<
|
|
1000
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
1004
1001
|
};
|
|
1005
1002
|
cancelButtonProps: {
|
|
1006
|
-
type: PropType<Partial<
|
|
1007
|
-
default: Partial<
|
|
1003
|
+
type: PropType<Partial<import('element-plus').ButtonProps>>;
|
|
1004
|
+
default: Partial<import('element-plus').ButtonProps>;
|
|
1008
1005
|
};
|
|
1009
1006
|
isBottom: {
|
|
1010
1007
|
type: BooleanConstructor;
|
|
@@ -1016,11 +1013,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1016
1013
|
};
|
|
1017
1014
|
}>> & Readonly<{
|
|
1018
1015
|
"onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
1019
|
-
}>, "onScrollBottom" | "setModalHeight" | "elm" | ("title" | "visible" | "size" | "height" | "draggable" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "fullscreen" | "testId" | "modal" | "contained" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom")> & ShallowUnwrapRef<{
|
|
1016
|
+
}>, "onScrollBottom" | "setModalHeight" | "elm" | ("title" | "visible" | "size" | "height" | "draggable" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "fullscreen" | "testId" | "modal" | "contained" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom")> & import('vue').ShallowUnwrapRef<{
|
|
1020
1017
|
onScrollBottom: () => void;
|
|
1021
1018
|
setModalHeight: () => void;
|
|
1022
|
-
elm: Ref<any, any>;
|
|
1023
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
1019
|
+
elm: import('vue').Ref<any, any>;
|
|
1020
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1024
1021
|
$slots: {
|
|
1025
1022
|
default?(_: {}): any;
|
|
1026
1023
|
};
|