` by default. You can change this\n * behavior by providing a `component` prop.\n * If you use React v16+ and would like to avoid a wrapping `
` element\n * you can pass in `component={null}`. This is useful if the wrapping div\n * borks your css styles.\n */\n component: PropTypes.any,\n\n /**\n * A set of `` components, that are toggled `in` and out as they\n * leave. the `` will inject specific transition props, so\n * remember to spread them through if you are wrapping the `` as\n * with our `` example.\n *\n * While this component is meant for multiple `Transition` or `CSSTransition`\n * children, sometimes you may want to have a single transition child with\n * content that you want to be transitioned out and in when you change it\n * (e.g. routes, images etc.) In that case you can change the `key` prop of\n * the transition child as you change its content, this will cause\n * `TransitionGroup` to transition the child out and back in.\n */\n children: PropTypes.node,\n\n /**\n * A convenience prop that enables or disables appear animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n appear: PropTypes.bool,\n\n /**\n * A convenience prop that enables or disables enter animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n enter: PropTypes.bool,\n\n /**\n * A convenience prop that enables or disables exit animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n exit: PropTypes.bool,\n\n /**\n * You may need to apply reactive updates to a child as it is exiting.\n * This is generally done by using `cloneElement` however in the case of an exiting\n * child the element has already been removed and not accessible to the consumer.\n *\n * If you do need to update a child as it leaves you can provide a `childFactory`\n * to wrap every child, even the ones that are leaving.\n *\n * @type Function(child: ReactElement) -> ReactElement\n */\n childFactory: PropTypes.func\n} : {};\nTransitionGroup.defaultProps = defaultProps;\nexport default TransitionGroup;","import _objectSpread from '@babel/runtime/helpers/esm/objectSpread2';\nimport _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';\nimport memoizeOne from 'memoize-one';\nimport { F as defaultComponents } from '../../dist/index-641ee5b8.esm.js';\nimport * as React from 'react';\nimport { useRef, useState, useEffect } from 'react';\nimport _extends from '@babel/runtime/helpers/esm/extends';\nimport _slicedToArray from '@babel/runtime/helpers/esm/slicedToArray';\nimport { Transition, TransitionGroup } from 'react-transition-group';\nimport '@emotion/react';\nimport '@babel/runtime/helpers/typeof';\nimport '@babel/runtime/helpers/taggedTemplateLiteral';\nimport '@babel/runtime/helpers/defineProperty';\nimport 'react-dom';\nimport '@floating-ui/dom';\nimport 'use-isomorphic-layout-effect';\n\nvar _excluded$4 = [\"in\", \"onExited\", \"appear\", \"enter\", \"exit\"];\n// strip transition props off before spreading onto select component\nvar AnimatedInput = function AnimatedInput(WrappedComponent) {\n return function (_ref) {\n _ref.in;\n _ref.onExited;\n _ref.appear;\n _ref.enter;\n _ref.exit;\n var props = _objectWithoutProperties(_ref, _excluded$4);\n return /*#__PURE__*/React.createElement(WrappedComponent, props);\n };\n};\nvar AnimatedInput$1 = AnimatedInput;\n\nvar _excluded$3 = [\"component\", \"duration\", \"in\", \"onExited\"];\nvar Fade = function Fade(_ref) {\n var Tag = _ref.component,\n _ref$duration = _ref.duration,\n duration = _ref$duration === void 0 ? 1 : _ref$duration,\n inProp = _ref.in;\n _ref.onExited;\n var props = _objectWithoutProperties(_ref, _excluded$3);\n var nodeRef = useRef(null);\n var transition = {\n entering: {\n opacity: 0\n },\n entered: {\n opacity: 1,\n transition: \"opacity \".concat(duration, \"ms\")\n },\n exiting: {\n opacity: 0\n },\n exited: {\n opacity: 0\n }\n };\n return /*#__PURE__*/React.createElement(Transition, {\n mountOnEnter: true,\n unmountOnExit: true,\n in: inProp,\n timeout: duration,\n nodeRef: nodeRef\n }, function (state) {\n var innerProps = {\n style: _objectSpread({}, transition[state]),\n ref: nodeRef\n };\n return /*#__PURE__*/React.createElement(Tag, _extends({\n innerProps: innerProps\n }, props));\n });\n};\n\n// ==============================\n// Collapse Transition\n// ==============================\n\nvar collapseDuration = 260;\n// wrap each MultiValue with a collapse transition; decreases width until\n// finally removing from DOM\nvar Collapse = function Collapse(_ref2) {\n var children = _ref2.children,\n _in = _ref2.in,\n _onExited = _ref2.onExited;\n var ref = useRef(null);\n var _useState = useState('auto'),\n _useState2 = _slicedToArray(_useState, 2),\n width = _useState2[0],\n setWidth = _useState2[1];\n useEffect(function () {\n var el = ref.current;\n if (!el) return;\n\n /*\n Here we're invoking requestAnimationFrame with a callback invoking our\n call to getBoundingClientRect and setState in order to resolve an edge case\n around portalling. Certain portalling solutions briefly remove children from the DOM\n before appending them to the target node. This is to avoid us trying to call getBoundingClientrect\n while the Select component is in this state.\n */\n // cannot use `offsetWidth` because it is rounded\n var rafId = window.requestAnimationFrame(function () {\n return setWidth(el.getBoundingClientRect().width);\n });\n return function () {\n return window.cancelAnimationFrame(rafId);\n };\n }, []);\n var getStyleFromStatus = function getStyleFromStatus(status) {\n switch (status) {\n default:\n return {\n width: width\n };\n case 'exiting':\n return {\n width: 0,\n transition: \"width \".concat(collapseDuration, \"ms ease-out\")\n };\n case 'exited':\n return {\n width: 0\n };\n }\n };\n return /*#__PURE__*/React.createElement(Transition, {\n enter: false,\n mountOnEnter: true,\n unmountOnExit: true,\n in: _in,\n onExited: function onExited() {\n var el = ref.current;\n if (!el) return;\n _onExited === null || _onExited === void 0 ? void 0 : _onExited(el);\n },\n timeout: collapseDuration,\n nodeRef: ref\n }, function (status) {\n return /*#__PURE__*/React.createElement(\"div\", {\n ref: ref,\n style: _objectSpread({\n overflow: 'hidden',\n whiteSpace: 'nowrap'\n }, getStyleFromStatus(status))\n }, children);\n });\n};\n\nvar _excluded$2 = [\"in\", \"onExited\"];\n// strip transition props off before spreading onto actual component\n\nvar AnimatedMultiValue = function AnimatedMultiValue(WrappedComponent) {\n return function (_ref) {\n var inProp = _ref.in,\n onExited = _ref.onExited,\n props = _objectWithoutProperties(_ref, _excluded$2);\n return /*#__PURE__*/React.createElement(Collapse, {\n in: inProp,\n onExited: onExited\n }, /*#__PURE__*/React.createElement(WrappedComponent, _extends({\n cropWithEllipsis: inProp\n }, props)));\n };\n};\nvar AnimatedMultiValue$1 = AnimatedMultiValue;\n\n// fade in when last multi-value removed, otherwise instant\nvar AnimatedPlaceholder = function AnimatedPlaceholder(WrappedComponent) {\n return function (props) {\n return /*#__PURE__*/React.createElement(Fade, _extends({\n component: WrappedComponent,\n duration: props.isMulti ? collapseDuration : 1\n }, props));\n };\n};\nvar AnimatedPlaceholder$1 = AnimatedPlaceholder;\n\n// instant fade; all transition-group children must be transitions\n\nvar AnimatedSingleValue = function AnimatedSingleValue(WrappedComponent) {\n return function (props) {\n return /*#__PURE__*/React.createElement(Fade, _extends({\n component: WrappedComponent\n }, props));\n };\n};\nvar AnimatedSingleValue$1 = AnimatedSingleValue;\n\nvar _excluded$1 = [\"component\"],\n _excluded2 = [\"children\"];\n// make ValueContainer a transition group\nvar AnimatedValueContainer = function AnimatedValueContainer(WrappedComponent) {\n return function (props) {\n return props.isMulti ? /*#__PURE__*/React.createElement(IsMultiValueContainer, _extends({\n component: WrappedComponent\n }, props)) : /*#__PURE__*/React.createElement(TransitionGroup, _extends({\n component: WrappedComponent\n }, props));\n };\n};\nvar IsMultiValueContainer = function IsMultiValueContainer(_ref) {\n var component = _ref.component,\n restProps = _objectWithoutProperties(_ref, _excluded$1);\n var multiProps = useIsMultiValueContainer(restProps);\n return /*#__PURE__*/React.createElement(TransitionGroup, _extends({\n component: component\n }, multiProps));\n};\nvar useIsMultiValueContainer = function useIsMultiValueContainer(_ref2) {\n var children = _ref2.children,\n props = _objectWithoutProperties(_ref2, _excluded2);\n var isMulti = props.isMulti,\n hasValue = props.hasValue,\n innerProps = props.innerProps,\n _props$selectProps = props.selectProps,\n components = _props$selectProps.components,\n controlShouldRenderValue = _props$selectProps.controlShouldRenderValue;\n var _useState = useState(isMulti && controlShouldRenderValue && hasValue),\n _useState2 = _slicedToArray(_useState, 2),\n cssDisplayFlex = _useState2[0],\n setCssDisplayFlex = _useState2[1];\n var _useState3 = useState(false),\n _useState4 = _slicedToArray(_useState3, 2),\n removingValue = _useState4[0],\n setRemovingValue = _useState4[1];\n useEffect(function () {\n if (hasValue && !cssDisplayFlex) {\n setCssDisplayFlex(true);\n }\n }, [hasValue, cssDisplayFlex]);\n useEffect(function () {\n if (removingValue && !hasValue && cssDisplayFlex) {\n setCssDisplayFlex(false);\n }\n setRemovingValue(false);\n }, [removingValue, hasValue, cssDisplayFlex]);\n var onExited = function onExited() {\n return setRemovingValue(true);\n };\n var childMapper = function childMapper(child) {\n if (isMulti && /*#__PURE__*/React.isValidElement(child)) {\n // Add onExited callback to MultiValues\n if (child.type === components.MultiValue) {\n return /*#__PURE__*/React.cloneElement(child, {\n onExited: onExited\n });\n }\n // While container flexed, Input cursor is shown after Placeholder text,\n // so remove Placeholder until display is set back to grid\n if (child.type === components.Placeholder && cssDisplayFlex) {\n return null;\n }\n }\n return child;\n };\n var newInnerProps = _objectSpread(_objectSpread({}, innerProps), {}, {\n style: _objectSpread(_objectSpread({}, innerProps === null || innerProps === void 0 ? void 0 : innerProps.style), {}, {\n display: isMulti && hasValue || cssDisplayFlex ? 'flex' : 'grid'\n })\n });\n var newProps = _objectSpread(_objectSpread({}, props), {}, {\n innerProps: newInnerProps,\n children: React.Children.toArray(children).map(childMapper)\n });\n return newProps;\n};\nvar AnimatedValueContainer$1 = AnimatedValueContainer;\n\nvar _excluded = [\"Input\", \"MultiValue\", \"Placeholder\", \"SingleValue\", \"ValueContainer\"];\nvar makeAnimated = function makeAnimated() {\n var externalComponents = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var components = defaultComponents({\n components: externalComponents\n });\n var Input = components.Input,\n MultiValue = components.MultiValue,\n Placeholder = components.Placeholder,\n SingleValue = components.SingleValue,\n ValueContainer = components.ValueContainer,\n rest = _objectWithoutProperties(components, _excluded);\n return _objectSpread({\n Input: AnimatedInput$1(Input),\n MultiValue: AnimatedMultiValue$1(MultiValue),\n Placeholder: AnimatedPlaceholder$1(Placeholder),\n SingleValue: AnimatedSingleValue$1(SingleValue),\n ValueContainer: AnimatedValueContainer$1(ValueContainer)\n }, rest);\n};\nvar AnimatedComponents = makeAnimated();\nvar Input = AnimatedComponents.Input;\nvar MultiValue = AnimatedComponents.MultiValue;\nvar Placeholder = AnimatedComponents.Placeholder;\nvar SingleValue = AnimatedComponents.SingleValue;\nvar ValueContainer = AnimatedComponents.ValueContainer;\nvar index = memoizeOne(makeAnimated);\n\nexport { Input, MultiValue, Placeholder, SingleValue, ValueContainer, index as default };\n"],"names":["getChildMapping","children","mapFn","result","Object","create","Children","map","c","forEach","child","key","isValidElement","mapper","getProp","prop","props","getNextChildMapping","nextProps","prevChildMapping","onExited","nextChildMapping","prev","next","getValueForKey","i","nextKeysPending","pendingKeys","prevKey","length","push","childMapping","nextKey","pendingNextKey","mergeChildMappings","keys","hasPrev","hasNext","prevChild","isLeaving","in","cloneElement","bind","exit","enter","values","obj","k","TransitionGroup","_React$Component","context","_this","handleExited","call","this","_assertThisInitialized","state","contextValue","isMounting","firstRender","_inheritsLoose","_proto","prototype","componentDidMount","mounted","setState","componentWillUnmount","getDerivedStateFromProps","_ref","appear","node","currentChildMapping","_extends","render","_this$props","Component","component","childFactory","_objectWithoutPropertiesLoose","React","TransitionGroupContext","Provider","value","propTypes","defaultProps","_excluded$4","AnimatedInput$1","WrappedComponent","_objectWithoutProperties","_excluded$3","Fade","Tag","_ref$duration","duration","inProp","nodeRef","useRef","transition","entering","opacity","entered","concat","exiting","exited","Transition","mountOnEnter","unmountOnExit","timeout","innerProps","style","_objectSpread","ref","Collapse","_ref2","_in","_onExited","_useState","useState","_useState2","_slicedToArray","width","setWidth","useEffect","el","current","rafId","window","requestAnimationFrame","getBoundingClientRect","cancelAnimationFrame","getStyleFromStatus","status","overflow","whiteSpace","_excluded$2","AnimatedMultiValue$1","cropWithEllipsis","AnimatedPlaceholder$1","isMulti","AnimatedSingleValue$1","_excluded$1","_excluded2","IsMultiValueContainer","restProps","multiProps","useIsMultiValueContainer","hasValue","_props$selectProps","selectProps","components","controlShouldRenderValue","cssDisplayFlex","setCssDisplayFlex","_useState3","_useState4","removingValue","setRemovingValue","newInnerProps","display","toArray","type","MultiValue","Placeholder","AnimatedValueContainer$1","_excluded","makeAnimated","externalComponents","arguments","undefined","defaultComponents","Input","SingleValue","ValueContainer","rest","AnimatedComponents","index","memoizeOne"],"sourceRoot":""}