@easydata/crud 1.4.2-rc01 → 1.4.2

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.
@@ -3117,7 +3117,7 @@ var text_data_filter_TextDataFilter = /** @class */ (function () {
3117
3117
  }
3118
3118
  var words = _this.filterValue.split('||').map(function (w) { return w.trim().toLowerCase(); });
3119
3119
  var suitableColumns = _this.sourceTable.columns.getItems()
3120
- .filter(function (col) { return utils_utils.isIntType(col.type)
3120
+ .filter(function (col) { return utils_utils.isNumericType(col.type)
3121
3121
  || utils_utils.getStringDataTypes().indexOf(col.type) >= 0; });
3122
3122
  var hasEnterance = function (row) {
3123
3123
  for (var _i = 0, suitableColumns_1 = suitableColumns; _i < suitableColumns_1.length; _i++) {
@@ -3749,6 +3749,10 @@ var DomSelectElementBuilder = /** @class */ (function (_super) {
3749
3749
  this.element.appendChild(option);
3750
3750
  return this;
3751
3751
  };
3752
+ DomSelectElementBuilder.prototype.value = function (value) {
3753
+ this.element.value = value;
3754
+ return this;
3755
+ };
3752
3756
  return DomSelectElementBuilder;
3753
3757
  }(DomElementBuilder));
3754
3758
 
@@ -7148,7 +7152,7 @@ var text_filter_widget_TextFilterWidget = /** @class */ (function () {
7148
7152
  }
7149
7153
  };
7150
7154
  TextFilterWidget.prototype.highlightCellRenderer = function (defaultRenderer, value, column, cellElement, rowElement) {
7151
- if (utils_utils.isIntType(column.type)
7155
+ if (utils_utils.isNumericType(column.type)
7152
7156
  || utils_utils.getStringDataTypes().indexOf(column.type) >= 0) {
7153
7157
  if (value) {
7154
7158
  if (column.dataColumn && column.dataColumn.displayFormat
@@ -7526,6 +7530,7 @@ var entity_form_builder_EntityEditFormBuilder = /** @class */ (function () {
7526
7530
  });
7527
7531
  }
7528
7532
  }
7533
+ b.value(value);
7529
7534
  }); });
7530
7535
  };
7531
7536
  EntityEditFormBuilder.prototype.setupFileField = function (parent, attr, readOnly, accept) {