@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.
@@ -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 = {
@@ -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
  };
@@ -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;