@commonsku/styles 1.17.25 → 1.17.26
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.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles/Popup.d.ts +2 -2
- package/dist/styles/Popup.d.ts.map +1 -1
- package/dist/styles/tables/VirtualTable.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -7316,7 +7316,7 @@ function InputStepper(props) {
|
|
|
7316
7316
|
var templateObject_1$c, templateObject_2$1, templateObject_3, templateObject_4;
|
|
7317
7317
|
|
|
7318
7318
|
var VirtualTable = function (props) {
|
|
7319
|
-
var columns = props.columns, data = props.data, itemSize = props.itemSize, _a = props.height, height = _a === void 0 ? 500 : _a, _b = props.minWidth, minWidth = _b === void 0 ? 140 : _b, _c = props.maxWidth, maxWidth = _c === void 0 ? 500 : _c, defaultSort = props.defaultSort, onClickRow = props.onClickRow, onScroll = props.onScroll, onUpdateData = props.onUpdateData, _d = props.useTableProps, useTableProps = _d === void 0 ? {} : _d, _e = props.tableHeaderProps, tableHeaderProps = _e === void 0 ? {} : _e, _f = props.tableFooterProps, tableFooterProps = _f === void 0 ? {} : _f, _g = props.hideFooter, hideFooter = _g === void 0 ? true : _g, _h = props.hideHeader, hideHeader = _h === void 0 ? false : _h, _j = props.className, className = _j === void 0 ?
|
|
7319
|
+
var columns = props.columns, data = props.data, itemSize = props.itemSize, _a = props.height, height = _a === void 0 ? 500 : _a, _b = props.minWidth, minWidth = _b === void 0 ? 140 : _b, _c = props.maxWidth, maxWidth = _c === void 0 ? 500 : _c, defaultSort = props.defaultSort, onClickRow = props.onClickRow, onScroll = props.onScroll, onUpdateData = props.onUpdateData, _d = props.useTableProps, useTableProps = _d === void 0 ? {} : _d, _e = props.tableHeaderProps, tableHeaderProps = _e === void 0 ? {} : _e, _f = props.tableFooterProps, tableFooterProps = _f === void 0 ? {} : _f, _g = props.hideFooter, hideFooter = _g === void 0 ? true : _g, _h = props.hideHeader, hideHeader = _h === void 0 ? false : _h, _j = props.className, className = _j === void 0 ? "" : _j, NoRowsFound = props.NoRowsFound, renderRowSubComponent = props.renderRowSubComponent; props.onResize; var rowGroupStyles = props.rowGroupStyles, rowStyles = props.rowStyles, _k = props.gutterSize, gutterSize = _k === void 0 ? 0 : _k, _l = props.customTableFooterProps, customTableFooterProps = _l === void 0 ? {} : _l, TableFooter = props.TableFooter, onSortChange = props.onSortChange;
|
|
7320
7320
|
var defaultColumn = React.useMemo(function () { return ({
|
|
7321
7321
|
minWidth: minWidth,
|
|
7322
7322
|
maxWidth: maxWidth,
|
|
@@ -7444,6 +7444,12 @@ var VirtualTable = function (props) {
|
|
|
7444
7444
|
React.useEffect(function () {
|
|
7445
7445
|
onSortChange && onSortChange({ sortBy: sortBy });
|
|
7446
7446
|
}, [sortBy]);
|
|
7447
|
+
var scrollToTop = React.useCallback(function () {
|
|
7448
|
+
listRef.current && listRef.current.scrollTo(0);
|
|
7449
|
+
}, []);
|
|
7450
|
+
React.useEffect(function () {
|
|
7451
|
+
scrollToTop();
|
|
7452
|
+
}, [data, scrollToTop]);
|
|
7447
7453
|
return (React__default.default.createElement("div", __assign({}, getTableProps(), { className: "table ".concat(className || '') }),
|
|
7448
7454
|
renderTableHeader(),
|
|
7449
7455
|
React__default.default.createElement("div", __assign({ className: "tbody" }, getTableBodyProps()), rows.length === 0 && NoRowsFound ? React__default.default.createElement(NoRowsFound, null) :
|