@jiaozhiye/qm-design-react 1.3.0-beta.40 → 1.3.0-beta.42

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.
@@ -60,7 +60,7 @@ export declare type IFieldData = {
60
60
  validating?: boolean;
61
61
  value?: ValueOf<IFormData>;
62
62
  };
63
- export declare type IExtraData = Record<string, string>;
63
+ export declare type IExtraData = Record<string, string | number>;
64
64
  export declare type IViewData = Record<string, string>;
65
65
  export declare type IExpandData = Record<string, boolean>;
66
66
  export declare type IFetchFn = (params?: Record<string, unknown>) => Promise<AjaxResponse>;
@@ -86,6 +86,7 @@ export declare type IFormItem = {
86
86
  labelWidth?: number | string;
87
87
  hidden?: boolean;
88
88
  noAuth?: boolean;
89
+ noReset?: boolean;
89
90
  invisible?: boolean;
90
91
  rules?: Record<string, any>[];
91
92
  validateTrigger?: IValidateTrigger | IValidateTrigger[];
@@ -220,6 +221,7 @@ export declare type IFormItem = {
220
221
  style?: CSSProperties;
221
222
  labelWidth?: number | string;
222
223
  isTooltip?: boolean;
224
+ render?: (options: IFormItem, instance: any) => JSXElement;
223
225
  };
224
226
  buttonAfter?: JSXElement | ((options: IFormItem) => JSXElement);
225
227
  collapse?: {