Compare commits

..

2 Commits

Author SHA1 Message Date
LiuJiaNan 8f0c9b9702 优化FormItemsRenderer类型 2025-11-04 16:01:59 +08:00
LiuJiaNan d73ca14438 1.0.42 2025-11-04 15:31:48 +08:00
2 changed files with 3 additions and 3 deletions

View File

@ -11,9 +11,9 @@ export interface CustomRenderProps {
/** 表单当前值 */ /** 表单当前值 */
formValues: FormValues; formValues: FormValues;
/** 字段值 */ /** 字段值 */
value?: any; value: any;
/** 值变化回调 */ /** 值变化回调 */
onChange?: (value: any) => void; onChange: (value: any) => void;
/** 其他属性 */ /** 其他属性 */
[key: string]: any; [key: string]: any;
} }

View File

@ -1,7 +1,7 @@
{ {
"name": "zy-react-library", "name": "zy-react-library",
"private": false, "private": false,
"version": "1.0.41", "version": "1.0.42",
"type": "module", "type": "module",
"description": "", "description": "",
"author": "LiuJiaNan", "author": "LiuJiaNan",