@gct-paas/core-web 0.1.4-dev.8 → 0.1.4-dev.9
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-BghCpvxN.js +76 -0
- package/dist/index-PLrMc0gl.cjs +76 -0
- package/dist/index-oVPMi6Ep.js +29160 -0
- package/dist/index.esm.min.mjs +34 -24962
- package/dist/index.min.cjs +1 -67
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -67
- package/dist/monaco-editor-B8X-ou0h.js +20245 -0
- package/dist/monaco-editor-Bdgpd_KL.cjs +19 -0
- package/dist/monaco-editor-NIWDtQNB.js +19 -0
- package/es/_virtual/_plugin-vue_export-helper.mjs +9 -0
- package/es/components/app-modal/app-modal-component.css +149 -0
- package/es/components/app-modal/app-modal-component.d.ts +26 -0
- package/es/components/app-modal/app-modal-component.mjs +140 -0
- package/es/components/base-button/base-button.css +74 -0
- package/es/components/base-button/base-button.vue.d.ts +173 -0
- package/es/components/base-button/base-button.vue.mjs +7 -0
- package/es/components/base-button/base-button.vue3.mjs +179 -0
- package/es/components/basic-button/basic-button.css +25 -0
- package/es/components/basic-button/basic-button.vue.d.ts +100 -0
- package/es/components/basic-button/basic-button.vue.mjs +7 -0
- package/es/components/basic-button/basic-button.vue3.mjs +130 -0
- package/es/components/code-editor/code-editor.d.ts +1 -1
- package/es/components/index.d.ts +10 -1
- package/es/components/index.mjs +22 -0
- package/es/components/layout/flex-container/flex-container.mjs +94 -0
- package/es/components/layout/flex-item/flex-item.mjs +55 -0
- package/es/components/layout/grid-container/grid-container.mjs +51 -0
- package/es/components/layout/view-container/view-container.mjs +38 -0
- package/es/components/svg-icon/svg-icon.css +73 -0
- package/es/components/svg-icon/svg-icon.vue.d.ts +40 -0
- package/es/components/svg-icon/svg-icon.vue.mjs +50 -0
- package/es/components/svg-icon/svg-icon.vue3.mjs +6 -0
- package/es/create-app-vue.d.ts +9 -0
- package/es/create-app-vue.mjs +17 -0
- package/es/directives/drag-resize.d.ts +4 -0
- package/es/directives/drag-resize.mjs +42 -0
- package/es/directives/index.d.ts +8 -0
- package/es/directives/index.mjs +9 -0
- package/es/directives/target-loading.d.ts +4 -0
- package/es/directives/target-loading.mjs +40 -0
- package/es/hooks/index.d.ts +1 -0
- package/es/hooks/useDragLine.d.ts +6 -0
- package/es/hooks/useDragLine.mjs +79 -0
- package/es/index.d.ts +5 -4
- package/es/index.mjs +29 -13
- package/es/modules/code-editor/index.d.ts +163 -0
- package/es/modules/code-editor/index.mjs +8 -0
- package/es/modules/code-editor/monaco-editor.css +49 -0
- package/es/modules/code-editor/monaco-editor.vue.d.ts +143 -0
- package/es/modules/code-editor/monaco-editor.vue.mjs +7 -0
- package/es/modules/code-editor/monaco-editor.vue2.mjs +440 -0
- package/es/modules/code-editor/useEditorConsole.d.ts +54 -0
- package/es/modules/code-editor/useEditorConsole.mjs +194 -0
- package/es/modules/code-editor/useMonacoEditor.d.ts +26 -0
- package/es/modules/code-editor/useMonacoEditor.mjs +26 -0
- package/es/modules/color-picker/index.d.ts +2 -0
- package/es/modules/color-picker/src/ColorPicker.css +16 -0
- package/es/modules/color-picker/src/ColorPicker.vue.d.ts +49 -0
- package/es/modules/color-picker/src/ColorPicker.vue.mjs +8 -0
- package/es/modules/color-picker/src/ColorPicker.vue2.mjs +545 -0
- package/es/modules/color-picker/src/ColorPicker2.css +156 -0
- package/es/modules/gct-dnd/constants/index.d.ts +7 -9
- package/es/modules/gct-dnd/constants/index.mjs +18 -7
- package/es/modules/global-modal/index.d.ts +5 -0
- package/es/modules/global-modal/index.mjs +16 -0
- package/es/modules/global-modal/src/BasicModal.vue.d.ts +518 -0
- package/es/modules/global-modal/src/BasicModal.vue.mjs +221 -0
- package/es/modules/global-modal/src/BasicModal.vue2.mjs +5 -0
- package/es/modules/global-modal/src/components/GlboalModal.d.ts +251 -0
- package/es/modules/global-modal/src/components/GlboalModal.mjs +40 -0
- package/es/modules/global-modal/src/components/ModalClose.css +95 -0
- package/es/modules/global-modal/src/components/ModalClose.vue.d.ts +27 -0
- package/es/modules/global-modal/src/components/ModalClose.vue.mjs +79 -0
- package/es/modules/global-modal/src/components/ModalClose.vue3.mjs +6 -0
- package/es/modules/global-modal/src/components/ModalFooter.vue.d.ts +270 -0
- package/es/modules/global-modal/src/components/ModalFooter.vue.mjs +44 -0
- package/es/modules/global-modal/src/components/ModalFooter.vue2.mjs +5 -0
- package/es/modules/global-modal/src/components/ModalHeader.vue.d.ts +17 -0
- package/es/modules/global-modal/src/components/ModalHeader.vue.mjs +11 -0
- package/es/modules/global-modal/src/components/ModalHeader.vue2.mjs +13 -0
- package/es/modules/global-modal/src/components/ModalWrapper.vue.d.ts +95 -0
- package/es/modules/global-modal/src/components/ModalWrapper.vue.mjs +26 -0
- package/es/modules/global-modal/src/components/ModalWrapper.vue2.mjs +136 -0
- package/es/modules/global-modal/src/hooks/useModal.d.ts +6 -0
- package/es/modules/global-modal/src/hooks/useModal.mjs +120 -0
- package/es/modules/global-modal/src/hooks/useModalContext.d.ts +5 -0
- package/es/modules/global-modal/src/hooks/useModalContext.mjs +11 -0
- package/es/modules/global-modal/src/hooks/useModalDrag.d.ts +7 -0
- package/es/modules/global-modal/src/hooks/useModalDrag.mjs +82 -0
- package/es/modules/global-modal/src/hooks/useModalFullScreen.d.ts +11 -0
- package/es/modules/global-modal/src/hooks/useModalFullScreen.mjs +16 -0
- package/es/modules/global-modal/src/index.css +153 -0
- package/es/modules/global-modal/src/props.d.ts +156 -0
- package/es/modules/global-modal/src/props.mjs +57 -0
- package/es/modules/global-modal/src/typing.d.ts +174 -0
- package/es/modules/target-loading/index.d.ts +4 -0
- package/es/modules/target-loading/src/createLoading.d.ts +13 -0
- package/es/modules/target-loading/src/createLoading.mjs +57 -0
- package/es/modules/target-loading/src/target-loading.css +18 -0
- package/es/modules/target-loading/src/target-loading.vue.d.ts +57 -0
- package/es/modules/target-loading/src/target-loading.vue.mjs +52 -0
- package/es/modules/target-loading/src/target-loading.vue3.mjs +7 -0
- package/es/modules/target-loading/src/typing.d.ts +9 -0
- package/es/modules/target-loading/src/useLoading.d.ts +9 -0
- package/es/setup-app.d.ts +1 -0
- package/es/setup-app.mjs +4 -0
- package/es/types/index.d.ts +190 -0
- package/es/utils/index.d.ts +4 -1
- package/es/utils/message-util/message-util.d.ts +7 -0
- package/es/utils/message-util/message-util.mjs +26 -0
- package/es/utils/monaco-loader/monaco-loader.d.ts +59 -0
- package/es/utils/monaco-loader/monaco-loader.mjs +88 -0
- package/es/utils/overlay-controller/overlay-controller.d.ts +18 -0
- package/es/utils/overlay-controller/overlay-controller.mjs +23 -0
- package/es/widgets/gct-edit-form/gct-edit-form.d.ts +1 -1
- package/es/widgets/gct-form/gct-form-collapse/gct-form-collapse.d.ts +1 -1
- package/package.json +14 -6
|
@@ -0,0 +1,518 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
closeIcon?(_: {}): any;
|
|
6
|
+
title?(_: {}): any;
|
|
7
|
+
footer?(_: {}): any;
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {
|
|
11
|
+
modalWrapperRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
12
|
+
loading: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
};
|
|
15
|
+
useWrapper: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
modalHeaderHeight: {
|
|
20
|
+
type: NumberConstructor;
|
|
21
|
+
default: number;
|
|
22
|
+
};
|
|
23
|
+
modalFooterHeight: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
default: number;
|
|
26
|
+
};
|
|
27
|
+
minHeight: {
|
|
28
|
+
type: NumberConstructor;
|
|
29
|
+
default: number;
|
|
30
|
+
};
|
|
31
|
+
height: {
|
|
32
|
+
type: NumberConstructor;
|
|
33
|
+
};
|
|
34
|
+
footerOffset: {
|
|
35
|
+
type: NumberConstructor;
|
|
36
|
+
default: number;
|
|
37
|
+
};
|
|
38
|
+
visible: {
|
|
39
|
+
type: BooleanConstructor;
|
|
40
|
+
};
|
|
41
|
+
fullScreen: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
};
|
|
44
|
+
loadingTip: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
};
|
|
47
|
+
}>> & Readonly<{
|
|
48
|
+
"onHeight-change"?: ((...args: any[]) => any) | undefined;
|
|
49
|
+
"onExt-height"?: ((...args: any[]) => any) | undefined;
|
|
50
|
+
}>, {
|
|
51
|
+
wrapperRef: Ref<import('overlayscrollbars-vue').OverlayScrollbarsComponentRef | undefined, import('overlayscrollbars-vue').OverlayScrollbarsComponentRef | undefined>;
|
|
52
|
+
spinRef: Ref<null, null>;
|
|
53
|
+
spinStyle: Ref<any, any>;
|
|
54
|
+
scrollTop: () => Promise<void>;
|
|
55
|
+
setModalHeight: () => Promise<void>;
|
|
56
|
+
scrollHeight: import('vue').ComputedRef<import('vue').CSSProperties>;
|
|
57
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("height-change" | "ext-height")[], import('vue').PublicProps, {
|
|
58
|
+
visible: boolean;
|
|
59
|
+
minHeight: number;
|
|
60
|
+
useWrapper: boolean;
|
|
61
|
+
loading: boolean;
|
|
62
|
+
footerOffset: number;
|
|
63
|
+
modalHeaderHeight: number;
|
|
64
|
+
modalFooterHeight: number;
|
|
65
|
+
fullScreen: boolean;
|
|
66
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
67
|
+
P: {};
|
|
68
|
+
B: {};
|
|
69
|
+
D: {};
|
|
70
|
+
C: {};
|
|
71
|
+
M: {};
|
|
72
|
+
Defaults: {};
|
|
73
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
74
|
+
loading: {
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
};
|
|
77
|
+
useWrapper: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
modalHeaderHeight: {
|
|
82
|
+
type: NumberConstructor;
|
|
83
|
+
default: number;
|
|
84
|
+
};
|
|
85
|
+
modalFooterHeight: {
|
|
86
|
+
type: NumberConstructor;
|
|
87
|
+
default: number;
|
|
88
|
+
};
|
|
89
|
+
minHeight: {
|
|
90
|
+
type: NumberConstructor;
|
|
91
|
+
default: number;
|
|
92
|
+
};
|
|
93
|
+
height: {
|
|
94
|
+
type: NumberConstructor;
|
|
95
|
+
};
|
|
96
|
+
footerOffset: {
|
|
97
|
+
type: NumberConstructor;
|
|
98
|
+
default: number;
|
|
99
|
+
};
|
|
100
|
+
visible: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
};
|
|
103
|
+
fullScreen: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
};
|
|
106
|
+
loadingTip: {
|
|
107
|
+
type: StringConstructor;
|
|
108
|
+
};
|
|
109
|
+
}>> & Readonly<{
|
|
110
|
+
"onHeight-change"?: ((...args: any[]) => any) | undefined;
|
|
111
|
+
"onExt-height"?: ((...args: any[]) => any) | undefined;
|
|
112
|
+
}>, {
|
|
113
|
+
wrapperRef: Ref<import('overlayscrollbars-vue').OverlayScrollbarsComponentRef | undefined, import('overlayscrollbars-vue').OverlayScrollbarsComponentRef | undefined>;
|
|
114
|
+
spinRef: Ref<null, null>;
|
|
115
|
+
spinStyle: Ref<any, any>;
|
|
116
|
+
scrollTop: () => Promise<void>;
|
|
117
|
+
setModalHeight: () => Promise<void>;
|
|
118
|
+
scrollHeight: import('vue').ComputedRef<import('vue').CSSProperties>;
|
|
119
|
+
}, {}, {}, {}, {
|
|
120
|
+
visible: boolean;
|
|
121
|
+
minHeight: number;
|
|
122
|
+
useWrapper: boolean;
|
|
123
|
+
loading: boolean;
|
|
124
|
+
footerOffset: number;
|
|
125
|
+
modalHeaderHeight: number;
|
|
126
|
+
modalFooterHeight: number;
|
|
127
|
+
fullScreen: boolean;
|
|
128
|
+
}> | null;
|
|
129
|
+
};
|
|
130
|
+
rootEl: any;
|
|
131
|
+
};
|
|
132
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
133
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
134
|
+
visible: {
|
|
135
|
+
type: BooleanConstructor;
|
|
136
|
+
};
|
|
137
|
+
scrollTop: {
|
|
138
|
+
type: BooleanConstructor;
|
|
139
|
+
default: boolean;
|
|
140
|
+
};
|
|
141
|
+
height: {
|
|
142
|
+
type: NumberConstructor;
|
|
143
|
+
};
|
|
144
|
+
outHeight: {
|
|
145
|
+
type: NumberConstructor;
|
|
146
|
+
};
|
|
147
|
+
minHeight: {
|
|
148
|
+
type: NumberConstructor;
|
|
149
|
+
};
|
|
150
|
+
draggable: {
|
|
151
|
+
type: BooleanConstructor;
|
|
152
|
+
default: boolean;
|
|
153
|
+
};
|
|
154
|
+
centered: {
|
|
155
|
+
type: BooleanConstructor;
|
|
156
|
+
};
|
|
157
|
+
cancelText: {
|
|
158
|
+
type: StringConstructor;
|
|
159
|
+
default: string;
|
|
160
|
+
};
|
|
161
|
+
okText: {
|
|
162
|
+
type: StringConstructor;
|
|
163
|
+
default: string;
|
|
164
|
+
};
|
|
165
|
+
closeFunc: import('vue').PropType<() => Promise<boolean>>;
|
|
166
|
+
} & {
|
|
167
|
+
defaultFullscreen: {
|
|
168
|
+
type: BooleanConstructor;
|
|
169
|
+
};
|
|
170
|
+
canFullscreen: {
|
|
171
|
+
type: BooleanConstructor;
|
|
172
|
+
default: boolean;
|
|
173
|
+
};
|
|
174
|
+
wrapperFooterOffset: {
|
|
175
|
+
type: NumberConstructor;
|
|
176
|
+
default: number;
|
|
177
|
+
};
|
|
178
|
+
helpMessage: import('vue').PropType<string | string[]>;
|
|
179
|
+
useWrapper: {
|
|
180
|
+
type: BooleanConstructor;
|
|
181
|
+
default: boolean;
|
|
182
|
+
};
|
|
183
|
+
loading: {
|
|
184
|
+
type: BooleanConstructor;
|
|
185
|
+
};
|
|
186
|
+
loadingTip: {
|
|
187
|
+
type: StringConstructor;
|
|
188
|
+
};
|
|
189
|
+
showCancelBtn: {
|
|
190
|
+
type: BooleanConstructor;
|
|
191
|
+
default: boolean;
|
|
192
|
+
};
|
|
193
|
+
showOkBtn: {
|
|
194
|
+
type: BooleanConstructor;
|
|
195
|
+
default: boolean;
|
|
196
|
+
};
|
|
197
|
+
wrapperProps: import('vue').PropType<Partial<import('./typing').ModalWrapperProps>>;
|
|
198
|
+
afterClose: FunctionConstructor;
|
|
199
|
+
bodyStyle: import('vue').PropType<import('vue').CSSProperties>;
|
|
200
|
+
closable: {
|
|
201
|
+
type: BooleanConstructor;
|
|
202
|
+
default: boolean;
|
|
203
|
+
};
|
|
204
|
+
closeIcon: import('vue').PropType<import('vue').VNode>;
|
|
205
|
+
confirmLoading: {
|
|
206
|
+
type: BooleanConstructor;
|
|
207
|
+
};
|
|
208
|
+
destroyOnClose: {
|
|
209
|
+
type: BooleanConstructor;
|
|
210
|
+
};
|
|
211
|
+
footer: import('vue').PropType<import('vue').VNode>;
|
|
212
|
+
getContainer: import('vue').PropType<() => IObject>;
|
|
213
|
+
mask: {
|
|
214
|
+
type: BooleanConstructor;
|
|
215
|
+
default: boolean;
|
|
216
|
+
};
|
|
217
|
+
maskClosable: {
|
|
218
|
+
type: BooleanConstructor;
|
|
219
|
+
default: boolean;
|
|
220
|
+
};
|
|
221
|
+
keyboard: {
|
|
222
|
+
type: BooleanConstructor;
|
|
223
|
+
default: boolean;
|
|
224
|
+
};
|
|
225
|
+
maskStyle: import('vue').PropType<import('vue').CSSProperties>;
|
|
226
|
+
okType: {
|
|
227
|
+
type: import('vue').PropType<import('ant-design-vue/es/button').ButtonType>;
|
|
228
|
+
default: string;
|
|
229
|
+
};
|
|
230
|
+
okButtonProps: import('vue').PropType<import('ant-design-vue/es/button').ButtonProps>;
|
|
231
|
+
cancelButtonProps: import('vue').PropType<import('ant-design-vue/es/button').ButtonProps>;
|
|
232
|
+
title: {
|
|
233
|
+
type: StringConstructor;
|
|
234
|
+
};
|
|
235
|
+
visible: {
|
|
236
|
+
type: BooleanConstructor;
|
|
237
|
+
};
|
|
238
|
+
width: import('vue').PropType<string | number>;
|
|
239
|
+
wrapClassName: {
|
|
240
|
+
type: StringConstructor;
|
|
241
|
+
};
|
|
242
|
+
zIndex: {
|
|
243
|
+
type: NumberConstructor;
|
|
244
|
+
};
|
|
245
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
246
|
+
ok: (...args: any[]) => void;
|
|
247
|
+
cancel: (...args: any[]) => void;
|
|
248
|
+
"height-change": (...args: any[]) => void;
|
|
249
|
+
"visible-change": (...args: any[]) => void;
|
|
250
|
+
register: (...args: any[]) => void;
|
|
251
|
+
"update:visible": (...args: any[]) => void;
|
|
252
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
253
|
+
visible: {
|
|
254
|
+
type: BooleanConstructor;
|
|
255
|
+
};
|
|
256
|
+
scrollTop: {
|
|
257
|
+
type: BooleanConstructor;
|
|
258
|
+
default: boolean;
|
|
259
|
+
};
|
|
260
|
+
height: {
|
|
261
|
+
type: NumberConstructor;
|
|
262
|
+
};
|
|
263
|
+
outHeight: {
|
|
264
|
+
type: NumberConstructor;
|
|
265
|
+
};
|
|
266
|
+
minHeight: {
|
|
267
|
+
type: NumberConstructor;
|
|
268
|
+
};
|
|
269
|
+
draggable: {
|
|
270
|
+
type: BooleanConstructor;
|
|
271
|
+
default: boolean;
|
|
272
|
+
};
|
|
273
|
+
centered: {
|
|
274
|
+
type: BooleanConstructor;
|
|
275
|
+
};
|
|
276
|
+
cancelText: {
|
|
277
|
+
type: StringConstructor;
|
|
278
|
+
default: string;
|
|
279
|
+
};
|
|
280
|
+
okText: {
|
|
281
|
+
type: StringConstructor;
|
|
282
|
+
default: string;
|
|
283
|
+
};
|
|
284
|
+
closeFunc: import('vue').PropType<() => Promise<boolean>>;
|
|
285
|
+
} & {
|
|
286
|
+
defaultFullscreen: {
|
|
287
|
+
type: BooleanConstructor;
|
|
288
|
+
};
|
|
289
|
+
canFullscreen: {
|
|
290
|
+
type: BooleanConstructor;
|
|
291
|
+
default: boolean;
|
|
292
|
+
};
|
|
293
|
+
wrapperFooterOffset: {
|
|
294
|
+
type: NumberConstructor;
|
|
295
|
+
default: number;
|
|
296
|
+
};
|
|
297
|
+
helpMessage: import('vue').PropType<string | string[]>;
|
|
298
|
+
useWrapper: {
|
|
299
|
+
type: BooleanConstructor;
|
|
300
|
+
default: boolean;
|
|
301
|
+
};
|
|
302
|
+
loading: {
|
|
303
|
+
type: BooleanConstructor;
|
|
304
|
+
};
|
|
305
|
+
loadingTip: {
|
|
306
|
+
type: StringConstructor;
|
|
307
|
+
};
|
|
308
|
+
showCancelBtn: {
|
|
309
|
+
type: BooleanConstructor;
|
|
310
|
+
default: boolean;
|
|
311
|
+
};
|
|
312
|
+
showOkBtn: {
|
|
313
|
+
type: BooleanConstructor;
|
|
314
|
+
default: boolean;
|
|
315
|
+
};
|
|
316
|
+
wrapperProps: import('vue').PropType<Partial<import('./typing').ModalWrapperProps>>;
|
|
317
|
+
afterClose: FunctionConstructor;
|
|
318
|
+
bodyStyle: import('vue').PropType<import('vue').CSSProperties>;
|
|
319
|
+
closable: {
|
|
320
|
+
type: BooleanConstructor;
|
|
321
|
+
default: boolean;
|
|
322
|
+
};
|
|
323
|
+
closeIcon: import('vue').PropType<import('vue').VNode>;
|
|
324
|
+
confirmLoading: {
|
|
325
|
+
type: BooleanConstructor;
|
|
326
|
+
};
|
|
327
|
+
destroyOnClose: {
|
|
328
|
+
type: BooleanConstructor;
|
|
329
|
+
};
|
|
330
|
+
footer: import('vue').PropType<import('vue').VNode>;
|
|
331
|
+
getContainer: import('vue').PropType<() => IObject>;
|
|
332
|
+
mask: {
|
|
333
|
+
type: BooleanConstructor;
|
|
334
|
+
default: boolean;
|
|
335
|
+
};
|
|
336
|
+
maskClosable: {
|
|
337
|
+
type: BooleanConstructor;
|
|
338
|
+
default: boolean;
|
|
339
|
+
};
|
|
340
|
+
keyboard: {
|
|
341
|
+
type: BooleanConstructor;
|
|
342
|
+
default: boolean;
|
|
343
|
+
};
|
|
344
|
+
maskStyle: import('vue').PropType<import('vue').CSSProperties>;
|
|
345
|
+
okType: {
|
|
346
|
+
type: import('vue').PropType<import('ant-design-vue/es/button').ButtonType>;
|
|
347
|
+
default: string;
|
|
348
|
+
};
|
|
349
|
+
okButtonProps: import('vue').PropType<import('ant-design-vue/es/button').ButtonProps>;
|
|
350
|
+
cancelButtonProps: import('vue').PropType<import('ant-design-vue/es/button').ButtonProps>;
|
|
351
|
+
title: {
|
|
352
|
+
type: StringConstructor;
|
|
353
|
+
};
|
|
354
|
+
visible: {
|
|
355
|
+
type: BooleanConstructor;
|
|
356
|
+
};
|
|
357
|
+
width: import('vue').PropType<string | number>;
|
|
358
|
+
wrapClassName: {
|
|
359
|
+
type: StringConstructor;
|
|
360
|
+
};
|
|
361
|
+
zIndex: {
|
|
362
|
+
type: NumberConstructor;
|
|
363
|
+
};
|
|
364
|
+
}>> & Readonly<{
|
|
365
|
+
onOk?: ((...args: any[]) => any) | undefined;
|
|
366
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
367
|
+
"onHeight-change"?: ((...args: any[]) => any) | undefined;
|
|
368
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
369
|
+
onRegister?: ((...args: any[]) => any) | undefined;
|
|
370
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
371
|
+
}>, {
|
|
372
|
+
visible: boolean;
|
|
373
|
+
scrollTop: boolean;
|
|
374
|
+
draggable: boolean;
|
|
375
|
+
centered: boolean;
|
|
376
|
+
cancelText: string;
|
|
377
|
+
okText: string;
|
|
378
|
+
defaultFullscreen: boolean;
|
|
379
|
+
canFullscreen: boolean;
|
|
380
|
+
wrapperFooterOffset: number;
|
|
381
|
+
useWrapper: boolean;
|
|
382
|
+
loading: boolean;
|
|
383
|
+
showCancelBtn: boolean;
|
|
384
|
+
showOkBtn: boolean;
|
|
385
|
+
closable: boolean;
|
|
386
|
+
confirmLoading: boolean;
|
|
387
|
+
destroyOnClose: boolean;
|
|
388
|
+
mask: boolean;
|
|
389
|
+
maskClosable: boolean;
|
|
390
|
+
keyboard: boolean;
|
|
391
|
+
okType: import('ant-design-vue/es/button').ButtonType;
|
|
392
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
393
|
+
modalWrapperRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
394
|
+
loading: {
|
|
395
|
+
type: BooleanConstructor;
|
|
396
|
+
};
|
|
397
|
+
useWrapper: {
|
|
398
|
+
type: BooleanConstructor;
|
|
399
|
+
default: boolean;
|
|
400
|
+
};
|
|
401
|
+
modalHeaderHeight: {
|
|
402
|
+
type: NumberConstructor;
|
|
403
|
+
default: number;
|
|
404
|
+
};
|
|
405
|
+
modalFooterHeight: {
|
|
406
|
+
type: NumberConstructor;
|
|
407
|
+
default: number;
|
|
408
|
+
};
|
|
409
|
+
minHeight: {
|
|
410
|
+
type: NumberConstructor;
|
|
411
|
+
default: number;
|
|
412
|
+
};
|
|
413
|
+
height: {
|
|
414
|
+
type: NumberConstructor;
|
|
415
|
+
};
|
|
416
|
+
footerOffset: {
|
|
417
|
+
type: NumberConstructor;
|
|
418
|
+
default: number;
|
|
419
|
+
};
|
|
420
|
+
visible: {
|
|
421
|
+
type: BooleanConstructor;
|
|
422
|
+
};
|
|
423
|
+
fullScreen: {
|
|
424
|
+
type: BooleanConstructor;
|
|
425
|
+
};
|
|
426
|
+
loadingTip: {
|
|
427
|
+
type: StringConstructor;
|
|
428
|
+
};
|
|
429
|
+
}>> & Readonly<{
|
|
430
|
+
"onHeight-change"?: ((...args: any[]) => any) | undefined;
|
|
431
|
+
"onExt-height"?: ((...args: any[]) => any) | undefined;
|
|
432
|
+
}>, {
|
|
433
|
+
wrapperRef: Ref<import('overlayscrollbars-vue').OverlayScrollbarsComponentRef | undefined, import('overlayscrollbars-vue').OverlayScrollbarsComponentRef | undefined>;
|
|
434
|
+
spinRef: Ref<null, null>;
|
|
435
|
+
spinStyle: Ref<any, any>;
|
|
436
|
+
scrollTop: () => Promise<void>;
|
|
437
|
+
setModalHeight: () => Promise<void>;
|
|
438
|
+
scrollHeight: import('vue').ComputedRef<import('vue').CSSProperties>;
|
|
439
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("height-change" | "ext-height")[], import('vue').PublicProps, {
|
|
440
|
+
visible: boolean;
|
|
441
|
+
minHeight: number;
|
|
442
|
+
useWrapper: boolean;
|
|
443
|
+
loading: boolean;
|
|
444
|
+
footerOffset: number;
|
|
445
|
+
modalHeaderHeight: number;
|
|
446
|
+
modalFooterHeight: number;
|
|
447
|
+
fullScreen: boolean;
|
|
448
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
449
|
+
P: {};
|
|
450
|
+
B: {};
|
|
451
|
+
D: {};
|
|
452
|
+
C: {};
|
|
453
|
+
M: {};
|
|
454
|
+
Defaults: {};
|
|
455
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
456
|
+
loading: {
|
|
457
|
+
type: BooleanConstructor;
|
|
458
|
+
};
|
|
459
|
+
useWrapper: {
|
|
460
|
+
type: BooleanConstructor;
|
|
461
|
+
default: boolean;
|
|
462
|
+
};
|
|
463
|
+
modalHeaderHeight: {
|
|
464
|
+
type: NumberConstructor;
|
|
465
|
+
default: number;
|
|
466
|
+
};
|
|
467
|
+
modalFooterHeight: {
|
|
468
|
+
type: NumberConstructor;
|
|
469
|
+
default: number;
|
|
470
|
+
};
|
|
471
|
+
minHeight: {
|
|
472
|
+
type: NumberConstructor;
|
|
473
|
+
default: number;
|
|
474
|
+
};
|
|
475
|
+
height: {
|
|
476
|
+
type: NumberConstructor;
|
|
477
|
+
};
|
|
478
|
+
footerOffset: {
|
|
479
|
+
type: NumberConstructor;
|
|
480
|
+
default: number;
|
|
481
|
+
};
|
|
482
|
+
visible: {
|
|
483
|
+
type: BooleanConstructor;
|
|
484
|
+
};
|
|
485
|
+
fullScreen: {
|
|
486
|
+
type: BooleanConstructor;
|
|
487
|
+
};
|
|
488
|
+
loadingTip: {
|
|
489
|
+
type: StringConstructor;
|
|
490
|
+
};
|
|
491
|
+
}>> & Readonly<{
|
|
492
|
+
"onHeight-change"?: ((...args: any[]) => any) | undefined;
|
|
493
|
+
"onExt-height"?: ((...args: any[]) => any) | undefined;
|
|
494
|
+
}>, {
|
|
495
|
+
wrapperRef: Ref<import('overlayscrollbars-vue').OverlayScrollbarsComponentRef | undefined, import('overlayscrollbars-vue').OverlayScrollbarsComponentRef | undefined>;
|
|
496
|
+
spinRef: Ref<null, null>;
|
|
497
|
+
spinStyle: Ref<any, any>;
|
|
498
|
+
scrollTop: () => Promise<void>;
|
|
499
|
+
setModalHeight: () => Promise<void>;
|
|
500
|
+
scrollHeight: import('vue').ComputedRef<import('vue').CSSProperties>;
|
|
501
|
+
}, {}, {}, {}, {
|
|
502
|
+
visible: boolean;
|
|
503
|
+
minHeight: number;
|
|
504
|
+
useWrapper: boolean;
|
|
505
|
+
loading: boolean;
|
|
506
|
+
footerOffset: number;
|
|
507
|
+
modalHeaderHeight: number;
|
|
508
|
+
modalFooterHeight: number;
|
|
509
|
+
fullScreen: boolean;
|
|
510
|
+
}> | null;
|
|
511
|
+
}, any>;
|
|
512
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
513
|
+
export default _default;
|
|
514
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
515
|
+
new (): {
|
|
516
|
+
$slots: S;
|
|
517
|
+
};
|
|
518
|
+
};
|