@icos-desktop/react-components 1.2.0-beta.9 → 1.2.0

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>;
@@ -279,6 +289,10 @@ interface SenseImportProps {
279
289
  * 台账组编码
280
290
  */
281
291
  bookGroupId: string;
292
+ /**
293
+ * 隐藏根据地址自动匹配
294
+ */
295
+ hiddenGeolevel?: boolean;
282
296
  /**
283
297
  * 确定按钮文字
284
298
  */
@@ -357,6 +371,10 @@ interface SenseManagerProps {
357
371
  * @description 默认打开台账组导入,可按视图配置对应为台账导入/台账组导入
358
372
  */
359
373
  showImportButton?: boolean | Record<string, 'book' | 'bookGroup'>;
374
+ /**
375
+ * 台账组功能导入数据隐藏根据地理层级自动匹配
376
+ */
377
+ importHiddenGeolevel?: boolean | Record<string, boolean>;
360
378
  /**
361
379
  * 台账功能
362
380
  */