@arim-aisdc/public-components 2.3.66 → 2.3.67
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.
|
@@ -17,7 +17,7 @@ export declare const foramtBaseInfoField: (data: any, dataField: BaseInfoFieldTy
|
|
|
17
17
|
value: any;
|
|
18
18
|
field: string;
|
|
19
19
|
label?: string;
|
|
20
|
-
text: string | Element |
|
|
20
|
+
text: string | JSX.Element | Element;
|
|
21
21
|
units?: string;
|
|
22
22
|
width?: string;
|
|
23
23
|
labelWidth?: string;
|
|
@@ -1306,17 +1306,14 @@ var TableMax = function TableMax(_ref) {
|
|
|
1306
1306
|
width: "100%"
|
|
1307
1307
|
},
|
|
1308
1308
|
onMouseEnter: function onMouseEnter() {
|
|
1309
|
-
var _tableBodyRef$current
|
|
1309
|
+
var _tableBodyRef$current;
|
|
1310
1310
|
// 给当前元素添加hover类
|
|
1311
|
-
|
|
1312
|
-
var _tableBodyRef$current3;
|
|
1313
|
-
(_tableBodyRef$current3 = tableBodyRef.current) === null || _tableBodyRef$current3 === void 0 || _tableBodyRef$current3.classList.add('hover-active');
|
|
1314
|
-
}
|
|
1311
|
+
(_tableBodyRef$current = tableBodyRef.current) === null || _tableBodyRef$current === void 0 || _tableBodyRef$current.classList.add('hover-active');
|
|
1315
1312
|
},
|
|
1316
1313
|
onMouseLeave: function onMouseLeave() {
|
|
1317
|
-
var _tableBodyRef$
|
|
1314
|
+
var _tableBodyRef$current2;
|
|
1318
1315
|
// 移除当前元素的hover类
|
|
1319
|
-
(_tableBodyRef$
|
|
1316
|
+
(_tableBodyRef$current2 = tableBodyRef.current) === null || _tableBodyRef$current2 === void 0 || _tableBodyRef$current2.classList.remove('hover-active');
|
|
1320
1317
|
},
|
|
1321
1318
|
children: /*#__PURE__*/_jsx(UnifiedTable, {
|
|
1322
1319
|
tableId: tableId,
|