@luminati-io/uikit 3.2.11-beta.0 → 3.2.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -36849,8 +36849,10 @@ __webpack_require__.r(__webpack_exports__);
36849
36849
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
36850
36850
  /* harmony export */ buildComponents: () => (/* binding */ buildComponents)
36851
36851
  /* harmony export */ });
36852
- /* harmony import */ var _option__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./option */ "./src/input/checkbox_list/option.js");
36853
- /* harmony import */ var _util_virtualized_list__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../util/virtualized_list */ "./src/util/virtualized_list.js");
36852
+ /* harmony import */ var _util_virtualized_list__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../util/virtualized_list */ "./src/util/virtualized_list.js");
36853
+ /* harmony import */ var _dropdown_clear_indicator__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../dropdown/clear_indicator */ "./src/input/dropdown/clear_indicator.js");
36854
+ /* harmony import */ var _dropdown_value_container__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../dropdown/value_container */ "./src/input/dropdown/value_container.js");
36855
+ /* harmony import */ var _option__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./option */ "./src/input/checkbox_list/option.js");
36854
36856
  // LICENSE_CODE ZON
36855
36857
 
36856
36858
 
@@ -36863,20 +36865,24 @@ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _ty
36863
36865
  function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
36864
36866
 
36865
36867
 
36868
+
36869
+
36866
36870
  var buildComponents = function buildComponents(props) {
36867
36871
  var components = _objectSpread({
36868
36872
  IndicatorSeparator: null,
36869
36873
  DropdownIndicator: null,
36870
- Option: _option__WEBPACK_IMPORTED_MODULE_0__.Option
36874
+ ClearIndicator: _dropdown_clear_indicator__WEBPACK_IMPORTED_MODULE_1__.ClearIndicator,
36875
+ Option: _option__WEBPACK_IMPORTED_MODULE_3__.Option
36871
36876
  }, props.components);
36872
- if (props.virtualized) {
36873
- components.MenuList = (0,_util_virtualized_list__WEBPACK_IMPORTED_MODULE_1__.VirtualizedListFactory)({
36877
+ if (props.virtualized && components.MenuList === undefined) {
36878
+ components.MenuList = (0,_util_virtualized_list__WEBPACK_IMPORTED_MODULE_0__.VirtualizedListFactory)({
36874
36879
  optionHeight: props.optionHeight,
36875
36880
  defaultValue: props.defaultValue,
36876
36881
  formatOptionLabel: props.formatOptionLabel,
36877
36882
  Option: components.Option
36878
36883
  });
36879
36884
  }
36885
+ if (props.autosize === false && components.ValueContainer === undefined) components.ValueContainer = _dropdown_value_container__WEBPACK_IMPORTED_MODULE_2__.ValueContainer;
36880
36886
  return components;
36881
36887
  };
36882
36888
 
@@ -36893,27 +36899,36 @@ __webpack_require__.r(__webpack_exports__);
36893
36899
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
36894
36900
  /* harmony export */ CheckboxList: () => (/* binding */ CheckboxList)
36895
36901
  /* harmony export */ });
36896
- /* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! prop-types */ "prop-types");
36897
- /* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_0__);
36898
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
36899
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
36900
- /* harmony import */ var react_select__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! react-select */ "./node_modules/react-select/dist/react-select.esm.js");
36901
- /* harmony import */ var react_select_creatable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-select/creatable */ "./node_modules/react-select/creatable/dist/react-select-creatable.esm.js");
36902
- /* harmony import */ var react_select_async__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-select/async */ "./node_modules/react-select/async/dist/react-select-async.esm.js");
36903
- /* harmony import */ var react_select_async_creatable__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! react-select/async-creatable */ "./node_modules/react-select/async-creatable/dist/react-select-async-creatable.esm.js");
36904
- /* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../hooks */ "./src/hooks/index.js");
36905
- /* harmony import */ var _layout__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../layout */ "./src/layout/index.js");
36906
- /* harmony import */ var _translation__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../translation */ "./src/translation.js");
36907
- /* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../util */ "./src/util/index.js");
36908
- /* harmony import */ var _shared__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../shared */ "./src/input/shared.js");
36909
- /* harmony import */ var _build_components__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./build_components */ "./src/input/checkbox_list/build_components.js");
36910
- /* harmony import */ var _use_styles__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./use_styles */ "./src/input/checkbox_list/use_styles.js");
36902
+ /* harmony import */ var lodash_omit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lodash/omit */ "./node_modules/lodash/omit.js");
36903
+ /* harmony import */ var lodash_omit__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(lodash_omit__WEBPACK_IMPORTED_MODULE_0__);
36904
+ /* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! prop-types */ "prop-types");
36905
+ /* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
36906
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react */ "react");
36907
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_2__);
36908
+ /* harmony import */ var react_select__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! react-select */ "./node_modules/react-select/dist/react-select.esm.js");
36909
+ /* harmony import */ var react_select_creatable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-select/creatable */ "./node_modules/react-select/creatable/dist/react-select-creatable.esm.js");
36910
+ /* harmony import */ var react_select_async__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! react-select/async */ "./node_modules/react-select/async/dist/react-select-async.esm.js");
36911
+ /* harmony import */ var react_select_async_creatable__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! react-select/async-creatable */ "./node_modules/react-select/async-creatable/dist/react-select-async-creatable.esm.js");
36912
+ /* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../hooks */ "./src/hooks/index.js");
36913
+ /* harmony import */ var _layout__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../layout */ "./src/layout/index.js");
36914
+ /* harmony import */ var _translation__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../translation */ "./src/translation.js");
36915
+ /* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../util */ "./src/util/index.js");
36916
+ /* harmony import */ var _shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../shared */ "./src/input/shared.js");
36917
+ /* harmony import */ var _build_components__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./build_components */ "./src/input/checkbox_list/build_components.js");
36918
+ /* harmony import */ var _use_styles__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./use_styles */ "./src/input/checkbox_list/use_styles.js");
36911
36919
  // LICENSE_CODE ZON
36912
36920
 
36913
36921
 
36914
36922
  /*jslint react:true*/
36915
- var _excluded = ["label", "labelIcon", "required", "value", "defaultValue", "placeholder", "options", "onChange", "onFocus", "onBlur", "creatable", "disabled", "invalid", "helperText", "className", "classNamePrefix", "onChangeCapture", "filterOption", "formatOptionLabel", "onInputChange", "getOptionValue", "getOptionLabel", "isOptionDisabled", "isOptionSelected", "async", "isLoading", "loadOptions", "defaultOptions", "cacheOptions", "onCreateOption", "formatCreateLabel", "isValidNewOption", "getNewOptionData", "autoFocus", "searchable"];
36923
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
36924
+
36925
+ var _excluded = ["id", "styles", "size", "async", "creatable", "isOptionDisabled", "className", "label", "labelIcon", "required", "invalid", "helperText", "placeholder", "disabled"];
36916
36926
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
36927
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
36928
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
36929
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
36930
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
36931
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
36917
36932
  function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
36918
36933
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
36919
36934
 
@@ -36929,162 +36944,93 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
36929
36944
 
36930
36945
 
36931
36946
 
36932
- var CheckboxList = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().forwardRef(function (props, forwardRef) {
36933
- var label = props.label,
36947
+ var CheckboxList = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().forwardRef(function (props, forwardRef) {
36948
+ var id = props.id,
36949
+ styles = props.styles,
36950
+ size = props.size,
36951
+ async = props.async,
36952
+ creatable = props.creatable,
36953
+ isOptionDisabled = props.isOptionDisabled,
36954
+ className = props.className,
36955
+ label = props.label,
36934
36956
  labelIcon = props.labelIcon,
36935
36957
  required = props.required,
36936
- value = props.value,
36937
- defaultValue = props.defaultValue,
36938
- placeholder = props.placeholder,
36939
- options = props.options,
36940
- onChange = props.onChange,
36941
- onFocus = props.onFocus,
36942
- onBlur = props.onBlur,
36943
- creatable = props.creatable,
36944
- disabled = props.disabled,
36945
36958
  invalid = props.invalid,
36946
36959
  helperText = props.helperText,
36947
- className = props.className,
36948
- classNamePrefix = props.classNamePrefix,
36949
- onChangeCapture = props.onChangeCapture,
36950
- filterOption = props.filterOption,
36951
- formatOptionLabel = props.formatOptionLabel,
36952
- onInputChange = props.onInputChange,
36953
- getOptionValue = props.getOptionValue,
36954
- getOptionLabel = props.getOptionLabel,
36955
- isOptionDisabled = props.isOptionDisabled,
36956
- isOptionSelected = props.isOptionSelected,
36957
- async = props.async,
36958
- isLoading = props.isLoading,
36959
- loadOptions = props.loadOptions,
36960
- defaultOptions = props.defaultOptions,
36961
- cacheOptions = props.cacheOptions,
36962
- onCreateOption = props.onCreateOption,
36963
- formatCreateLabel = props.formatCreateLabel,
36964
- isValidNewOption = props.isValidNewOption,
36965
- getNewOptionData = props.getNewOptionData,
36966
- autoFocus = props.autoFocus,
36967
- searchable = props.searchable,
36960
+ placeholder = props.placeholder,
36961
+ disabled = props.disabled,
36968
36962
  rest = _objectWithoutProperties(props, _excluded);
36969
- var labelId = (0,_hooks__WEBPACK_IMPORTED_MODULE_5__.useLabelId)(props.id);
36970
- var t = (0,_translation__WEBPACK_IMPORTED_MODULE_7__.useTranslate)();
36971
- var styles = (0,_use_styles__WEBPACK_IMPORTED_MODULE_11__.useStyles)(props);
36963
+ var labelId = (0,_hooks__WEBPACK_IMPORTED_MODULE_6__.useLabelId)(id);
36964
+ var t = (0,_translation__WEBPACK_IMPORTED_MODULE_8__.useTranslate)();
36972
36965
  var SelectComp = getComponent({
36973
36966
  async: async,
36974
36967
  creatable: creatable
36975
36968
  });
36976
- var _isOptionDisabled = (0,react__WEBPACK_IMPORTED_MODULE_1__.useMemo)(function () {
36969
+ var _styles = (0,_use_styles__WEBPACK_IMPORTED_MODULE_12__.useStyles)({
36970
+ styles: styles,
36971
+ size: size
36972
+ });
36973
+ var _isOptionDisabled = (0,react__WEBPACK_IMPORTED_MODULE_2__.useMemo)(function () {
36977
36974
  return isOptionDisabled || function (opt) {
36978
36975
  return opt.disabled;
36979
36976
  };
36980
36977
  }, [isOptionDisabled]);
36981
- return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement(_layout__WEBPACK_IMPORTED_MODULE_6__.Flex, _extends({
36978
+ var wrapperProps = _objectSpread(_objectSpread({}, (0,_util__WEBPACK_IMPORTED_MODULE_9__.getAriaProps)(rest)), (0,_util__WEBPACK_IMPORTED_MODULE_9__.getDataProps)(rest));
36979
+ var selectProps = lodash_omit__WEBPACK_IMPORTED_MODULE_0___default()(rest, Object.keys(wrapperProps));
36980
+ return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_layout__WEBPACK_IMPORTED_MODULE_7__.Flex, _extends({
36982
36981
  ref: forwardRef,
36983
36982
  "data-testid": "checkbox-list",
36984
- className: className
36985
- }, (0,_util__WEBPACK_IMPORTED_MODULE_8__.getCommonProps)(rest), {
36983
+ className: className,
36986
36984
  flex_direction: "column",
36987
36985
  gap: "02"
36988
- }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement(_shared__WEBPACK_IMPORTED_MODULE_9__.InputLabel, {
36986
+ }, wrapperProps), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_shared__WEBPACK_IMPORTED_MODULE_10__.InputLabel, {
36989
36987
  id: labelId,
36990
36988
  label: label,
36991
36989
  labelIcon: labelIcon,
36992
36990
  required: required
36993
- }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement(SelectComp, {
36994
- backspaceRemovesValue: false,
36995
- controlShouldRenderValue: false,
36996
- hideSelectedOptions: false,
36997
- isClearable: false,
36991
+ }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(SelectComp, _extends({}, selectProps, {
36992
+ id: id,
36998
36993
  menuIsOpen: true,
36999
36994
  isMulti: true,
37000
36995
  menuPlacement: "bottom",
37001
- autoFocus: autoFocus,
37002
- filterOption: filterOption,
37003
- formatOptionLabel: formatOptionLabel,
37004
36996
  "aria-labelledby": label ? labelId : undefined,
37005
36997
  "aria-invalid": invalid,
37006
- value: value,
37007
- defaultValue: defaultValue,
37008
36998
  placeholder: t(placeholder),
37009
- options: options,
37010
- onChange: onChange,
37011
- onFocus: onFocus,
37012
- onBlur: onBlur,
37013
36999
  isDisabled: disabled,
37014
37000
  required: required,
37015
- styles: styles,
37016
- components: (0,_build_components__WEBPACK_IMPORTED_MODULE_10__.buildComponents)(props),
37017
- className: (0,_util__WEBPACK_IMPORTED_MODULE_8__.classNames)(className, {
37001
+ styles: _styles,
37002
+ components: (0,_build_components__WEBPACK_IMPORTED_MODULE_11__.buildComponents)(props),
37003
+ className: (0,_util__WEBPACK_IMPORTED_MODULE_9__.classNames)(className, {
37018
37004
  container: true
37019
37005
  }),
37020
- classNamePrefix: classNamePrefix,
37021
- onChangeCapture: onChangeCapture,
37022
- onInputChange: onInputChange,
37023
- getOptionValue: getOptionValue,
37024
- getOptionLabel: getOptionLabel,
37025
- isOptionDisabled: _isOptionDisabled,
37026
- isOptionSelected: isOptionSelected,
37027
- isLoading: isLoading,
37028
- loadOptions: loadOptions,
37029
- defaultOptions: defaultOptions,
37030
- cacheOptions: cacheOptions,
37031
- onCreateOption: onCreateOption,
37032
- formatCreateLabel: formatCreateLabel,
37033
- isValidNewOption: isValidNewOption,
37034
- getNewOptionData: getNewOptionData,
37035
- isSearchable: searchable
37036
- }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement(_shared__WEBPACK_IMPORTED_MODULE_9__.HelperText, {
37006
+ isOptionDisabled: _isOptionDisabled
37007
+ })), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_shared__WEBPACK_IMPORTED_MODULE_10__.HelperText, {
37037
37008
  invalid: invalid
37038
37009
  }, helperText));
37039
37010
  });
37040
37011
  CheckboxList.displayName = 'CheckboxList';
37041
37012
  CheckboxList.propTypes = {
37042
- value: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().any),
37043
- defaultValue: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().any),
37044
- filterOption: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37045
- formatOptionLabel: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37046
- onChange: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37047
- onFocus: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37048
- onBlur: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37049
- placeholder: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().node),
37050
- disabled: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool),
37051
- required: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool),
37052
- invalid: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool),
37053
- label: prop_types__WEBPACK_IMPORTED_MODULE_0___default().oneOfType([(prop_types__WEBPACK_IMPORTED_MODULE_0___default().string), (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func)]),
37054
- labelIcon: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().string),
37055
- helperText: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().node),
37056
- size: prop_types__WEBPACK_IMPORTED_MODULE_0___default().oneOf(['sm', 'md', 'lg']),
37057
- options: prop_types__WEBPACK_IMPORTED_MODULE_0___default().arrayOf((prop_types__WEBPACK_IMPORTED_MODULE_0___default().any)),
37058
- creatable: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool),
37059
- classNamePrefix: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().string),
37060
- virtualized: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool),
37061
- autosize: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool),
37062
- onInputChange: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37063
- getOptionValue: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37064
- getOptionLabel: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37065
- isOptionDisabled: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37066
- isOptionSelected: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37067
- async: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool),
37068
- isLoading: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool),
37069
- loadOptions: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37070
- defaultOptions: prop_types__WEBPACK_IMPORTED_MODULE_0___default().oneOfType([(prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool), prop_types__WEBPACK_IMPORTED_MODULE_0___default().arrayOf((prop_types__WEBPACK_IMPORTED_MODULE_0___default().any))]),
37071
- cacheOptions: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().any),
37072
- components: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().object),
37073
- styles: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().object),
37074
- onCreateOption: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37075
- formatCreateLabel: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37076
- isValidNewOption: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37077
- getNewOptionData: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func),
37078
- autoFocus: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool),
37079
- searchable: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().bool)
37013
+ value: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().any),
37014
+ onChange: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().func),
37015
+ onFocus: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().func),
37016
+ onBlur: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().func),
37017
+ placeholder: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().node),
37018
+ disabled: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().bool),
37019
+ required: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().bool),
37020
+ invalid: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().bool),
37021
+ label: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().node),
37022
+ labelIcon: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().string),
37023
+ helperText: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().node),
37024
+ size: prop_types__WEBPACK_IMPORTED_MODULE_1___default().oneOf(['sm', 'md', 'lg']),
37025
+ virtualized: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().bool)
37080
37026
  };
37081
37027
  CheckboxList.defaultProps = {
37082
37028
  size: 'sm',
37083
37029
  placeholder: 'Search...'
37084
37030
  };
37085
37031
  var getComponent = function getComponent(opt) {
37086
- if (opt.async) return opt.creatable ? react_select_async_creatable__WEBPACK_IMPORTED_MODULE_4__["default"] : react_select_async__WEBPACK_IMPORTED_MODULE_3__["default"];
37087
- return opt.creatable ? react_select_creatable__WEBPACK_IMPORTED_MODULE_2__["default"] : react_select__WEBPACK_IMPORTED_MODULE_12__["default"];
37032
+ if (opt.async) return opt.creatable ? react_select_async_creatable__WEBPACK_IMPORTED_MODULE_5__["default"] : react_select_async__WEBPACK_IMPORTED_MODULE_4__["default"];
37033
+ return opt.creatable ? react_select_creatable__WEBPACK_IMPORTED_MODULE_3__["default"] : react_select__WEBPACK_IMPORTED_MODULE_13__["default"];
37088
37034
  };
37089
37035
 
37090
37036
  /***/ }),
@@ -37193,6 +37139,20 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
37193
37139
 
37194
37140
 
37195
37141
 
37142
+ var HeaderXl = {
37143
+ fontFamily: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_family.sans,
37144
+ fontStyle: 'normal',
37145
+ fontWeight: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_weight.medium,
37146
+ fontSize: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_size.lg,
37147
+ lineHeight: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].line_height.none
37148
+ };
37149
+ var LabelSm = {
37150
+ fontFamily: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_family.sans,
37151
+ fontStyle: 'normal',
37152
+ fontWeight: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_weight.regular,
37153
+ fontSize: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_size.sm,
37154
+ lineHeight: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].line_height.none
37155
+ };
37196
37156
  var useStyles = function useStyles(_ref) {
37197
37157
  var styles = _ref.styles,
37198
37158
  size = _ref.size;
@@ -37214,15 +37174,9 @@ var useStyles = function useStyles(_ref) {
37214
37174
  backgroundColor = _theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.gray_2;
37215
37175
  cursor = 'default';
37216
37176
  } else if (state.selectProps['aria-invalid']) borderColor = _theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.red_11;else if (state.isFocused) borderColor = _theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.blue_11;
37217
- return _objectSpread(_objectSpread({}, baseStyles), {}, {
37177
+ return _objectSpread(_objectSpread(_objectSpread({}, baseStyles), LabelSm), {}, {
37218
37178
  minHeight: (0,_utils__WEBPACK_IMPORTED_MODULE_2__.toPixel)(height[size] || height.sm),
37219
37179
  padding: "".concat(_shared__WEBPACK_IMPORTED_MODULE_3__.inputVerticalPadding, "px ").concat(_shared__WEBPACK_IMPORTED_MODULE_3__.inputHorizontalPadding, "px"),
37220
- /* Label/sm */
37221
- fontFamily: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_family.sans,
37222
- fontStyle: 'normal',
37223
- fontWeight: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_weight.regular,
37224
- fontSize: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_size.sm,
37225
- lineHeight: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].line_height.none,
37226
37180
  color: color,
37227
37181
  backgroundColor: backgroundColor,
37228
37182
  borderColor: borderColor,
@@ -37262,28 +37216,42 @@ var useStyles = function useStyles(_ref) {
37262
37216
  });
37263
37217
  },
37264
37218
  option: function option(baseStyles, state) {
37265
- return _objectSpread(_objectSpread({}, baseStyles), {}, {
37219
+ return _objectSpread(_objectSpread(_objectSpread({}, baseStyles), LabelSm), {}, {
37266
37220
  display: 'flex',
37267
37221
  alignItems: 'center',
37268
- gap: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].spacing['03'],
37269
- backgroundColor: undefined,
37270
- /* Label/sm */
37271
- fontFamily: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_family.sans,
37272
- fontStyle: 'normal',
37273
- fontWeight: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_weight.regular,
37274
- fontSize: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_size.sm,
37275
- lineHeight: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].line_height.none,
37222
+ gap: '8px',
37223
+ height: '40px',
37224
+ backgroundColor: state.isFocused ? _theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.gray_2 : undefined,
37276
37225
  color: state.isDisabled ? _theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.gray_9 : _theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.gray_11_50
37277
37226
  });
37278
37227
  },
37279
- noOptionsMessage: function noOptionsMessage(baseStyles) {
37228
+ multiValue: function multiValue(baseStyles) {
37280
37229
  return _objectSpread(_objectSpread({}, baseStyles), {}, {
37281
- /* Header/xl */
37282
- fontFamily: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_family.sans,
37283
- fontStyle: 'normal',
37284
- fontWeight: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_weight.medium,
37285
- fontSize: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].font_size.lg,
37286
- lineHeight: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].line_height.none,
37230
+ backgroundColor: undefined,
37231
+ border: "1px solid ".concat(_theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.gray_6),
37232
+ borderRadius: '4px'
37233
+ });
37234
+ },
37235
+ multiValueLabel: function multiValueLabel(baseStyles) {
37236
+ return _objectSpread(_objectSpread(_objectSpread({}, baseStyles), LabelSm), {}, {
37237
+ borderRadius: '4px',
37238
+ padding: '4px 4px 4px 8px',
37239
+ color: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.gray_11_25
37240
+ });
37241
+ },
37242
+ multiValueRemove: function multiValueRemove(baseStyles) {
37243
+ return _objectSpread(_objectSpread({}, baseStyles), {}, {
37244
+ borderRadius: '4px',
37245
+ color: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.gray_11,
37246
+ cursor: 'pointer',
37247
+ ':hover': {
37248
+ backgroundColor: undefined,
37249
+ color: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.gray_11_50
37250
+ }
37251
+ });
37252
+ },
37253
+ noOptionsMessage: function noOptionsMessage(baseStyles) {
37254
+ return _objectSpread(_objectSpread(_objectSpread({}, baseStyles), HeaderXl), {}, {
37287
37255
  color: _theme__WEBPACK_IMPORTED_MODULE_1__["default"].color.gray_9
37288
37256
  });
37289
37257
  }
@@ -37744,13 +37712,13 @@ __webpack_require__.r(__webpack_exports__);
37744
37712
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
37745
37713
  /* harmony export */ buildComponents: () => (/* binding */ buildComponents)
37746
37714
  /* harmony export */ });
37747
- /* harmony import */ var _clear_indicator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./clear_indicator */ "./src/input/dropdown/clear_indicator.js");
37748
- /* harmony import */ var _dropdown_indicator__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./dropdown_indicator */ "./src/input/dropdown/dropdown_indicator.js");
37749
- /* harmony import */ var _group__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./group */ "./src/input/dropdown/group.js");
37750
- /* harmony import */ var _menu_list__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./menu_list */ "./src/input/dropdown/menu_list.js");
37751
- /* harmony import */ var _option__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./option */ "./src/input/dropdown/option.js");
37752
- /* harmony import */ var _value_container__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./value_container */ "./src/input/dropdown/value_container.js");
37753
- /* harmony import */ var _util_virtualized_list__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../util/virtualized_list */ "./src/util/virtualized_list.js");
37715
+ /* harmony import */ var _util_virtualized_list__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../util/virtualized_list */ "./src/util/virtualized_list.js");
37716
+ /* harmony import */ var _clear_indicator__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./clear_indicator */ "./src/input/dropdown/clear_indicator.js");
37717
+ /* harmony import */ var _dropdown_indicator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./dropdown_indicator */ "./src/input/dropdown/dropdown_indicator.js");
37718
+ /* harmony import */ var _group__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./group */ "./src/input/dropdown/group.js");
37719
+ /* harmony import */ var _menu_list__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./menu_list */ "./src/input/dropdown/menu_list.js");
37720
+ /* harmony import */ var _option__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./option */ "./src/input/dropdown/option.js");
37721
+ /* harmony import */ var _value_container__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./value_container */ "./src/input/dropdown/value_container.js");
37754
37722
  // LICENSE_CODE ZON
37755
37723
 
37756
37724
 
@@ -37769,25 +37737,23 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
37769
37737
 
37770
37738
 
37771
37739
  var buildComponents = function buildComponents(props) {
37740
+ var _props$components$Opt, _props$components;
37772
37741
  var components = _objectSpread({
37773
- IndicatorSeparator: function IndicatorSeparator() {
37774
- return null;
37775
- },
37776
- DropdownIndicator: _dropdown_indicator__WEBPACK_IMPORTED_MODULE_1__["default"],
37777
- ClearIndicator: _clear_indicator__WEBPACK_IMPORTED_MODULE_0__["default"],
37778
- MenuList: _menu_list__WEBPACK_IMPORTED_MODULE_3__.MenuList,
37779
- Group: _group__WEBPACK_IMPORTED_MODULE_2__.Group,
37780
- Option: _option__WEBPACK_IMPORTED_MODULE_4__.Option
37781
- }, props.components);
37782
- if (props.virtualized) {
37783
- components.MenuList = (0,_util_virtualized_list__WEBPACK_IMPORTED_MODULE_6__.VirtualizedListFactory)({
37742
+ IndicatorSeparator: null,
37743
+ DropdownIndicator: _dropdown_indicator__WEBPACK_IMPORTED_MODULE_2__.DropdownIndicator,
37744
+ ClearIndicator: _clear_indicator__WEBPACK_IMPORTED_MODULE_1__.ClearIndicator,
37745
+ MenuList: props.virtualized ? (0,_util_virtualized_list__WEBPACK_IMPORTED_MODULE_0__.VirtualizedListFactory)({
37784
37746
  optionHeight: props.optionHeight,
37785
37747
  defaultValue: props.defaultValue,
37786
37748
  formatOptionLabel: props.formatOptionLabel,
37787
- Option: components.Option
37788
- });
37749
+ Option: (_props$components$Opt = (_props$components = props.components) === null || _props$components === void 0 ? void 0 : _props$components.Option) !== null && _props$components$Opt !== void 0 ? _props$components$Opt : _option__WEBPACK_IMPORTED_MODULE_5__.Option
37750
+ }) : _menu_list__WEBPACK_IMPORTED_MODULE_4__.MenuList,
37751
+ Group: _group__WEBPACK_IMPORTED_MODULE_3__.Group,
37752
+ Option: _option__WEBPACK_IMPORTED_MODULE_5__.Option
37753
+ }, props.components);
37754
+ if (props.autosize === false && props.multiselect && components.ValueContainer === undefined) {
37755
+ components.ValueContainer = _value_container__WEBPACK_IMPORTED_MODULE_6__.ValueContainer;
37789
37756
  }
37790
- if (props.autosize === false && props.multiselect) components.ValueContainer = _value_container__WEBPACK_IMPORTED_MODULE_5__.ValueContainer;
37791
37757
  return components;
37792
37758
  };
37793
37759
 
@@ -37802,7 +37768,7 @@ var buildComponents = function buildComponents(props) {
37802
37768
  "use strict";
37803
37769
  __webpack_require__.r(__webpack_exports__);
37804
37770
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
37805
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
37771
+ /* harmony export */ ClearIndicator: () => (/* binding */ ClearIndicator)
37806
37772
  /* harmony export */ });
37807
37773
  /* harmony import */ var _icons__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @icons */ "./assets/icons/index.js");
37808
37774
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
@@ -37833,7 +37799,6 @@ var ClearIndicator = function ClearIndicator(props) {
37833
37799
  href: "#".concat(ic.id)
37834
37800
  }));
37835
37801
  };
37836
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ClearIndicator);
37837
37802
 
37838
37803
  /***/ }),
37839
37804
 
@@ -38080,7 +38045,7 @@ var getComponent = function getComponent(opt) {
38080
38045
  "use strict";
38081
38046
  __webpack_require__.r(__webpack_exports__);
38082
38047
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
38083
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
38048
+ /* harmony export */ DropdownIndicator: () => (/* binding */ DropdownIndicator)
38084
38049
  /* harmony export */ });
38085
38050
  /* harmony import */ var _icons__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @icons */ "./assets/icons/index.js");
38086
38051
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
@@ -38113,7 +38078,6 @@ var DropdownIndicator = function DropdownIndicator(props) {
38113
38078
  href: "#".concat(ic.id)
38114
38079
  }));
38115
38080
  };
38116
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (DropdownIndicator);
38117
38081
 
38118
38082
  /***/ }),
38119
38083
 
@@ -44491,6 +44455,10 @@ __webpack_require__.r(__webpack_exports__);
44491
44455
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
44492
44456
  /* harmony export */ WHITE_SPACES: () => (/* binding */ WHITE_SPACES)
44493
44457
  /* harmony export */ });
44458
+ // LICENSE_CODE ZON
44459
+
44460
+
44461
+ /*jslint react:true*/
44494
44462
  var WHITE_SPACES = ['normal', 'nowrap', 'pre', 'pre-wrap', 'pre-line', 'break-spaces'];
44495
44463
 
44496
44464
  /***/ }),
@@ -44980,9 +44948,9 @@ var StyledTypography = styled_components__WEBPACK_IMPORTED_MODULE_1___default().
44980
44948
 
44981
44949
  /***/ }),
44982
44950
 
44983
- /***/ "./src/util/class-names.js":
44951
+ /***/ "./src/util/class_names.js":
44984
44952
  /*!*********************************!*\
44985
- !*** ./src/util/class-names.js ***!
44953
+ !*** ./src/util/class_names.js ***!
44986
44954
  \*********************************/
44987
44955
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
44988
44956
 
@@ -45060,9 +45028,9 @@ var isExoticComponent = function isExoticComponent(component) {
45060
45028
 
45061
45029
  /***/ }),
45062
45030
 
45063
- /***/ "./src/util/get-props.js":
45031
+ /***/ "./src/util/get_props.js":
45064
45032
  /*!*******************************!*\
45065
- !*** ./src/util/get-props.js ***!
45033
+ !*** ./src/util/get_props.js ***!
45066
45034
  \*******************************/
45067
45035
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
45068
45036
 
@@ -45217,9 +45185,9 @@ __webpack_require__.r(__webpack_exports__);
45217
45185
  /* harmony export */ isGroupHeader: () => (/* reexport safe */ _getters__WEBPACK_IMPORTED_MODULE_3__.isGroupHeader),
45218
45186
  /* harmony export */ withUserStyles: () => (/* reexport safe */ _with_user_styles__WEBPACK_IMPORTED_MODULE_5__.withUserStyles)
45219
45187
  /* harmony export */ });
45220
- /* harmony import */ var _class_names__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./class-names */ "./src/util/class-names.js");
45188
+ /* harmony import */ var _class_names__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./class_names */ "./src/util/class_names.js");
45221
45189
  /* harmony import */ var _flex_renderer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./flex_renderer */ "./src/util/flex_renderer.js");
45222
- /* harmony import */ var _get_props__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./get-props */ "./src/util/get-props.js");
45190
+ /* harmony import */ var _get_props__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./get_props */ "./src/util/get_props.js");
45223
45191
  /* harmony import */ var _getters__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getters */ "./src/util/getters.js");
45224
45192
  /* harmony import */ var _virtualized_list__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./virtualized_list */ "./src/util/virtualized_list.js");
45225
45193
  /* harmony import */ var _with_user_styles__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./with_user_styles */ "./src/util/with_user_styles.js");
@@ -45457,18 +45425,19 @@ var VirtualizedListRowRenderer = function VirtualizedListRowRenderer(_ref7) {
45457
45425
  }, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement(Option, {
45458
45426
  key: key,
45459
45427
  style: style,
45460
- data: thisProps.data,
45461
45428
  isVisible: isVisible,
45462
45429
  isScrolling: isScrolling,
45463
45430
  optionHeight: optionHeight,
45431
+ formatOptionLabel: formatOptionLabel,
45432
+ data: thisProps.data,
45464
45433
  isDisabled: thisProps.isDisabled,
45465
45434
  isFocused: thisProps.isFocused,
45466
45435
  isSelected: thisProps.isSelected,
45467
45436
  className: thisProps.className,
45468
45437
  cx: thisProps.cx,
45438
+ getStyles: thisProps.getStyles,
45469
45439
  innerRef: thisProps.innerRef,
45470
45440
  innerProps: thisProps.innerProps,
45471
- formatOptionLabel: formatOptionLabel,
45472
45441
  tag: "div"
45473
45442
  }, thisProps.children));
45474
45443
  };