@thecb/components 4.1.9 → 4.1.10

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.js CHANGED
@@ -18907,7 +18907,7 @@ function _templateObject3$5() {
18907
18907
  }
18908
18908
 
18909
18909
  function _templateObject2$b() {
18910
- var data = _taggedTemplateLiteral(["\n transform-origin: 0 0;\n border: 1px solid ", ";\n border-radius: 2px;\n background-color: ", ";\n padding: 8px 0 8px;\n position: absolute;\n width: 100%;\n max-height: ", ";\n overflow-y: scroll;\n z-index: 1;\n box-sizing: border-box;\n &:focus {\n outline: none;\n }\n"]);
18910
+ var data = _taggedTemplateLiteral(["\n transform-origin: 0 0;\n border: 1px solid ", ";\n border-radius: 2px;\n background-color: ", ";\n padding: 8px 0 8px;\n position: absolute;\n width: ", ";\n min-width: 100%;\n max-height: ", ";\n overflow-y: scroll;\n z-index: 1;\n box-sizing: border-box;\n &:focus {\n outline: none;\n }\n"]);
18911
18911
 
18912
18912
  _templateObject2$b = function _templateObject2() {
18913
18913
  return data;
@@ -18917,7 +18917,7 @@ function _templateObject2$b() {
18917
18917
  }
18918
18918
 
18919
18919
  function _templateObject$n() {
18920
- var data = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n transition: transform 0.3s ease;\n ", "\n"]);
18920
+ var data = _taggedTemplateLiteral(["\n display: flex;\n padding-left: 8px;\n flex-direction: column;\n justify-content: center;\n transition: transform 0.3s ease;\n ", "\n"]);
18921
18921
 
18922
18922
  _templateObject$n = function _templateObject() {
18923
18923
  return data;
@@ -18930,47 +18930,52 @@ var IconWrapper = styled__default.div(_templateObject$n(), function (_ref) {
18930
18930
  return open ? "transform: rotate(-180deg)" : "";
18931
18931
  });
18932
18932
  var DropdownContentWrapper = styled__default.div(_templateObject2$b(), GREY_CHATEAU, WHITE, function (_ref2) {
18933
- var maxHeight = _ref2.maxHeight;
18933
+ var widthFitOptions = _ref2.widthFitOptions;
18934
+ return widthFitOptions ? "fit-content" : "100%";
18935
+ }, function (_ref3) {
18936
+ var maxHeight = _ref3.maxHeight;
18934
18937
  return maxHeight || "400px";
18935
18938
  });
18936
- var DropdownItemWrapper = styled__default.div(_templateObject3$5(), function (_ref3) {
18937
- var selected = _ref3.selected,
18938
- themeValues = _ref3.themeValues;
18939
+ var DropdownItemWrapper = styled__default.div(_templateObject3$5(), function (_ref4) {
18940
+ var selected = _ref4.selected,
18941
+ themeValues = _ref4.themeValues;
18939
18942
  return selected ? themeValues.selectedColor : WHITE;
18940
- }, function (_ref4) {
18941
- var disabled = _ref4.disabled;
18942
- return disabled ? "default" : "pointer";
18943
18943
  }, function (_ref5) {
18944
- var selected = _ref5.selected,
18945
- disabled = _ref5.disabled,
18946
- themeValues = _ref5.themeValues;
18947
- return selected ? themeValues.selectedColor : disabled ? WHITE : themeValues.hoverColor;
18944
+ var disabled = _ref5.disabled;
18945
+ return disabled ? "default" : "pointer";
18948
18946
  }, function (_ref6) {
18949
18947
  var selected = _ref6.selected,
18950
18948
  disabled = _ref6.disabled,
18951
18949
  themeValues = _ref6.themeValues;
18952
18950
  return selected ? themeValues.selectedColor : disabled ? WHITE : themeValues.hoverColor;
18951
+ }, function (_ref7) {
18952
+ var selected = _ref7.selected,
18953
+ disabled = _ref7.disabled,
18954
+ themeValues = _ref7.themeValues;
18955
+ return selected ? themeValues.selectedColor : disabled ? WHITE : themeValues.hoverColor;
18953
18956
  });
18954
- var SearchInput = styled__default.input(_templateObject4$2(), function (_ref7) {
18955
- var themeValues = _ref7.themeValues;
18957
+ var SearchInput = styled__default.input(_templateObject4$2(), function (_ref8) {
18958
+ var themeValues = _ref8.themeValues;
18956
18959
  return themeValues.hoverColor && themeValues.hoverColor;
18957
18960
  });
18958
18961
 
18959
- var Dropdown = function Dropdown(_ref8) {
18962
+ var Dropdown = function Dropdown(_ref9) {
18960
18963
  var _options$find;
18961
18964
 
18962
- var placeholder = _ref8.placeholder,
18963
- options = _ref8.options,
18964
- value = _ref8.value,
18965
- isOpen = _ref8.isOpen,
18966
- isError = _ref8.isError,
18967
- onSelect = _ref8.onSelect,
18968
- _ref8$disabledValues = _ref8.disabledValues,
18969
- disabledValues = _ref8$disabledValues === void 0 ? [] : _ref8$disabledValues,
18970
- _ref8$onClick = _ref8.onClick,
18971
- onClick = _ref8$onClick === void 0 ? noop : _ref8$onClick,
18972
- themeValues = _ref8.themeValues,
18973
- maxHeight = _ref8.maxHeight;
18965
+ var placeholder = _ref9.placeholder,
18966
+ options = _ref9.options,
18967
+ value = _ref9.value,
18968
+ isOpen = _ref9.isOpen,
18969
+ isError = _ref9.isError,
18970
+ onSelect = _ref9.onSelect,
18971
+ _ref9$disabledValues = _ref9.disabledValues,
18972
+ disabledValues = _ref9$disabledValues === void 0 ? [] : _ref9$disabledValues,
18973
+ _ref9$onClick = _ref9.onClick,
18974
+ onClick = _ref9$onClick === void 0 ? noop : _ref9$onClick,
18975
+ themeValues = _ref9.themeValues,
18976
+ maxHeight = _ref9.maxHeight,
18977
+ _ref9$widthFitOptions = _ref9.widthFitOptions,
18978
+ widthFitOptions = _ref9$widthFitOptions === void 0 ? false : _ref9$widthFitOptions;
18974
18979
 
18975
18980
  var _useState = React.useState(""),
18976
18981
  _useState2 = _slicedToArray(_useState, 2),
@@ -19066,7 +19071,7 @@ var Dropdown = function Dropdown(_ref8) {
19066
19071
  break;
19067
19072
  }
19068
19073
 
19069
- if (keyCode > 64 && keyCode < 91 || keyCode == 32) {
19074
+ if (keyCode > 64 && keyCode < 91 || keyCode == 32 || keyCode == 189) {
19070
19075
  e.preventDefault();
19071
19076
  setInputValue(inputValue + key);
19072
19077
  }
@@ -19137,6 +19142,7 @@ var Dropdown = function Dropdown(_ref8) {
19137
19142
  maxHeight: maxHeight,
19138
19143
  open: isOpen,
19139
19144
  ref: dropdownRef,
19145
+ widthFitOptions: widthFitOptions,
19140
19146
  tabIndex: 0
19141
19147
  }, /*#__PURE__*/React__default.createElement(Stack, {
19142
19148
  childGap: "0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "4.1.9",
3
+ "version": "4.1.10",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -17,6 +17,7 @@ import { themeComponent } from "../../../util/themeUtils";
17
17
 
18
18
  const IconWrapper = styled.div`
19
19
  display: flex;
20
+ padding-left: 8px;
20
21
  flex-direction: column;
21
22
  justify-content: center;
22
23
  transition: transform 0.3s ease;
@@ -30,7 +31,8 @@ const DropdownContentWrapper = styled.div`
30
31
  background-color: ${WHITE};
31
32
  padding: 8px 0 8px;
32
33
  position: absolute;
33
- width: 100%;
34
+ width: ${({ widthFitOptions }) => (widthFitOptions ? "fit-content" : "100%")};
35
+ min-width: 100%;
34
36
  max-height: ${({ maxHeight }) => maxHeight || "400px"};
35
37
  overflow-y: scroll;
36
38
  z-index: 1;
@@ -89,7 +91,8 @@ const Dropdown = ({
89
91
  disabledValues = [],
90
92
  onClick = noop,
91
93
  themeValues,
92
- maxHeight
94
+ maxHeight,
95
+ widthFitOptions = false
93
96
  }) => {
94
97
  const [inputValue, setInputValue] = useState("");
95
98
  const [optionsState, setOptionsState] = useState([]);
@@ -151,7 +154,7 @@ const Dropdown = ({
151
154
  setInputValue(inputValue.slice(0, -1));
152
155
  break;
153
156
  }
154
- if ((keyCode > 64 && keyCode < 91) || keyCode == 32) {
157
+ if ((keyCode > 64 && keyCode < 91) || keyCode == 32 || keyCode == 189) {
155
158
  e.preventDefault();
156
159
  setInputValue(inputValue + key);
157
160
  }
@@ -247,6 +250,7 @@ const Dropdown = ({
247
250
  maxHeight={maxHeight}
248
251
  open={isOpen}
249
252
  ref={dropdownRef}
253
+ widthFitOptions={widthFitOptions}
250
254
  tabIndex={0}
251
255
  >
252
256
  <Stack childGap="0">