@wyfex/ivue 0.9.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +11 -6
- package/dist/index.umd.cjs +11 -6
- package/dist/ivue.css +1 -1
- package/dist/types/UseElButton/types.d.ts +1 -1
- package/dist/types/UseElConfigProvider/index.vue.d.ts +0 -20
- package/dist/types/UseElConfigProvider/props.d.ts +0 -9
- package/dist/types/UseElDatePicker/index.vue.d.ts +2 -2
- package/dist/types/UseElDatePicker/props.d.ts +1 -1
- package/dist/types/UseElDescriptions/hook.d.ts +2 -1
- package/dist/types/UseElDescriptions/index.vue.d.ts +1 -1
- package/dist/types/UseElDialog/hook.d.ts +4 -314
- package/dist/types/UseElDialog/index.vue.d.ts +14 -20
- package/dist/types/UseElDialog/props.d.ts +5 -9
- package/dist/types/UseElDrawer/hook.d.ts +4 -352
- package/dist/types/UseElDrawer/index.vue.d.ts +2 -2
- package/dist/types/UseElSelect/hook.d.ts +5 -4
- package/dist/types/UseElSelect/index.vue.d.ts +2 -2
- package/dist/types/UseElSelect/props.d.ts +1 -1
- package/dist/types/UseElTable/components/EditableCell.vue.d.ts +4 -0
- package/dist/types/UseElTable/components/RecTableColumn.vue.d.ts +86 -0
- package/dist/types/UseElTable/components/Selection.vue.d.ts +12 -0
- package/dist/types/UseElTable/components/Span.vue.d.ts +4 -0
- package/dist/types/UseElTable/defaultExtConfig.d.ts +35 -0
- package/dist/types/UseElTable/hooks/useElTable.d.ts +18 -0
- package/dist/types/UseElTable/hooks/usePagination.d.ts +9 -0
- package/dist/types/UseElTable/hooks/useSelection.d.ts +15 -0
- package/dist/types/UseElTable/index.vue.d.ts +122 -0
- package/dist/types/UseElTable/props.d.ts +50 -0
- package/dist/types/UseElTable/types.d.ts +96 -0
- package/dist/types/UseElTable/utils.d.ts +9 -0
- package/dist/types/UseRender/index.vue.d.ts +1 -1
- package/dist/types/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/components/UseElButton/types.ts +1 -1
- package/src/components/UseElConfigProvider/props.ts +0 -15
- package/src/components/UseElDialog/props.ts +9 -11
- package/src/components/UseElTable/defaultExtConfig.ts +64 -0
- package/src/components/UseElTable/props.ts +83 -0
- package/src/components/UseElTable/types.ts +144 -0
- package/src/types/index.ts +9 -14
|
@@ -7,15 +7,6 @@ declare const _default: {
|
|
|
7
7
|
default: string;
|
|
8
8
|
validator: (val: string) => boolean;
|
|
9
9
|
};
|
|
10
|
-
themeMode: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
validator: (val: string) => boolean;
|
|
14
|
-
};
|
|
15
|
-
tableExtraHeight: {
|
|
16
|
-
type: NumberConstructor;
|
|
17
|
-
default: number;
|
|
18
|
-
};
|
|
19
10
|
uploadConfig: {
|
|
20
11
|
type: PropType<UploadConfig>;
|
|
21
12
|
default: () => {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
modelValue: {
|
|
3
|
-
type: (StringConstructor |
|
|
3
|
+
type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
6
|
useRender: {
|
|
@@ -40,7 +40,7 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
40
40
|
"update:modelValue": (value: string | number | any[]) => any;
|
|
41
41
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
42
42
|
modelValue: {
|
|
43
|
-
type: (StringConstructor |
|
|
43
|
+
type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
44
44
|
default: string;
|
|
45
45
|
};
|
|
46
46
|
useRender: {
|
|
@@ -2,7 +2,7 @@ import { PropType } from 'vue';
|
|
|
2
2
|
import { RenderConfig } from '../../../types';
|
|
3
3
|
declare const _default: {
|
|
4
4
|
modelValue: {
|
|
5
|
-
type: (StringConstructor |
|
|
5
|
+
type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
6
6
|
default: string;
|
|
7
7
|
};
|
|
8
8
|
useRender: {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import { ComputedRef } from 'vue';
|
|
1
2
|
import { ConfigColumn, Emits, Props } from './types';
|
|
2
3
|
import { GlobalConfig, RenderConfig } from '../../../types';
|
|
3
4
|
export declare const useElDescriptions: ({ props, emits, globalConfig }: {
|
|
4
5
|
props: Props;
|
|
5
6
|
emits: Emits;
|
|
6
|
-
globalConfig: GlobalConfig
|
|
7
|
+
globalConfig: ComputedRef<GlobalConfig>;
|
|
7
8
|
}) => {
|
|
8
9
|
processRenderContent: (item: ConfigColumn) => any;
|
|
9
10
|
processRenderStyle: (renderConfig: RenderConfig | boolean, item: ConfigColumn) => any;
|
|
@@ -94,8 +94,8 @@ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
94
94
|
}>> & Readonly<{
|
|
95
95
|
onOnDictKeys?: ((value?: string[] | undefined) => any) | undefined;
|
|
96
96
|
}>, {
|
|
97
|
-
useRender: boolean | RenderConfig;
|
|
98
97
|
dictMap: import('../../../types').DictMap;
|
|
98
|
+
useRender: boolean | RenderConfig;
|
|
99
99
|
dictProps: import('../../../types').DictProps;
|
|
100
100
|
column: number;
|
|
101
101
|
border: boolean;
|
|
@@ -1,322 +1,12 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
|
-
import {
|
|
2
|
+
import { DialogInstance } from 'element-plus';
|
|
3
3
|
import { Props } from './types';
|
|
4
4
|
export declare const useElDialog: ({ props, edRef }: {
|
|
5
5
|
props: Props;
|
|
6
|
-
edRef: Ref<
|
|
6
|
+
edRef: Ref<DialogInstance | null>;
|
|
7
7
|
}) => {
|
|
8
|
-
edRef: Ref<
|
|
9
|
-
|
|
10
|
-
$data: {};
|
|
11
|
-
$props: {
|
|
12
|
-
readonly appendToBody?: boolean | undefined;
|
|
13
|
-
readonly appendTo?: (string | HTMLElement) | undefined;
|
|
14
|
-
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
15
|
-
readonly destroyOnClose?: boolean | undefined;
|
|
16
|
-
readonly closeOnClickModal?: boolean | undefined;
|
|
17
|
-
readonly closeOnPressEscape?: boolean | undefined;
|
|
18
|
-
readonly lockScroll?: boolean | undefined;
|
|
19
|
-
readonly modal?: boolean | undefined;
|
|
20
|
-
readonly modalPenetrable?: boolean | undefined;
|
|
21
|
-
readonly openDelay?: number | undefined;
|
|
22
|
-
readonly closeDelay?: number | undefined;
|
|
23
|
-
readonly top?: string | undefined;
|
|
24
|
-
readonly modelValue?: boolean | undefined;
|
|
25
|
-
readonly modalClass?: string | undefined;
|
|
26
|
-
readonly width?: string | number | undefined;
|
|
27
|
-
readonly zIndex?: number | undefined;
|
|
28
|
-
readonly trapFocus?: boolean | undefined;
|
|
29
|
-
readonly headerAriaLevel?: string | undefined;
|
|
30
|
-
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
31
|
-
readonly center?: boolean | undefined;
|
|
32
|
-
readonly alignCenter?: boolean | undefined;
|
|
33
|
-
readonly closeIcon?: import('element-plus/es/utils/vue/icon.mjs').IconPropType | undefined;
|
|
34
|
-
readonly draggable?: boolean | undefined;
|
|
35
|
-
readonly overflow?: boolean | undefined;
|
|
36
|
-
readonly fullscreen?: boolean | undefined;
|
|
37
|
-
readonly headerClass?: string | undefined;
|
|
38
|
-
readonly bodyClass?: string | undefined;
|
|
39
|
-
readonly footerClass?: string | undefined;
|
|
40
|
-
readonly showClose?: boolean | undefined;
|
|
41
|
-
readonly title?: string | undefined;
|
|
42
|
-
readonly ariaLevel?: string | undefined;
|
|
43
|
-
readonly onOpen?: (() => any) | undefined | undefined;
|
|
44
|
-
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined | undefined;
|
|
45
|
-
readonly onClose?: (() => any) | undefined | undefined;
|
|
46
|
-
readonly onOpened?: (() => any) | undefined | undefined;
|
|
47
|
-
readonly onClosed?: (() => any) | undefined | undefined;
|
|
48
|
-
readonly onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
49
|
-
readonly onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
50
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
51
|
-
$attrs: import('vue').Attrs;
|
|
52
|
-
$refs: {
|
|
53
|
-
[x: string]: unknown;
|
|
54
|
-
};
|
|
55
|
-
$slots: Readonly<{
|
|
56
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
57
|
-
}>;
|
|
58
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
59
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
60
|
-
$host: Element | null;
|
|
61
|
-
$emit: ((event: "close") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "open") => void) & ((event: "opened") => void) & ((event: "closed") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void);
|
|
62
|
-
$el: any;
|
|
63
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').DialogProps> & Readonly<{
|
|
64
|
-
onOpen?: (() => any) | undefined;
|
|
65
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
66
|
-
onClose?: (() => any) | undefined;
|
|
67
|
-
onOpened?: (() => any) | undefined;
|
|
68
|
-
onClosed?: (() => any) | undefined;
|
|
69
|
-
onOpenAutoFocus?: (() => any) | undefined;
|
|
70
|
-
onCloseAutoFocus?: (() => any) | undefined;
|
|
71
|
-
}>, {
|
|
72
|
-
visible: Ref<boolean, boolean>;
|
|
73
|
-
dialogContentRef: Ref<any, any>;
|
|
74
|
-
resetPosition: () => void;
|
|
75
|
-
handleClose: () => void;
|
|
76
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
77
|
-
open: () => void;
|
|
78
|
-
"update:modelValue": (value: boolean) => void;
|
|
79
|
-
close: () => void;
|
|
80
|
-
opened: () => void;
|
|
81
|
-
closed: () => void;
|
|
82
|
-
openAutoFocus: () => void;
|
|
83
|
-
closeAutoFocus: () => void;
|
|
84
|
-
}, string, {
|
|
85
|
-
overflow: boolean;
|
|
86
|
-
transition: import('element-plus').DialogTransition;
|
|
87
|
-
appendTo: string | HTMLElement;
|
|
88
|
-
title: string;
|
|
89
|
-
closeOnClickModal: boolean;
|
|
90
|
-
closeOnPressEscape: boolean;
|
|
91
|
-
lockScroll: boolean;
|
|
92
|
-
modal: boolean;
|
|
93
|
-
openDelay: number;
|
|
94
|
-
closeDelay: number;
|
|
95
|
-
headerAriaLevel: string;
|
|
96
|
-
alignCenter: boolean;
|
|
97
|
-
draggable: boolean;
|
|
98
|
-
showClose: boolean;
|
|
99
|
-
ariaLevel: string;
|
|
100
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
101
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
102
|
-
created?: (() => void) | (() => void)[];
|
|
103
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
104
|
-
mounted?: (() => void) | (() => void)[];
|
|
105
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
106
|
-
updated?: (() => void) | (() => void)[];
|
|
107
|
-
activated?: (() => void) | (() => void)[];
|
|
108
|
-
deactivated?: (() => void) | (() => void)[];
|
|
109
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
110
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
111
|
-
destroyed?: (() => void) | (() => void)[];
|
|
112
|
-
unmounted?: (() => void) | (() => void)[];
|
|
113
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
114
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
115
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
116
|
-
};
|
|
117
|
-
$forceUpdate: () => void;
|
|
118
|
-
$nextTick: typeof import('vue').nextTick;
|
|
119
|
-
$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;
|
|
120
|
-
} & Readonly<{
|
|
121
|
-
overflow: boolean;
|
|
122
|
-
transition: import('element-plus').DialogTransition;
|
|
123
|
-
appendTo: string | HTMLElement;
|
|
124
|
-
title: string;
|
|
125
|
-
closeOnClickModal: boolean;
|
|
126
|
-
closeOnPressEscape: boolean;
|
|
127
|
-
lockScroll: boolean;
|
|
128
|
-
modal: boolean;
|
|
129
|
-
openDelay: number;
|
|
130
|
-
closeDelay: number;
|
|
131
|
-
headerAriaLevel: string;
|
|
132
|
-
alignCenter: boolean;
|
|
133
|
-
draggable: boolean;
|
|
134
|
-
showClose: boolean;
|
|
135
|
-
ariaLevel: string;
|
|
136
|
-
}> & Omit<Readonly<import('element-plus').DialogProps> & Readonly<{
|
|
137
|
-
onOpen?: (() => any) | undefined;
|
|
138
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
139
|
-
onClose?: (() => any) | undefined;
|
|
140
|
-
onOpened?: (() => any) | undefined;
|
|
141
|
-
onClosed?: (() => any) | undefined;
|
|
142
|
-
onOpenAutoFocus?: (() => any) | undefined;
|
|
143
|
-
onCloseAutoFocus?: (() => any) | undefined;
|
|
144
|
-
}>, "title" | "showClose" | "appendTo" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "openDelay" | "closeDelay" | "headerAriaLevel" | "transition" | "alignCenter" | "draggable" | "overflow" | "ariaLevel" | "visible" | "dialogContentRef" | "resetPosition" | "handleClose"> & {
|
|
145
|
-
visible: boolean;
|
|
146
|
-
dialogContentRef: any;
|
|
147
|
-
resetPosition: () => void;
|
|
148
|
-
handleClose: () => void;
|
|
149
|
-
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
150
|
-
$slots: {
|
|
151
|
-
header?: (props: {
|
|
152
|
-
close: () => void;
|
|
153
|
-
titleId: string;
|
|
154
|
-
titleClass: string;
|
|
155
|
-
}) => any;
|
|
156
|
-
} & {
|
|
157
|
-
title?: (props: {}) => any;
|
|
158
|
-
} & {
|
|
159
|
-
default?: (props: {}) => any;
|
|
160
|
-
} & {
|
|
161
|
-
footer?: (props: {}) => any;
|
|
162
|
-
};
|
|
163
|
-
}, {
|
|
164
|
-
$: import('vue').ComponentInternalInstance;
|
|
165
|
-
$data: {};
|
|
166
|
-
$props: {
|
|
167
|
-
readonly appendToBody?: boolean | undefined;
|
|
168
|
-
readonly appendTo?: (string | HTMLElement) | undefined;
|
|
169
|
-
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
170
|
-
readonly destroyOnClose?: boolean | undefined;
|
|
171
|
-
readonly closeOnClickModal?: boolean | undefined;
|
|
172
|
-
readonly closeOnPressEscape?: boolean | undefined;
|
|
173
|
-
readonly lockScroll?: boolean | undefined;
|
|
174
|
-
readonly modal?: boolean | undefined;
|
|
175
|
-
readonly modalPenetrable?: boolean | undefined;
|
|
176
|
-
readonly openDelay?: number | undefined;
|
|
177
|
-
readonly closeDelay?: number | undefined;
|
|
178
|
-
readonly top?: string | undefined;
|
|
179
|
-
readonly modelValue?: boolean | undefined;
|
|
180
|
-
readonly modalClass?: string | undefined;
|
|
181
|
-
readonly width?: string | number | undefined;
|
|
182
|
-
readonly zIndex?: number | undefined;
|
|
183
|
-
readonly trapFocus?: boolean | undefined;
|
|
184
|
-
readonly headerAriaLevel?: string | undefined;
|
|
185
|
-
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
186
|
-
readonly center?: boolean | undefined;
|
|
187
|
-
readonly alignCenter?: boolean | undefined;
|
|
188
|
-
readonly closeIcon?: import('element-plus/es/utils/vue/icon.mjs').IconPropType | undefined;
|
|
189
|
-
readonly draggable?: boolean | undefined;
|
|
190
|
-
readonly overflow?: boolean | undefined;
|
|
191
|
-
readonly fullscreen?: boolean | undefined;
|
|
192
|
-
readonly headerClass?: string | undefined;
|
|
193
|
-
readonly bodyClass?: string | undefined;
|
|
194
|
-
readonly footerClass?: string | undefined;
|
|
195
|
-
readonly showClose?: boolean | undefined;
|
|
196
|
-
readonly title?: string | undefined;
|
|
197
|
-
readonly ariaLevel?: string | undefined;
|
|
198
|
-
readonly onOpen?: (() => any) | undefined | undefined;
|
|
199
|
-
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined | undefined;
|
|
200
|
-
readonly onClose?: (() => any) | undefined | undefined;
|
|
201
|
-
readonly onOpened?: (() => any) | undefined | undefined;
|
|
202
|
-
readonly onClosed?: (() => any) | undefined | undefined;
|
|
203
|
-
readonly onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
204
|
-
readonly onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
205
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
206
|
-
$attrs: import('vue').Attrs;
|
|
207
|
-
$refs: {
|
|
208
|
-
[x: string]: unknown;
|
|
209
|
-
};
|
|
210
|
-
$slots: Readonly<{
|
|
211
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
212
|
-
}>;
|
|
213
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
214
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
215
|
-
$host: Element | null;
|
|
216
|
-
$emit: ((event: "close") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "open") => void) & ((event: "opened") => void) & ((event: "closed") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void);
|
|
217
|
-
$el: any;
|
|
218
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').DialogProps> & Readonly<{
|
|
219
|
-
onOpen?: (() => any) | undefined;
|
|
220
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
221
|
-
onClose?: (() => any) | undefined;
|
|
222
|
-
onOpened?: (() => any) | undefined;
|
|
223
|
-
onClosed?: (() => any) | undefined;
|
|
224
|
-
onOpenAutoFocus?: (() => any) | undefined;
|
|
225
|
-
onCloseAutoFocus?: (() => any) | undefined;
|
|
226
|
-
}>, {
|
|
227
|
-
visible: Ref<boolean, boolean>;
|
|
228
|
-
dialogContentRef: Ref<any, any>;
|
|
229
|
-
resetPosition: () => void;
|
|
230
|
-
handleClose: () => void;
|
|
231
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
232
|
-
open: () => void;
|
|
233
|
-
"update:modelValue": (value: boolean) => void;
|
|
234
|
-
close: () => void;
|
|
235
|
-
opened: () => void;
|
|
236
|
-
closed: () => void;
|
|
237
|
-
openAutoFocus: () => void;
|
|
238
|
-
closeAutoFocus: () => void;
|
|
239
|
-
}, string, {
|
|
240
|
-
overflow: boolean;
|
|
241
|
-
transition: import('element-plus').DialogTransition;
|
|
242
|
-
appendTo: string | HTMLElement;
|
|
243
|
-
title: string;
|
|
244
|
-
closeOnClickModal: boolean;
|
|
245
|
-
closeOnPressEscape: boolean;
|
|
246
|
-
lockScroll: boolean;
|
|
247
|
-
modal: boolean;
|
|
248
|
-
openDelay: number;
|
|
249
|
-
closeDelay: number;
|
|
250
|
-
headerAriaLevel: string;
|
|
251
|
-
alignCenter: boolean;
|
|
252
|
-
draggable: boolean;
|
|
253
|
-
showClose: boolean;
|
|
254
|
-
ariaLevel: string;
|
|
255
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
256
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
257
|
-
created?: (() => void) | (() => void)[];
|
|
258
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
259
|
-
mounted?: (() => void) | (() => void)[];
|
|
260
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
261
|
-
updated?: (() => void) | (() => void)[];
|
|
262
|
-
activated?: (() => void) | (() => void)[];
|
|
263
|
-
deactivated?: (() => void) | (() => void)[];
|
|
264
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
265
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
266
|
-
destroyed?: (() => void) | (() => void)[];
|
|
267
|
-
unmounted?: (() => void) | (() => void)[];
|
|
268
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
269
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
270
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
271
|
-
};
|
|
272
|
-
$forceUpdate: () => void;
|
|
273
|
-
$nextTick: typeof import('vue').nextTick;
|
|
274
|
-
$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;
|
|
275
|
-
} & Readonly<{
|
|
276
|
-
overflow: boolean;
|
|
277
|
-
transition: import('element-plus').DialogTransition;
|
|
278
|
-
appendTo: string | HTMLElement;
|
|
279
|
-
title: string;
|
|
280
|
-
closeOnClickModal: boolean;
|
|
281
|
-
closeOnPressEscape: boolean;
|
|
282
|
-
lockScroll: boolean;
|
|
283
|
-
modal: boolean;
|
|
284
|
-
openDelay: number;
|
|
285
|
-
closeDelay: number;
|
|
286
|
-
headerAriaLevel: string;
|
|
287
|
-
alignCenter: boolean;
|
|
288
|
-
draggable: boolean;
|
|
289
|
-
showClose: boolean;
|
|
290
|
-
ariaLevel: string;
|
|
291
|
-
}> & Omit<Readonly<import('element-plus').DialogProps> & Readonly<{
|
|
292
|
-
onOpen?: (() => any) | undefined;
|
|
293
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
294
|
-
onClose?: (() => any) | undefined;
|
|
295
|
-
onOpened?: (() => any) | undefined;
|
|
296
|
-
onClosed?: (() => any) | undefined;
|
|
297
|
-
onOpenAutoFocus?: (() => any) | undefined;
|
|
298
|
-
onCloseAutoFocus?: (() => any) | undefined;
|
|
299
|
-
}>, "title" | "showClose" | "appendTo" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "openDelay" | "closeDelay" | "headerAriaLevel" | "transition" | "alignCenter" | "draggable" | "overflow" | "ariaLevel" | "visible" | "dialogContentRef" | "resetPosition" | "handleClose"> & {
|
|
300
|
-
visible: boolean;
|
|
301
|
-
dialogContentRef: any;
|
|
302
|
-
resetPosition: () => void;
|
|
303
|
-
handleClose: () => void;
|
|
304
|
-
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
305
|
-
$slots: {
|
|
306
|
-
header?: (props: {
|
|
307
|
-
close: () => void;
|
|
308
|
-
titleId: string;
|
|
309
|
-
titleClass: string;
|
|
310
|
-
}) => any;
|
|
311
|
-
} & {
|
|
312
|
-
title?: (props: {}) => any;
|
|
313
|
-
} & {
|
|
314
|
-
default?: (props: {}) => any;
|
|
315
|
-
} & {
|
|
316
|
-
footer?: (props: {}) => any;
|
|
317
|
-
};
|
|
318
|
-
}>;
|
|
319
|
-
handleClose: import('vue').ComputedRef<() => void>;
|
|
8
|
+
edRef: Ref<DialogInstance | null, DialogInstance | null>;
|
|
9
|
+
handleClose: import('vue').ComputedRef<(() => void) | undefined>;
|
|
320
10
|
isFullScreen: Ref<boolean, boolean>;
|
|
321
11
|
iconComponent: import('vue').ComputedRef<string>;
|
|
322
12
|
handleFullScreen: () => void;
|
|
@@ -7,13 +7,6 @@ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
7
7
|
type: BooleanConstructor;
|
|
8
8
|
default: boolean;
|
|
9
9
|
};
|
|
10
|
-
headerStyleConfig: {
|
|
11
|
-
type: import('vue').PropType<Record<string, any>>;
|
|
12
|
-
default: () => {
|
|
13
|
-
bgColor: string;
|
|
14
|
-
color: string;
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
10
|
maxHeight: {
|
|
18
11
|
type: (StringConstructor | NumberConstructor)[];
|
|
19
12
|
default: string;
|
|
@@ -34,11 +27,15 @@ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
34
27
|
type: BooleanConstructor;
|
|
35
28
|
default: boolean;
|
|
36
29
|
};
|
|
30
|
+
showHeaderBottomBorder: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
37
34
|
showFooter: {
|
|
38
35
|
type: BooleanConstructor;
|
|
39
36
|
default: boolean;
|
|
40
37
|
};
|
|
41
|
-
|
|
38
|
+
showFooterTopBorder: {
|
|
42
39
|
type: BooleanConstructor;
|
|
43
40
|
default: boolean;
|
|
44
41
|
};
|
|
@@ -77,8 +74,8 @@ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
77
74
|
default: () => void;
|
|
78
75
|
};
|
|
79
76
|
}>, {
|
|
80
|
-
edRef:
|
|
81
|
-
handleClose: import('vue').ComputedRef<() => void>;
|
|
77
|
+
edRef: import('vue').Ref<null, null>;
|
|
78
|
+
handleClose: import('vue').ComputedRef<(() => void) | undefined>;
|
|
82
79
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
83
80
|
title: {
|
|
84
81
|
type: StringConstructor;
|
|
@@ -88,13 +85,6 @@ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
88
85
|
type: BooleanConstructor;
|
|
89
86
|
default: boolean;
|
|
90
87
|
};
|
|
91
|
-
headerStyleConfig: {
|
|
92
|
-
type: import('vue').PropType<Record<string, any>>;
|
|
93
|
-
default: () => {
|
|
94
|
-
bgColor: string;
|
|
95
|
-
color: string;
|
|
96
|
-
};
|
|
97
|
-
};
|
|
98
88
|
maxHeight: {
|
|
99
89
|
type: (StringConstructor | NumberConstructor)[];
|
|
100
90
|
default: string;
|
|
@@ -115,11 +105,15 @@ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
115
105
|
type: BooleanConstructor;
|
|
116
106
|
default: boolean;
|
|
117
107
|
};
|
|
108
|
+
showHeaderBottomBorder: {
|
|
109
|
+
type: BooleanConstructor;
|
|
110
|
+
default: boolean;
|
|
111
|
+
};
|
|
118
112
|
showFooter: {
|
|
119
113
|
type: BooleanConstructor;
|
|
120
114
|
default: boolean;
|
|
121
115
|
};
|
|
122
|
-
|
|
116
|
+
showFooterTopBorder: {
|
|
123
117
|
type: BooleanConstructor;
|
|
124
118
|
default: boolean;
|
|
125
119
|
};
|
|
@@ -161,14 +155,14 @@ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
161
155
|
title: string;
|
|
162
156
|
onClose: Function;
|
|
163
157
|
appendToBody: boolean;
|
|
164
|
-
headerStyleConfig: Record<string, any>;
|
|
165
158
|
maxHeight: string | number;
|
|
166
159
|
noresize: boolean;
|
|
167
160
|
closeOnClickModal: boolean;
|
|
168
161
|
destroyOnClose: boolean;
|
|
169
162
|
showFullScreenIcon: boolean;
|
|
163
|
+
showHeaderBottomBorder: boolean;
|
|
170
164
|
showFooter: boolean;
|
|
171
|
-
|
|
165
|
+
showFooterTopBorder: boolean;
|
|
172
166
|
footerPosition: string;
|
|
173
167
|
strictCloseEvent: boolean;
|
|
174
168
|
confirmBtnText: string;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
1
|
declare const _default: {
|
|
3
2
|
title: {
|
|
4
3
|
type: StringConstructor;
|
|
@@ -8,13 +7,6 @@ declare const _default: {
|
|
|
8
7
|
type: BooleanConstructor;
|
|
9
8
|
default: boolean;
|
|
10
9
|
};
|
|
11
|
-
headerStyleConfig: {
|
|
12
|
-
type: PropType<Record<string, any>>;
|
|
13
|
-
default: () => {
|
|
14
|
-
bgColor: string;
|
|
15
|
-
color: string;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
10
|
maxHeight: {
|
|
19
11
|
type: (StringConstructor | NumberConstructor)[];
|
|
20
12
|
default: string;
|
|
@@ -35,11 +27,15 @@ declare const _default: {
|
|
|
35
27
|
type: BooleanConstructor;
|
|
36
28
|
default: boolean;
|
|
37
29
|
};
|
|
30
|
+
showHeaderBottomBorder: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
38
34
|
showFooter: {
|
|
39
35
|
type: BooleanConstructor;
|
|
40
36
|
default: boolean;
|
|
41
37
|
};
|
|
42
|
-
|
|
38
|
+
showFooterTopBorder: {
|
|
43
39
|
type: BooleanConstructor;
|
|
44
40
|
default: boolean;
|
|
45
41
|
};
|