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.
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -0
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/table.js +2 -3
package/dist/index.cjs
CHANGED
@@ -4236,12 +4236,15 @@ var DataTableFiltersRow = function DataTableFiltersRow(_ref4) {
|
|
4236
4236
|
var id = _ref5.id,
|
4237
4237
|
filterable = _ref5.filterable,
|
4238
4238
|
onFilter = _ref5.onFilter,
|
4239
|
+
_ref5$predictive = _ref5.predictive,
|
4240
|
+
predictive = _ref5$predictive === void 0 ? false : _ref5$predictive,
|
4239
4241
|
options = _ref5.options;
|
4240
4242
|
var value = form[id] ? form[id] : '';
|
4241
4243
|
var field = options ? /*#__PURE__*/React__default["default"].createElement(DropDown, {
|
4242
4244
|
id: id,
|
4243
4245
|
value: value,
|
4244
4246
|
options: options,
|
4247
|
+
predictive: predictive,
|
4245
4248
|
onChange: function onChange(id, value) {
|
4246
4249
|
return changeFilter(id, value, onFilter);
|
4247
4250
|
},
|