{"version":3,"file":"@fluentui-CJOOuFCY.js","sources":["../../node_modules/@fluentui/react-component-ref/node_modules/react-is/cjs/react-is.production.min.js","../../node_modules/@fluentui/react-component-ref/node_modules/react-is/index.js","../../node_modules/@fluentui/react-component-ref/dist/es/utils.js","../../node_modules/@fluentui/react-component-ref/dist/es/RefFindNode.js","../../node_modules/@fluentui/react-component-ref/dist/es/RefForward.js","../../node_modules/@fluentui/react-component-ref/dist/es/Ref.js"],"sourcesContent":["/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';var b=\"function\"===typeof Symbol&&Symbol.for,c=b?Symbol.for(\"react.element\"):60103,d=b?Symbol.for(\"react.portal\"):60106,e=b?Symbol.for(\"react.fragment\"):60107,f=b?Symbol.for(\"react.strict_mode\"):60108,g=b?Symbol.for(\"react.profiler\"):60114,h=b?Symbol.for(\"react.provider\"):60109,k=b?Symbol.for(\"react.context\"):60110,l=b?Symbol.for(\"react.async_mode\"):60111,m=b?Symbol.for(\"react.concurrent_mode\"):60111,n=b?Symbol.for(\"react.forward_ref\"):60112,p=b?Symbol.for(\"react.suspense\"):60113,q=b?\nSymbol.for(\"react.suspense_list\"):60120,r=b?Symbol.for(\"react.memo\"):60115,t=b?Symbol.for(\"react.lazy\"):60116,v=b?Symbol.for(\"react.block\"):60121,w=b?Symbol.for(\"react.fundamental\"):60117,x=b?Symbol.for(\"react.responder\"):60118,y=b?Symbol.for(\"react.scope\"):60119;\nfunction z(a){if(\"object\"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;\nexports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};\nexports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};\nexports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||\"object\"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n","/**\n * The function that correctly handles passing refs.\n *\n * @param ref - An ref object or function\n * @param node - A node that should be passed by ref\n */\nexport var handleRef = function handleRef(ref, node) {\n if (process.env.NODE_ENV !== 'production') {\n if (typeof ref === 'string') {\n throw new Error('We do not support refs as string, this is a legacy API and will be likely to be removed in one of the future releases of React.');\n }\n }\n\n if (typeof ref === 'function') {\n ref(node);\n return;\n }\n\n if (ref !== null && typeof ref === 'object') {\n // The `current` property is defined as readonly, however it's a valid way because\n // `ref` is a mutable object\n ref.current = node;\n }\n};\n/** Checks that the passed object is a valid React ref object. */\n\nexport var isRefObject = function isRefObject(ref) {\n return (// https://github.com/facebook/react/blob/v16.8.2/packages/react-reconciler/src/ReactFiberCommitWork.js#L665\n ref !== null && typeof ref === 'object' && ref.hasOwnProperty('current')\n );\n};\n//# sourceMappingURL=utils.js.map\n","import _inheritsLoose from \"@babel/runtime/helpers/esm/inheritsLoose\";\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { handleRef } from './utils'; // ========================================================\n// react/packages/react-reconciler/src/ReactFiber.js\n// ========================================================\n\n/**\n * Detects if a passed element is a Fiber object instead of an element. Is needed as `ReactDOM.findDOMNode()` returns\n * a Fiber in `react-test-renderer` that can cause issues with tests. Is used only in non-production env.\n *\n * @see https://github.com/facebook/react/issues/7371#issuecomment-317396864\n * @see https://github.com/Semantic-Org/Semantic-UI-React/issues/4061#issuecomment-694895617\n */\nfunction isFiberRef(node) {\n if (node === null) {\n return false;\n }\n\n if (node instanceof Element || node instanceof Text) {\n return false;\n }\n\n return !!(node.type && node.tag);\n}\n\nexport var RefFindNode = /*#__PURE__*/function (_React$Component) {\n _inheritsLoose(RefFindNode, _React$Component);\n\n function RefFindNode() {\n var _this;\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;\n _this.prevNode = void 0;\n return _this;\n }\n\n var _proto = RefFindNode.prototype;\n\n _proto.componentDidMount = function componentDidMount() {\n var currentNode = ReactDOM.findDOMNode(this);\n\n if (process.env.NODE_ENV !== 'production') {\n if (isFiberRef(currentNode)) {\n currentNode = null;\n }\n }\n\n this.prevNode = currentNode;\n handleRef(this.props.innerRef, currentNode);\n };\n\n _proto.componentDidUpdate = function componentDidUpdate(prevProps) {\n var currentNode = ReactDOM.findDOMNode(this);\n\n if (process.env.NODE_ENV !== 'production') {\n if (isFiberRef(currentNode)) {\n currentNode = null;\n }\n }\n\n if (this.prevNode !== currentNode) {\n this.prevNode = currentNode;\n handleRef(this.props.innerRef, currentNode);\n }\n\n if (prevProps.innerRef !== this.props.innerRef) {\n handleRef(this.props.innerRef, currentNode);\n }\n };\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n handleRef(this.props.innerRef, null);\n delete this.prevNode;\n };\n\n _proto.render = function render() {\n var children = this.props.children;\n return children;\n };\n\n return RefFindNode;\n}(React.Component);\n//# sourceMappingURL=RefFindNode.js.map\n","import _inheritsLoose from \"@babel/runtime/helpers/esm/inheritsLoose\";\nimport * as React from 'react';\nimport { handleRef } from './utils';\nexport var RefForward = /*#__PURE__*/function (_React$Component) {\n _inheritsLoose(RefForward, _React$Component);\n\n function RefForward() {\n var _this;\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;\n _this.currentNode = void 0;\n\n _this.handleRefOverride = function (node) {\n var _this$props = _this.props,\n children = _this$props.children,\n innerRef = _this$props.innerRef;\n handleRef(children.ref, node);\n handleRef(innerRef, node);\n _this.currentNode = node;\n };\n\n return _this;\n }\n\n var _proto = RefForward.prototype;\n\n _proto.componentDidUpdate = function componentDidUpdate(prevProps) {\n if (prevProps.innerRef !== this.props.innerRef) {\n handleRef(this.props.innerRef, this.currentNode);\n }\n };\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n delete this.currentNode;\n };\n\n _proto.render = function render() {\n var children = this.props.children;\n return /*#__PURE__*/React.cloneElement(children, {\n ref: this.handleRefOverride\n });\n };\n\n return RefForward;\n}(React.Component);\n//# sourceMappingURL=RefForward.js.map\n","import _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nvar _excluded = [\"children\", \"innerRef\"];\nimport * as React from 'react';\nimport * as ReactIs from 'react-is';\nimport { RefFindNode } from './RefFindNode';\nimport { RefForward } from './RefForward';\nexport var Ref = function Ref(props) {\n var children = props.children,\n innerRef = props.innerRef,\n rest = _objectWithoutPropertiesLoose(props, _excluded);\n\n var child = React.Children.only(children);\n var ElementType = ReactIs.isForwardRef(child) ? RefForward : RefFindNode;\n var childWithProps = child && rest && Object.keys(rest).length > 0 ? /*#__PURE__*/React.cloneElement(child, rest) : child;\n return /*#__PURE__*/React.createElement(ElementType, {\n innerRef: innerRef\n }, childWithProps);\n};\n//# sourceMappingURL=Ref.js.map\n"],"names":["b","c","d","e","f","g","k","l","m","n","p","q","r","t","v","w","x","y","z","a","u","A","reactIs_production_min","reactIsModule","require$$0","handleRef","ref","node","RefFindNode","_React$Component","_inheritsLoose","_this","_len","args","_key","_proto","currentNode","ReactDOM.findDOMNode","prevProps","children","React.Component","RefForward","_this$props","innerRef","React.cloneElement","_excluded","Ref","props","rest","_objectWithoutPropertiesLoose","child","React.Children","ElementType","ReactIs.isForwardRef","childWithProps","React.createElement"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5]}