PromoCursed/node_modules/.cache/babel-loader/82392c9c261cfdae7f1c290ec001d4f46a190bb6644e3a9bac67fa92fccebf1c.json
2024-08-20 23:25:37 +04:00

1 line
10 KiB
JSON

{"ast":null,"code":"\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\").default;\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.useComposeRef = exports.supportRef = exports.supportNodeRef = exports.getNodeRef = exports.fillRef = exports.composeRef = void 0;\nvar _typeof2 = _interopRequireDefault(require(\"@babel/runtime/helpers/typeof\"));\nvar _react = require(\"react\");\nvar _reactIs = require(\"react-is\");\nvar _useMemo = _interopRequireDefault(require(\"./hooks/useMemo\"));\nvar fillRef = exports.fillRef = function fillRef(ref, node) {\n if (typeof ref === 'function') {\n ref(node);\n } else if ((0, _typeof2.default)(ref) === 'object' && ref && 'current' in ref) {\n ref.current = node;\n }\n};\n\n/**\n * Merge refs into one ref function to support ref passing.\n */\nvar composeRef = exports.composeRef = function composeRef() {\n for (var _len = arguments.length, refs = new Array(_len), _key = 0; _key < _len; _key++) {\n refs[_key] = arguments[_key];\n }\n var refList = refs.filter(Boolean);\n if (refList.length <= 1) {\n return refList[0];\n }\n return function (node) {\n refs.forEach(function (ref) {\n fillRef(ref, node);\n });\n };\n};\nvar useComposeRef = exports.useComposeRef = function useComposeRef() {\n for (var _len2 = arguments.length, refs = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n refs[_key2] = arguments[_key2];\n }\n return (0, _useMemo.default)(function () {\n return composeRef.apply(void 0, refs);\n }, refs, function (prev, next) {\n return prev.length !== next.length || prev.every(function (ref, i) {\n return ref !== next[i];\n });\n });\n};\nvar supportRef = exports.supportRef = function supportRef(nodeOrComponent) {\n var _type$prototype, _nodeOrComponent$prot;\n var type = (0, _reactIs.isMemo)(nodeOrComponent) ? nodeOrComponent.type.type : nodeOrComponent.type;\n\n // Function component node\n if (typeof type === 'function' && !((_type$prototype = type.prototype) !== null && _type$prototype !== void 0 && _type$prototype.render) && type.$$typeof !== _reactIs.ForwardRef) {\n return false;\n }\n\n // Class component\n if (typeof nodeOrComponent === 'function' && !((_nodeOrComponent$prot = nodeOrComponent.prototype) !== null && _nodeOrComponent$prot !== void 0 && _nodeOrComponent$prot.render) && nodeOrComponent.$$typeof !== _reactIs.ForwardRef) {\n return false;\n }\n return true;\n};\nfunction isReactElement(node) {\n return /*#__PURE__*/(0, _react.isValidElement)(node) && !(0, _reactIs.isFragment)(node);\n}\nvar supportNodeRef = exports.supportNodeRef = function supportNodeRef(node) {\n return isReactElement(node) && supportRef(node);\n};\n\n/**\n * In React 19. `ref` is not a property from node.\n * But a property from `props.ref`.\n * To check if `props.ref` exist or fallback to `ref`.\n */\nvar getNodeRef = exports.getNodeRef = Number(_react.version.split('.')[0]) >= 19 ?\n// >= React 19\nfunction (node) {\n if (isReactElement(node)) {\n return node.props.ref;\n }\n return null;\n} :\n// < React 19\nfunction (node) {\n if (isReactElement(node)) {\n return node.ref;\n }\n return null;\n};","map":{"version":3,"names":["_interopRequireDefault","require","default","Object","defineProperty","exports","value","useComposeRef","supportRef","supportNodeRef","getNodeRef","fillRef","composeRef","_typeof2","_react","_reactIs","_useMemo","ref","node","current","_len","arguments","length","refs","Array","_key","refList","filter","Boolean","forEach","_len2","_key2","apply","prev","next","every","i","nodeOrComponent","_type$prototype","_nodeOrComponent$prot","type","isMemo","prototype","render","$$typeof","ForwardRef","isReactElement","isValidElement","isFragment","Number","version","split","props"],"sources":["C:/Users/Аришина)/Desktop/promo/node_modules/rc-util/lib/ref.js"],"sourcesContent":["\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\").default;\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.useComposeRef = exports.supportRef = exports.supportNodeRef = exports.getNodeRef = exports.fillRef = exports.composeRef = void 0;\nvar _typeof2 = _interopRequireDefault(require(\"@babel/runtime/helpers/typeof\"));\nvar _react = require(\"react\");\nvar _reactIs = require(\"react-is\");\nvar _useMemo = _interopRequireDefault(require(\"./hooks/useMemo\"));\nvar fillRef = exports.fillRef = function fillRef(ref, node) {\n if (typeof ref === 'function') {\n ref(node);\n } else if ((0, _typeof2.default)(ref) === 'object' && ref && 'current' in ref) {\n ref.current = node;\n }\n};\n\n/**\n * Merge refs into one ref function to support ref passing.\n */\nvar composeRef = exports.composeRef = function composeRef() {\n for (var _len = arguments.length, refs = new Array(_len), _key = 0; _key < _len; _key++) {\n refs[_key] = arguments[_key];\n }\n var refList = refs.filter(Boolean);\n if (refList.length <= 1) {\n return refList[0];\n }\n return function (node) {\n refs.forEach(function (ref) {\n fillRef(ref, node);\n });\n };\n};\nvar useComposeRef = exports.useComposeRef = function useComposeRef() {\n for (var _len2 = arguments.length, refs = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n refs[_key2] = arguments[_key2];\n }\n return (0, _useMemo.default)(function () {\n return composeRef.apply(void 0, refs);\n }, refs, function (prev, next) {\n return prev.length !== next.length || prev.every(function (ref, i) {\n return ref !== next[i];\n });\n });\n};\nvar supportRef = exports.supportRef = function supportRef(nodeOrComponent) {\n var _type$prototype, _nodeOrComponent$prot;\n var type = (0, _reactIs.isMemo)(nodeOrComponent) ? nodeOrComponent.type.type : nodeOrComponent.type;\n\n // Function component node\n if (typeof type === 'function' && !((_type$prototype = type.prototype) !== null && _type$prototype !== void 0 && _type$prototype.render) && type.$$typeof !== _reactIs.ForwardRef) {\n return false;\n }\n\n // Class component\n if (typeof nodeOrComponent === 'function' && !((_nodeOrComponent$prot = nodeOrComponent.prototype) !== null && _nodeOrComponent$prot !== void 0 && _nodeOrComponent$prot.render) && nodeOrComponent.$$typeof !== _reactIs.ForwardRef) {\n return false;\n }\n return true;\n};\nfunction isReactElement(node) {\n return /*#__PURE__*/(0, _react.isValidElement)(node) && !(0, _reactIs.isFragment)(node);\n}\nvar supportNodeRef = exports.supportNodeRef = function supportNodeRef(node) {\n return isReactElement(node) && supportRef(node);\n};\n\n/**\n * In React 19. `ref` is not a property from node.\n * But a property from `props.ref`.\n * To check if `props.ref` exist or fallback to `ref`.\n */\nvar getNodeRef = exports.getNodeRef = Number(_react.version.split('.')[0]) >= 19 ?\n// >= React 19\nfunction (node) {\n if (isReactElement(node)) {\n return node.props.ref;\n }\n return null;\n} :\n// < React 19\nfunction (node) {\n if (isReactElement(node)) {\n return node.ref;\n }\n return null;\n};"],"mappings":"AAAA,YAAY;;AAEZ,IAAIA,sBAAsB,GAAGC,OAAO,CAAC,8CAA8C,CAAC,CAACC,OAAO;AAC5FC,MAAM,CAACC,cAAc,CAACC,OAAO,EAAE,YAAY,EAAE;EAC3CC,KAAK,EAAE;AACT,CAAC,CAAC;AACFD,OAAO,CAACE,aAAa,GAAGF,OAAO,CAACG,UAAU,GAAGH,OAAO,CAACI,cAAc,GAAGJ,OAAO,CAACK,UAAU,GAAGL,OAAO,CAACM,OAAO,GAAGN,OAAO,CAACO,UAAU,GAAG,KAAK,CAAC;AACxI,IAAIC,QAAQ,GAAGb,sBAAsB,CAACC,OAAO,CAAC,+BAA+B,CAAC,CAAC;AAC/E,IAAIa,MAAM,GAAGb,OAAO,CAAC,OAAO,CAAC;AAC7B,IAAIc,QAAQ,GAAGd,OAAO,CAAC,UAAU,CAAC;AAClC,IAAIe,QAAQ,GAAGhB,sBAAsB,CAACC,OAAO,CAAC,iBAAiB,CAAC,CAAC;AACjE,IAAIU,OAAO,GAAGN,OAAO,CAACM,OAAO,GAAG,SAASA,OAAOA,CAACM,GAAG,EAAEC,IAAI,EAAE;EAC1D,IAAI,OAAOD,GAAG,KAAK,UAAU,EAAE;IAC7BA,GAAG,CAACC,IAAI,CAAC;EACX,CAAC,MAAM,IAAI,CAAC,CAAC,EAAEL,QAAQ,CAACX,OAAO,EAAEe,GAAG,CAAC,KAAK,QAAQ,IAAIA,GAAG,IAAI,SAAS,IAAIA,GAAG,EAAE;IAC7EA,GAAG,CAACE,OAAO,GAAGD,IAAI;EACpB;AACF,CAAC;;AAED;AACA;AACA;AACA,IAAIN,UAAU,GAAGP,OAAO,CAACO,UAAU,GAAG,SAASA,UAAUA,CAAA,EAAG;EAC1D,KAAK,IAAIQ,IAAI,GAAGC,SAAS,CAACC,MAAM,EAAEC,IAAI,GAAG,IAAIC,KAAK,CAACJ,IAAI,CAAC,EAAEK,IAAI,GAAG,CAAC,EAAEA,IAAI,GAAGL,IAAI,EAAEK,IAAI,EAAE,EAAE;IACvFF,IAAI,CAACE,IAAI,CAAC,GAAGJ,SAAS,CAACI,IAAI,CAAC;EAC9B;EACA,IAAIC,OAAO,GAAGH,IAAI,CAACI,MAAM,CAACC,OAAO,CAAC;EAClC,IAAIF,OAAO,CAACJ,MAAM,IAAI,CAAC,EAAE;IACvB,OAAOI,OAAO,CAAC,CAAC,CAAC;EACnB;EACA,OAAO,UAAUR,IAAI,EAAE;IACrBK,IAAI,CAACM,OAAO,CAAC,UAAUZ,GAAG,EAAE;MAC1BN,OAAO,CAACM,GAAG,EAAEC,IAAI,CAAC;IACpB,CAAC,CAAC;EACJ,CAAC;AACH,CAAC;AACD,IAAIX,aAAa,GAAGF,OAAO,CAACE,aAAa,GAAG,SAASA,aAAaA,CAAA,EAAG;EACnE,KAAK,IAAIuB,KAAK,GAAGT,SAAS,CAACC,MAAM,EAAEC,IAAI,GAAG,IAAIC,KAAK,CAACM,KAAK,CAAC,EAAEC,KAAK,GAAG,CAAC,EAAEA,KAAK,GAAGD,KAAK,EAAEC,KAAK,EAAE,EAAE;IAC7FR,IAAI,CAACQ,KAAK,CAAC,GAAGV,SAAS,CAACU,KAAK,CAAC;EAChC;EACA,OAAO,CAAC,CAAC,EAAEf,QAAQ,CAACd,OAAO,EAAE,YAAY;IACvC,OAAOU,UAAU,CAACoB,KAAK,CAAC,KAAK,CAAC,EAAET,IAAI,CAAC;EACvC,CAAC,EAAEA,IAAI,EAAE,UAAUU,IAAI,EAAEC,IAAI,EAAE;IAC7B,OAAOD,IAAI,CAACX,MAAM,KAAKY,IAAI,CAACZ,MAAM,IAAIW,IAAI,CAACE,KAAK,CAAC,UAAUlB,GAAG,EAAEmB,CAAC,EAAE;MACjE,OAAOnB,GAAG,KAAKiB,IAAI,CAACE,CAAC,CAAC;IACxB,CAAC,CAAC;EACJ,CAAC,CAAC;AACJ,CAAC;AACD,IAAI5B,UAAU,GAAGH,OAAO,CAACG,UAAU,GAAG,SAASA,UAAUA,CAAC6B,eAAe,EAAE;EACzE,IAAIC,eAAe,EAAEC,qBAAqB;EAC1C,IAAIC,IAAI,GAAG,CAAC,CAAC,EAAEzB,QAAQ,CAAC0B,MAAM,EAAEJ,eAAe,CAAC,GAAGA,eAAe,CAACG,IAAI,CAACA,IAAI,GAAGH,eAAe,CAACG,IAAI;;EAEnG;EACA,IAAI,OAAOA,IAAI,KAAK,UAAU,IAAI,EAAE,CAACF,eAAe,GAAGE,IAAI,CAACE,SAAS,MAAM,IAAI,IAAIJ,eAAe,KAAK,KAAK,CAAC,IAAIA,eAAe,CAACK,MAAM,CAAC,IAAIH,IAAI,CAACI,QAAQ,KAAK7B,QAAQ,CAAC8B,UAAU,EAAE;IACjL,OAAO,KAAK;EACd;;EAEA;EACA,IAAI,OAAOR,eAAe,KAAK,UAAU,IAAI,EAAE,CAACE,qBAAqB,GAAGF,eAAe,CAACK,SAAS,MAAM,IAAI,IAAIH,qBAAqB,KAAK,KAAK,CAAC,IAAIA,qBAAqB,CAACI,MAAM,CAAC,IAAIN,eAAe,CAACO,QAAQ,KAAK7B,QAAQ,CAAC8B,UAAU,EAAE;IACpO,OAAO,KAAK;EACd;EACA,OAAO,IAAI;AACb,CAAC;AACD,SAASC,cAAcA,CAAC5B,IAAI,EAAE;EAC5B,OAAO,aAAa,CAAC,CAAC,EAAEJ,MAAM,CAACiC,cAAc,EAAE7B,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAEH,QAAQ,CAACiC,UAAU,EAAE9B,IAAI,CAAC;AACzF;AACA,IAAIT,cAAc,GAAGJ,OAAO,CAACI,cAAc,GAAG,SAASA,cAAcA,CAACS,IAAI,EAAE;EAC1E,OAAO4B,cAAc,CAAC5B,IAAI,CAAC,IAAIV,UAAU,CAACU,IAAI,CAAC;AACjD,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA,IAAIR,UAAU,GAAGL,OAAO,CAACK,UAAU,GAAGuC,MAAM,CAACnC,MAAM,CAACoC,OAAO,CAACC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;AAChF;AACA,UAAUjC,IAAI,EAAE;EACd,IAAI4B,cAAc,CAAC5B,IAAI,CAAC,EAAE;IACxB,OAAOA,IAAI,CAACkC,KAAK,CAACnC,GAAG;EACvB;EACA,OAAO,IAAI;AACb,CAAC;AACD;AACA,UAAUC,IAAI,EAAE;EACd,IAAI4B,cAAc,CAAC5B,IAAI,CAAC,EAAE;IACxB,OAAOA,IAAI,CAACD,GAAG;EACjB;EACA,OAAO,IAAI;AACb,CAAC","ignoreList":[]},"metadata":{},"sourceType":"script","externalDependencies":[]}