ywana-core8 0.1.10 → 0.1.11

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.
@@ -4227,12 +4227,15 @@ var DataTableFiltersRow = function DataTableFiltersRow(_ref4) {
4227
4227
  var id = _ref5.id,
4228
4228
  filterable = _ref5.filterable,
4229
4229
  onFilter = _ref5.onFilter,
4230
+ _ref5$predictive = _ref5.predictive,
4231
+ predictive = _ref5$predictive === void 0 ? false : _ref5$predictive,
4230
4232
  options = _ref5.options;
4231
4233
  var value = form[id] ? form[id] : '';
4232
4234
  var field = options ? /*#__PURE__*/React.createElement(DropDown, {
4233
4235
  id: id,
4234
4236
  value: value,
4235
4237
  options: options,
4238
+ predictive: predictive,
4236
4239
  onChange: function onChange(id, value) {
4237
4240
  return changeFilter(id, value, onFilter);
4238
4241
  },