zy-react-library 1.2.36 → 1.2.37

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.
@@ -176,15 +176,8 @@ export type FormOptionCustomRender<O extends boolean = false, C extends boolean
176
176
  * 表单配置项
177
177
  */
178
178
  export type FormOption
179
- = | FormOptionDefault<false, false>
180
- | FormOptionDefault<false, true>
181
- | FormOptionDefault<true, false>
182
- | { [K in keyof FORM_ITEM_RENDER_TYPE_MAP]: FormOptionByRender<K, false, false> }[keyof FORM_ITEM_RENDER_TYPE_MAP]
183
- | { [K in keyof FORM_ITEM_RENDER_TYPE_MAP]: FormOptionByRender<K, false, true> }[keyof FORM_ITEM_RENDER_TYPE_MAP]
184
- | { [K in keyof FORM_ITEM_RENDER_TYPE_MAP]: FormOptionByRender<K, true, false> }[keyof FORM_ITEM_RENDER_TYPE_MAP]
185
- | FormOptionCustomRender<false, false>
186
- | FormOptionCustomRender<false, true>
187
- | FormOptionCustomRender<true, false>;
179
+ = { [K in keyof FORM_ITEM_RENDER_TYPE_MAP]: FormOptionByRender<K, false, false> }[keyof FORM_ITEM_RENDER_TYPE_MAP]
180
+ ;
188
181
 
189
182
  /**
190
183
  * FormItemsRenderer 组件属性
@@ -52,7 +52,7 @@ export interface FORM_ITEM_RENDER_TYPE_MAP {
52
52
  textarea: TextAreaProps;
53
53
  inputNumber: InputNumberProps;
54
54
  number: InputNumberProps;
55
- INTEGER: InputNumberProps;
55
+ integer: InputNumberProps;
56
56
  select: SelectProps;
57
57
  radio: RadioProps;
58
58
  checkbox: CheckboxProps;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zy-react-library",
3
3
  "private": false,
4
- "version": "1.2.36",
4
+ "version": "1.2.37",
5
5
  "type": "module",
6
6
  "description": "",
7
7
  "author": "LiuJiaNan",