@dt-frames/ui 2.0.10 → 2.0.12
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/es/components/container/index.d.ts +2 -93
- package/es/components/curd/index.js +7 -2966
- package/es/components/curd/src/components/Curd.d.ts +19 -891
- package/es/components/curd/src/hooks/useCurd.d.ts +2 -2
- package/es/components/curd/src/props.d.ts +6 -4
- package/es/components/curd/src/types/curd.type.d.ts +2 -2
- package/es/components/drawer/index.d.ts +10 -167
- package/es/components/drawer/index.js +24 -462
- package/es/components/drawer/src/components/DrawerFooter.d.ts +1 -84
- package/es/components/drawer/src/index.d.ts +10 -167
- package/es/components/drawer/src/types/index.type.d.ts +2 -2
- package/es/components/form/index.d.ts +5 -1
- package/es/components/form/index.js +81 -485
- package/es/components/form/src/components/FormItem.d.ts +3 -1
- package/es/components/form/src/components/formIcon.d.ts +3 -11
- package/es/components/form/src/components/formInputUseDialog.d.ts +2 -2
- package/es/components/form/src/props.d.ts +7 -5
- package/es/components/form/src/types/form.type.d.ts +3 -0
- package/es/components/form/src/types/items.type.d.ts +6 -4
- package/es/components/icons/index.d.ts +497 -497
- package/es/components/iframe/index.d.ts +2 -0
- package/es/components/iframe/index.js +72 -0
- package/es/components/iframe/index.less +29 -0
- package/es/components/iframe/src/index.d.ts +38 -0
- package/es/components/modal/index.d.ts +2 -1
- package/es/components/modal/index.js +23 -475
- package/es/components/modal/src/components/Modal.d.ts +1 -1
- package/es/components/modal/src/components/ModalFooter.d.ts +2 -95
- package/es/components/modal/src/components/ModalWrap.d.ts +1 -75
- package/es/components/modal/src/index.d.ts +14 -179
- package/es/components/table/index.js +328 -2030
- package/es/components/table/src/components/TableAction.d.ts +1 -1
- package/es/components/table/src/components/editTable/EditTableCell.d.ts +1 -1
- package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +1 -877
- package/es/components/table/src/index.d.ts +10 -10
- package/es/components/tree/src/components/TreeHeader.d.ts +1 -1
- package/es/components/tree/src/index.d.ts +2 -2
- package/es/components/upload/index.d.ts +2 -0
- package/es/components/upload/index.js +419 -0
- package/es/components/upload/index.less +37 -0
- package/es/components/upload/src/basicProps.d.ts +89 -0
- package/es/components/upload/src/components/PdfView.d.ts +9 -0
- package/es/components/upload/src/hooks/useFile.d.ts +15 -0
- package/es/components/upload/src/index.d.ts +236 -0
- package/es/components/upload/src/type/file.d.ts +10 -0
- package/es/components/upload/src/utils/upload.d.ts +2 -0
- package/es/theme/index.d.ts +2 -1
- package/es/theme/index.js +98 -145
- package/es/theme/index.less +5 -1
- package/es/theme/src/components/content/index.d.ts +2 -0
- package/es/theme/src/components/header/index.d.ts +809 -809
- package/es/theme/src/components/header/multiple-header.d.ts +918 -918
- package/es/theme/src/hooks/useMenu.d.ts +1 -1
- package/es/theme/src/index.d.ts +2059 -2057
- package/index.d.ts +3 -1
- package/index.js +24 -2
- package/manualContentPath.js +124 -0
- package/package.json +8 -3
- package/vite.config.ts +19 -4
- package/es/components/curd/index.less +0 -2
- package/es/components/form/src/index.d.ts +0 -2922
- package/es/components/table/src/components/TableHeader.d.ts +0 -1136
- package/es/components/table/src/components/tableSetting/Download.d.ts +0 -922
- package/es/components/table/src/components/tableSetting/index.d.ts +0 -1030
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ButtonProps } from '../../../form
|
|
1
|
+
import { ButtonProps } from '../../../form';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
4
|
buttons: PropType<ButtonProps[]>;
|
|
@@ -29,100 +29,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
29
29
|
props: any;
|
|
30
30
|
buttonList: import("vue").ComputedRef<ButtonProps[]>;
|
|
31
31
|
handleMethod: (item: ButtonProps) => void;
|
|
32
|
-
DtFormButtons: import("vue").DefineComponent<{
|
|
33
|
-
mode: {
|
|
34
|
-
type: PropType<"search" | "dialog">;
|
|
35
|
-
default: string;
|
|
36
|
-
};
|
|
37
|
-
show: {
|
|
38
|
-
type: BooleanConstructor;
|
|
39
|
-
default: boolean;
|
|
40
|
-
};
|
|
41
|
-
showAdvancedButton: {
|
|
42
|
-
type: BooleanConstructor;
|
|
43
|
-
default: boolean;
|
|
44
|
-
};
|
|
45
|
-
minShowColumn: {
|
|
46
|
-
type: NumberConstructor;
|
|
47
|
-
default: number;
|
|
48
|
-
};
|
|
49
|
-
buttonList: {
|
|
50
|
-
type: PropType<ButtonProps[]>;
|
|
51
|
-
default: any[];
|
|
52
|
-
};
|
|
53
|
-
isAdvanced: {
|
|
54
|
-
type: BooleanConstructor;
|
|
55
|
-
default: boolean;
|
|
56
|
-
};
|
|
57
|
-
colspan: {
|
|
58
|
-
type: ObjectConstructor;
|
|
59
|
-
};
|
|
60
|
-
}, {
|
|
61
|
-
props: any;
|
|
62
|
-
emits: (event: "handle-method", ...args: any[]) => void;
|
|
63
|
-
t: {
|
|
64
|
-
(key: string): string;
|
|
65
|
-
(key: string, locale: string): string;
|
|
66
|
-
(key: string, locale: string, list: unknown[]): string;
|
|
67
|
-
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
68
|
-
(key: string, list: unknown[]): string;
|
|
69
|
-
(key: string, named: Record<string, unknown>): string;
|
|
70
|
-
};
|
|
71
|
-
advancedRef: import("vue").Ref<{
|
|
72
|
-
valueOf: () => boolean;
|
|
73
|
-
}>;
|
|
74
|
-
key: number;
|
|
75
|
-
showAdvanceRef: import("vue").ComputedRef<boolean>;
|
|
76
|
-
colOpt: import("vue").ComputedRef<{
|
|
77
|
-
style: import("@dt-frames/core").Recordable<any>;
|
|
78
|
-
span?: undefined;
|
|
79
|
-
} | {
|
|
80
|
-
style: import("@dt-frames/core").Recordable<any>;
|
|
81
|
-
span: number;
|
|
82
|
-
}>;
|
|
83
|
-
getAdvanceClass: import("vue").ComputedRef<(string | {
|
|
84
|
-
'basic-arrow--active': boolean;
|
|
85
|
-
})[]>;
|
|
86
|
-
toggleAdvanced: () => void;
|
|
87
|
-
handleBtnClick: (button: ButtonProps) => void;
|
|
88
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "handle-method"[], "handle-method", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
89
|
-
mode: {
|
|
90
|
-
type: PropType<"search" | "dialog">;
|
|
91
|
-
default: string;
|
|
92
|
-
};
|
|
93
|
-
show: {
|
|
94
|
-
type: BooleanConstructor;
|
|
95
|
-
default: boolean;
|
|
96
|
-
};
|
|
97
|
-
showAdvancedButton: {
|
|
98
|
-
type: BooleanConstructor;
|
|
99
|
-
default: boolean;
|
|
100
|
-
};
|
|
101
|
-
minShowColumn: {
|
|
102
|
-
type: NumberConstructor;
|
|
103
|
-
default: number;
|
|
104
|
-
};
|
|
105
|
-
buttonList: {
|
|
106
|
-
type: PropType<ButtonProps[]>;
|
|
107
|
-
default: any[];
|
|
108
|
-
};
|
|
109
|
-
isAdvanced: {
|
|
110
|
-
type: BooleanConstructor;
|
|
111
|
-
default: boolean;
|
|
112
|
-
};
|
|
113
|
-
colspan: {
|
|
114
|
-
type: ObjectConstructor;
|
|
115
|
-
};
|
|
116
|
-
}>> & {
|
|
117
|
-
"onHandle-method"?: (...args: any[]) => any;
|
|
118
|
-
}, {
|
|
119
|
-
mode: "search" | "dialog";
|
|
120
|
-
show: boolean;
|
|
121
|
-
showAdvancedButton: boolean;
|
|
122
|
-
minShowColumn: number;
|
|
123
|
-
buttonList: ButtonProps[];
|
|
124
|
-
isAdvanced: boolean;
|
|
125
|
-
}>;
|
|
32
|
+
readonly DtFormButtons: import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
126
33
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleSave" | "handleCancel")[], "handleSave" | "handleCancel", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
127
34
|
buttons: PropType<ButtonProps[]>;
|
|
128
35
|
showSave: {
|
|
@@ -38,81 +38,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
38
38
|
}>;
|
|
39
39
|
getModalDom: () => Promise<any>;
|
|
40
40
|
setModalHeight: () => Promise<void>;
|
|
41
|
-
readonly DtScrollContainer: import("../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {
|
|
42
|
-
scrollbarRef: any;
|
|
43
|
-
scrollTo: (to: number, duration?: number) => void;
|
|
44
|
-
getScrollWrap: () => any;
|
|
45
|
-
scrollBottom: () => void;
|
|
46
|
-
ScrollBar: import("vue").DefineComponent<{
|
|
47
|
-
wrapClass: {
|
|
48
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
49
|
-
default: string;
|
|
50
|
-
};
|
|
51
|
-
wrapStyle: ArrayConstructor;
|
|
52
|
-
viewClass: {
|
|
53
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
viewStyle: {
|
|
57
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
|
-
noresize: BooleanConstructor;
|
|
61
|
-
tag: {
|
|
62
|
-
type: StringConstructor;
|
|
63
|
-
default: string;
|
|
64
|
-
};
|
|
65
|
-
}, {
|
|
66
|
-
sizeWidth: import("vue").Ref<string>;
|
|
67
|
-
sizeHeight: import("vue").Ref<string>;
|
|
68
|
-
moveX: import("vue").Ref<number>;
|
|
69
|
-
moveY: import("vue").Ref<number>;
|
|
70
|
-
wrap: import("vue").Ref<any>;
|
|
71
|
-
resize: import("vue").Ref<any>;
|
|
72
|
-
props: any;
|
|
73
|
-
style: import("vue").ComputedRef<{}>;
|
|
74
|
-
handleScroll: () => void;
|
|
75
|
-
update: () => void;
|
|
76
|
-
readonly Bar: import("vue").DefineComponent<{
|
|
77
|
-
vertical: BooleanConstructor;
|
|
78
|
-
size: StringConstructor;
|
|
79
|
-
move: NumberConstructor;
|
|
80
|
-
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
81
|
-
[key: string]: any;
|
|
82
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
83
|
-
vertical: BooleanConstructor;
|
|
84
|
-
size: StringConstructor;
|
|
85
|
-
move: NumberConstructor;
|
|
86
|
-
}>>, {
|
|
87
|
-
vertical: boolean;
|
|
88
|
-
}>;
|
|
89
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
90
|
-
wrapClass: {
|
|
91
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
92
|
-
default: string;
|
|
93
|
-
};
|
|
94
|
-
wrapStyle: ArrayConstructor;
|
|
95
|
-
viewClass: {
|
|
96
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
97
|
-
default: string;
|
|
98
|
-
};
|
|
99
|
-
viewStyle: {
|
|
100
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
101
|
-
default: string;
|
|
102
|
-
};
|
|
103
|
-
noresize: BooleanConstructor;
|
|
104
|
-
tag: {
|
|
105
|
-
type: StringConstructor;
|
|
106
|
-
default: string;
|
|
107
|
-
};
|
|
108
|
-
}>>, {
|
|
109
|
-
wrapClass: string | unknown[];
|
|
110
|
-
viewClass: string | unknown[];
|
|
111
|
-
viewStyle: string | unknown[];
|
|
112
|
-
noresize: boolean;
|
|
113
|
-
tag: string;
|
|
114
|
-
}>;
|
|
115
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
41
|
+
readonly DtScrollContainer: import("../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
116
42
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("height-change" | "ext-height")[], "height-change" | "ext-height", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
117
43
|
useWrapper: {
|
|
118
44
|
type: BooleanConstructor;
|
|
@@ -91,7 +91,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
91
91
|
};
|
|
92
92
|
maskStyle: import("vue").PropType<import("vue").CSSProperties>;
|
|
93
93
|
footer: {
|
|
94
|
-
type: import("vue").PropType<import("../../form
|
|
94
|
+
type: import("vue").PropType<import("../../form").ButtonProps[]>;
|
|
95
95
|
};
|
|
96
96
|
bodyStyle: import("vue").PropType<import("vue").CSSProperties>;
|
|
97
97
|
wrapperProps: ObjectConstructor;
|
|
@@ -100,7 +100,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
100
100
|
afterClose: FunctionConstructor;
|
|
101
101
|
}, {
|
|
102
102
|
props: any;
|
|
103
|
-
emits: (event: "visible-change" | "height-change" | "cancel" | "save" | "register" | "update:visible", ...args: any[]) => void;
|
|
103
|
+
emits: (event: "visible-change" | "height-change" | "cancel" | "save" | "register" | "toggle-fullscreen" | "update:visible", ...args: any[]) => void;
|
|
104
104
|
visibleRef: import("vue").Ref<boolean>;
|
|
105
105
|
propsRef: import("vue").Ref<Partial<ExtractPropTypes<{
|
|
106
106
|
t: {
|
|
@@ -192,7 +192,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
192
192
|
};
|
|
193
193
|
maskStyle: import("vue").PropType<import("vue").CSSProperties>;
|
|
194
194
|
footer: {
|
|
195
|
-
type: import("vue").PropType<import("../../form
|
|
195
|
+
type: import("vue").PropType<import("../../form").ButtonProps[]>;
|
|
196
196
|
};
|
|
197
197
|
bodyStyle: import("vue").PropType<import("vue").CSSProperties>;
|
|
198
198
|
wrapperProps: ObjectConstructor;
|
|
@@ -204,6 +204,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
204
204
|
getWrapClassName: import("vue").ComputedRef<string>;
|
|
205
205
|
toggleFullScreen: (e: Event) => void;
|
|
206
206
|
fullScreenRef: import("vue").Ref<boolean>;
|
|
207
|
+
handleFullscreen: (e: Event) => void;
|
|
207
208
|
getMergeProps: import("vue").ComputedRef<any>;
|
|
208
209
|
getBindValue: import("vue").ComputedRef<any>;
|
|
209
210
|
getWrapperHeight: import("vue").ComputedRef<any>;
|
|
@@ -308,7 +309,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
308
309
|
};
|
|
309
310
|
maskStyle: import("vue").PropType<import("vue").CSSProperties>;
|
|
310
311
|
footer: {
|
|
311
|
-
type: import("vue").PropType<import("../../form
|
|
312
|
+
type: import("vue").PropType<import("../../form").ButtonProps[]>;
|
|
312
313
|
};
|
|
313
314
|
bodyStyle: import("vue").PropType<import("vue").CSSProperties>;
|
|
314
315
|
wrapperProps: ObjectConstructor;
|
|
@@ -401,81 +402,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
401
402
|
}>;
|
|
402
403
|
getModalDom: () => Promise<any>;
|
|
403
404
|
setModalHeight: () => Promise<void>;
|
|
404
|
-
readonly DtScrollContainer: import("../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {
|
|
405
|
-
scrollbarRef: any;
|
|
406
|
-
scrollTo: (to: number, duration?: number) => void;
|
|
407
|
-
getScrollWrap: () => any;
|
|
408
|
-
scrollBottom: () => void;
|
|
409
|
-
ScrollBar: import("vue").DefineComponent<{
|
|
410
|
-
wrapClass: {
|
|
411
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
412
|
-
default: string;
|
|
413
|
-
};
|
|
414
|
-
wrapStyle: ArrayConstructor;
|
|
415
|
-
viewClass: {
|
|
416
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
417
|
-
default: string;
|
|
418
|
-
};
|
|
419
|
-
viewStyle: {
|
|
420
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
421
|
-
default: string;
|
|
422
|
-
};
|
|
423
|
-
noresize: BooleanConstructor;
|
|
424
|
-
tag: {
|
|
425
|
-
type: StringConstructor;
|
|
426
|
-
default: string;
|
|
427
|
-
};
|
|
428
|
-
}, {
|
|
429
|
-
sizeWidth: import("vue").Ref<string>;
|
|
430
|
-
sizeHeight: import("vue").Ref<string>;
|
|
431
|
-
moveX: import("vue").Ref<number>;
|
|
432
|
-
moveY: import("vue").Ref<number>;
|
|
433
|
-
wrap: import("vue").Ref<any>;
|
|
434
|
-
resize: import("vue").Ref<any>;
|
|
435
|
-
props: any;
|
|
436
|
-
style: import("vue").ComputedRef<{}>;
|
|
437
|
-
handleScroll: () => void;
|
|
438
|
-
update: () => void;
|
|
439
|
-
readonly Bar: import("vue").DefineComponent<{
|
|
440
|
-
vertical: BooleanConstructor;
|
|
441
|
-
size: StringConstructor;
|
|
442
|
-
move: NumberConstructor;
|
|
443
|
-
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
444
|
-
[key: string]: any;
|
|
445
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
446
|
-
vertical: BooleanConstructor;
|
|
447
|
-
size: StringConstructor;
|
|
448
|
-
move: NumberConstructor;
|
|
449
|
-
}>>, {
|
|
450
|
-
vertical: boolean;
|
|
451
|
-
}>;
|
|
452
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
453
|
-
wrapClass: {
|
|
454
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
455
|
-
default: string;
|
|
456
|
-
};
|
|
457
|
-
wrapStyle: ArrayConstructor;
|
|
458
|
-
viewClass: {
|
|
459
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
460
|
-
default: string;
|
|
461
|
-
};
|
|
462
|
-
viewStyle: {
|
|
463
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
464
|
-
default: string;
|
|
465
|
-
};
|
|
466
|
-
noresize: BooleanConstructor;
|
|
467
|
-
tag: {
|
|
468
|
-
type: StringConstructor;
|
|
469
|
-
default: string;
|
|
470
|
-
};
|
|
471
|
-
}>>, {
|
|
472
|
-
wrapClass: string | unknown[];
|
|
473
|
-
viewClass: string | unknown[];
|
|
474
|
-
viewStyle: string | unknown[];
|
|
475
|
-
noresize: boolean;
|
|
476
|
-
tag: string;
|
|
477
|
-
}>;
|
|
478
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>>;
|
|
405
|
+
readonly DtScrollContainer: import("../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>>;
|
|
479
406
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("height-change" | "ext-height")[], "height-change" | "ext-height", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
480
407
|
useWrapper: {
|
|
481
408
|
type: BooleanConstructor;
|
|
@@ -514,7 +441,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
514
441
|
modalFooterHeight: number;
|
|
515
442
|
}>;
|
|
516
443
|
ModalFooter: import("vue").DefineComponent<{
|
|
517
|
-
buttons: import("vue").PropType<import("../../form
|
|
444
|
+
buttons: import("vue").PropType<import("../../form").ButtonProps[]>;
|
|
518
445
|
showSave: {
|
|
519
446
|
type: BooleanConstructor;
|
|
520
447
|
default: boolean;
|
|
@@ -540,104 +467,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
540
467
|
};
|
|
541
468
|
emits: (event: "handleSave" | "handleCancel", ...args: any[]) => void;
|
|
542
469
|
props: any;
|
|
543
|
-
buttonList: import("vue").ComputedRef<import("../../form
|
|
544
|
-
handleMethod: (item: import("../../form
|
|
545
|
-
DtFormButtons: import("vue").DefineComponent<{
|
|
546
|
-
mode: {
|
|
547
|
-
type: import("vue").PropType<"search" | "dialog">;
|
|
548
|
-
default: string;
|
|
549
|
-
};
|
|
550
|
-
show: {
|
|
551
|
-
type: BooleanConstructor;
|
|
552
|
-
default: boolean;
|
|
553
|
-
};
|
|
554
|
-
showAdvancedButton: {
|
|
555
|
-
type: BooleanConstructor;
|
|
556
|
-
default: boolean;
|
|
557
|
-
};
|
|
558
|
-
minShowColumn: {
|
|
559
|
-
type: NumberConstructor;
|
|
560
|
-
default: number;
|
|
561
|
-
};
|
|
562
|
-
buttonList: {
|
|
563
|
-
type: import("vue").PropType<import("../../form/src/types/form.type").ButtonProps[]>;
|
|
564
|
-
default: any[];
|
|
565
|
-
};
|
|
566
|
-
isAdvanced: {
|
|
567
|
-
type: BooleanConstructor;
|
|
568
|
-
default: boolean;
|
|
569
|
-
};
|
|
570
|
-
colspan: {
|
|
571
|
-
type: ObjectConstructor;
|
|
572
|
-
};
|
|
573
|
-
}, {
|
|
574
|
-
props: any;
|
|
575
|
-
emits: (event: "handle-method", ...args: any[]) => void;
|
|
576
|
-
t: {
|
|
577
|
-
(key: string): string;
|
|
578
|
-
(key: string, locale: string): string;
|
|
579
|
-
(key: string, locale: string, list: unknown[]): string;
|
|
580
|
-
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
581
|
-
(key: string, list: unknown[]): string;
|
|
582
|
-
(key: string, named: Record<string, unknown>): string;
|
|
583
|
-
};
|
|
584
|
-
advancedRef: import("vue").Ref<{
|
|
585
|
-
valueOf: () => boolean;
|
|
586
|
-
}>;
|
|
587
|
-
key: number;
|
|
588
|
-
showAdvanceRef: import("vue").ComputedRef<boolean>;
|
|
589
|
-
colOpt: import("vue").ComputedRef<{
|
|
590
|
-
style: import("@dt-frames/core").Recordable<any>;
|
|
591
|
-
span?: undefined;
|
|
592
|
-
} | {
|
|
593
|
-
style: import("@dt-frames/core").Recordable<any>;
|
|
594
|
-
span: number;
|
|
595
|
-
}>;
|
|
596
|
-
getAdvanceClass: import("vue").ComputedRef<(string | {
|
|
597
|
-
'basic-arrow--active': boolean;
|
|
598
|
-
})[]>;
|
|
599
|
-
toggleAdvanced: () => void;
|
|
600
|
-
handleBtnClick: (button: import("../../form/src/types/form.type").ButtonProps) => void;
|
|
601
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "handle-method"[], "handle-method", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
602
|
-
mode: {
|
|
603
|
-
type: import("vue").PropType<"search" | "dialog">;
|
|
604
|
-
default: string;
|
|
605
|
-
};
|
|
606
|
-
show: {
|
|
607
|
-
type: BooleanConstructor;
|
|
608
|
-
default: boolean;
|
|
609
|
-
};
|
|
610
|
-
showAdvancedButton: {
|
|
611
|
-
type: BooleanConstructor;
|
|
612
|
-
default: boolean;
|
|
613
|
-
};
|
|
614
|
-
minShowColumn: {
|
|
615
|
-
type: NumberConstructor;
|
|
616
|
-
default: number;
|
|
617
|
-
};
|
|
618
|
-
buttonList: {
|
|
619
|
-
type: import("vue").PropType<import("../../form/src/types/form.type").ButtonProps[]>;
|
|
620
|
-
default: any[];
|
|
621
|
-
};
|
|
622
|
-
isAdvanced: {
|
|
623
|
-
type: BooleanConstructor;
|
|
624
|
-
default: boolean;
|
|
625
|
-
};
|
|
626
|
-
colspan: {
|
|
627
|
-
type: ObjectConstructor;
|
|
628
|
-
};
|
|
629
|
-
}>> & {
|
|
630
|
-
"onHandle-method"?: (...args: any[]) => any;
|
|
631
|
-
}, {
|
|
632
|
-
mode: "search" | "dialog";
|
|
633
|
-
show: boolean;
|
|
634
|
-
showAdvancedButton: boolean;
|
|
635
|
-
minShowColumn: number;
|
|
636
|
-
buttonList: import("../../form/src/types/form.type").ButtonProps[];
|
|
637
|
-
isAdvanced: boolean;
|
|
638
|
-
}>;
|
|
470
|
+
buttonList: import("vue").ComputedRef<import("../../form").ButtonProps[]>;
|
|
471
|
+
handleMethod: (item: import("../../form").ButtonProps) => void;
|
|
472
|
+
readonly DtFormButtons: import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
639
473
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleSave" | "handleCancel")[], "handleSave" | "handleCancel", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
640
|
-
buttons: import("vue").PropType<import("../../form
|
|
474
|
+
buttons: import("vue").PropType<import("../../form").ButtonProps[]>;
|
|
641
475
|
showSave: {
|
|
642
476
|
type: BooleanConstructor;
|
|
643
477
|
default: boolean;
|
|
@@ -659,7 +493,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
659
493
|
showSave: boolean;
|
|
660
494
|
showCancel: boolean;
|
|
661
495
|
}>;
|
|
662
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("visible-change" | "height-change" | "cancel" | "save" | "register" | "update:visible")[], "visible-change" | "height-change" | "cancel" | "save" | "register" | "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
496
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("visible-change" | "height-change" | "cancel" | "save" | "register" | "toggle-fullscreen" | "update:visible")[], "visible-change" | "height-change" | "cancel" | "save" | "register" | "toggle-fullscreen" | "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
663
497
|
t: {
|
|
664
498
|
type: StringConstructor;
|
|
665
499
|
};
|
|
@@ -749,7 +583,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
749
583
|
};
|
|
750
584
|
maskStyle: import("vue").PropType<import("vue").CSSProperties>;
|
|
751
585
|
footer: {
|
|
752
|
-
type: import("vue").PropType<import("../../form
|
|
586
|
+
type: import("vue").PropType<import("../../form").ButtonProps[]>;
|
|
753
587
|
};
|
|
754
588
|
bodyStyle: import("vue").PropType<import("vue").CSSProperties>;
|
|
755
589
|
wrapperProps: ObjectConstructor;
|
|
@@ -762,6 +596,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
762
596
|
onCancel?: (...args: any[]) => any;
|
|
763
597
|
onSave?: (...args: any[]) => any;
|
|
764
598
|
onRegister?: (...args: any[]) => any;
|
|
599
|
+
"onToggle-fullscreen"?: (...args: any[]) => any;
|
|
765
600
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
766
601
|
}, {
|
|
767
602
|
visible: boolean;
|