@oliasoft-open-source/react-ui-library 5.8.0-beta-4 → 5.8.0-beta-6
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.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3656,8 +3656,8 @@ const Cell = ({ cell: e, isHeader: t, columnHeaderAlignment: n, columnAlignment:
|
|
|
3656
3656
|
var ScrollToActiveRow = ({ activeIndex: e, triggerScrollToActiveRow: t, isVirtualized: n, virtualizer: r }) => (useEffect(() => {
|
|
3657
3657
|
if (t && !(e == null || e < 0)) {
|
|
3658
3658
|
if (n && r) r.scrollToIndex(e, {
|
|
3659
|
-
|
|
3660
|
-
|
|
3659
|
+
behavior: "auto",
|
|
3660
|
+
align: "center"
|
|
3661
3661
|
});
|
|
3662
3662
|
else if (!n) {
|
|
3663
3663
|
let t = document.querySelector(`tr[data-index="${e}"]`);
|
package/package.json
CHANGED