tenjin-ui-kit 0.2.163 → 0.2.165
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.
|
@@ -64,6 +64,7 @@ var ReactSelect = function ReactSelect(props) {
|
|
|
64
64
|
color: isDisabled && "#000000"
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
|
+
filterSelectedOptions: true,
|
|
67
68
|
disabled: isDisabled,
|
|
68
69
|
multiple: isMulti,
|
|
69
70
|
options: options
|
|
@@ -93,6 +94,7 @@ var ReactSelect = function ReactSelect(props) {
|
|
|
93
94
|
}));
|
|
94
95
|
}
|
|
95
96
|
})), !checkBox && !blueTheme && /*#__PURE__*/_react.default.createElement(_material.Autocomplete, _extends({}, rest, {
|
|
97
|
+
filterSelectedOptions: true,
|
|
96
98
|
disabled: isDisabled,
|
|
97
99
|
multiple: isMulti,
|
|
98
100
|
options: options
|
|
@@ -158,7 +160,8 @@ var ReactSelect = function ReactSelect(props) {
|
|
|
158
160
|
}
|
|
159
161
|
}, rest, {
|
|
160
162
|
disabled: isDisabled,
|
|
161
|
-
options: options
|
|
163
|
+
options: options,
|
|
164
|
+
filterSelectedOptions: true
|
|
162
165
|
// disableCloseOnSelect
|
|
163
166
|
,
|
|
164
167
|
getOptionLabel: function getOptionLabel(option) {
|