ywana-core8 0.0.160 → 0.0.161

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.
@@ -2950,7 +2950,9 @@ var StringEditor = function StringEditor(_ref6) {
2950
2950
  label = field.label,
2951
2951
  options = field.options,
2952
2952
  _field$editable = field.editable,
2953
- editable = _field$editable === void 0 ? true : _field$editable;
2953
+ editable = _field$editable === void 0 ? true : _field$editable,
2954
+ _field$predictive = field.predictive,
2955
+ predictive = _field$predictive === void 0 ? false : _field$predictive;
2954
2956
 
2955
2957
  function change(id, value) {
2956
2958
  if (onChange) onChange(id, value);
@@ -2979,7 +2981,7 @@ var StringEditor = function StringEditor(_ref6) {
2979
2981
  onChange: change,
2980
2982
  options: buildOptions(),
2981
2983
  readOnly: !editable,
2982
- canFilter: false
2984
+ canFilter: predictive
2983
2985
  }) : /*#__PURE__*/React.createElement(TextField, {
2984
2986
  outlined: outlined,
2985
2987
  id: id,