GoScrobble/web/node_modules/.cache/babel-loader/9a15036a114d3b03013024dabf71cb11.json

1 line
32 KiB
JSON

{"ast":null,"code":"import { StyleSheet } from '@emotion/sheet';\nimport { dealloc, alloc, next, token, from, peek, delimit, identifier, position, stringify, COMMENT, rulesheet, middleware, prefixer, serialize, compile } from 'stylis';\nimport '@emotion/weak-memoize';\nimport '@emotion/memoize';\n\nvar last = function last(arr) {\n return arr.length ? arr[arr.length - 1] : null;\n};\n\nvar toRules = function toRules(parsed, points) {\n // pretend we've started with a comma\n var index = -1;\n var character = 44;\n\n do {\n switch (token(character)) {\n case 0:\n // &\\f\n if (character === 38 && peek() === 12) {\n // this is not 100% correct, we don't account for literal sequences here - like for example quoted strings\n // stylis inserts \\f after & to know when & where it should replace this sequence with the context selector\n // and when it should just concatenate the outer and inner selectors\n // it's very unlikely for this sequence to actually appear in a different context, so we just leverage this fact here\n points[index] = 1;\n }\n\n parsed[index] += identifier(position - 1);\n break;\n\n case 2:\n parsed[index] += delimit(character);\n break;\n\n case 4:\n // comma\n if (character === 44) {\n // colon\n parsed[++index] = peek() === 58 ? '&\\f' : '';\n points[index] = parsed[index].length;\n break;\n }\n\n // fallthrough\n\n default:\n parsed[index] += from(character);\n }\n } while (character = next());\n\n return parsed;\n};\n\nvar getRules = function getRules(value, points) {\n return dealloc(toRules(alloc(value), points));\n}; // WeakSet would be more appropriate, but only WeakMap is supported in IE11\n\n\nvar fixedElements = /* #__PURE__ */new WeakMap();\n\nvar compat = function compat(element) {\n if (element.type !== 'rule' || !element.parent || // .length indicates if this rule contains pseudo or not\n !element.length) {\n return;\n }\n\n var value = element.value,\n parent = element.parent;\n var isImplicitRule = element.column === parent.column && element.line === parent.line;\n\n while (parent.type !== 'rule') {\n parent = parent.parent;\n if (!parent) return;\n } // short-circuit for the simplest case\n\n\n if (element.props.length === 1 && value.charCodeAt(0) !== 58\n /* colon */\n && !fixedElements.get(parent)) {\n return;\n } // if this is an implicitly inserted rule (the one eagerly inserted at the each new nested level)\n // then the props has already been manipulated beforehand as they that array is shared between it and its \"rule parent\"\n\n\n if (isImplicitRule) {\n return;\n }\n\n fixedElements.set(element, true);\n var points = [];\n var rules = getRules(value, points);\n var parentRules = parent.props;\n\n for (var i = 0, k = 0; i < rules.length; i++) {\n for (var j = 0; j < parentRules.length; j++, k++) {\n element.props[k] = points[i] ? rules[i].replace(/&\\f/g, parentRules[j]) : parentRules[j] + \" \" + rules[i];\n }\n }\n};\n\nvar removeLabel = function removeLabel(element) {\n if (element.type === 'decl') {\n var value = element.value;\n\n if ( // charcode for l\n value.charCodeAt(0) === 108 && // charcode for b\n value.charCodeAt(2) === 98) {\n // this ignores label\n element[\"return\"] = '';\n element.value = '';\n }\n }\n};\n\nvar ignoreFlag = 'emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason';\n\nvar isIgnoringComment = function isIgnoringComment(element) {\n return !!element && element.type === 'comm' && element.children.indexOf(ignoreFlag) > -1;\n};\n\nvar createUnsafeSelectorsAlarm = function createUnsafeSelectorsAlarm(cache) {\n return function (element, index, children) {\n if (element.type !== 'rule') return;\n var unsafePseudoClasses = element.value.match(/(:first|:nth|:nth-last)-child/g);\n\n if (unsafePseudoClasses && cache.compat !== true) {\n var prevElement = index > 0 ? children[index - 1] : null;\n\n if (prevElement && isIgnoringComment(last(prevElement.children))) {\n return;\n }\n\n unsafePseudoClasses.forEach(function (unsafePseudoClass) {\n console.error(\"The pseudo class \\\"\" + unsafePseudoClass + \"\\\" is potentially unsafe when doing server-side rendering. Try changing it to \\\"\" + unsafePseudoClass.split('-child')[0] + \"-of-type\\\".\");\n });\n }\n };\n};\n\nvar isImportRule = function isImportRule(element) {\n return element.type.charCodeAt(1) === 105 && element.type.charCodeAt(0) === 64;\n};\n\nvar isPrependedWithRegularRules = function isPrependedWithRegularRules(index, children) {\n for (var i = index - 1; i >= 0; i--) {\n if (!isImportRule(children[i])) {\n return true;\n }\n }\n\n return false;\n}; // use this to remove incorrect elements from further processing\n// so they don't get handed to the `sheet` (or anything else)\n// as that could potentially lead to additional logs which in turn could be overhelming to the user\n\n\nvar nullifyElement = function nullifyElement(element) {\n element.type = '';\n element.value = '';\n element[\"return\"] = '';\n element.children = '';\n element.props = '';\n};\n\nvar incorrectImportAlarm = function incorrectImportAlarm(element, index, children) {\n if (!isImportRule(element)) {\n return;\n }\n\n if (element.parent) {\n console.error(\"`@import` rules can't be nested inside other rules. Please move it to the top level and put it before regular rules. Keep in mind that they can only be used within global styles.\");\n nullifyElement(element);\n } else if (isPrependedWithRegularRules(index, children)) {\n console.error(\"`@import` rules can't be after other rules. Please put your `@import` rules before your other rules.\");\n nullifyElement(element);\n }\n};\n\nvar defaultStylisPlugins = [prefixer];\n\nvar createCache = function createCache(options) {\n var key = options.key;\n\n if (process.env.NODE_ENV !== 'production' && !key) {\n throw new Error(\"You have to configure `key` for your cache. Please make sure it's unique (and not equal to 'css') as it's used for linking styles to your cache.\\n\" + \"If multiple caches share the same key they might \\\"fight\\\" for each other's style elements.\");\n }\n\n if (key === 'css') {\n var ssrStyles = document.querySelectorAll(\"style[data-emotion]:not([data-s])\"); // get SSRed styles out of the way of React's hydration\n // document.head is a safe place to move them to(though note document.head is not necessarily the last place they will be)\n // note this very very intentionally targets all style elements regardless of the key to ensure\n // that creating a cache works inside of render of a React component\n\n Array.prototype.forEach.call(ssrStyles, function (node) {\n // we want to only move elements which have a space in the data-emotion attribute value\n // because that indicates that it is an Emotion 11 server-side rendered style elements\n // while we will already ignore Emotion 11 client-side inserted styles because of the :not([data-s]) part in the selector\n // Emotion 10 client-side inserted styles did not have data-s (but importantly did not have a space in their data-emotion attributes)\n // so checking for the space ensures that loading Emotion 11 after Emotion 10 has inserted some styles\n // will not result in the Emotion 10 styles being destroyed\n var dataEmotionAttribute = node.getAttribute('data-emotion');\n\n if (dataEmotionAttribute.indexOf(' ') === -1) {\n return;\n }\n\n document.head.appendChild(node);\n node.setAttribute('data-s', '');\n });\n }\n\n var stylisPlugins = options.stylisPlugins || defaultStylisPlugins;\n\n if (process.env.NODE_ENV !== 'production') {\n // $FlowFixMe\n if (/[^a-z-]/.test(key)) {\n throw new Error(\"Emotion key must only contain lower case alphabetical characters and - but \\\"\" + key + \"\\\" was passed\");\n }\n }\n\n var inserted = {}; // $FlowFixMe\n\n var container;\n var nodesToHydrate = [];\n {\n container = options.container || document.head;\n Array.prototype.forEach.call( // this means we will ignore elements which don't have a space in them which\n // means that the style elements we're looking at are only Emotion 11 server-rendered style elements\n document.querySelectorAll(\"style[data-emotion^=\\\"\" + key + \" \\\"]\"), function (node) {\n var attrib = node.getAttribute(\"data-emotion\").split(' '); // $FlowFixMe\n\n for (var i = 1; i < attrib.length; i++) {\n inserted[attrib[i]] = true;\n }\n\n nodesToHydrate.push(node);\n });\n }\n\n var _insert;\n\n var omnipresentPlugins = [compat, removeLabel];\n\n if (process.env.NODE_ENV !== 'production') {\n omnipresentPlugins.push(createUnsafeSelectorsAlarm({\n get compat() {\n return cache.compat;\n }\n\n }), incorrectImportAlarm);\n }\n\n {\n var currentSheet;\n var finalizingPlugins = [stringify, process.env.NODE_ENV !== 'production' ? function (element) {\n if (!element.root) {\n if (element[\"return\"]) {\n currentSheet.insert(element[\"return\"]);\n } else if (element.value && element.type !== COMMENT) {\n // insert empty rule in non-production environments\n // so @emotion/jest can grab `key` from the (JS)DOM for caches without any rules inserted yet\n currentSheet.insert(element.value + \"{}\");\n }\n }\n } : rulesheet(function (rule) {\n currentSheet.insert(rule);\n })];\n var serializer = middleware(omnipresentPlugins.concat(stylisPlugins, finalizingPlugins));\n\n var stylis = function stylis(styles) {\n return serialize(compile(styles), serializer);\n };\n\n _insert = function insert(selector, serialized, sheet, shouldCache) {\n currentSheet = sheet;\n\n if (process.env.NODE_ENV !== 'production' && serialized.map !== undefined) {\n currentSheet = {\n insert: function insert(rule) {\n sheet.insert(rule + serialized.map);\n }\n };\n }\n\n stylis(selector ? selector + \"{\" + serialized.styles + \"}\" : serialized.styles);\n\n if (shouldCache) {\n cache.inserted[serialized.name] = true;\n }\n };\n }\n var cache = {\n key: key,\n sheet: new StyleSheet({\n key: key,\n container: container,\n nonce: options.nonce,\n speedy: options.speedy,\n prepend: options.prepend\n }),\n nonce: options.nonce,\n inserted: inserted,\n registered: {},\n insert: _insert\n };\n cache.sheet.hydrate(nodesToHydrate);\n return cache;\n};\n\nexport default createCache;","map":{"version":3,"sources":["/app/node_modules/@emotion/react/node_modules/@emotion/cache/dist/emotion-cache.browser.esm.js"],"names":["StyleSheet","dealloc","alloc","next","token","from","peek","delimit","identifier","position","stringify","COMMENT","rulesheet","middleware","prefixer","serialize","compile","last","arr","length","toRules","parsed","points","index","character","getRules","value","fixedElements","WeakMap","compat","element","type","parent","isImplicitRule","column","line","props","charCodeAt","get","set","rules","parentRules","i","k","j","replace","removeLabel","ignoreFlag","isIgnoringComment","children","indexOf","createUnsafeSelectorsAlarm","cache","unsafePseudoClasses","match","prevElement","forEach","unsafePseudoClass","console","error","split","isImportRule","isPrependedWithRegularRules","nullifyElement","incorrectImportAlarm","defaultStylisPlugins","createCache","options","key","process","env","NODE_ENV","Error","ssrStyles","document","querySelectorAll","Array","prototype","call","node","dataEmotionAttribute","getAttribute","head","appendChild","setAttribute","stylisPlugins","test","inserted","container","nodesToHydrate","attrib","push","_insert","omnipresentPlugins","currentSheet","finalizingPlugins","root","insert","rule","serializer","concat","stylis","styles","selector","serialized","sheet","shouldCache","map","undefined","name","nonce","speedy","prepend","registered","hydrate"],"mappings":"AAAA,SAASA,UAAT,QAA2B,gBAA3B;AACA,SAASC,OAAT,EAAkBC,KAAlB,EAAyBC,IAAzB,EAA+BC,KAA/B,EAAsCC,IAAtC,EAA4CC,IAA5C,EAAkDC,OAAlD,EAA2DC,UAA3D,EAAuEC,QAAvE,EAAiFC,SAAjF,EAA4FC,OAA5F,EAAqGC,SAArG,EAAgHC,UAAhH,EAA4HC,QAA5H,EAAsIC,SAAtI,EAAiJC,OAAjJ,QAAgK,QAAhK;AACA,OAAO,uBAAP;AACA,OAAO,kBAAP;;AAEA,IAAIC,IAAI,GAAG,SAASA,IAAT,CAAcC,GAAd,EAAmB;AAC5B,SAAOA,GAAG,CAACC,MAAJ,GAAaD,GAAG,CAACA,GAAG,CAACC,MAAJ,GAAa,CAAd,CAAhB,GAAmC,IAA1C;AACD,CAFD;;AAIA,IAAIC,OAAO,GAAG,SAASA,OAAT,CAAiBC,MAAjB,EAAyBC,MAAzB,EAAiC;AAC7C;AACA,MAAIC,KAAK,GAAG,CAAC,CAAb;AACA,MAAIC,SAAS,GAAG,EAAhB;;AAEA,KAAG;AACD,YAAQpB,KAAK,CAACoB,SAAD,CAAb;AACE,WAAK,CAAL;AACE;AACA,YAAIA,SAAS,KAAK,EAAd,IAAoBlB,IAAI,OAAO,EAAnC,EAAuC;AACrC;AACA;AACA;AACA;AACAgB,UAAAA,MAAM,CAACC,KAAD,CAAN,GAAgB,CAAhB;AACD;;AAEDF,QAAAA,MAAM,CAACE,KAAD,CAAN,IAAiBf,UAAU,CAACC,QAAQ,GAAG,CAAZ,CAA3B;AACA;;AAEF,WAAK,CAAL;AACEY,QAAAA,MAAM,CAACE,KAAD,CAAN,IAAiBhB,OAAO,CAACiB,SAAD,CAAxB;AACA;;AAEF,WAAK,CAAL;AACE;AACA,YAAIA,SAAS,KAAK,EAAlB,EAAsB;AACpB;AACAH,UAAAA,MAAM,CAAC,EAAEE,KAAH,CAAN,GAAkBjB,IAAI,OAAO,EAAX,GAAgB,KAAhB,GAAwB,EAA1C;AACAgB,UAAAA,MAAM,CAACC,KAAD,CAAN,GAAgBF,MAAM,CAACE,KAAD,CAAN,CAAcJ,MAA9B;AACA;AACD;;AAEH;;AAEA;AACEE,QAAAA,MAAM,CAACE,KAAD,CAAN,IAAiBlB,IAAI,CAACmB,SAAD,CAArB;AA9BJ;AAgCD,GAjCD,QAiCSA,SAAS,GAAGrB,IAAI,EAjCzB;;AAmCA,SAAOkB,MAAP;AACD,CAzCD;;AA2CA,IAAII,QAAQ,GAAG,SAASA,QAAT,CAAkBC,KAAlB,EAAyBJ,MAAzB,EAAiC;AAC9C,SAAOrB,OAAO,CAACmB,OAAO,CAAClB,KAAK,CAACwB,KAAD,CAAN,EAAeJ,MAAf,CAAR,CAAd;AACD,CAFD,C,CAEG;;;AAGH,IAAIK,aAAa,GAAG,eAAe,IAAIC,OAAJ,EAAnC;;AACA,IAAIC,MAAM,GAAG,SAASA,MAAT,CAAgBC,OAAhB,EAAyB;AACpC,MAAIA,OAAO,CAACC,IAAR,KAAiB,MAAjB,IAA2B,CAACD,OAAO,CAACE,MAApC,IAA8C;AAClD,GAACF,OAAO,CAACX,MADT,EACiB;AACf;AACD;;AAED,MAAIO,KAAK,GAAGI,OAAO,CAACJ,KAApB;AAAA,MACIM,MAAM,GAAGF,OAAO,CAACE,MADrB;AAEA,MAAIC,cAAc,GAAGH,OAAO,CAACI,MAAR,KAAmBF,MAAM,CAACE,MAA1B,IAAoCJ,OAAO,CAACK,IAAR,KAAiBH,MAAM,CAACG,IAAjF;;AAEA,SAAOH,MAAM,CAACD,IAAP,KAAgB,MAAvB,EAA+B;AAC7BC,IAAAA,MAAM,GAAGA,MAAM,CAACA,MAAhB;AACA,QAAI,CAACA,MAAL,EAAa;AACd,GAbmC,CAalC;;;AAGF,MAAIF,OAAO,CAACM,KAAR,CAAcjB,MAAd,KAAyB,CAAzB,IAA8BO,KAAK,CAACW,UAAN,CAAiB,CAAjB,MAAwB;AAC1D;AADI,KAED,CAACV,aAAa,CAACW,GAAd,CAAkBN,MAAlB,CAFJ,EAE+B;AAC7B;AACD,GApBmC,CAoBlC;AACF;;;AAGA,MAAIC,cAAJ,EAAoB;AAClB;AACD;;AAEDN,EAAAA,aAAa,CAACY,GAAd,CAAkBT,OAAlB,EAA2B,IAA3B;AACA,MAAIR,MAAM,GAAG,EAAb;AACA,MAAIkB,KAAK,GAAGf,QAAQ,CAACC,KAAD,EAAQJ,MAAR,CAApB;AACA,MAAImB,WAAW,GAAGT,MAAM,CAACI,KAAzB;;AAEA,OAAK,IAAIM,CAAC,GAAG,CAAR,EAAWC,CAAC,GAAG,CAApB,EAAuBD,CAAC,GAAGF,KAAK,CAACrB,MAAjC,EAAyCuB,CAAC,EAA1C,EAA8C;AAC5C,SAAK,IAAIE,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGH,WAAW,CAACtB,MAAhC,EAAwCyB,CAAC,IAAID,CAAC,EAA9C,EAAkD;AAChDb,MAAAA,OAAO,CAACM,KAAR,CAAcO,CAAd,IAAmBrB,MAAM,CAACoB,CAAD,CAAN,GAAYF,KAAK,CAACE,CAAD,CAAL,CAASG,OAAT,CAAiB,MAAjB,EAAyBJ,WAAW,CAACG,CAAD,CAApC,CAAZ,GAAuDH,WAAW,CAACG,CAAD,CAAX,GAAiB,GAAjB,GAAuBJ,KAAK,CAACE,CAAD,CAAtG;AACD;AACF;AACF,CAtCD;;AAuCA,IAAII,WAAW,GAAG,SAASA,WAAT,CAAqBhB,OAArB,EAA8B;AAC9C,MAAIA,OAAO,CAACC,IAAR,KAAiB,MAArB,EAA6B;AAC3B,QAAIL,KAAK,GAAGI,OAAO,CAACJ,KAApB;;AAEA,SAAK;AACLA,IAAAA,KAAK,CAACW,UAAN,CAAiB,CAAjB,MAAwB,GAAxB,IAA+B;AAC/BX,IAAAA,KAAK,CAACW,UAAN,CAAiB,CAAjB,MAAwB,EAFxB,EAE4B;AAC1B;AACAP,MAAAA,OAAO,CAAC,QAAD,CAAP,GAAoB,EAApB;AACAA,MAAAA,OAAO,CAACJ,KAAR,GAAgB,EAAhB;AACD;AACF;AACF,CAZD;;AAaA,IAAIqB,UAAU,GAAG,iHAAjB;;AAEA,IAAIC,iBAAiB,GAAG,SAASA,iBAAT,CAA2BlB,OAA3B,EAAoC;AAC1D,SAAO,CAAC,CAACA,OAAF,IAAaA,OAAO,CAACC,IAAR,KAAiB,MAA9B,IAAwCD,OAAO,CAACmB,QAAR,CAAiBC,OAAjB,CAAyBH,UAAzB,IAAuC,CAAC,CAAvF;AACD,CAFD;;AAIA,IAAII,0BAA0B,GAAG,SAASA,0BAAT,CAAoCC,KAApC,EAA2C;AAC1E,SAAO,UAAUtB,OAAV,EAAmBP,KAAnB,EAA0B0B,QAA1B,EAAoC;AACzC,QAAInB,OAAO,CAACC,IAAR,KAAiB,MAArB,EAA6B;AAC7B,QAAIsB,mBAAmB,GAAGvB,OAAO,CAACJ,KAAR,CAAc4B,KAAd,CAAoB,gCAApB,CAA1B;;AAEA,QAAID,mBAAmB,IAAID,KAAK,CAACvB,MAAN,KAAiB,IAA5C,EAAkD;AAChD,UAAI0B,WAAW,GAAGhC,KAAK,GAAG,CAAR,GAAY0B,QAAQ,CAAC1B,KAAK,GAAG,CAAT,CAApB,GAAkC,IAApD;;AAEA,UAAIgC,WAAW,IAAIP,iBAAiB,CAAC/B,IAAI,CAACsC,WAAW,CAACN,QAAb,CAAL,CAApC,EAAkE;AAChE;AACD;;AAEDI,MAAAA,mBAAmB,CAACG,OAApB,CAA4B,UAAUC,iBAAV,EAA6B;AACvDC,QAAAA,OAAO,CAACC,KAAR,CAAc,wBAAwBF,iBAAxB,GAA4C,kFAA5C,GAAiIA,iBAAiB,CAACG,KAAlB,CAAwB,QAAxB,EAAkC,CAAlC,CAAjI,GAAwK,aAAtL;AACD,OAFD;AAGD;AACF,GAfD;AAgBD,CAjBD;;AAmBA,IAAIC,YAAY,GAAG,SAASA,YAAT,CAAsB/B,OAAtB,EAA+B;AAChD,SAAOA,OAAO,CAACC,IAAR,CAAaM,UAAb,CAAwB,CAAxB,MAA+B,GAA/B,IAAsCP,OAAO,CAACC,IAAR,CAAaM,UAAb,CAAwB,CAAxB,MAA+B,EAA5E;AACD,CAFD;;AAIA,IAAIyB,2BAA2B,GAAG,SAASA,2BAAT,CAAqCvC,KAArC,EAA4C0B,QAA5C,EAAsD;AACtF,OAAK,IAAIP,CAAC,GAAGnB,KAAK,GAAG,CAArB,EAAwBmB,CAAC,IAAI,CAA7B,EAAgCA,CAAC,EAAjC,EAAqC;AACnC,QAAI,CAACmB,YAAY,CAACZ,QAAQ,CAACP,CAAD,CAAT,CAAjB,EAAgC;AAC9B,aAAO,IAAP;AACD;AACF;;AAED,SAAO,KAAP;AACD,CARD,C,CAQG;AACH;AACA;;;AAGA,IAAIqB,cAAc,GAAG,SAASA,cAAT,CAAwBjC,OAAxB,EAAiC;AACpDA,EAAAA,OAAO,CAACC,IAAR,GAAe,EAAf;AACAD,EAAAA,OAAO,CAACJ,KAAR,GAAgB,EAAhB;AACAI,EAAAA,OAAO,CAAC,QAAD,CAAP,GAAoB,EAApB;AACAA,EAAAA,OAAO,CAACmB,QAAR,GAAmB,EAAnB;AACAnB,EAAAA,OAAO,CAACM,KAAR,GAAgB,EAAhB;AACD,CAND;;AAQA,IAAI4B,oBAAoB,GAAG,SAASA,oBAAT,CAA8BlC,OAA9B,EAAuCP,KAAvC,EAA8C0B,QAA9C,EAAwD;AACjF,MAAI,CAACY,YAAY,CAAC/B,OAAD,CAAjB,EAA4B;AAC1B;AACD;;AAED,MAAIA,OAAO,CAACE,MAAZ,EAAoB;AAClB0B,IAAAA,OAAO,CAACC,KAAR,CAAc,oLAAd;AACAI,IAAAA,cAAc,CAACjC,OAAD,CAAd;AACD,GAHD,MAGO,IAAIgC,2BAA2B,CAACvC,KAAD,EAAQ0B,QAAR,CAA/B,EAAkD;AACvDS,IAAAA,OAAO,CAACC,KAAR,CAAc,sGAAd;AACAI,IAAAA,cAAc,CAACjC,OAAD,CAAd;AACD;AACF,CAZD;;AAcA,IAAImC,oBAAoB,GAAG,CAACnD,QAAD,CAA3B;;AAEA,IAAIoD,WAAW,GAAG,SAASA,WAAT,CAAqBC,OAArB,EAA8B;AAC9C,MAAIC,GAAG,GAAGD,OAAO,CAACC,GAAlB;;AAEA,MAAIC,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAAzB,IAAyC,CAACH,GAA9C,EAAmD;AACjD,UAAM,IAAII,KAAJ,CAAU,uJAAuJ,6FAAjK,CAAN;AACD;;AAED,MAAKJ,GAAG,KAAK,KAAb,EAAoB;AAClB,QAAIK,SAAS,GAAGC,QAAQ,CAACC,gBAAT,CAA0B,mCAA1B,CAAhB,CADkB,CAC8D;AAChF;AACA;AACA;;AAEAC,IAAAA,KAAK,CAACC,SAAN,CAAgBrB,OAAhB,CAAwBsB,IAAxB,CAA6BL,SAA7B,EAAwC,UAAUM,IAAV,EAAgB;AACtD;AACA;AACA;AACA;AACA;AACA;AACA,UAAIC,oBAAoB,GAAGD,IAAI,CAACE,YAAL,CAAkB,cAAlB,CAA3B;;AAEA,UAAID,oBAAoB,CAAC9B,OAArB,CAA6B,GAA7B,MAAsC,CAAC,CAA3C,EAA8C;AAC5C;AACD;;AACDwB,MAAAA,QAAQ,CAACQ,IAAT,CAAcC,WAAd,CAA0BJ,IAA1B;AACAA,MAAAA,IAAI,CAACK,YAAL,CAAkB,QAAlB,EAA4B,EAA5B;AACD,KAdD;AAeD;;AAED,MAAIC,aAAa,GAAGlB,OAAO,CAACkB,aAAR,IAAyBpB,oBAA7C;;AAEA,MAAII,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;AACzC;AACA,QAAI,UAAUe,IAAV,CAAelB,GAAf,CAAJ,EAAyB;AACvB,YAAM,IAAII,KAAJ,CAAU,kFAAkFJ,GAAlF,GAAwF,eAAlG,CAAN;AACD;AACF;;AAED,MAAImB,QAAQ,GAAG,EAAf,CAvC8C,CAuC3B;;AAEnB,MAAIC,SAAJ;AACA,MAAIC,cAAc,GAAG,EAArB;AAEA;AACED,IAAAA,SAAS,GAAGrB,OAAO,CAACqB,SAAR,IAAqBd,QAAQ,CAACQ,IAA1C;AACAN,IAAAA,KAAK,CAACC,SAAN,CAAgBrB,OAAhB,CAAwBsB,IAAxB,EAA8B;AAC9B;AACAJ,IAAAA,QAAQ,CAACC,gBAAT,CAA0B,2BAA2BP,GAA3B,GAAiC,MAA3D,CAFA,EAEoE,UAAUW,IAAV,EAAgB;AAClF,UAAIW,MAAM,GAAGX,IAAI,CAACE,YAAL,CAAkB,cAAlB,EAAkCrB,KAAlC,CAAwC,GAAxC,CAAb,CADkF,CACvB;;AAE3D,WAAK,IAAIlB,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGgD,MAAM,CAACvE,MAA3B,EAAmCuB,CAAC,EAApC,EAAwC;AACtC6C,QAAAA,QAAQ,CAACG,MAAM,CAAChD,CAAD,CAAP,CAAR,GAAsB,IAAtB;AACD;;AAED+C,MAAAA,cAAc,CAACE,IAAf,CAAoBZ,IAApB;AACD,KAVD;AAWD;;AAED,MAAIa,OAAJ;;AAEA,MAAIC,kBAAkB,GAAG,CAAChE,MAAD,EAASiB,WAAT,CAAzB;;AAEA,MAAIuB,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;AACzCsB,IAAAA,kBAAkB,CAACF,IAAnB,CAAwBxC,0BAA0B,CAAC;AACjD,UAAItB,MAAJ,GAAa;AACX,eAAOuB,KAAK,CAACvB,MAAb;AACD;;AAHgD,KAAD,CAAlD,EAKImC,oBALJ;AAMD;;AAED;AACE,QAAI8B,YAAJ;AACA,QAAIC,iBAAiB,GAAG,CAACrF,SAAD,EAAY2D,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAAzB,GAAwC,UAAUzC,OAAV,EAAmB;AAC7F,UAAI,CAACA,OAAO,CAACkE,IAAb,EAAmB;AACjB,YAAIlE,OAAO,CAAC,QAAD,CAAX,EAAuB;AACrBgE,UAAAA,YAAY,CAACG,MAAb,CAAoBnE,OAAO,CAAC,QAAD,CAA3B;AACD,SAFD,MAEO,IAAIA,OAAO,CAACJ,KAAR,IAAiBI,OAAO,CAACC,IAAR,KAAiBpB,OAAtC,EAA+C;AACpD;AACA;AACAmF,UAAAA,YAAY,CAACG,MAAb,CAAoBnE,OAAO,CAACJ,KAAR,GAAgB,IAApC;AACD;AACF;AACF,KAVmC,GAUhCd,SAAS,CAAC,UAAUsF,IAAV,EAAgB;AAC5BJ,MAAAA,YAAY,CAACG,MAAb,CAAoBC,IAApB;AACD,KAFY,CAVW,CAAxB;AAaA,QAAIC,UAAU,GAAGtF,UAAU,CAACgF,kBAAkB,CAACO,MAAnB,CAA0Bf,aAA1B,EAAyCU,iBAAzC,CAAD,CAA3B;;AAEA,QAAIM,MAAM,GAAG,SAASA,MAAT,CAAgBC,MAAhB,EAAwB;AACnC,aAAOvF,SAAS,CAACC,OAAO,CAACsF,MAAD,CAAR,EAAkBH,UAAlB,CAAhB;AACD,KAFD;;AAIAP,IAAAA,OAAO,GAAG,SAASK,MAAT,CAAgBM,QAAhB,EAA0BC,UAA1B,EAAsCC,KAAtC,EAA6CC,WAA7C,EAA0D;AAClEZ,MAAAA,YAAY,GAAGW,KAAf;;AAEA,UAAIpC,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAAzB,IAAyCiC,UAAU,CAACG,GAAX,KAAmBC,SAAhE,EAA2E;AACzEd,QAAAA,YAAY,GAAG;AACbG,UAAAA,MAAM,EAAE,SAASA,MAAT,CAAgBC,IAAhB,EAAsB;AAC5BO,YAAAA,KAAK,CAACR,MAAN,CAAaC,IAAI,GAAGM,UAAU,CAACG,GAA/B;AACD;AAHY,SAAf;AAKD;;AAEDN,MAAAA,MAAM,CAACE,QAAQ,GAAGA,QAAQ,GAAG,GAAX,GAAiBC,UAAU,CAACF,MAA5B,GAAqC,GAAxC,GAA8CE,UAAU,CAACF,MAAlE,CAAN;;AAEA,UAAII,WAAJ,EAAiB;AACftD,QAAAA,KAAK,CAACmC,QAAN,CAAeiB,UAAU,CAACK,IAA1B,IAAkC,IAAlC;AACD;AACF,KAhBD;AAiBD;AAED,MAAIzD,KAAK,GAAG;AACVgB,IAAAA,GAAG,EAAEA,GADK;AAEVqC,IAAAA,KAAK,EAAE,IAAIzG,UAAJ,CAAe;AACpBoE,MAAAA,GAAG,EAAEA,GADe;AAEpBoB,MAAAA,SAAS,EAAEA,SAFS;AAGpBsB,MAAAA,KAAK,EAAE3C,OAAO,CAAC2C,KAHK;AAIpBC,MAAAA,MAAM,EAAE5C,OAAO,CAAC4C,MAJI;AAKpBC,MAAAA,OAAO,EAAE7C,OAAO,CAAC6C;AALG,KAAf,CAFG;AASVF,IAAAA,KAAK,EAAE3C,OAAO,CAAC2C,KATL;AAUVvB,IAAAA,QAAQ,EAAEA,QAVA;AAWV0B,IAAAA,UAAU,EAAE,EAXF;AAYVhB,IAAAA,MAAM,EAAEL;AAZE,GAAZ;AAcAxC,EAAAA,KAAK,CAACqD,KAAN,CAAYS,OAAZ,CAAoBzB,cAApB;AACA,SAAOrC,KAAP;AACD,CAhID;;AAkIA,eAAec,WAAf","sourcesContent":["import { StyleSheet } from '@emotion/sheet';\nimport { dealloc, alloc, next, token, from, peek, delimit, identifier, position, stringify, COMMENT, rulesheet, middleware, prefixer, serialize, compile } from 'stylis';\nimport '@emotion/weak-memoize';\nimport '@emotion/memoize';\n\nvar last = function last(arr) {\n return arr.length ? arr[arr.length - 1] : null;\n};\n\nvar toRules = function toRules(parsed, points) {\n // pretend we've started with a comma\n var index = -1;\n var character = 44;\n\n do {\n switch (token(character)) {\n case 0:\n // &\\f\n if (character === 38 && peek() === 12) {\n // this is not 100% correct, we don't account for literal sequences here - like for example quoted strings\n // stylis inserts \\f after & to know when & where it should replace this sequence with the context selector\n // and when it should just concatenate the outer and inner selectors\n // it's very unlikely for this sequence to actually appear in a different context, so we just leverage this fact here\n points[index] = 1;\n }\n\n parsed[index] += identifier(position - 1);\n break;\n\n case 2:\n parsed[index] += delimit(character);\n break;\n\n case 4:\n // comma\n if (character === 44) {\n // colon\n parsed[++index] = peek() === 58 ? '&\\f' : '';\n points[index] = parsed[index].length;\n break;\n }\n\n // fallthrough\n\n default:\n parsed[index] += from(character);\n }\n } while (character = next());\n\n return parsed;\n};\n\nvar getRules = function getRules(value, points) {\n return dealloc(toRules(alloc(value), points));\n}; // WeakSet would be more appropriate, but only WeakMap is supported in IE11\n\n\nvar fixedElements = /* #__PURE__ */new WeakMap();\nvar compat = function compat(element) {\n if (element.type !== 'rule' || !element.parent || // .length indicates if this rule contains pseudo or not\n !element.length) {\n return;\n }\n\n var value = element.value,\n parent = element.parent;\n var isImplicitRule = element.column === parent.column && element.line === parent.line;\n\n while (parent.type !== 'rule') {\n parent = parent.parent;\n if (!parent) return;\n } // short-circuit for the simplest case\n\n\n if (element.props.length === 1 && value.charCodeAt(0) !== 58\n /* colon */\n && !fixedElements.get(parent)) {\n return;\n } // if this is an implicitly inserted rule (the one eagerly inserted at the each new nested level)\n // then the props has already been manipulated beforehand as they that array is shared between it and its \"rule parent\"\n\n\n if (isImplicitRule) {\n return;\n }\n\n fixedElements.set(element, true);\n var points = [];\n var rules = getRules(value, points);\n var parentRules = parent.props;\n\n for (var i = 0, k = 0; i < rules.length; i++) {\n for (var j = 0; j < parentRules.length; j++, k++) {\n element.props[k] = points[i] ? rules[i].replace(/&\\f/g, parentRules[j]) : parentRules[j] + \" \" + rules[i];\n }\n }\n};\nvar removeLabel = function removeLabel(element) {\n if (element.type === 'decl') {\n var value = element.value;\n\n if ( // charcode for l\n value.charCodeAt(0) === 108 && // charcode for b\n value.charCodeAt(2) === 98) {\n // this ignores label\n element[\"return\"] = '';\n element.value = '';\n }\n }\n};\nvar ignoreFlag = 'emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason';\n\nvar isIgnoringComment = function isIgnoringComment(element) {\n return !!element && element.type === 'comm' && element.children.indexOf(ignoreFlag) > -1;\n};\n\nvar createUnsafeSelectorsAlarm = function createUnsafeSelectorsAlarm(cache) {\n return function (element, index, children) {\n if (element.type !== 'rule') return;\n var unsafePseudoClasses = element.value.match(/(:first|:nth|:nth-last)-child/g);\n\n if (unsafePseudoClasses && cache.compat !== true) {\n var prevElement = index > 0 ? children[index - 1] : null;\n\n if (prevElement && isIgnoringComment(last(prevElement.children))) {\n return;\n }\n\n unsafePseudoClasses.forEach(function (unsafePseudoClass) {\n console.error(\"The pseudo class \\\"\" + unsafePseudoClass + \"\\\" is potentially unsafe when doing server-side rendering. Try changing it to \\\"\" + unsafePseudoClass.split('-child')[0] + \"-of-type\\\".\");\n });\n }\n };\n};\n\nvar isImportRule = function isImportRule(element) {\n return element.type.charCodeAt(1) === 105 && element.type.charCodeAt(0) === 64;\n};\n\nvar isPrependedWithRegularRules = function isPrependedWithRegularRules(index, children) {\n for (var i = index - 1; i >= 0; i--) {\n if (!isImportRule(children[i])) {\n return true;\n }\n }\n\n return false;\n}; // use this to remove incorrect elements from further processing\n// so they don't get handed to the `sheet` (or anything else)\n// as that could potentially lead to additional logs which in turn could be overhelming to the user\n\n\nvar nullifyElement = function nullifyElement(element) {\n element.type = '';\n element.value = '';\n element[\"return\"] = '';\n element.children = '';\n element.props = '';\n};\n\nvar incorrectImportAlarm = function incorrectImportAlarm(element, index, children) {\n if (!isImportRule(element)) {\n return;\n }\n\n if (element.parent) {\n console.error(\"`@import` rules can't be nested inside other rules. Please move it to the top level and put it before regular rules. Keep in mind that they can only be used within global styles.\");\n nullifyElement(element);\n } else if (isPrependedWithRegularRules(index, children)) {\n console.error(\"`@import` rules can't be after other rules. Please put your `@import` rules before your other rules.\");\n nullifyElement(element);\n }\n};\n\nvar defaultStylisPlugins = [prefixer];\n\nvar createCache = function createCache(options) {\n var key = options.key;\n\n if (process.env.NODE_ENV !== 'production' && !key) {\n throw new Error(\"You have to configure `key` for your cache. Please make sure it's unique (and not equal to 'css') as it's used for linking styles to your cache.\\n\" + \"If multiple caches share the same key they might \\\"fight\\\" for each other's style elements.\");\n }\n\n if ( key === 'css') {\n var ssrStyles = document.querySelectorAll(\"style[data-emotion]:not([data-s])\"); // get SSRed styles out of the way of React's hydration\n // document.head is a safe place to move them to(though note document.head is not necessarily the last place they will be)\n // note this very very intentionally targets all style elements regardless of the key to ensure\n // that creating a cache works inside of render of a React component\n\n Array.prototype.forEach.call(ssrStyles, function (node) {\n // we want to only move elements which have a space in the data-emotion attribute value\n // because that indicates that it is an Emotion 11 server-side rendered style elements\n // while we will already ignore Emotion 11 client-side inserted styles because of the :not([data-s]) part in the selector\n // Emotion 10 client-side inserted styles did not have data-s (but importantly did not have a space in their data-emotion attributes)\n // so checking for the space ensures that loading Emotion 11 after Emotion 10 has inserted some styles\n // will not result in the Emotion 10 styles being destroyed\n var dataEmotionAttribute = node.getAttribute('data-emotion');\n\n if (dataEmotionAttribute.indexOf(' ') === -1) {\n return;\n }\n document.head.appendChild(node);\n node.setAttribute('data-s', '');\n });\n }\n\n var stylisPlugins = options.stylisPlugins || defaultStylisPlugins;\n\n if (process.env.NODE_ENV !== 'production') {\n // $FlowFixMe\n if (/[^a-z-]/.test(key)) {\n throw new Error(\"Emotion key must only contain lower case alphabetical characters and - but \\\"\" + key + \"\\\" was passed\");\n }\n }\n\n var inserted = {}; // $FlowFixMe\n\n var container;\n var nodesToHydrate = [];\n\n {\n container = options.container || document.head;\n Array.prototype.forEach.call( // this means we will ignore elements which don't have a space in them which\n // means that the style elements we're looking at are only Emotion 11 server-rendered style elements\n document.querySelectorAll(\"style[data-emotion^=\\\"\" + key + \" \\\"]\"), function (node) {\n var attrib = node.getAttribute(\"data-emotion\").split(' '); // $FlowFixMe\n\n for (var i = 1; i < attrib.length; i++) {\n inserted[attrib[i]] = true;\n }\n\n nodesToHydrate.push(node);\n });\n }\n\n var _insert;\n\n var omnipresentPlugins = [compat, removeLabel];\n\n if (process.env.NODE_ENV !== 'production') {\n omnipresentPlugins.push(createUnsafeSelectorsAlarm({\n get compat() {\n return cache.compat;\n }\n\n }), incorrectImportAlarm);\n }\n\n {\n var currentSheet;\n var finalizingPlugins = [stringify, process.env.NODE_ENV !== 'production' ? function (element) {\n if (!element.root) {\n if (element[\"return\"]) {\n currentSheet.insert(element[\"return\"]);\n } else if (element.value && element.type !== COMMENT) {\n // insert empty rule in non-production environments\n // so @emotion/jest can grab `key` from the (JS)DOM for caches without any rules inserted yet\n currentSheet.insert(element.value + \"{}\");\n }\n }\n } : rulesheet(function (rule) {\n currentSheet.insert(rule);\n })];\n var serializer = middleware(omnipresentPlugins.concat(stylisPlugins, finalizingPlugins));\n\n var stylis = function stylis(styles) {\n return serialize(compile(styles), serializer);\n };\n\n _insert = function insert(selector, serialized, sheet, shouldCache) {\n currentSheet = sheet;\n\n if (process.env.NODE_ENV !== 'production' && serialized.map !== undefined) {\n currentSheet = {\n insert: function insert(rule) {\n sheet.insert(rule + serialized.map);\n }\n };\n }\n\n stylis(selector ? selector + \"{\" + serialized.styles + \"}\" : serialized.styles);\n\n if (shouldCache) {\n cache.inserted[serialized.name] = true;\n }\n };\n }\n\n var cache = {\n key: key,\n sheet: new StyleSheet({\n key: key,\n container: container,\n nonce: options.nonce,\n speedy: options.speedy,\n prepend: options.prepend\n }),\n nonce: options.nonce,\n inserted: inserted,\n registered: {},\n insert: _insert\n };\n cache.sheet.hydrate(nodesToHydrate);\n return cache;\n};\n\nexport default createCache;\n"]},"metadata":{},"sourceType":"module"}