ods-component-lib 1.18.122 → 1.18.124

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 CHANGED
@@ -34265,7 +34265,7 @@ var OdsBasicDataGrid = function OdsBasicDataGrid(props) {
34265
34265
  localStorage.setItem(props.exportFileName + "Storage", JSON.stringify(state));
34266
34266
  }, [props.filterEnabledShow]);
34267
34267
  var onEditorPrepared = React.useCallback(function (info) {
34268
- if (info.parentType === "filterRow" && info.editorName === "dxSelectBox" && info.dataField === "IsActive") {
34268
+ if (info.parentType === "filterRow" && info.editorName === "dxSelectBox" && (info.dataField === "IsActive" || info.dataField === "isActive")) {
34269
34269
  if (info.dataSource != null && info.dataSource.length > 0) {
34270
34270
  info.showAllText = info.dataSource.find(function (i) {
34271
34271
  return i.value === null;
@@ -34629,9 +34629,6 @@ var OdsBasicDataGrid = function OdsBasicDataGrid(props) {
34629
34629
  columnResizingMode: "nextColumn",
34630
34630
  showRowLines: true,
34631
34631
  allowColumnReordering: true,
34632
- scrolling: {
34633
- useNative: true
34634
- },
34635
34632
  remoteOperations: false,
34636
34633
  paging: {
34637
34634
  enabled: false
@@ -34666,7 +34663,7 @@ var OdsBasicDataGrid = function OdsBasicDataGrid(props) {
34666
34663
  }, col, {
34667
34664
  minWidth: 50,
34668
34665
  cssClass: col.cssClass + " " + (hasFastUpdate ? "grid-cell-disable-text-selection" : "")
34669
- }), col.lookUp && React__default.createElement(devextremeReact.Lookup, Object.assign({}, col.lookUp)), col.dataField === "IsActive" && React__default.createElement(DataGrid.HeaderFilter, {
34666
+ }), col.lookUp && React__default.createElement(devextremeReact.Lookup, Object.assign({}, col.lookUp)), (col.dataField === "IsActive" || col.dataField === "isActive") && React__default.createElement(DataGrid.HeaderFilter, {
34670
34667
  dataSource: [{
34671
34668
  text: "Active",
34672
34669
  value: true
@@ -34732,11 +34729,7 @@ var OdsBasicDataGrid = function OdsBasicDataGrid(props) {
34732
34729
  showNavigationButtons: false,
34733
34730
  showInfo: false
34734
34731
  }), React__default.createElement(DataGrid.Scrolling, {
34735
- showScrollbar: "always",
34736
- scrollByContent: true,
34737
- scrollByThumb: true,
34738
- mode: "virtual",
34739
- rowRenderingMode: "virtual"
34732
+ mode: "infinite"
34740
34733
  }), loading && React__default.createElement(DataGrid.LoadPanel, {
34741
34734
  enabled: true,
34742
34735
  shadingColor: "rgba(0,0,0,0.4)"