@jiaozhiye/qm-design-react 1.7.56 → 1.7.58
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
|
@@ -209,6 +209,7 @@ export type IFormItem = {
|
|
|
209
209
|
};
|
|
210
210
|
request?: IRequest;
|
|
211
211
|
echoRequest?: IRequest & {
|
|
212
|
+
triggeredChange?: boolean;
|
|
212
213
|
fieldAliasMap?: (() => Record<string, string>) | Record<string, string>;
|
|
213
214
|
extraAliasMap?: (() => Record<string, string>) | Record<string, string>;
|
|
214
215
|
};
|
|
@@ -237,6 +238,7 @@ export type IFormItem = {
|
|
|
237
238
|
action?: string;
|
|
238
239
|
headers?: IFetchHeader;
|
|
239
240
|
withCredentials?: boolean;
|
|
241
|
+
downloadWithHeaders?: boolean;
|
|
240
242
|
params?: IFetchParams;
|
|
241
243
|
dataKey?: string;
|
|
242
244
|
beforeUpload?: UploadProps['beforeUpload'];
|
package/lib/form/src/utils.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export declare const createShConfig: (data: any, fieldName: string, createFetch:
|
|
|
39
39
|
} | undefined;
|
|
40
40
|
request?: import("./types").IRequest | undefined;
|
|
41
41
|
echoRequest?: (import("./types").IRequest & {
|
|
42
|
+
triggeredChange?: boolean | undefined;
|
|
42
43
|
fieldAliasMap?: Record<string, string> | (() => Record<string, string>) | undefined;
|
|
43
44
|
extraAliasMap?: Record<string, string> | (() => Record<string, string>) | undefined;
|
|
44
45
|
}) | undefined;
|