ywana-core8 0.0.978 → 0.0.980
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 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/tokenfield.js +2 -2
package/dist/index.umd.js
CHANGED
@@ -2639,6 +2639,8 @@
|
|
2639
2639
|
tokens = _ref$tokens === void 0 ? [] : _ref$tokens,
|
2640
2640
|
readOnly = _ref.readOnly,
|
2641
2641
|
options = _ref.options,
|
2642
|
+
_ref$predictive = _ref.predictive,
|
2643
|
+
predictive = _ref$predictive === void 0 ? true : _ref$predictive,
|
2642
2644
|
onChange = _ref.onChange;
|
2643
2645
|
var _useState = React.useState(),
|
2644
2646
|
value = _useState[0],
|
@@ -2702,7 +2704,7 @@
|
|
2702
2704
|
}), options ? /*#__PURE__*/React__default["default"].createElement(DropDown, {
|
2703
2705
|
onChange: changeDropDown,
|
2704
2706
|
options: sortedOptions,
|
2705
|
-
predictive:
|
2707
|
+
predictive: predictive,
|
2706
2708
|
verbose: false
|
2707
2709
|
}) : /*#__PURE__*/React__default["default"].createElement("input", {
|
2708
2710
|
type: "text",
|