elab_components 0.8.71 → 0.8.75
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.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -33261,7 +33261,7 @@ var OkGrid = function (_a) {
|
|
|
33261
33261
|
var memoizedColumns = useMemo(function () {
|
|
33262
33262
|
return columns.map(function (col, index) { return (React__default.createElement(GridColumn, { key: col.field || index, filterable: col.filterable, resizable: col.field === '-' || col.field === '' || col.field === 'selected'
|
|
33263
33263
|
? false
|
|
33264
|
-
: true, editable: col === null || col === void 0 ? void 0 : col.editable, field: col.field, title: col.title, format: col.format, cells: { data: function (props) { return getCellComponent(props, col); } }, width: col.width, headerSelectionValue: col.headerSelectionValue, editor: col.editor })); });
|
|
33264
|
+
: true, editable: col === null || col === void 0 ? void 0 : col.editable, field: col.field, title: col.title, format: col.format, footerCell: col.footerCell, cells: { data: function (props) { return getCellComponent(props, col); } }, width: col.width, headerSelectionValue: col.headerSelectionValue, editor: col.editor })); });
|
|
33265
33265
|
}, [columns, getCellComponent]);
|
|
33266
33266
|
// useEffect(() => {
|
|
33267
33267
|
// const pageCount = (page.take + page.skip) / page.take;
|
package/dist/index.js
CHANGED
|
@@ -33289,7 +33289,7 @@ var OkGrid = function (_a) {
|
|
|
33289
33289
|
var memoizedColumns = React.useMemo(function () {
|
|
33290
33290
|
return columns.map(function (col, index) { return (React__default["default"].createElement(kendoReactGrid.GridColumn, { key: col.field || index, filterable: col.filterable, resizable: col.field === '-' || col.field === '' || col.field === 'selected'
|
|
33291
33291
|
? false
|
|
33292
|
-
: true, editable: col === null || col === void 0 ? void 0 : col.editable, field: col.field, title: col.title, format: col.format, cells: { data: function (props) { return getCellComponent(props, col); } }, width: col.width, headerSelectionValue: col.headerSelectionValue, editor: col.editor })); });
|
|
33292
|
+
: true, editable: col === null || col === void 0 ? void 0 : col.editable, field: col.field, title: col.title, format: col.format, footerCell: col.footerCell, cells: { data: function (props) { return getCellComponent(props, col); } }, width: col.width, headerSelectionValue: col.headerSelectionValue, editor: col.editor })); });
|
|
33293
33293
|
}, [columns, getCellComponent]);
|
|
33294
33294
|
// useEffect(() => {
|
|
33295
33295
|
// const pageCount = (page.take + page.skip) / page.take;
|