@jiaozhiye/qm-design-react 1.7.55 → 1.7.57
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/download/src/download.d.ts +1 -1
- package/lib/form/src/types.d.ts +1 -0
- package/lib/form/src/utils.d.ts +1 -0
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/table/src/table/types.d.ts +1 -1
- package/lib/table/src/utils/index.d.ts +2 -1
- package/lib/table/style/column-filter.less +110 -110
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import type { AnyObject, AjaxResponse, ComponentSize } from '../../_utils/types';
|
|
4
4
|
import type { ButtonProps } from '../../antd';
|
|
5
|
-
type HttpRequestHeader = {
|
|
5
|
+
export type HttpRequestHeader = {
|
|
6
6
|
[key: string]: string;
|
|
7
7
|
};
|
|
8
8
|
type ActionConfig = {
|
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
|
};
|
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;
|