@funcho/ui 1.1.21 → 1.1.23
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/README.md +1 -0
- package/dist/cjs/business/DataTable/DataTable.vue.js +33 -131
- package/dist/cjs/business/QueryForm/QueryForm.vue.js +248 -0
- package/dist/cjs/business/QueryForm/QueryForm.vue3.js +10 -0
- package/dist/cjs/business/QueryForm/index.js +12 -0
- package/dist/cjs/business/index.js +2 -0
- package/dist/cjs/components/ContextMenu/ContextMenu.vue.js +4 -1
- package/dist/cjs/index.js +8 -6
- package/dist/cjs/packages/ui/package.json.js +1 -1
- package/dist/esm/business/DataTable/DataTable.vue.mjs +22 -120
- package/dist/esm/business/QueryForm/QueryForm.vue.mjs +244 -0
- package/dist/esm/business/QueryForm/QueryForm.vue3.mjs +6 -0
- package/dist/esm/business/QueryForm/index.mjs +7 -0
- package/dist/esm/business/index.mjs +1 -0
- package/dist/esm/components/ContextMenu/ContextMenu.vue.mjs +5 -2
- package/dist/esm/index.mjs +1 -0
- package/dist/esm/packages/ui/package.json.mjs +1 -1
- package/dist/style.css +38 -29
- package/dist/types/business/DataTable/DataTable.vue.d.ts +2280 -311
- package/dist/types/business/DataTable/index.d.ts +796 -301
- package/dist/types/business/QueryForm/QueryForm.types.d.ts +1 -0
- package/dist/types/business/QueryForm/QueryForm.vue.d.ts +2164 -0
- package/dist/types/business/QueryForm/index.d.ts +1628 -0
- package/dist/types/business/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -82,197 +82,648 @@ export declare const FcProDataTable: {
|
|
|
82
82
|
actionsWidth: number;
|
|
83
83
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
84
84
|
containerRef: HTMLDivElement;
|
|
85
|
-
queryBoxRef:
|
|
86
|
-
formRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').TProFormProps> & Readonly<{}>, {
|
|
85
|
+
queryBoxRef: ({
|
|
87
86
|
$: import('vue').ComponentInternalInstance;
|
|
88
87
|
$data: {};
|
|
89
|
-
$props:
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
readonly
|
|
105
|
-
readonly
|
|
106
|
-
readonly
|
|
107
|
-
readonly
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
readonly statusIcon?: boolean | undefined;
|
|
112
|
-
readonly hideRequiredAsterisk?: boolean | undefined;
|
|
113
|
-
readonly scrollToError?: boolean | undefined;
|
|
114
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
115
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions">;
|
|
88
|
+
$props: {
|
|
89
|
+
readonly fields?: Array<import('..').TProFormField> | undefined;
|
|
90
|
+
readonly tools?: Array<{
|
|
91
|
+
label: string;
|
|
92
|
+
type?: "" | "default" | "primary" | "success" | "warning" | "info" | "danger";
|
|
93
|
+
disabled?: boolean | ((row?: any) => boolean);
|
|
94
|
+
hidden?: boolean | ((row?: any) => boolean);
|
|
95
|
+
onClick: (row: any, index: number) => void;
|
|
96
|
+
directives?: Array<{
|
|
97
|
+
name: string;
|
|
98
|
+
value?: any;
|
|
99
|
+
arg?: any;
|
|
100
|
+
modifiers?: any;
|
|
101
|
+
}>;
|
|
102
|
+
}> | undefined;
|
|
103
|
+
readonly btnDisabled?: boolean | undefined;
|
|
104
|
+
readonly onReset?: ((model: any) => any) | undefined;
|
|
105
|
+
readonly onSearch?: ((model: any) => any) | undefined;
|
|
106
|
+
readonly onResize?: ((value: {
|
|
107
|
+
height: number;
|
|
108
|
+
}) => any) | undefined;
|
|
109
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
116
110
|
$attrs: {
|
|
117
111
|
[x: string]: unknown;
|
|
118
112
|
};
|
|
119
113
|
$refs: {
|
|
120
114
|
[x: string]: unknown;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
115
|
+
} & {
|
|
116
|
+
queryBoxRef: HTMLDivElement;
|
|
117
|
+
formRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').TProFormProps> & Readonly<{}>, {
|
|
118
|
+
$: import('vue').ComponentInternalInstance;
|
|
119
|
+
$data: {};
|
|
120
|
+
$props: Partial<{
|
|
121
|
+
labelWidth: string | number;
|
|
122
|
+
labelPosition: "left" | "right" | "top";
|
|
123
|
+
requireAsteriskPosition: "left" | "right";
|
|
124
|
+
labelSuffix: string;
|
|
125
|
+
showMessage: boolean;
|
|
126
|
+
validateOnRuleChange: boolean;
|
|
127
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
128
|
+
}> & Omit<{
|
|
129
|
+
readonly labelPosition: "left" | "right" | "top";
|
|
130
|
+
readonly requireAsteriskPosition: "left" | "right";
|
|
131
|
+
readonly labelWidth: string | number;
|
|
132
|
+
readonly labelSuffix: string;
|
|
133
|
+
readonly showMessage: boolean;
|
|
134
|
+
readonly validateOnRuleChange: boolean;
|
|
135
|
+
readonly scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
136
|
+
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
137
|
+
readonly disabled?: boolean | undefined;
|
|
138
|
+
readonly model?: Record<string, any> | undefined;
|
|
139
|
+
readonly rules?: import('element-plus').FormRules | undefined;
|
|
140
|
+
readonly inline?: boolean | undefined;
|
|
141
|
+
readonly inlineMessage?: boolean | undefined;
|
|
142
|
+
readonly statusIcon?: boolean | undefined;
|
|
143
|
+
readonly hideRequiredAsterisk?: boolean | undefined;
|
|
144
|
+
readonly scrollToError?: boolean | undefined;
|
|
145
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
146
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions">;
|
|
147
|
+
$attrs: {
|
|
148
|
+
[x: string]: unknown;
|
|
149
|
+
};
|
|
150
|
+
$refs: {
|
|
151
|
+
[x: string]: unknown;
|
|
152
|
+
};
|
|
153
|
+
$slots: Readonly<{
|
|
154
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
155
|
+
}> & {
|
|
156
|
+
default?: (props: {}) => any;
|
|
157
|
+
};
|
|
158
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
159
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
160
|
+
$host: Element | null;
|
|
161
|
+
$emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
162
|
+
$el: any;
|
|
163
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
164
|
+
size: {
|
|
165
|
+
type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
166
|
+
};
|
|
167
|
+
disabled: {
|
|
168
|
+
type: import('vue').PropType<boolean>;
|
|
169
|
+
};
|
|
170
|
+
model: {
|
|
171
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
172
|
+
};
|
|
173
|
+
rules: {
|
|
174
|
+
type: import('vue').PropType<Partial<Record<string, Record<string, any> | import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemRule>>>>;
|
|
175
|
+
};
|
|
176
|
+
labelPosition: {
|
|
177
|
+
type: import('vue').PropType<"top" | "left" | "right">;
|
|
178
|
+
default: string;
|
|
179
|
+
};
|
|
180
|
+
requireAsteriskPosition: {
|
|
181
|
+
type: import('vue').PropType<"left" | "right">;
|
|
182
|
+
default: string;
|
|
183
|
+
};
|
|
184
|
+
labelWidth: {
|
|
185
|
+
type: import('vue').PropType<string | number>;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
labelSuffix: {
|
|
189
|
+
type: import('vue').PropType<string>;
|
|
190
|
+
default: string;
|
|
191
|
+
};
|
|
192
|
+
inline: {
|
|
193
|
+
type: import('vue').PropType<boolean>;
|
|
194
|
+
};
|
|
195
|
+
inlineMessage: {
|
|
196
|
+
type: import('vue').PropType<boolean>;
|
|
197
|
+
};
|
|
198
|
+
statusIcon: {
|
|
199
|
+
type: import('vue').PropType<boolean>;
|
|
200
|
+
};
|
|
201
|
+
showMessage: {
|
|
202
|
+
type: import('vue').PropType<boolean>;
|
|
203
|
+
default: boolean;
|
|
204
|
+
};
|
|
205
|
+
validateOnRuleChange: {
|
|
206
|
+
type: import('vue').PropType<boolean>;
|
|
207
|
+
default: boolean;
|
|
208
|
+
};
|
|
209
|
+
hideRequiredAsterisk: {
|
|
210
|
+
type: import('vue').PropType<boolean>;
|
|
211
|
+
};
|
|
212
|
+
scrollToError: {
|
|
213
|
+
type: import('vue').PropType<boolean>;
|
|
214
|
+
};
|
|
215
|
+
scrollIntoViewOptions: {
|
|
216
|
+
type: import('vue').PropType<boolean | ScrollIntoViewOptions>;
|
|
217
|
+
default: boolean;
|
|
218
|
+
};
|
|
219
|
+
}>> & {
|
|
220
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
221
|
+
}, {
|
|
222
|
+
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
223
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
224
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
225
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
226
|
+
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
227
|
+
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
228
|
+
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
229
|
+
setInitialValues: (initModel: Record<string, any>) => void;
|
|
230
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
231
|
+
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
232
|
+
}, string, {
|
|
233
|
+
labelWidth: string | number;
|
|
234
|
+
labelPosition: "left" | "right" | "top";
|
|
235
|
+
requireAsteriskPosition: "left" | "right";
|
|
236
|
+
labelSuffix: string;
|
|
237
|
+
showMessage: boolean;
|
|
238
|
+
validateOnRuleChange: boolean;
|
|
239
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
240
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
241
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
242
|
+
created?: (() => void) | (() => void)[];
|
|
243
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
244
|
+
mounted?: (() => void) | (() => void)[];
|
|
245
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
246
|
+
updated?: (() => void) | (() => void)[];
|
|
247
|
+
activated?: (() => void) | (() => void)[];
|
|
248
|
+
deactivated?: (() => void) | (() => void)[];
|
|
249
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
250
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
251
|
+
destroyed?: (() => void) | (() => void)[];
|
|
252
|
+
unmounted?: (() => void) | (() => void)[];
|
|
253
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
254
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
255
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
256
|
+
};
|
|
257
|
+
$forceUpdate: () => void;
|
|
258
|
+
$nextTick: typeof import('vue').nextTick;
|
|
259
|
+
$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;
|
|
260
|
+
labelWidth: string | number;
|
|
261
|
+
labelPosition: "left" | "right" | "top";
|
|
262
|
+
requireAsteriskPosition: "left" | "right";
|
|
263
|
+
labelSuffix: string;
|
|
264
|
+
showMessage: boolean;
|
|
265
|
+
validateOnRuleChange: boolean;
|
|
266
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
267
|
+
size?: import('element-plus').ComponentSize;
|
|
268
|
+
disabled?: boolean;
|
|
269
|
+
model: any;
|
|
270
|
+
rules?: import('element-plus').FormRules;
|
|
271
|
+
inline?: boolean;
|
|
272
|
+
inlineMessage?: boolean;
|
|
273
|
+
statusIcon?: boolean;
|
|
274
|
+
hideRequiredAsterisk?: boolean;
|
|
275
|
+
scrollToError?: boolean;
|
|
276
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
277
|
+
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
278
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
279
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
280
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
281
|
+
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
282
|
+
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
283
|
+
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
284
|
+
setInitialValues: (initModel: Record<string, any>) => void;
|
|
285
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
286
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
287
|
+
setValues: (data: Record<string, any>) => void;
|
|
288
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
289
|
+
rules: import('element-plus').FormRules;
|
|
290
|
+
labelPosition: "top" | "left" | "right";
|
|
291
|
+
labelWidth: string | number;
|
|
292
|
+
inline: boolean;
|
|
293
|
+
fields: Array<import('..').TProFormField>;
|
|
294
|
+
columns: number | "auto-fill" | "auto-fit";
|
|
295
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
296
|
+
formRef: ({
|
|
297
|
+
$: import('vue').ComponentInternalInstance;
|
|
298
|
+
$data: {};
|
|
299
|
+
$props: Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>;
|
|
300
|
+
$attrs: {
|
|
301
|
+
[x: string]: unknown;
|
|
302
|
+
};
|
|
303
|
+
$refs: {
|
|
304
|
+
[x: string]: unknown;
|
|
305
|
+
} & {
|
|
306
|
+
elRef: ({
|
|
307
|
+
$: import('vue').ComponentInternalInstance;
|
|
308
|
+
$data: {};
|
|
309
|
+
$props: Partial<{
|
|
310
|
+
labelWidth: string | number;
|
|
311
|
+
labelPosition: "left" | "right" | "top";
|
|
312
|
+
requireAsteriskPosition: "left" | "right";
|
|
313
|
+
labelSuffix: string;
|
|
314
|
+
showMessage: boolean;
|
|
315
|
+
validateOnRuleChange: boolean;
|
|
316
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
317
|
+
}> & Omit<{
|
|
318
|
+
readonly labelPosition: "left" | "right" | "top";
|
|
319
|
+
readonly requireAsteriskPosition: "left" | "right";
|
|
320
|
+
readonly labelWidth: string | number;
|
|
321
|
+
readonly labelSuffix: string;
|
|
322
|
+
readonly showMessage: boolean;
|
|
323
|
+
readonly validateOnRuleChange: boolean;
|
|
324
|
+
readonly scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
325
|
+
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
326
|
+
readonly disabled?: boolean | undefined;
|
|
327
|
+
readonly model?: Record<string, any> | undefined;
|
|
328
|
+
readonly rules?: import('element-plus').FormRules | undefined;
|
|
329
|
+
readonly inline?: boolean | undefined;
|
|
330
|
+
readonly inlineMessage?: boolean | undefined;
|
|
331
|
+
readonly statusIcon?: boolean | undefined;
|
|
332
|
+
readonly hideRequiredAsterisk?: boolean | undefined;
|
|
333
|
+
readonly scrollToError?: boolean | undefined;
|
|
334
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
335
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions">;
|
|
336
|
+
$attrs: {
|
|
337
|
+
[x: string]: unknown;
|
|
338
|
+
};
|
|
339
|
+
$refs: {
|
|
340
|
+
[x: string]: unknown;
|
|
341
|
+
};
|
|
342
|
+
$slots: Readonly<{
|
|
343
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
344
|
+
}>;
|
|
345
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
346
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
347
|
+
$host: Element | null;
|
|
348
|
+
$emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
349
|
+
$el: any;
|
|
350
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
351
|
+
size: {
|
|
352
|
+
type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
353
|
+
};
|
|
354
|
+
disabled: {
|
|
355
|
+
type: import('vue').PropType<boolean>;
|
|
356
|
+
};
|
|
357
|
+
model: {
|
|
358
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
359
|
+
};
|
|
360
|
+
rules: {
|
|
361
|
+
type: import('vue').PropType<Partial<Record<string, Record<string, any> | import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemRule>>>>;
|
|
362
|
+
};
|
|
363
|
+
labelPosition: {
|
|
364
|
+
type: import('vue').PropType<"top" | "left" | "right">;
|
|
365
|
+
default: string;
|
|
366
|
+
};
|
|
367
|
+
requireAsteriskPosition: {
|
|
368
|
+
type: import('vue').PropType<"left" | "right">;
|
|
369
|
+
default: string;
|
|
370
|
+
};
|
|
371
|
+
labelWidth: {
|
|
372
|
+
type: import('vue').PropType<string | number>;
|
|
373
|
+
default: string;
|
|
374
|
+
};
|
|
375
|
+
labelSuffix: {
|
|
376
|
+
type: import('vue').PropType<string>;
|
|
377
|
+
default: string;
|
|
378
|
+
};
|
|
379
|
+
inline: {
|
|
380
|
+
type: import('vue').PropType<boolean>;
|
|
381
|
+
};
|
|
382
|
+
inlineMessage: {
|
|
383
|
+
type: import('vue').PropType<boolean>;
|
|
384
|
+
};
|
|
385
|
+
statusIcon: {
|
|
386
|
+
type: import('vue').PropType<boolean>;
|
|
387
|
+
};
|
|
388
|
+
showMessage: {
|
|
389
|
+
type: import('vue').PropType<boolean>;
|
|
390
|
+
default: boolean;
|
|
391
|
+
};
|
|
392
|
+
validateOnRuleChange: {
|
|
393
|
+
type: import('vue').PropType<boolean>;
|
|
394
|
+
default: boolean;
|
|
395
|
+
};
|
|
396
|
+
hideRequiredAsterisk: {
|
|
397
|
+
type: import('vue').PropType<boolean>;
|
|
398
|
+
};
|
|
399
|
+
scrollToError: {
|
|
400
|
+
type: import('vue').PropType<boolean>;
|
|
401
|
+
};
|
|
402
|
+
scrollIntoViewOptions: {
|
|
403
|
+
type: import('vue').PropType<boolean | ScrollIntoViewOptions>;
|
|
404
|
+
default: boolean;
|
|
405
|
+
};
|
|
406
|
+
}>> & {
|
|
407
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
408
|
+
}, {
|
|
409
|
+
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
410
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
411
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
412
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
413
|
+
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
414
|
+
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
415
|
+
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
416
|
+
setInitialValues: (initModel: Record<string, any>) => void;
|
|
417
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
418
|
+
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
419
|
+
}, string, {
|
|
420
|
+
labelWidth: string | number;
|
|
421
|
+
labelPosition: "left" | "right" | "top";
|
|
422
|
+
requireAsteriskPosition: "left" | "right";
|
|
423
|
+
labelSuffix: string;
|
|
424
|
+
showMessage: boolean;
|
|
425
|
+
validateOnRuleChange: boolean;
|
|
426
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
427
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
428
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
429
|
+
created?: (() => void) | (() => void)[];
|
|
430
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
431
|
+
mounted?: (() => void) | (() => void)[];
|
|
432
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
433
|
+
updated?: (() => void) | (() => void)[];
|
|
434
|
+
activated?: (() => void) | (() => void)[];
|
|
435
|
+
deactivated?: (() => void) | (() => void)[];
|
|
436
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
437
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
438
|
+
destroyed?: (() => void) | (() => void)[];
|
|
439
|
+
unmounted?: (() => void) | (() => void)[];
|
|
440
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
441
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
442
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
443
|
+
};
|
|
444
|
+
$forceUpdate: () => void;
|
|
445
|
+
$nextTick: typeof import('vue').nextTick;
|
|
446
|
+
$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;
|
|
447
|
+
} & Readonly<{
|
|
448
|
+
labelWidth: string | number;
|
|
449
|
+
labelPosition: "left" | "right" | "top";
|
|
450
|
+
requireAsteriskPosition: "left" | "right";
|
|
451
|
+
labelSuffix: string;
|
|
452
|
+
showMessage: boolean;
|
|
453
|
+
validateOnRuleChange: boolean;
|
|
454
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
455
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
456
|
+
size: {
|
|
457
|
+
type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
458
|
+
};
|
|
459
|
+
disabled: {
|
|
460
|
+
type: import('vue').PropType<boolean>;
|
|
461
|
+
};
|
|
462
|
+
model: {
|
|
463
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
464
|
+
};
|
|
465
|
+
rules: {
|
|
466
|
+
type: import('vue').PropType<Partial<Record<string, Record<string, any> | import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemRule>>>>;
|
|
467
|
+
};
|
|
468
|
+
labelPosition: {
|
|
469
|
+
type: import('vue').PropType<"top" | "left" | "right">;
|
|
470
|
+
default: string;
|
|
471
|
+
};
|
|
472
|
+
requireAsteriskPosition: {
|
|
473
|
+
type: import('vue').PropType<"left" | "right">;
|
|
474
|
+
default: string;
|
|
475
|
+
};
|
|
476
|
+
labelWidth: {
|
|
477
|
+
type: import('vue').PropType<string | number>;
|
|
478
|
+
default: string;
|
|
479
|
+
};
|
|
480
|
+
labelSuffix: {
|
|
481
|
+
type: import('vue').PropType<string>;
|
|
482
|
+
default: string;
|
|
483
|
+
};
|
|
484
|
+
inline: {
|
|
485
|
+
type: import('vue').PropType<boolean>;
|
|
486
|
+
};
|
|
487
|
+
inlineMessage: {
|
|
488
|
+
type: import('vue').PropType<boolean>;
|
|
489
|
+
};
|
|
490
|
+
statusIcon: {
|
|
491
|
+
type: import('vue').PropType<boolean>;
|
|
492
|
+
};
|
|
493
|
+
showMessage: {
|
|
494
|
+
type: import('vue').PropType<boolean>;
|
|
495
|
+
default: boolean;
|
|
496
|
+
};
|
|
497
|
+
validateOnRuleChange: {
|
|
498
|
+
type: import('vue').PropType<boolean>;
|
|
499
|
+
default: boolean;
|
|
500
|
+
};
|
|
501
|
+
hideRequiredAsterisk: {
|
|
502
|
+
type: import('vue').PropType<boolean>;
|
|
503
|
+
};
|
|
504
|
+
scrollToError: {
|
|
505
|
+
type: import('vue').PropType<boolean>;
|
|
506
|
+
};
|
|
507
|
+
scrollIntoViewOptions: {
|
|
508
|
+
type: import('vue').PropType<boolean | ScrollIntoViewOptions>;
|
|
509
|
+
default: boolean;
|
|
510
|
+
};
|
|
511
|
+
}>> & {
|
|
512
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
513
|
+
}, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & import('vue').ShallowUnwrapRef<{
|
|
514
|
+
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
515
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
516
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
517
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
518
|
+
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
519
|
+
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
520
|
+
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
521
|
+
setInitialValues: (initModel: Record<string, any>) => void;
|
|
522
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
523
|
+
$slots: {
|
|
524
|
+
default?: (props: {}) => any;
|
|
525
|
+
};
|
|
526
|
+
}) | null;
|
|
527
|
+
};
|
|
528
|
+
$slots: Readonly<{
|
|
529
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
530
|
+
}>;
|
|
531
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
532
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
533
|
+
$host: Element | null;
|
|
534
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
535
|
+
$el: any;
|
|
536
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
537
|
+
$: import('vue').ComponentInternalInstance;
|
|
538
|
+
$data: {};
|
|
539
|
+
$props: Partial<{
|
|
540
|
+
labelWidth: string | number;
|
|
541
|
+
labelPosition: "left" | "right" | "top";
|
|
542
|
+
requireAsteriskPosition: "left" | "right";
|
|
543
|
+
labelSuffix: string;
|
|
544
|
+
showMessage: boolean;
|
|
545
|
+
validateOnRuleChange: boolean;
|
|
546
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
547
|
+
}> & Omit<{
|
|
548
|
+
readonly labelPosition: "left" | "right" | "top";
|
|
549
|
+
readonly requireAsteriskPosition: "left" | "right";
|
|
550
|
+
readonly labelWidth: string | number;
|
|
551
|
+
readonly labelSuffix: string;
|
|
552
|
+
readonly showMessage: boolean;
|
|
553
|
+
readonly validateOnRuleChange: boolean;
|
|
554
|
+
readonly scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
555
|
+
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
556
|
+
readonly disabled?: boolean | undefined;
|
|
557
|
+
readonly model?: Record<string, any> | undefined;
|
|
558
|
+
readonly rules?: import('element-plus').FormRules | undefined;
|
|
559
|
+
readonly inline?: boolean | undefined;
|
|
560
|
+
readonly inlineMessage?: boolean | undefined;
|
|
561
|
+
readonly statusIcon?: boolean | undefined;
|
|
562
|
+
readonly hideRequiredAsterisk?: boolean | undefined;
|
|
563
|
+
readonly scrollToError?: boolean | undefined;
|
|
564
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
565
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions">;
|
|
566
|
+
$attrs: {
|
|
567
|
+
[x: string]: unknown;
|
|
568
|
+
};
|
|
569
|
+
$refs: {
|
|
570
|
+
[x: string]: unknown;
|
|
571
|
+
};
|
|
572
|
+
$slots: Readonly<{
|
|
573
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
574
|
+
}> & {
|
|
575
|
+
default?: (props: {}) => any;
|
|
576
|
+
};
|
|
577
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
578
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
579
|
+
$host: Element | null;
|
|
580
|
+
$emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
581
|
+
$el: any;
|
|
582
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
583
|
+
size: {
|
|
584
|
+
type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
585
|
+
};
|
|
586
|
+
disabled: {
|
|
587
|
+
type: import('vue').PropType<boolean>;
|
|
588
|
+
};
|
|
589
|
+
model: {
|
|
590
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
591
|
+
};
|
|
592
|
+
rules: {
|
|
593
|
+
type: import('vue').PropType<Partial<Record<string, Record<string, any> | import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemRule>>>>;
|
|
594
|
+
};
|
|
595
|
+
labelPosition: {
|
|
596
|
+
type: import('vue').PropType<"top" | "left" | "right">;
|
|
597
|
+
default: string;
|
|
598
|
+
};
|
|
599
|
+
requireAsteriskPosition: {
|
|
600
|
+
type: import('vue').PropType<"left" | "right">;
|
|
601
|
+
default: string;
|
|
602
|
+
};
|
|
603
|
+
labelWidth: {
|
|
604
|
+
type: import('vue').PropType<string | number>;
|
|
605
|
+
default: string;
|
|
606
|
+
};
|
|
607
|
+
labelSuffix: {
|
|
608
|
+
type: import('vue').PropType<string>;
|
|
609
|
+
default: string;
|
|
610
|
+
};
|
|
611
|
+
inline: {
|
|
612
|
+
type: import('vue').PropType<boolean>;
|
|
613
|
+
};
|
|
614
|
+
inlineMessage: {
|
|
615
|
+
type: import('vue').PropType<boolean>;
|
|
616
|
+
};
|
|
617
|
+
statusIcon: {
|
|
618
|
+
type: import('vue').PropType<boolean>;
|
|
619
|
+
};
|
|
620
|
+
showMessage: {
|
|
621
|
+
type: import('vue').PropType<boolean>;
|
|
622
|
+
default: boolean;
|
|
623
|
+
};
|
|
624
|
+
validateOnRuleChange: {
|
|
625
|
+
type: import('vue').PropType<boolean>;
|
|
626
|
+
default: boolean;
|
|
627
|
+
};
|
|
628
|
+
hideRequiredAsterisk: {
|
|
629
|
+
type: import('vue').PropType<boolean>;
|
|
630
|
+
};
|
|
631
|
+
scrollToError: {
|
|
632
|
+
type: import('vue').PropType<boolean>;
|
|
633
|
+
};
|
|
634
|
+
scrollIntoViewOptions: {
|
|
635
|
+
type: import('vue').PropType<boolean | ScrollIntoViewOptions>;
|
|
636
|
+
default: boolean;
|
|
637
|
+
};
|
|
638
|
+
}>> & {
|
|
639
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
640
|
+
}, {
|
|
641
|
+
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
642
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
643
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
644
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
645
|
+
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
646
|
+
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
647
|
+
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
648
|
+
setInitialValues: (initModel: Record<string, any>) => void;
|
|
649
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
650
|
+
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
651
|
+
}, string, {
|
|
652
|
+
labelWidth: string | number;
|
|
653
|
+
labelPosition: "left" | "right" | "top";
|
|
654
|
+
requireAsteriskPosition: "left" | "right";
|
|
655
|
+
labelSuffix: string;
|
|
656
|
+
showMessage: boolean;
|
|
657
|
+
validateOnRuleChange: boolean;
|
|
658
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
659
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
660
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
661
|
+
created?: (() => void) | (() => void)[];
|
|
662
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
663
|
+
mounted?: (() => void) | (() => void)[];
|
|
664
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
665
|
+
updated?: (() => void) | (() => void)[];
|
|
666
|
+
activated?: (() => void) | (() => void)[];
|
|
667
|
+
deactivated?: (() => void) | (() => void)[];
|
|
668
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
669
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
670
|
+
destroyed?: (() => void) | (() => void)[];
|
|
671
|
+
unmounted?: (() => void) | (() => void)[];
|
|
672
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
673
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
674
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
675
|
+
};
|
|
676
|
+
$forceUpdate: () => void;
|
|
677
|
+
$nextTick: typeof import('vue').nextTick;
|
|
678
|
+
$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;
|
|
679
|
+
labelWidth: string | number;
|
|
680
|
+
labelPosition: "left" | "right" | "top";
|
|
681
|
+
requireAsteriskPosition: "left" | "right";
|
|
682
|
+
labelSuffix: string;
|
|
683
|
+
showMessage: boolean;
|
|
684
|
+
validateOnRuleChange: boolean;
|
|
685
|
+
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
686
|
+
size?: import('element-plus').ComponentSize;
|
|
687
|
+
disabled?: boolean;
|
|
688
|
+
model?: Record<string, any>;
|
|
689
|
+
rules?: import('element-plus').FormRules;
|
|
690
|
+
inline?: boolean;
|
|
691
|
+
inlineMessage?: boolean;
|
|
692
|
+
statusIcon?: boolean;
|
|
693
|
+
hideRequiredAsterisk?: boolean;
|
|
694
|
+
scrollToError?: boolean;
|
|
695
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
696
|
+
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
697
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
698
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
699
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
700
|
+
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
701
|
+
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
702
|
+
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
703
|
+
setInitialValues: (initModel: Record<string, any>) => void;
|
|
704
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
705
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
706
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
707
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
708
|
+
created?: (() => void) | (() => void)[];
|
|
709
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
710
|
+
mounted?: (() => void) | (() => void)[];
|
|
711
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
712
|
+
updated?: (() => void) | (() => void)[];
|
|
713
|
+
activated?: (() => void) | (() => void)[];
|
|
714
|
+
deactivated?: (() => void) | (() => void)[];
|
|
715
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
716
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
717
|
+
destroyed?: (() => void) | (() => void)[];
|
|
718
|
+
unmounted?: (() => void) | (() => void)[];
|
|
719
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
720
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
721
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
722
|
+
};
|
|
723
|
+
$forceUpdate: () => void;
|
|
724
|
+
$nextTick: typeof import('vue').nextTick;
|
|
725
|
+
$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;
|
|
726
|
+
} & Readonly<{}> & Omit<Readonly<{}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "model" | "rules" | "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "inline" | "inlineMessage" | "statusIcon" | "showMessage" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues" | "onValidate"> & import('vue').ShallowUnwrapRef<{
|
|
276
727
|
$: import('vue').ComponentInternalInstance;
|
|
277
728
|
$data: {};
|
|
278
729
|
$props: Partial<{
|
|
@@ -310,7 +761,9 @@ export declare const FcProDataTable: {
|
|
|
310
761
|
};
|
|
311
762
|
$slots: Readonly<{
|
|
312
763
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
313
|
-
}
|
|
764
|
+
}> & {
|
|
765
|
+
default?: (props: {}) => any;
|
|
766
|
+
};
|
|
314
767
|
$root: import('vue').ComponentPublicInstance | null;
|
|
315
768
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
316
769
|
$host: Element | null;
|
|
@@ -413,7 +866,6 @@ export declare const FcProDataTable: {
|
|
|
413
866
|
$forceUpdate: () => void;
|
|
414
867
|
$nextTick: typeof import('vue').nextTick;
|
|
415
868
|
$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;
|
|
416
|
-
} & Readonly<{
|
|
417
869
|
labelWidth: string | number;
|
|
418
870
|
labelPosition: "left" | "right" | "top";
|
|
419
871
|
requireAsteriskPosition: "left" | "right";
|
|
@@ -421,65 +873,16 @@ export declare const FcProDataTable: {
|
|
|
421
873
|
showMessage: boolean;
|
|
422
874
|
validateOnRuleChange: boolean;
|
|
423
875
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
rules: {
|
|
435
|
-
type: import('vue').PropType<Partial<Record<string, Record<string, any> | import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemRule>>>>;
|
|
436
|
-
};
|
|
437
|
-
labelPosition: {
|
|
438
|
-
type: import('vue').PropType<"top" | "left" | "right">;
|
|
439
|
-
default: string;
|
|
440
|
-
};
|
|
441
|
-
requireAsteriskPosition: {
|
|
442
|
-
type: import('vue').PropType<"left" | "right">;
|
|
443
|
-
default: string;
|
|
444
|
-
};
|
|
445
|
-
labelWidth: {
|
|
446
|
-
type: import('vue').PropType<string | number>;
|
|
447
|
-
default: string;
|
|
448
|
-
};
|
|
449
|
-
labelSuffix: {
|
|
450
|
-
type: import('vue').PropType<string>;
|
|
451
|
-
default: string;
|
|
452
|
-
};
|
|
453
|
-
inline: {
|
|
454
|
-
type: import('vue').PropType<boolean>;
|
|
455
|
-
};
|
|
456
|
-
inlineMessage: {
|
|
457
|
-
type: import('vue').PropType<boolean>;
|
|
458
|
-
};
|
|
459
|
-
statusIcon: {
|
|
460
|
-
type: import('vue').PropType<boolean>;
|
|
461
|
-
};
|
|
462
|
-
showMessage: {
|
|
463
|
-
type: import('vue').PropType<boolean>;
|
|
464
|
-
default: boolean;
|
|
465
|
-
};
|
|
466
|
-
validateOnRuleChange: {
|
|
467
|
-
type: import('vue').PropType<boolean>;
|
|
468
|
-
default: boolean;
|
|
469
|
-
};
|
|
470
|
-
hideRequiredAsterisk: {
|
|
471
|
-
type: import('vue').PropType<boolean>;
|
|
472
|
-
};
|
|
473
|
-
scrollToError: {
|
|
474
|
-
type: import('vue').PropType<boolean>;
|
|
475
|
-
};
|
|
476
|
-
scrollIntoViewOptions: {
|
|
477
|
-
type: import('vue').PropType<boolean | ScrollIntoViewOptions>;
|
|
478
|
-
default: boolean;
|
|
479
|
-
};
|
|
480
|
-
}>> & {
|
|
481
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
482
|
-
}, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & import('vue').ShallowUnwrapRef<{
|
|
876
|
+
size?: import('element-plus').ComponentSize;
|
|
877
|
+
disabled?: boolean;
|
|
878
|
+
model?: Record<string, any>;
|
|
879
|
+
rules?: import('element-plus').FormRules;
|
|
880
|
+
inline?: boolean;
|
|
881
|
+
inlineMessage?: boolean;
|
|
882
|
+
statusIcon?: boolean;
|
|
883
|
+
hideRequiredAsterisk?: boolean;
|
|
884
|
+
scrollToError?: boolean;
|
|
885
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
483
886
|
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
484
887
|
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
485
888
|
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
@@ -488,21 +891,19 @@ export declare const FcProDataTable: {
|
|
|
488
891
|
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
489
892
|
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
490
893
|
setInitialValues: (initModel: Record<string, any>) => void;
|
|
894
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
895
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
491
896
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
492
|
-
$slots:
|
|
493
|
-
default?: (props: {}) => any;
|
|
494
|
-
};
|
|
897
|
+
$slots: any;
|
|
495
898
|
}) | null;
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
$el: any;
|
|
505
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
899
|
+
}, any, import('vue').ComponentProvideOptions, {
|
|
900
|
+
P: {};
|
|
901
|
+
B: {};
|
|
902
|
+
D: {};
|
|
903
|
+
C: {};
|
|
904
|
+
M: {};
|
|
905
|
+
Defaults: {};
|
|
906
|
+
}, Readonly<import('..').TProFormProps> & Readonly<{}>, {
|
|
506
907
|
$: import('vue').ComponentInternalInstance;
|
|
507
908
|
$data: {};
|
|
508
909
|
$props: Partial<{
|
|
@@ -654,7 +1055,7 @@ export declare const FcProDataTable: {
|
|
|
654
1055
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
655
1056
|
size?: import('element-plus').ComponentSize;
|
|
656
1057
|
disabled?: boolean;
|
|
657
|
-
model
|
|
1058
|
+
model: any;
|
|
658
1059
|
rules?: import('element-plus').FormRules;
|
|
659
1060
|
inline?: boolean;
|
|
660
1061
|
inlineMessage?: boolean;
|
|
@@ -672,27 +1073,49 @@ export declare const FcProDataTable: {
|
|
|
672
1073
|
setInitialValues: (initModel: Record<string, any>) => void;
|
|
673
1074
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
674
1075
|
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
1076
|
+
setValues: (data: Record<string, any>) => void;
|
|
1077
|
+
}, {}, {}, {}, {
|
|
1078
|
+
rules: import('element-plus').FormRules;
|
|
1079
|
+
labelPosition: "top" | "left" | "right";
|
|
1080
|
+
labelWidth: string | number;
|
|
1081
|
+
inline: boolean;
|
|
1082
|
+
fields: Array<import('..').TProFormField>;
|
|
1083
|
+
columns: number | "auto-fill" | "auto-fit";
|
|
1084
|
+
}> | null;
|
|
1085
|
+
};
|
|
1086
|
+
$slots: Readonly<{
|
|
1087
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
1088
|
+
}>;
|
|
1089
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
1090
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
1091
|
+
$host: Element | null;
|
|
1092
|
+
$emit: ((event: "reset", model: any) => void) & ((event: "search", model: any) => void) & ((event: "resize", value: {
|
|
1093
|
+
height: number;
|
|
1094
|
+
}) => void);
|
|
1095
|
+
$el: any;
|
|
1096
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
1097
|
+
fields?: Array<import('..').TProFormField>;
|
|
1098
|
+
tools?: Array<{
|
|
1099
|
+
label: string;
|
|
1100
|
+
type?: "" | "default" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1101
|
+
disabled?: boolean | ((row?: any) => boolean);
|
|
1102
|
+
hidden?: boolean | ((row?: any) => boolean);
|
|
1103
|
+
onClick: (row: any, index: number) => void;
|
|
1104
|
+
directives?: Array<{
|
|
1105
|
+
name: string;
|
|
1106
|
+
value?: any;
|
|
1107
|
+
arg?: any;
|
|
1108
|
+
modifiers?: any;
|
|
1109
|
+
}>;
|
|
1110
|
+
}>;
|
|
1111
|
+
btnDisabled?: boolean;
|
|
1112
|
+
}> & Readonly<{
|
|
1113
|
+
onReset?: ((model: any) => any) | undefined;
|
|
1114
|
+
onSearch?: ((model: any) => any) | undefined;
|
|
1115
|
+
onResize?: ((value: {
|
|
1116
|
+
height: number;
|
|
1117
|
+
}) => any) | undefined;
|
|
1118
|
+
}>, {
|
|
696
1119
|
$: import('vue').ComponentInternalInstance;
|
|
697
1120
|
$data: {};
|
|
698
1121
|
$props: Partial<{
|
|
@@ -844,7 +1267,7 @@ export declare const FcProDataTable: {
|
|
|
844
1267
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
845
1268
|
size?: import('element-plus').ComponentSize;
|
|
846
1269
|
disabled?: boolean;
|
|
847
|
-
model
|
|
1270
|
+
model: any;
|
|
848
1271
|
rules?: import('element-plus').FormRules;
|
|
849
1272
|
inline?: boolean;
|
|
850
1273
|
inlineMessage?: boolean;
|
|
@@ -862,17 +1285,88 @@ export declare const FcProDataTable: {
|
|
|
862
1285
|
setInitialValues: (initModel: Record<string, any>) => void;
|
|
863
1286
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
864
1287
|
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
1288
|
+
setValues: (data: Record<string, any>) => void;
|
|
1289
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
1290
|
+
reset: (model: any) => any;
|
|
1291
|
+
search: (model: any) => any;
|
|
1292
|
+
resize: (value: {
|
|
1293
|
+
height: number;
|
|
1294
|
+
}) => any;
|
|
1295
|
+
}, string, {
|
|
1296
|
+
fields: Array<import('..').TProFormField>;
|
|
1297
|
+
tools: Array<{
|
|
1298
|
+
label: string;
|
|
1299
|
+
type?: "" | "default" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1300
|
+
disabled?: boolean | ((row?: any) => boolean);
|
|
1301
|
+
hidden?: boolean | ((row?: any) => boolean);
|
|
1302
|
+
onClick: (row: any, index: number) => void;
|
|
1303
|
+
directives?: Array<{
|
|
1304
|
+
name: string;
|
|
1305
|
+
value?: any;
|
|
1306
|
+
arg?: any;
|
|
1307
|
+
modifiers?: any;
|
|
1308
|
+
}>;
|
|
1309
|
+
}>;
|
|
1310
|
+
btnDisabled: boolean;
|
|
1311
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1312
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1313
|
+
created?: (() => void) | (() => void)[];
|
|
1314
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1315
|
+
mounted?: (() => void) | (() => void)[];
|
|
1316
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1317
|
+
updated?: (() => void) | (() => void)[];
|
|
1318
|
+
activated?: (() => void) | (() => void)[];
|
|
1319
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1320
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1321
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1322
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1323
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1324
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
1325
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
1326
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1327
|
+
};
|
|
1328
|
+
$forceUpdate: () => void;
|
|
1329
|
+
$nextTick: typeof import('vue').nextTick;
|
|
1330
|
+
$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;
|
|
1331
|
+
} & Readonly<{
|
|
1332
|
+
fields: Array<import('..').TProFormField>;
|
|
1333
|
+
tools: Array<{
|
|
1334
|
+
label: string;
|
|
1335
|
+
type?: "" | "default" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1336
|
+
disabled?: boolean | ((row?: any) => boolean);
|
|
1337
|
+
hidden?: boolean | ((row?: any) => boolean);
|
|
1338
|
+
onClick: (row: any, index: number) => void;
|
|
1339
|
+
directives?: Array<{
|
|
1340
|
+
name: string;
|
|
1341
|
+
value?: any;
|
|
1342
|
+
arg?: any;
|
|
1343
|
+
modifiers?: any;
|
|
1344
|
+
}>;
|
|
1345
|
+
}>;
|
|
1346
|
+
btnDisabled: boolean;
|
|
1347
|
+
}> & Omit<Readonly<{
|
|
1348
|
+
fields?: Array<import('..').TProFormField>;
|
|
1349
|
+
tools?: Array<{
|
|
1350
|
+
label: string;
|
|
1351
|
+
type?: "" | "default" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1352
|
+
disabled?: boolean | ((row?: any) => boolean);
|
|
1353
|
+
hidden?: boolean | ((row?: any) => boolean);
|
|
1354
|
+
onClick: (row: any, index: number) => void;
|
|
1355
|
+
directives?: Array<{
|
|
1356
|
+
name: string;
|
|
1357
|
+
value?: any;
|
|
1358
|
+
arg?: any;
|
|
1359
|
+
modifiers?: any;
|
|
1360
|
+
}>;
|
|
1361
|
+
}>;
|
|
1362
|
+
btnDisabled?: boolean;
|
|
1363
|
+
}> & Readonly<{
|
|
1364
|
+
onReset?: ((model: any) => any) | undefined;
|
|
1365
|
+
onSearch?: ((model: any) => any) | undefined;
|
|
1366
|
+
onResize?: ((value: {
|
|
1367
|
+
height: number;
|
|
1368
|
+
}) => any) | undefined;
|
|
1369
|
+
}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "model" | "rules" | "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "inline" | "inlineMessage" | "statusIcon" | "showMessage" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "setInitialValues" | "onValidate" | "setValues" | ("fields" | "tools" | "btnDisabled")> & import('vue').ShallowUnwrapRef<{
|
|
876
1370
|
$: import('vue').ComponentInternalInstance;
|
|
877
1371
|
$data: {};
|
|
878
1372
|
$props: Partial<{
|
|
@@ -1043,14 +1537,11 @@ export declare const FcProDataTable: {
|
|
|
1043
1537
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
1044
1538
|
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
1045
1539
|
setValues: (data: Record<string, any>) => void;
|
|
1046
|
-
}
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
fields: Array<import('..').TProFormField>;
|
|
1052
|
-
columns: number | "auto-fill" | "auto-fit";
|
|
1053
|
-
}> | null;
|
|
1540
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1541
|
+
$slots: {
|
|
1542
|
+
tools?(_: {}): any;
|
|
1543
|
+
};
|
|
1544
|
+
}) | null;
|
|
1054
1545
|
paginationBoxRef: HTMLDivElement;
|
|
1055
1546
|
}, any, import('vue').ComponentProvideOptions, {
|
|
1056
1547
|
P: {};
|
|
@@ -1225,6 +1716,10 @@ export declare const FcProDataTable: {
|
|
|
1225
1716
|
}>;
|
|
1226
1717
|
}>;
|
|
1227
1718
|
actionsWidth: number;
|
|
1228
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps &
|
|
1719
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1720
|
+
$slots: {
|
|
1721
|
+
tools?(_: {}): any;
|
|
1722
|
+
};
|
|
1723
|
+
}) & import('vue').Plugin;
|
|
1229
1724
|
export default FcProDataTable;
|
|
1230
1725
|
export * from './DataTable.types';
|