@icos-desktop/react-components 2.0.27 → 2.0.29
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/icos-desktop.d.ts +12 -0
- package/dist/icos-desktop.js +125 -60
- package/dist/icos-desktop.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/icos-desktop.d.ts
CHANGED
@@ -771,6 +771,14 @@ interface SenseFullTableProps {
|
|
771
771
|
* 地理层级路径节点id,实体记录所属地理层级路径只要包含此值即返回,`leftRegionId`无值时有效
|
772
772
|
*/
|
773
773
|
pathRegionId?: string;
|
774
|
+
/**
|
775
|
+
* 扩展筛选字段
|
776
|
+
* @param filterConfig
|
777
|
+
*/
|
778
|
+
extendFilter?: (filterConfig: {
|
779
|
+
filterItems: any[];
|
780
|
+
tagValues: any[];
|
781
|
+
}) => any;
|
774
782
|
/**
|
775
783
|
* 新建对象
|
776
784
|
* @param record
|
@@ -1034,6 +1042,10 @@ interface SenseTableProps extends TableProps {
|
|
1034
1042
|
* 启用标签
|
1035
1043
|
*/
|
1036
1044
|
enableTag?: boolean | 'edit';
|
1045
|
+
/**
|
1046
|
+
* 获取写权限数据
|
1047
|
+
*/
|
1048
|
+
writeAuth?: boolean;
|
1037
1049
|
/**
|
1038
1050
|
* 单击实体
|
1039
1051
|
* @param record
|