aefis-core-ui 2.4.0-rc13 → 2.4.0-rc14
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/index.modern.js +13 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -20832,7 +20832,19 @@ const RichDataTable$1 = /*#__PURE__*/forwardRef(function RichDatatable(props, re
|
|
|
20832
20832
|
setSelectedRowCount,
|
|
20833
20833
|
setFilterPanelState,
|
|
20834
20834
|
toggleDrawer,
|
|
20835
|
-
clearSelections: () => DataTableRef.current.clearSelections()
|
|
20835
|
+
clearSelections: () => DataTableRef.current.clearSelections(),
|
|
20836
|
+
checkSelectedRow: id => {
|
|
20837
|
+
DataTableRef.current.checkSelectedRow(id);
|
|
20838
|
+
},
|
|
20839
|
+
unCheckSelectedRow: id => {
|
|
20840
|
+
DataTableRef.current.unCheckSelectedRow(id);
|
|
20841
|
+
},
|
|
20842
|
+
highlightRow: id => {
|
|
20843
|
+
DataTableRef.current.highlightRow(id);
|
|
20844
|
+
},
|
|
20845
|
+
unHighlightRows: () => {
|
|
20846
|
+
DataTableRef.current.unHighlightRows();
|
|
20847
|
+
}
|
|
20836
20848
|
}));
|
|
20837
20849
|
const isFilterPanelEnabled = ((_props$filterPanelCon = props.filterPanelConfig) == null ? void 0 : _props$filterPanelCon.length) > 0 || props.showFilterPanelSearch;
|
|
20838
20850
|
return /*#__PURE__*/jsxs("div", {
|