@fastspace/schema-form 0.0.10 → 0.0.14
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.
- package/dist/index.d.ts +2 -0
- package/dist/schema-form-lib.js +1280 -1235
- package/dist/schema-form-lib.umd.cjs +12 -12
- package/package.json +11 -3
package/dist/index.d.ts
CHANGED
|
@@ -232,6 +232,8 @@ export declare type FieldSchema<T extends FieldValues = FieldValues> = {
|
|
|
232
232
|
noSubmit?: boolean;
|
|
233
233
|
/** 依赖字段(用于触发重新计算/校验) */
|
|
234
234
|
dependencies?: string[];
|
|
235
|
+
/** 组件透传属性 (快捷方式,等同于 ui.props) */
|
|
236
|
+
fieldProps?: Record<string, unknown>;
|
|
235
237
|
};
|
|
236
238
|
|
|
237
239
|
/**
|