@royaloperahouse/chord 2.2.10-c-chord-development → 2.2.10-d-chord-development
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.
|
@@ -8774,6 +8774,8 @@ var SelectComponent = function SelectComponent(_ref2) {
|
|
|
8774
8774
|
width = _ref2.width,
|
|
8775
8775
|
_ref2$darkMode = _ref2.darkMode,
|
|
8776
8776
|
darkMode = _ref2$darkMode === void 0 ? false : _ref2$darkMode,
|
|
8777
|
+
_ref2$isSearchable = _ref2.isSearchable,
|
|
8778
|
+
isSearchable = _ref2$isSearchable === void 0 ? false : _ref2$isSearchable,
|
|
8777
8779
|
components = _ref2.components,
|
|
8778
8780
|
selectProps = _objectWithoutPropertiesLoose(_ref2, ["label", "error", "width", "darkMode", "isSearchable", "components"]);
|
|
8779
8781
|
|
|
@@ -8790,7 +8792,7 @@ var SelectComponent = function SelectComponent(_ref2) {
|
|
|
8790
8792
|
}, components),
|
|
8791
8793
|
className: "chord-select-container",
|
|
8792
8794
|
classNamePrefix: "chord-select",
|
|
8793
|
-
isSearchable:
|
|
8795
|
+
isSearchable: isSearchable
|
|
8794
8796
|
})));
|
|
8795
8797
|
};
|
|
8796
8798
|
|