@icos-desktop/react-components 1.2.0-beta.10 → 1.2.0-beta.11

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.
@@ -251,11 +251,21 @@ declare const CcosSenseEdit: {
251
251
 
252
252
  interface SenseFormProps {
253
253
  /**
254
- * 实体信息
254
+ * 数据
255
255
  */
256
256
  data: string;
257
+ /**
258
+ * schema
259
+ */
257
260
  schemaJSON: string;
258
- readonlyList: string[];
261
+ /**
262
+ * 只读列表
263
+ */
264
+ readonlyList?: string[];
265
+ /**
266
+ * 是否禁用(初次渲染时生效)
267
+ */
268
+ disabled?: boolean;
259
269
  }
260
270
  interface SenseFormRef {
261
271
  getValues: () => Promise<any>;