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.
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentEditor.js +2 -2
package/dist/index.modern.js
CHANGED
@@ -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:
|
2984
|
+
canFilter: predictive
|
2983
2985
|
}) : /*#__PURE__*/React.createElement(TextField, {
|
2984
2986
|
outlined: outlined,
|
2985
2987
|
id: id,
|