@icos-desktop/react-components 2.2.0 → 2.2.2
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 +19 -0
- package/dist/icos-desktop.js +86 -3866
- package/dist/icos-desktop.umd.cjs +1 -1
- package/package.json +140 -140
package/dist/icos-desktop.d.ts
CHANGED
@@ -258,6 +258,11 @@ interface BookTableProps extends TableProps {
|
|
258
258
|
* @param record
|
259
259
|
*/
|
260
260
|
onAttribute?: (record: any) => void;
|
261
|
+
/**
|
262
|
+
* 台账共享
|
263
|
+
* @param record
|
264
|
+
*/
|
265
|
+
onShare?: (record: any) => void;
|
261
266
|
}
|
262
267
|
interface BookTableRef {
|
263
268
|
/**
|
@@ -742,6 +747,10 @@ interface SenseFullTableProps {
|
|
742
747
|
* 显示导入数据按钮,为`true`时默认打开台账组导入,可按视图配置对应为台账导入/台账组导入,例如:`{ viewCode: 'book | bookGroup' }`
|
743
748
|
*/
|
744
749
|
showImportButton?: boolean | Record<string, 'book' | 'bookGroup'>;
|
750
|
+
/**
|
751
|
+
* 导入按钮显示弹窗提示
|
752
|
+
*/
|
753
|
+
importButtonTips?: string;
|
745
754
|
/**
|
746
755
|
* 台账组功能导入数据隐藏根据地理层级自动匹配,可按视图配置,例如:`{ viewCode: true }`
|
747
756
|
*/
|
@@ -825,6 +834,11 @@ interface SenseFullTableProps {
|
|
825
834
|
* @param record
|
826
835
|
*/
|
827
836
|
onBookAttribute?: (record: any) => void;
|
837
|
+
/**
|
838
|
+
* 台账共享
|
839
|
+
* @param record
|
840
|
+
*/
|
841
|
+
onBookShare?: (record: any) => void;
|
828
842
|
}
|
829
843
|
interface SenseFullTableRef {
|
830
844
|
/**
|
@@ -947,6 +961,11 @@ interface SenseManagerProps {
|
|
947
961
|
* @param record
|
948
962
|
*/
|
949
963
|
onBookAttribute?: (record: any) => void;
|
964
|
+
/**
|
965
|
+
* 台账共享
|
966
|
+
* @param record
|
967
|
+
*/
|
968
|
+
onBookShare?: (record: any) => void;
|
950
969
|
}
|
951
970
|
|
952
971
|
declare const SenseManager: React.FC<SenseManagerProps>;
|