cosey 0.10.17 → 0.10.19
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/components/copy/copy.d.ts +1 -1
- package/components/copy/index.d.ts +3 -3
- package/components/editor/contents/widget-popover.d.ts +203 -265
- package/components/field/components/remote-select/remote-select.api.d.ts +3 -3
- package/components/field/components/remote-select/remote-select.d.ts +5 -5
- package/components/field/field.api.d.ts +5 -5
- package/components/form/form-item.api.d.ts +9 -44
- package/components/form/form-item.vue.js +2 -2
- package/components/form/form.api.d.ts +9 -58
- package/components/form/form.d.ts +24 -122
- package/components/form/index.d.ts +54 -201
- package/components/form-dialog/form-dialog.api.d.ts +17 -108
- package/components/form-dialog/form-dialog.d.ts +36 -218
- package/components/form-drawer/form-drawer.api.d.ts +24 -133
- package/components/form-drawer/form-drawer.d.ts +53 -271
- package/components/form-drawer/index.d.ts +102 -423
- package/components/form-group/form-group.api.d.ts +6 -27
- package/components/form-group/form-group.d.ts +13 -55
- package/components/form-group/index.d.ts +24 -87
- package/components/form-list/form-list.api.d.ts +9 -44
- package/components/form-list/form-list.vue.js +2 -2
- package/components/form-list/index.d.ts +9 -9
- package/components/form-query/form-query.api.d.ts +9 -58
- package/components/form-query/form-query.d.ts +24 -122
- package/components/form-query/index.d.ts +45 -192
- package/components/image-card/image-card.api.d.ts +12 -68
- package/components/image-card/image-card.d.ts +27 -139
- package/components/image-card/index.d.ts +45 -213
- package/components/remote-select/index.d.ts +144 -614
- package/components/remote-select/remote-select.api.d.ts +33 -158
- package/components/remote-select/remote-select.d.ts +69 -318
- package/components/remote-select/remote-select.js +1 -1
- package/components/remote-select/remote-select.style.js +3 -1
- package/components/stack-dialog/index.d.ts +81 -396
- package/components/stack-dialog/stack-dialog.api.d.ts +17 -122
- package/components/stack-dialog/stack-dialog.d.ts +44 -254
- package/components/table/index.d.ts +72 -170
- package/components/table/table-column/table-column.api.d.ts +13 -13
- package/components/table/table-column/table-column.d.ts +7 -7
- package/components/table/table-export/table-export.api.d.ts +17 -108
- package/components/table/table-export/table-export.d.ts +36 -218
- package/components/table/table-footer/index.d.ts +3 -3
- package/components/table/table-query/table-query.api.d.ts +9 -58
- package/components/table/table-query/table-query.d.ts +24 -122
- package/components/table/table.d.ts +18 -18
- package/components/table/table.vue.d.ts +36 -36
- package/components/week-range-picker/index.d.ts +331 -466
- package/components/week-range-picker/week-range-picker.api.d.ts +106 -151
- package/components/week-range-picker/week-range-picker.d.ts +212 -302
- package/layout/layout-menu/layout-menu.vue.js +4 -3
- package/layout/layout-menu/style/index.js +3 -0
- package/locale/lang/ar.d.ts +6 -0
- package/locale/lang/en.d.ts +6 -0
- package/locale/lang/zh-cn.d.ts +9 -3
- package/package.json +10 -3
|
@@ -51,56 +51,21 @@ export declare const tableExportProps: {
|
|
|
51
51
|
type: BooleanConstructor;
|
|
52
52
|
};
|
|
53
53
|
appendToBody: BooleanConstructor;
|
|
54
|
-
appendTo:
|
|
55
|
-
readonly type: PropType<string | HTMLElement>;
|
|
56
|
-
readonly required: false;
|
|
57
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
58
|
-
__epPropKey: true;
|
|
59
|
-
} & {
|
|
60
|
-
readonly default: "body";
|
|
61
|
-
};
|
|
54
|
+
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))[], 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))[], unknown, unknown>))[], unknown, unknown, "body", boolean>;
|
|
62
55
|
beforeClose: {
|
|
63
|
-
readonly type: PropType<import("element-plus").DialogBeforeCloseFn>;
|
|
56
|
+
readonly type: import("vue").PropType<import("element-plus").DialogBeforeCloseFn>;
|
|
64
57
|
readonly required: false;
|
|
65
58
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
66
59
|
__epPropKey: true;
|
|
67
60
|
};
|
|
68
61
|
destroyOnClose: BooleanConstructor;
|
|
69
|
-
lockScroll:
|
|
70
|
-
|
|
71
|
-
readonly required: false;
|
|
72
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
73
|
-
__epPropKey: true;
|
|
74
|
-
} & {
|
|
75
|
-
readonly default: true;
|
|
76
|
-
};
|
|
77
|
-
modal: {
|
|
78
|
-
readonly type: PropType<boolean>;
|
|
79
|
-
readonly required: false;
|
|
80
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
81
|
-
__epPropKey: true;
|
|
82
|
-
} & {
|
|
83
|
-
readonly default: true;
|
|
84
|
-
};
|
|
62
|
+
lockScroll: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
63
|
+
modal: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
85
64
|
modalPenetrable: BooleanConstructor;
|
|
86
|
-
openDelay:
|
|
87
|
-
|
|
88
|
-
readonly required: false;
|
|
89
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
90
|
-
__epPropKey: true;
|
|
91
|
-
} & {
|
|
92
|
-
readonly default: 0;
|
|
93
|
-
};
|
|
94
|
-
closeDelay: {
|
|
95
|
-
readonly type: PropType<number>;
|
|
96
|
-
readonly required: false;
|
|
97
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
98
|
-
__epPropKey: true;
|
|
99
|
-
} & {
|
|
100
|
-
readonly default: 0;
|
|
101
|
-
};
|
|
65
|
+
openDelay: import("element-plus/es/utils/index.mjs").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
66
|
+
closeDelay: import("element-plus/es/utils/index.mjs").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
102
67
|
top: {
|
|
103
|
-
readonly type: PropType<string>;
|
|
68
|
+
readonly type: import("vue").PropType<string>;
|
|
104
69
|
readonly required: false;
|
|
105
70
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
106
71
|
__epPropKey: true;
|
|
@@ -111,84 +76,28 @@ export declare const tableExportProps: {
|
|
|
111
76
|
bodyClass: StringConstructor;
|
|
112
77
|
footerClass: StringConstructor;
|
|
113
78
|
zIndex: {
|
|
114
|
-
readonly type: PropType<number>;
|
|
79
|
+
readonly type: import("vue").PropType<number>;
|
|
115
80
|
readonly required: false;
|
|
116
81
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
117
82
|
__epPropKey: true;
|
|
118
83
|
};
|
|
119
84
|
trapFocus: BooleanConstructor;
|
|
120
|
-
headerAriaLevel:
|
|
121
|
-
|
|
122
|
-
readonly required: false;
|
|
123
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
124
|
-
__epPropKey: true;
|
|
125
|
-
} & {
|
|
126
|
-
readonly default: "2";
|
|
127
|
-
};
|
|
128
|
-
transition: {
|
|
129
|
-
readonly type: PropType<import("element-plus").DialogTransition>;
|
|
130
|
-
readonly required: false;
|
|
131
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
132
|
-
__epPropKey: true;
|
|
133
|
-
} & {
|
|
134
|
-
readonly default: undefined;
|
|
135
|
-
};
|
|
85
|
+
headerAriaLevel: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
86
|
+
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))[], unknown, unknown, undefined, boolean>;
|
|
136
87
|
center: BooleanConstructor;
|
|
137
|
-
alignCenter:
|
|
138
|
-
readonly type: PropType<boolean>;
|
|
139
|
-
readonly required: false;
|
|
140
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
141
|
-
__epPropKey: true;
|
|
142
|
-
} & {
|
|
143
|
-
readonly default: undefined;
|
|
144
|
-
};
|
|
88
|
+
alignCenter: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
145
89
|
closeIcon: {
|
|
146
|
-
readonly type: PropType<string | import("vue").Component
|
|
147
|
-
readonly required: false;
|
|
148
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
149
|
-
__epPropKey: true;
|
|
150
|
-
};
|
|
151
|
-
draggable: {
|
|
152
|
-
readonly type: PropType<boolean>;
|
|
153
|
-
readonly required: false;
|
|
154
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
155
|
-
__epPropKey: true;
|
|
156
|
-
} & {
|
|
157
|
-
readonly default: undefined;
|
|
158
|
-
};
|
|
159
|
-
overflow: {
|
|
160
|
-
readonly type: PropType<boolean>;
|
|
90
|
+
readonly type: import("vue").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))[], unknown, unknown>>;
|
|
161
91
|
readonly required: false;
|
|
162
92
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
163
93
|
__epPropKey: true;
|
|
164
|
-
} & {
|
|
165
|
-
readonly default: undefined;
|
|
166
94
|
};
|
|
95
|
+
draggable: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
96
|
+
overflow: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
167
97
|
fullscreen: BooleanConstructor;
|
|
168
|
-
showClose:
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
172
|
-
__epPropKey: true;
|
|
173
|
-
} & {
|
|
174
|
-
readonly default: true;
|
|
175
|
-
};
|
|
176
|
-
title: {
|
|
177
|
-
readonly type: PropType<string>;
|
|
178
|
-
readonly required: false;
|
|
179
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
180
|
-
__epPropKey: true;
|
|
181
|
-
} & {
|
|
182
|
-
readonly default: "";
|
|
183
|
-
};
|
|
184
|
-
ariaLevel: {
|
|
185
|
-
readonly type: PropType<string>;
|
|
186
|
-
readonly required: false;
|
|
187
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
188
|
-
__epPropKey: true;
|
|
189
|
-
} & {
|
|
190
|
-
readonly default: "2";
|
|
191
|
-
};
|
|
98
|
+
showClose: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
99
|
+
title: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
100
|
+
ariaLevel: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
192
101
|
};
|
|
193
102
|
export declare const omittedTableExportProps: keyof typeof tableExportProps;
|
|
194
103
|
export type TableExportProps = ExtractPropTypes<typeof tableExportProps>;
|
|
@@ -50,14 +50,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
50
50
|
type: BooleanConstructor;
|
|
51
51
|
};
|
|
52
52
|
appendToBody: BooleanConstructor;
|
|
53
|
-
appendTo:
|
|
54
|
-
readonly type: import("vue").PropType<string | HTMLElement>;
|
|
55
|
-
readonly required: false;
|
|
56
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
57
|
-
__epPropKey: true;
|
|
58
|
-
} & {
|
|
59
|
-
readonly default: "body";
|
|
60
|
-
};
|
|
53
|
+
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))[], 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))[], unknown, unknown>))[], unknown, unknown, "body", boolean>;
|
|
61
54
|
beforeClose: {
|
|
62
55
|
readonly type: import("vue").PropType<import("element-plus").DialogBeforeCloseFn>;
|
|
63
56
|
readonly required: false;
|
|
@@ -65,39 +58,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
65
58
|
__epPropKey: true;
|
|
66
59
|
};
|
|
67
60
|
destroyOnClose: BooleanConstructor;
|
|
68
|
-
lockScroll:
|
|
69
|
-
|
|
70
|
-
readonly required: false;
|
|
71
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
72
|
-
__epPropKey: true;
|
|
73
|
-
} & {
|
|
74
|
-
readonly default: true;
|
|
75
|
-
};
|
|
76
|
-
modal: {
|
|
77
|
-
readonly type: import("vue").PropType<boolean>;
|
|
78
|
-
readonly required: false;
|
|
79
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
80
|
-
__epPropKey: true;
|
|
81
|
-
} & {
|
|
82
|
-
readonly default: true;
|
|
83
|
-
};
|
|
61
|
+
lockScroll: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
62
|
+
modal: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
84
63
|
modalPenetrable: BooleanConstructor;
|
|
85
|
-
openDelay:
|
|
86
|
-
|
|
87
|
-
readonly required: false;
|
|
88
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
89
|
-
__epPropKey: true;
|
|
90
|
-
} & {
|
|
91
|
-
readonly default: 0;
|
|
92
|
-
};
|
|
93
|
-
closeDelay: {
|
|
94
|
-
readonly type: import("vue").PropType<number>;
|
|
95
|
-
readonly required: false;
|
|
96
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
97
|
-
__epPropKey: true;
|
|
98
|
-
} & {
|
|
99
|
-
readonly default: 0;
|
|
100
|
-
};
|
|
64
|
+
openDelay: import("element-plus/es/utils/index.mjs").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
65
|
+
closeDelay: import("element-plus/es/utils/index.mjs").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
101
66
|
top: {
|
|
102
67
|
readonly type: import("vue").PropType<string>;
|
|
103
68
|
readonly required: false;
|
|
@@ -116,78 +81,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
116
81
|
__epPropKey: true;
|
|
117
82
|
};
|
|
118
83
|
trapFocus: BooleanConstructor;
|
|
119
|
-
headerAriaLevel:
|
|
120
|
-
|
|
121
|
-
readonly required: false;
|
|
122
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
123
|
-
__epPropKey: true;
|
|
124
|
-
} & {
|
|
125
|
-
readonly default: "2";
|
|
126
|
-
};
|
|
127
|
-
transition: {
|
|
128
|
-
readonly type: import("vue").PropType<import("element-plus").DialogTransition>;
|
|
129
|
-
readonly required: false;
|
|
130
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
131
|
-
__epPropKey: true;
|
|
132
|
-
} & {
|
|
133
|
-
readonly default: undefined;
|
|
134
|
-
};
|
|
84
|
+
headerAriaLevel: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
85
|
+
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))[], unknown, unknown, undefined, boolean>;
|
|
135
86
|
center: BooleanConstructor;
|
|
136
|
-
alignCenter:
|
|
137
|
-
readonly type: import("vue").PropType<boolean>;
|
|
138
|
-
readonly required: false;
|
|
139
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
140
|
-
__epPropKey: true;
|
|
141
|
-
} & {
|
|
142
|
-
readonly default: undefined;
|
|
143
|
-
};
|
|
87
|
+
alignCenter: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
144
88
|
closeIcon: {
|
|
145
|
-
readonly type: import("vue").PropType<string | import("vue").Component
|
|
146
|
-
readonly required: false;
|
|
147
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
148
|
-
__epPropKey: true;
|
|
149
|
-
};
|
|
150
|
-
draggable: {
|
|
151
|
-
readonly type: import("vue").PropType<boolean>;
|
|
152
|
-
readonly required: false;
|
|
153
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
154
|
-
__epPropKey: true;
|
|
155
|
-
} & {
|
|
156
|
-
readonly default: undefined;
|
|
157
|
-
};
|
|
158
|
-
overflow: {
|
|
159
|
-
readonly type: import("vue").PropType<boolean>;
|
|
89
|
+
readonly type: import("vue").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))[], unknown, unknown>>;
|
|
160
90
|
readonly required: false;
|
|
161
91
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
162
92
|
__epPropKey: true;
|
|
163
|
-
} & {
|
|
164
|
-
readonly default: undefined;
|
|
165
93
|
};
|
|
94
|
+
draggable: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
95
|
+
overflow: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
166
96
|
fullscreen: BooleanConstructor;
|
|
167
|
-
showClose:
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
171
|
-
__epPropKey: true;
|
|
172
|
-
} & {
|
|
173
|
-
readonly default: true;
|
|
174
|
-
};
|
|
175
|
-
title: {
|
|
176
|
-
readonly type: import("vue").PropType<string>;
|
|
177
|
-
readonly required: false;
|
|
178
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
179
|
-
__epPropKey: true;
|
|
180
|
-
} & {
|
|
181
|
-
readonly default: "";
|
|
182
|
-
};
|
|
183
|
-
ariaLevel: {
|
|
184
|
-
readonly type: import("vue").PropType<string>;
|
|
185
|
-
readonly required: false;
|
|
186
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
187
|
-
__epPropKey: true;
|
|
188
|
-
} & {
|
|
189
|
-
readonly default: "2";
|
|
190
|
-
};
|
|
97
|
+
showClose: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
98
|
+
title: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
99
|
+
ariaLevel: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
191
100
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
192
101
|
open: () => boolean;
|
|
193
102
|
opened: () => boolean;
|
|
@@ -247,14 +156,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
247
156
|
type: BooleanConstructor;
|
|
248
157
|
};
|
|
249
158
|
appendToBody: BooleanConstructor;
|
|
250
|
-
appendTo:
|
|
251
|
-
readonly type: import("vue").PropType<string | HTMLElement>;
|
|
252
|
-
readonly required: false;
|
|
253
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
254
|
-
__epPropKey: true;
|
|
255
|
-
} & {
|
|
256
|
-
readonly default: "body";
|
|
257
|
-
};
|
|
159
|
+
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))[], 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))[], unknown, unknown>))[], unknown, unknown, "body", boolean>;
|
|
258
160
|
beforeClose: {
|
|
259
161
|
readonly type: import("vue").PropType<import("element-plus").DialogBeforeCloseFn>;
|
|
260
162
|
readonly required: false;
|
|
@@ -262,39 +164,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
262
164
|
__epPropKey: true;
|
|
263
165
|
};
|
|
264
166
|
destroyOnClose: BooleanConstructor;
|
|
265
|
-
lockScroll:
|
|
266
|
-
|
|
267
|
-
readonly required: false;
|
|
268
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
269
|
-
__epPropKey: true;
|
|
270
|
-
} & {
|
|
271
|
-
readonly default: true;
|
|
272
|
-
};
|
|
273
|
-
modal: {
|
|
274
|
-
readonly type: import("vue").PropType<boolean>;
|
|
275
|
-
readonly required: false;
|
|
276
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
277
|
-
__epPropKey: true;
|
|
278
|
-
} & {
|
|
279
|
-
readonly default: true;
|
|
280
|
-
};
|
|
167
|
+
lockScroll: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
168
|
+
modal: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
281
169
|
modalPenetrable: BooleanConstructor;
|
|
282
|
-
openDelay:
|
|
283
|
-
|
|
284
|
-
readonly required: false;
|
|
285
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
286
|
-
__epPropKey: true;
|
|
287
|
-
} & {
|
|
288
|
-
readonly default: 0;
|
|
289
|
-
};
|
|
290
|
-
closeDelay: {
|
|
291
|
-
readonly type: import("vue").PropType<number>;
|
|
292
|
-
readonly required: false;
|
|
293
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
294
|
-
__epPropKey: true;
|
|
295
|
-
} & {
|
|
296
|
-
readonly default: 0;
|
|
297
|
-
};
|
|
170
|
+
openDelay: import("element-plus/es/utils/index.mjs").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
171
|
+
closeDelay: import("element-plus/es/utils/index.mjs").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
298
172
|
top: {
|
|
299
173
|
readonly type: import("vue").PropType<string>;
|
|
300
174
|
readonly required: false;
|
|
@@ -313,78 +187,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
313
187
|
__epPropKey: true;
|
|
314
188
|
};
|
|
315
189
|
trapFocus: BooleanConstructor;
|
|
316
|
-
headerAriaLevel:
|
|
317
|
-
|
|
318
|
-
readonly required: false;
|
|
319
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
320
|
-
__epPropKey: true;
|
|
321
|
-
} & {
|
|
322
|
-
readonly default: "2";
|
|
323
|
-
};
|
|
324
|
-
transition: {
|
|
325
|
-
readonly type: import("vue").PropType<import("element-plus").DialogTransition>;
|
|
326
|
-
readonly required: false;
|
|
327
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
328
|
-
__epPropKey: true;
|
|
329
|
-
} & {
|
|
330
|
-
readonly default: undefined;
|
|
331
|
-
};
|
|
190
|
+
headerAriaLevel: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
191
|
+
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))[], unknown, unknown, undefined, boolean>;
|
|
332
192
|
center: BooleanConstructor;
|
|
333
|
-
alignCenter:
|
|
334
|
-
readonly type: import("vue").PropType<boolean>;
|
|
335
|
-
readonly required: false;
|
|
336
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
337
|
-
__epPropKey: true;
|
|
338
|
-
} & {
|
|
339
|
-
readonly default: undefined;
|
|
340
|
-
};
|
|
193
|
+
alignCenter: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
341
194
|
closeIcon: {
|
|
342
|
-
readonly type: import("vue").PropType<string | import("vue").Component
|
|
343
|
-
readonly required: false;
|
|
344
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
345
|
-
__epPropKey: true;
|
|
346
|
-
};
|
|
347
|
-
draggable: {
|
|
348
|
-
readonly type: import("vue").PropType<boolean>;
|
|
349
|
-
readonly required: false;
|
|
350
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
351
|
-
__epPropKey: true;
|
|
352
|
-
} & {
|
|
353
|
-
readonly default: undefined;
|
|
354
|
-
};
|
|
355
|
-
overflow: {
|
|
356
|
-
readonly type: import("vue").PropType<boolean>;
|
|
195
|
+
readonly type: import("vue").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))[], unknown, unknown>>;
|
|
357
196
|
readonly required: false;
|
|
358
197
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
359
198
|
__epPropKey: true;
|
|
360
|
-
} & {
|
|
361
|
-
readonly default: undefined;
|
|
362
199
|
};
|
|
200
|
+
draggable: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
201
|
+
overflow: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
363
202
|
fullscreen: BooleanConstructor;
|
|
364
|
-
showClose:
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
368
|
-
__epPropKey: true;
|
|
369
|
-
} & {
|
|
370
|
-
readonly default: true;
|
|
371
|
-
};
|
|
372
|
-
title: {
|
|
373
|
-
readonly type: import("vue").PropType<string>;
|
|
374
|
-
readonly required: false;
|
|
375
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
376
|
-
__epPropKey: true;
|
|
377
|
-
} & {
|
|
378
|
-
readonly default: "";
|
|
379
|
-
};
|
|
380
|
-
ariaLevel: {
|
|
381
|
-
readonly type: import("vue").PropType<string>;
|
|
382
|
-
readonly required: false;
|
|
383
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
384
|
-
__epPropKey: true;
|
|
385
|
-
} & {
|
|
386
|
-
readonly default: "2";
|
|
387
|
-
};
|
|
203
|
+
showClose: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
204
|
+
title: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
205
|
+
ariaLevel: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
388
206
|
}>> & Readonly<{
|
|
389
207
|
onOpen?: (() => any) | undefined;
|
|
390
208
|
onClose?: (() => any) | undefined;
|
|
@@ -396,27 +214,27 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
396
214
|
}>, {
|
|
397
215
|
width: import("../..").FormDialogWidth;
|
|
398
216
|
columns: TableColumnProps[];
|
|
399
|
-
overflow:
|
|
400
|
-
transition: import("element-plus").DialogTransition
|
|
217
|
+
overflow: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
218
|
+
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))[], unknown, unknown>;
|
|
401
219
|
center: boolean;
|
|
402
220
|
data: any[];
|
|
403
221
|
title: string;
|
|
404
222
|
closeOnPressEscape: boolean;
|
|
405
|
-
draggable:
|
|
223
|
+
draggable: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
406
224
|
appendToBody: boolean;
|
|
407
|
-
appendTo: string | HTMLElement
|
|
225
|
+
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))[], 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))[], unknown, unknown>))[], unknown, unknown>;
|
|
408
226
|
modelValue: boolean;
|
|
409
|
-
showClose:
|
|
227
|
+
showClose: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
410
228
|
destroyOnClose: boolean;
|
|
411
229
|
closeOnClickModal: boolean;
|
|
412
|
-
lockScroll:
|
|
413
|
-
modal:
|
|
230
|
+
lockScroll: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
231
|
+
modal: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
414
232
|
modalPenetrable: boolean;
|
|
415
233
|
openDelay: number;
|
|
416
234
|
closeDelay: number;
|
|
417
235
|
trapFocus: boolean;
|
|
418
236
|
headerAriaLevel: string;
|
|
419
|
-
alignCenter:
|
|
237
|
+
alignCenter: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
420
238
|
fullscreen: boolean;
|
|
421
239
|
ariaLevel: string;
|
|
422
240
|
confirmText: string;
|
|
@@ -62,9 +62,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
62
62
|
};
|
|
63
63
|
onScrollableChange: (layout: import("element-plus/es/components/table/src/table-layout.mjs").default<DefaultRow>) => void;
|
|
64
64
|
onColumnsChange: (layout: import("element-plus/es/components/table/src/table-layout.mjs").default<DefaultRow>) => void;
|
|
65
|
-
getCellClasses: (columns: import("element-plus
|
|
66
|
-
getCellStyles: (column: import("element-plus
|
|
67
|
-
columns: import("vue").Ref<import("element-plus
|
|
65
|
+
getCellClasses: (columns: import("element-plus").TableColumnCtx<DefaultRow>[], cellIndex: number) => string[];
|
|
66
|
+
getCellStyles: (column: import("element-plus").TableColumnCtx<DefaultRow>, cellIndex: number) => any;
|
|
67
|
+
columns: import("vue").Ref<import("element-plus").TableColumnCtx<DefaultRow>[], import("element-plus").TableColumnCtx<DefaultRow>[]>;
|
|
68
68
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
69
69
|
fixed: {
|
|
70
70
|
type: StringConstructor;
|
|
@@ -77,74 +77,25 @@ export declare const tableQueryProps: {
|
|
|
77
77
|
};
|
|
78
78
|
model: ObjectConstructor;
|
|
79
79
|
rules: {
|
|
80
|
-
readonly type: PropType<Partial<Record<string, import("element-plus").
|
|
80
|
+
readonly type: import("vue").PropType<Partial<Record<string, import("element-plus/es/utils/typescript.mjs").Arrayable<import("element-plus").FormItemRule>>>>;
|
|
81
81
|
readonly required: false;
|
|
82
82
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
83
83
|
__epPropKey: true;
|
|
84
84
|
};
|
|
85
|
-
labelPosition:
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
__epPropKey: true;
|
|
90
|
-
} & {
|
|
91
|
-
readonly default: "right";
|
|
92
|
-
};
|
|
93
|
-
requireAsteriskPosition: {
|
|
94
|
-
readonly type: PropType<"left" | "right">;
|
|
95
|
-
readonly required: false;
|
|
96
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
97
|
-
__epPropKey: true;
|
|
98
|
-
} & {
|
|
99
|
-
readonly default: "left";
|
|
100
|
-
};
|
|
101
|
-
labelWidth: {
|
|
102
|
-
readonly type: PropType<string | number>;
|
|
103
|
-
readonly required: false;
|
|
104
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
105
|
-
__epPropKey: true;
|
|
106
|
-
} & {
|
|
107
|
-
readonly default: "";
|
|
108
|
-
};
|
|
109
|
-
labelSuffix: {
|
|
110
|
-
readonly type: PropType<string>;
|
|
111
|
-
readonly required: false;
|
|
112
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
113
|
-
__epPropKey: true;
|
|
114
|
-
} & {
|
|
115
|
-
readonly default: "";
|
|
116
|
-
};
|
|
85
|
+
labelPosition: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "left" | "right" | "top", unknown, "right", boolean>;
|
|
86
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "left" | "right", unknown, "left", boolean>;
|
|
87
|
+
labelWidth: import("element-plus/es/utils/index.mjs").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
88
|
+
labelSuffix: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
117
89
|
inline: BooleanConstructor;
|
|
118
90
|
inlineMessage: BooleanConstructor;
|
|
119
91
|
statusIcon: BooleanConstructor;
|
|
120
|
-
showMessage:
|
|
121
|
-
|
|
122
|
-
readonly required: false;
|
|
123
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
124
|
-
__epPropKey: true;
|
|
125
|
-
} & {
|
|
126
|
-
readonly default: true;
|
|
127
|
-
};
|
|
128
|
-
validateOnRuleChange: {
|
|
129
|
-
readonly type: PropType<boolean>;
|
|
130
|
-
readonly required: false;
|
|
131
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
132
|
-
__epPropKey: true;
|
|
133
|
-
} & {
|
|
134
|
-
readonly default: true;
|
|
135
|
-
};
|
|
92
|
+
showMessage: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
93
|
+
validateOnRuleChange: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
136
94
|
hideRequiredAsterisk: BooleanConstructor;
|
|
137
95
|
scrollToError: BooleanConstructor;
|
|
138
|
-
scrollIntoViewOptions:
|
|
139
|
-
readonly type: PropType<boolean | ScrollIntoViewOptions>;
|
|
140
|
-
readonly required: false;
|
|
141
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
142
|
-
__epPropKey: true;
|
|
143
|
-
} & {
|
|
144
|
-
readonly default: true;
|
|
145
|
-
};
|
|
96
|
+
scrollIntoViewOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown, true, boolean>;
|
|
146
97
|
size: {
|
|
147
|
-
readonly type: PropType<"" | "
|
|
98
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", unknown>>;
|
|
148
99
|
readonly required: false;
|
|
149
100
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
150
101
|
__epPropKey: true;
|