@jiaozhiye/qm-design-react 1.2.0-beta.19 → 1.2.0-beta.21
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/lib/form/src/types.d.ts
CHANGED
|
@@ -143,7 +143,10 @@ export declare type IFormItem = {
|
|
|
143
143
|
onlySelect?: boolean;
|
|
144
144
|
columns?: IColumn[];
|
|
145
145
|
fieldsDefine?: IFieldsDefine;
|
|
146
|
-
echoRequest?: IRequest
|
|
146
|
+
echoRequest?: IRequest & {
|
|
147
|
+
fieldAliasMap?: (() => Record<string, string>) | Record<string, string>;
|
|
148
|
+
extraAliasMap?: (() => Record<string, string>) | Record<string, string>;
|
|
149
|
+
};
|
|
147
150
|
fieldAliasMap?: (() => Record<string, string>) | Record<string, string>;
|
|
148
151
|
extraAliasMap?: (() => Record<string, string>) | Record<string, string>;
|
|
149
152
|
multiple?: boolean;
|
|
@@ -171,8 +174,11 @@ export declare type IFormItem = {
|
|
|
171
174
|
fetch?: IFetch;
|
|
172
175
|
tableParamsMap?: (() => Record<string, string>) | Record<string, string>;
|
|
173
176
|
};
|
|
174
|
-
request?:
|
|
175
|
-
echoRequest?: IRequest
|
|
177
|
+
request?: any;
|
|
178
|
+
echoRequest?: IRequest & {
|
|
179
|
+
fieldAliasMap?: (() => Record<string, string>) | Record<string, string>;
|
|
180
|
+
extraAliasMap?: (() => Record<string, string>) | Record<string, string>;
|
|
181
|
+
};
|
|
176
182
|
width?: number | string;
|
|
177
183
|
initialValue?: IFormData;
|
|
178
184
|
onlySelect?: boolean;
|