zy-react-library 1.0.124 → 1.0.126

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.
@@ -172,10 +172,10 @@ const FormItemsRenderer = ({
172
172
 
173
173
  switch (render) {
174
174
  case FORM_ITEM_RENDER_ENUM.INPUT:
175
- return <Input placeholder={placeholder} max={50} {...componentProps} />;
175
+ return <Input placeholder={placeholder} maxLength={50} {...componentProps} />;
176
176
 
177
177
  case FORM_ITEM_RENDER_ENUM.TEXTAREA:
178
- return <TextArea placeholder={placeholder} max={500} showCount={true} rows={3} {...componentProps} />;
178
+ return <TextArea placeholder={placeholder} maxLength={500} showCount={true} rows={3} {...componentProps} />;
179
179
 
180
180
  case FORM_ITEM_RENDER_ENUM.INPUT_NUMBER:
181
181
  case FORM_ITEM_RENDER_ENUM.NUMBER:
@@ -77,6 +77,7 @@ export const UPLOAD_FILE_TYPE_ENUM = {
77
77
  146: 146, // safety_environmental_inspection_acceptance - 安全环保检查-验收
78
78
  145: 145, // qualified_list_inspection - 清单检查合格
79
79
  147: 147, // hidden_qualified_listInspection_signature - 隐患清单排查签字
80
+ 148: 148, // application_for_admission_qualification - 准入资质申请
80
81
  };
81
82
 
82
83
  /**
@@ -155,4 +156,5 @@ export const UPLOAD_FILE_PATH_ENUM = {
155
156
  145: "qualified_list_inspection",
156
157
  146: "safety_environmental_inspection_acceptance",
157
158
  147: "hidden_qualified_listInspection_signature",
159
+ 148: "application_for_admission_qualification",
158
160
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zy-react-library",
3
3
  "private": false,
4
- "version": "1.0.124",
4
+ "version": "1.0.126",
5
5
  "type": "module",
6
6
  "description": "",
7
7
  "author": "LiuJiaNan",