Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-inclu.../js/dist
File: components.js
[12500] Fix | Delete
var inserted = {};
[12501] Fix | Delete
var container;
[12502] Fix | Delete
var nodesToHydrate = [];
[12503] Fix | Delete
[12504] Fix | Delete
{
[12505] Fix | Delete
container = options.container || document.head;
[12506] Fix | Delete
Array.prototype.forEach.call( // this means we will ignore elements which don't have a space in them which
[12507] Fix | Delete
// means that the style elements we're looking at are only Emotion 11 server-rendered style elements
[12508] Fix | Delete
document.querySelectorAll("style[data-emotion^=\"" + key + " \"]"), function (node) {
[12509] Fix | Delete
var attrib = node.getAttribute("data-emotion").split(' '); // $FlowFixMe
[12510] Fix | Delete
[12511] Fix | Delete
for (var i = 1; i < attrib.length; i++) {
[12512] Fix | Delete
inserted[attrib[i]] = true;
[12513] Fix | Delete
}
[12514] Fix | Delete
[12515] Fix | Delete
nodesToHydrate.push(node);
[12516] Fix | Delete
});
[12517] Fix | Delete
}
[12518] Fix | Delete
[12519] Fix | Delete
var _insert;
[12520] Fix | Delete
[12521] Fix | Delete
var omnipresentPlugins = [compat, removeLabel];
[12522] Fix | Delete
[12523] Fix | Delete
if (false) {}
[12524] Fix | Delete
[12525] Fix | Delete
{
[12526] Fix | Delete
var currentSheet;
[12527] Fix | Delete
var finalizingPlugins = [stringify, false ? 0 : rulesheet(function (rule) {
[12528] Fix | Delete
currentSheet.insert(rule);
[12529] Fix | Delete
})];
[12530] Fix | Delete
var serializer = middleware(omnipresentPlugins.concat(stylisPlugins, finalizingPlugins));
[12531] Fix | Delete
[12532] Fix | Delete
var stylis = function stylis(styles) {
[12533] Fix | Delete
return Serializer_serialize(compile(styles), serializer);
[12534] Fix | Delete
};
[12535] Fix | Delete
[12536] Fix | Delete
_insert = function insert(selector, serialized, sheet, shouldCache) {
[12537] Fix | Delete
currentSheet = sheet;
[12538] Fix | Delete
[12539] Fix | Delete
if (false) {}
[12540] Fix | Delete
[12541] Fix | Delete
stylis(selector ? selector + "{" + serialized.styles + "}" : serialized.styles);
[12542] Fix | Delete
[12543] Fix | Delete
if (shouldCache) {
[12544] Fix | Delete
cache.inserted[serialized.name] = true;
[12545] Fix | Delete
}
[12546] Fix | Delete
};
[12547] Fix | Delete
}
[12548] Fix | Delete
[12549] Fix | Delete
var cache = {
[12550] Fix | Delete
key: key,
[12551] Fix | Delete
sheet: new StyleSheet({
[12552] Fix | Delete
key: key,
[12553] Fix | Delete
container: container,
[12554] Fix | Delete
nonce: options.nonce,
[12555] Fix | Delete
speedy: options.speedy,
[12556] Fix | Delete
prepend: options.prepend,
[12557] Fix | Delete
insertionPoint: options.insertionPoint
[12558] Fix | Delete
}),
[12559] Fix | Delete
nonce: options.nonce,
[12560] Fix | Delete
inserted: inserted,
[12561] Fix | Delete
registered: {},
[12562] Fix | Delete
insert: _insert
[12563] Fix | Delete
};
[12564] Fix | Delete
cache.sheet.hydrate(nodesToHydrate);
[12565] Fix | Delete
return cache;
[12566] Fix | Delete
};
[12567] Fix | Delete
[12568] Fix | Delete
/* harmony default export */ const emotion_cache_browser_esm = (createCache);
[12569] Fix | Delete
[12570] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@emotion/hash/dist/emotion-hash.esm.js
[12571] Fix | Delete
/* eslint-disable */
[12572] Fix | Delete
// Inspired by https://github.com/garycourt/murmurhash-js
[12573] Fix | Delete
// Ported from https://github.com/aappleby/smhasher/blob/61a0530f28277f2e850bfc39600ce61d02b518de/src/MurmurHash2.cpp#L37-L86
[12574] Fix | Delete
function murmur2(str) {
[12575] Fix | Delete
// 'm' and 'r' are mixing constants generated offline.
[12576] Fix | Delete
// They're not really 'magic', they just happen to work well.
[12577] Fix | Delete
// const m = 0x5bd1e995;
[12578] Fix | Delete
// const r = 24;
[12579] Fix | Delete
// Initialize the hash
[12580] Fix | Delete
var h = 0; // Mix 4 bytes at a time into the hash
[12581] Fix | Delete
[12582] Fix | Delete
var k,
[12583] Fix | Delete
i = 0,
[12584] Fix | Delete
len = str.length;
[12585] Fix | Delete
[12586] Fix | Delete
for (; len >= 4; ++i, len -= 4) {
[12587] Fix | Delete
k = str.charCodeAt(i) & 0xff | (str.charCodeAt(++i) & 0xff) << 8 | (str.charCodeAt(++i) & 0xff) << 16 | (str.charCodeAt(++i) & 0xff) << 24;
[12588] Fix | Delete
k =
[12589] Fix | Delete
/* Math.imul(k, m): */
[12590] Fix | Delete
(k & 0xffff) * 0x5bd1e995 + ((k >>> 16) * 0xe995 << 16);
[12591] Fix | Delete
k ^=
[12592] Fix | Delete
/* k >>> r: */
[12593] Fix | Delete
k >>> 24;
[12594] Fix | Delete
h =
[12595] Fix | Delete
/* Math.imul(k, m): */
[12596] Fix | Delete
(k & 0xffff) * 0x5bd1e995 + ((k >>> 16) * 0xe995 << 16) ^
[12597] Fix | Delete
/* Math.imul(h, m): */
[12598] Fix | Delete
(h & 0xffff) * 0x5bd1e995 + ((h >>> 16) * 0xe995 << 16);
[12599] Fix | Delete
} // Handle the last few bytes of the input array
[12600] Fix | Delete
[12601] Fix | Delete
[12602] Fix | Delete
switch (len) {
[12603] Fix | Delete
case 3:
[12604] Fix | Delete
h ^= (str.charCodeAt(i + 2) & 0xff) << 16;
[12605] Fix | Delete
[12606] Fix | Delete
case 2:
[12607] Fix | Delete
h ^= (str.charCodeAt(i + 1) & 0xff) << 8;
[12608] Fix | Delete
[12609] Fix | Delete
case 1:
[12610] Fix | Delete
h ^= str.charCodeAt(i) & 0xff;
[12611] Fix | Delete
h =
[12612] Fix | Delete
/* Math.imul(h, m): */
[12613] Fix | Delete
(h & 0xffff) * 0x5bd1e995 + ((h >>> 16) * 0xe995 << 16);
[12614] Fix | Delete
} // Do a few final mixes of the hash to ensure the last few
[12615] Fix | Delete
// bytes are well-incorporated.
[12616] Fix | Delete
[12617] Fix | Delete
[12618] Fix | Delete
h ^= h >>> 13;
[12619] Fix | Delete
h =
[12620] Fix | Delete
/* Math.imul(h, m): */
[12621] Fix | Delete
(h & 0xffff) * 0x5bd1e995 + ((h >>> 16) * 0xe995 << 16);
[12622] Fix | Delete
return ((h ^ h >>> 15) >>> 0).toString(36);
[12623] Fix | Delete
}
[12624] Fix | Delete
[12625] Fix | Delete
/* harmony default export */ const emotion_hash_esm = (murmur2);
[12626] Fix | Delete
[12627] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@emotion/unitless/dist/emotion-unitless.esm.js
[12628] Fix | Delete
var unitlessKeys = {
[12629] Fix | Delete
animationIterationCount: 1,
[12630] Fix | Delete
borderImageOutset: 1,
[12631] Fix | Delete
borderImageSlice: 1,
[12632] Fix | Delete
borderImageWidth: 1,
[12633] Fix | Delete
boxFlex: 1,
[12634] Fix | Delete
boxFlexGroup: 1,
[12635] Fix | Delete
boxOrdinalGroup: 1,
[12636] Fix | Delete
columnCount: 1,
[12637] Fix | Delete
columns: 1,
[12638] Fix | Delete
flex: 1,
[12639] Fix | Delete
flexGrow: 1,
[12640] Fix | Delete
flexPositive: 1,
[12641] Fix | Delete
flexShrink: 1,
[12642] Fix | Delete
flexNegative: 1,
[12643] Fix | Delete
flexOrder: 1,
[12644] Fix | Delete
gridRow: 1,
[12645] Fix | Delete
gridRowEnd: 1,
[12646] Fix | Delete
gridRowSpan: 1,
[12647] Fix | Delete
gridRowStart: 1,
[12648] Fix | Delete
gridColumn: 1,
[12649] Fix | Delete
gridColumnEnd: 1,
[12650] Fix | Delete
gridColumnSpan: 1,
[12651] Fix | Delete
gridColumnStart: 1,
[12652] Fix | Delete
msGridRow: 1,
[12653] Fix | Delete
msGridRowSpan: 1,
[12654] Fix | Delete
msGridColumn: 1,
[12655] Fix | Delete
msGridColumnSpan: 1,
[12656] Fix | Delete
fontWeight: 1,
[12657] Fix | Delete
lineHeight: 1,
[12658] Fix | Delete
opacity: 1,
[12659] Fix | Delete
order: 1,
[12660] Fix | Delete
orphans: 1,
[12661] Fix | Delete
tabSize: 1,
[12662] Fix | Delete
widows: 1,
[12663] Fix | Delete
zIndex: 1,
[12664] Fix | Delete
zoom: 1,
[12665] Fix | Delete
WebkitLineClamp: 1,
[12666] Fix | Delete
// SVG-related properties
[12667] Fix | Delete
fillOpacity: 1,
[12668] Fix | Delete
floodOpacity: 1,
[12669] Fix | Delete
stopOpacity: 1,
[12670] Fix | Delete
strokeDasharray: 1,
[12671] Fix | Delete
strokeDashoffset: 1,
[12672] Fix | Delete
strokeMiterlimit: 1,
[12673] Fix | Delete
strokeOpacity: 1,
[12674] Fix | Delete
strokeWidth: 1
[12675] Fix | Delete
};
[12676] Fix | Delete
[12677] Fix | Delete
/* harmony default export */ const emotion_unitless_esm = (unitlessKeys);
[12678] Fix | Delete
[12679] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@emotion/serialize/node_modules/@emotion/memoize/dist/emotion-memoize.esm.js
[12680] Fix | Delete
function memoize(fn) {
[12681] Fix | Delete
var cache = Object.create(null);
[12682] Fix | Delete
return function (arg) {
[12683] Fix | Delete
if (cache[arg] === undefined) cache[arg] = fn(arg);
[12684] Fix | Delete
return cache[arg];
[12685] Fix | Delete
};
[12686] Fix | Delete
}
[12687] Fix | Delete
[12688] Fix | Delete
[12689] Fix | Delete
[12690] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js
[12691] Fix | Delete
[12692] Fix | Delete
[12693] Fix | Delete
[12694] Fix | Delete
[12695] Fix | Delete
var ILLEGAL_ESCAPE_SEQUENCE_ERROR = "You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\00d7';\" should become \"content: '\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences";
[12696] Fix | Delete
var UNDEFINED_AS_OBJECT_KEY_ERROR = "You have passed in falsy value as style object's key (can happen when in example you pass unexported component as computed key).";
[12697] Fix | Delete
var hyphenateRegex = /[A-Z]|^ms/g;
[12698] Fix | Delete
var animationRegex = /_EMO_([^_]+?)_([^]*?)_EMO_/g;
[12699] Fix | Delete
[12700] Fix | Delete
var isCustomProperty = function isCustomProperty(property) {
[12701] Fix | Delete
return property.charCodeAt(1) === 45;
[12702] Fix | Delete
};
[12703] Fix | Delete
[12704] Fix | Delete
var isProcessableValue = function isProcessableValue(value) {
[12705] Fix | Delete
return value != null && typeof value !== 'boolean';
[12706] Fix | Delete
};
[12707] Fix | Delete
[12708] Fix | Delete
var processStyleName = /* #__PURE__ */memoize(function (styleName) {
[12709] Fix | Delete
return isCustomProperty(styleName) ? styleName : styleName.replace(hyphenateRegex, '-$&').toLowerCase();
[12710] Fix | Delete
});
[12711] Fix | Delete
[12712] Fix | Delete
var processStyleValue = function processStyleValue(key, value) {
[12713] Fix | Delete
switch (key) {
[12714] Fix | Delete
case 'animation':
[12715] Fix | Delete
case 'animationName':
[12716] Fix | Delete
{
[12717] Fix | Delete
if (typeof value === 'string') {
[12718] Fix | Delete
return value.replace(animationRegex, function (match, p1, p2) {
[12719] Fix | Delete
cursor = {
[12720] Fix | Delete
name: p1,
[12721] Fix | Delete
styles: p2,
[12722] Fix | Delete
next: cursor
[12723] Fix | Delete
};
[12724] Fix | Delete
return p1;
[12725] Fix | Delete
});
[12726] Fix | Delete
}
[12727] Fix | Delete
}
[12728] Fix | Delete
}
[12729] Fix | Delete
[12730] Fix | Delete
if (emotion_unitless_esm[key] !== 1 && !isCustomProperty(key) && typeof value === 'number' && value !== 0) {
[12731] Fix | Delete
return value + 'px';
[12732] Fix | Delete
}
[12733] Fix | Delete
[12734] Fix | Delete
return value;
[12735] Fix | Delete
};
[12736] Fix | Delete
[12737] Fix | Delete
if (false) { var hyphenatedCache, hyphenPattern, msPattern, oldProcessStyleValue, contentValues, contentValuePattern; }
[12738] Fix | Delete
[12739] Fix | Delete
var noComponentSelectorMessage = (/* unused pure expression or super */ null && ('Component selectors can only be used in conjunction with ' + '@emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware ' + 'compiler transform.'));
[12740] Fix | Delete
[12741] Fix | Delete
function handleInterpolation(mergedProps, registered, interpolation) {
[12742] Fix | Delete
if (interpolation == null) {
[12743] Fix | Delete
return '';
[12744] Fix | Delete
}
[12745] Fix | Delete
[12746] Fix | Delete
if (interpolation.__emotion_styles !== undefined) {
[12747] Fix | Delete
if (false) {}
[12748] Fix | Delete
[12749] Fix | Delete
return interpolation;
[12750] Fix | Delete
}
[12751] Fix | Delete
[12752] Fix | Delete
switch (typeof interpolation) {
[12753] Fix | Delete
case 'boolean':
[12754] Fix | Delete
{
[12755] Fix | Delete
return '';
[12756] Fix | Delete
}
[12757] Fix | Delete
[12758] Fix | Delete
case 'object':
[12759] Fix | Delete
{
[12760] Fix | Delete
if (interpolation.anim === 1) {
[12761] Fix | Delete
cursor = {
[12762] Fix | Delete
name: interpolation.name,
[12763] Fix | Delete
styles: interpolation.styles,
[12764] Fix | Delete
next: cursor
[12765] Fix | Delete
};
[12766] Fix | Delete
return interpolation.name;
[12767] Fix | Delete
}
[12768] Fix | Delete
[12769] Fix | Delete
if (interpolation.styles !== undefined) {
[12770] Fix | Delete
var next = interpolation.next;
[12771] Fix | Delete
[12772] Fix | Delete
if (next !== undefined) {
[12773] Fix | Delete
// not the most efficient thing ever but this is a pretty rare case
[12774] Fix | Delete
// and there will be very few iterations of this generally
[12775] Fix | Delete
while (next !== undefined) {
[12776] Fix | Delete
cursor = {
[12777] Fix | Delete
name: next.name,
[12778] Fix | Delete
styles: next.styles,
[12779] Fix | Delete
next: cursor
[12780] Fix | Delete
};
[12781] Fix | Delete
next = next.next;
[12782] Fix | Delete
}
[12783] Fix | Delete
}
[12784] Fix | Delete
[12785] Fix | Delete
var styles = interpolation.styles + ";";
[12786] Fix | Delete
[12787] Fix | Delete
if (false) {}
[12788] Fix | Delete
[12789] Fix | Delete
return styles;
[12790] Fix | Delete
}
[12791] Fix | Delete
[12792] Fix | Delete
return createStringFromObject(mergedProps, registered, interpolation);
[12793] Fix | Delete
}
[12794] Fix | Delete
[12795] Fix | Delete
case 'function':
[12796] Fix | Delete
{
[12797] Fix | Delete
if (mergedProps !== undefined) {
[12798] Fix | Delete
var previousCursor = cursor;
[12799] Fix | Delete
var result = interpolation(mergedProps);
[12800] Fix | Delete
cursor = previousCursor;
[12801] Fix | Delete
return handleInterpolation(mergedProps, registered, result);
[12802] Fix | Delete
} else if (false) {}
[12803] Fix | Delete
[12804] Fix | Delete
break;
[12805] Fix | Delete
}
[12806] Fix | Delete
[12807] Fix | Delete
case 'string':
[12808] Fix | Delete
if (false) { var replaced, matched; }
[12809] Fix | Delete
[12810] Fix | Delete
break;
[12811] Fix | Delete
} // finalize string values (regular strings and functions interpolated into css calls)
[12812] Fix | Delete
[12813] Fix | Delete
[12814] Fix | Delete
if (registered == null) {
[12815] Fix | Delete
return interpolation;
[12816] Fix | Delete
}
[12817] Fix | Delete
[12818] Fix | Delete
var cached = registered[interpolation];
[12819] Fix | Delete
return cached !== undefined ? cached : interpolation;
[12820] Fix | Delete
}
[12821] Fix | Delete
[12822] Fix | Delete
function createStringFromObject(mergedProps, registered, obj) {
[12823] Fix | Delete
var string = '';
[12824] Fix | Delete
[12825] Fix | Delete
if (Array.isArray(obj)) {
[12826] Fix | Delete
for (var i = 0; i < obj.length; i++) {
[12827] Fix | Delete
string += handleInterpolation(mergedProps, registered, obj[i]) + ";";
[12828] Fix | Delete
}
[12829] Fix | Delete
} else {
[12830] Fix | Delete
for (var _key in obj) {
[12831] Fix | Delete
var value = obj[_key];
[12832] Fix | Delete
[12833] Fix | Delete
if (typeof value !== 'object') {
[12834] Fix | Delete
if (registered != null && registered[value] !== undefined) {
[12835] Fix | Delete
string += _key + "{" + registered[value] + "}";
[12836] Fix | Delete
} else if (isProcessableValue(value)) {
[12837] Fix | Delete
string += processStyleName(_key) + ":" + processStyleValue(_key, value) + ";";
[12838] Fix | Delete
}
[12839] Fix | Delete
} else {
[12840] Fix | Delete
if (_key === 'NO_COMPONENT_SELECTOR' && "production" !== 'production') {}
[12841] Fix | Delete
[12842] Fix | Delete
if (Array.isArray(value) && typeof value[0] === 'string' && (registered == null || registered[value[0]] === undefined)) {
[12843] Fix | Delete
for (var _i = 0; _i < value.length; _i++) {
[12844] Fix | Delete
if (isProcessableValue(value[_i])) {
[12845] Fix | Delete
string += processStyleName(_key) + ":" + processStyleValue(_key, value[_i]) + ";";
[12846] Fix | Delete
}
[12847] Fix | Delete
}
[12848] Fix | Delete
} else {
[12849] Fix | Delete
var interpolated = handleInterpolation(mergedProps, registered, value);
[12850] Fix | Delete
[12851] Fix | Delete
switch (_key) {
[12852] Fix | Delete
case 'animation':
[12853] Fix | Delete
case 'animationName':
[12854] Fix | Delete
{
[12855] Fix | Delete
string += processStyleName(_key) + ":" + interpolated + ";";
[12856] Fix | Delete
break;
[12857] Fix | Delete
}
[12858] Fix | Delete
[12859] Fix | Delete
default:
[12860] Fix | Delete
{
[12861] Fix | Delete
if (false) {}
[12862] Fix | Delete
[12863] Fix | Delete
string += _key + "{" + interpolated + "}";
[12864] Fix | Delete
}
[12865] Fix | Delete
}
[12866] Fix | Delete
}
[12867] Fix | Delete
}
[12868] Fix | Delete
}
[12869] Fix | Delete
}
[12870] Fix | Delete
[12871] Fix | Delete
return string;
[12872] Fix | Delete
}
[12873] Fix | Delete
[12874] Fix | Delete
var labelPattern = /label:\s*([^\s;\n{]+)\s*(;|$)/g;
[12875] Fix | Delete
var sourceMapPattern;
[12876] Fix | Delete
[12877] Fix | Delete
if (false) {} // this is the cursor for keyframes
[12878] Fix | Delete
// keyframes are stored on the SerializedStyles object as a linked list
[12879] Fix | Delete
[12880] Fix | Delete
[12881] Fix | Delete
var cursor;
[12882] Fix | Delete
var emotion_serialize_browser_esm_serializeStyles = function serializeStyles(args, registered, mergedProps) {
[12883] Fix | Delete
if (args.length === 1 && typeof args[0] === 'object' && args[0] !== null && args[0].styles !== undefined) {
[12884] Fix | Delete
return args[0];
[12885] Fix | Delete
}
[12886] Fix | Delete
[12887] Fix | Delete
var stringMode = true;
[12888] Fix | Delete
var styles = '';
[12889] Fix | Delete
cursor = undefined;
[12890] Fix | Delete
var strings = args[0];
[12891] Fix | Delete
[12892] Fix | Delete
if (strings == null || strings.raw === undefined) {
[12893] Fix | Delete
stringMode = false;
[12894] Fix | Delete
styles += handleInterpolation(mergedProps, registered, strings);
[12895] Fix | Delete
} else {
[12896] Fix | Delete
if (false) {}
[12897] Fix | Delete
[12898] Fix | Delete
styles += strings[0];
[12899] Fix | Delete
} // we start at 1 since we've already handled the first arg
[12900] Fix | Delete
[12901] Fix | Delete
[12902] Fix | Delete
for (var i = 1; i < args.length; i++) {
[12903] Fix | Delete
styles += handleInterpolation(mergedProps, registered, args[i]);
[12904] Fix | Delete
[12905] Fix | Delete
if (stringMode) {
[12906] Fix | Delete
if (false) {}
[12907] Fix | Delete
[12908] Fix | Delete
styles += strings[i];
[12909] Fix | Delete
}
[12910] Fix | Delete
}
[12911] Fix | Delete
[12912] Fix | Delete
var sourceMap;
[12913] Fix | Delete
[12914] Fix | Delete
if (false) {} // using a global regex with .exec is stateful so lastIndex has to be reset each time
[12915] Fix | Delete
[12916] Fix | Delete
[12917] Fix | Delete
labelPattern.lastIndex = 0;
[12918] Fix | Delete
var identifierName = '';
[12919] Fix | Delete
var match; // https://esbench.com/bench/5b809c2cf2949800a0f61fb5
[12920] Fix | Delete
[12921] Fix | Delete
while ((match = labelPattern.exec(styles)) !== null) {
[12922] Fix | Delete
identifierName += '-' + // $FlowFixMe we know it's not null
[12923] Fix | Delete
match[1];
[12924] Fix | Delete
}
[12925] Fix | Delete
[12926] Fix | Delete
var name = emotion_hash_esm(styles) + identifierName;
[12927] Fix | Delete
[12928] Fix | Delete
if (false) {}
[12929] Fix | Delete
[12930] Fix | Delete
return {
[12931] Fix | Delete
name: name,
[12932] Fix | Delete
styles: styles,
[12933] Fix | Delete
next: cursor
[12934] Fix | Delete
};
[12935] Fix | Delete
};
[12936] Fix | Delete
[12937] Fix | Delete
[12938] Fix | Delete
[12939] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@emotion/use-insertion-effect-with-fallbacks/dist/emotion-use-insertion-effect-with-fallbacks.browser.esm.js
[12940] Fix | Delete
[12941] Fix | Delete
[12942] Fix | Delete
[12943] Fix | Delete
var syncFallback = function syncFallback(create) {
[12944] Fix | Delete
return create();
[12945] Fix | Delete
};
[12946] Fix | Delete
[12947] Fix | Delete
var useInsertionEffect = external_React_['useInsertion' + 'Effect'] ? external_React_['useInsertion' + 'Effect'] : false;
[12948] Fix | Delete
var emotion_use_insertion_effect_with_fallbacks_browser_esm_useInsertionEffectAlwaysWithSyncFallback = useInsertionEffect || syncFallback;
[12949] Fix | Delete
var emotion_use_insertion_effect_with_fallbacks_browser_esm_useInsertionEffectWithLayoutFallback = (/* unused pure expression or super */ null && (useInsertionEffect || useLayoutEffect));
[12950] Fix | Delete
[12951] Fix | Delete
[12952] Fix | Delete
[12953] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@emotion/react/dist/emotion-element-6a883da9.browser.esm.js
[12954] Fix | Delete
[12955] Fix | Delete
[12956] Fix | Delete
[12957] Fix | Delete
[12958] Fix | Delete
[12959] Fix | Delete
[12960] Fix | Delete
[12961] Fix | Delete
[12962] Fix | Delete
[12963] Fix | Delete
var emotion_element_6a883da9_browser_esm_hasOwnProperty = {}.hasOwnProperty;
[12964] Fix | Delete
[12965] Fix | Delete
var EmotionCacheContext = /* #__PURE__ */(0,external_React_.createContext)( // we're doing this to avoid preconstruct's dead code elimination in this one case
[12966] Fix | Delete
// because this module is primarily intended for the browser and node
[12967] Fix | Delete
// but it's also required in react native and similar environments sometimes
[12968] Fix | Delete
// and we could have a special build just for that
[12969] Fix | Delete
// but this is much easier and the native packages
[12970] Fix | Delete
// might use a different theme context in the future anyway
[12971] Fix | Delete
typeof HTMLElement !== 'undefined' ? /* #__PURE__ */emotion_cache_browser_esm({
[12972] Fix | Delete
key: 'css'
[12973] Fix | Delete
}) : null);
[12974] Fix | Delete
[12975] Fix | Delete
if (false) {}
[12976] Fix | Delete
[12977] Fix | Delete
var CacheProvider = EmotionCacheContext.Provider;
[12978] Fix | Delete
var __unsafe_useEmotionCache = function useEmotionCache() {
[12979] Fix | Delete
return (0,external_React_.useContext)(EmotionCacheContext);
[12980] Fix | Delete
};
[12981] Fix | Delete
[12982] Fix | Delete
var emotion_element_6a883da9_browser_esm_withEmotionCache = function withEmotionCache(func) {
[12983] Fix | Delete
// $FlowFixMe
[12984] Fix | Delete
return /*#__PURE__*/(0,external_React_.forwardRef)(function (props, ref) {
[12985] Fix | Delete
// the cache will never be null in the browser
[12986] Fix | Delete
var cache = (0,external_React_.useContext)(EmotionCacheContext);
[12987] Fix | Delete
return func(props, cache, ref);
[12988] Fix | Delete
});
[12989] Fix | Delete
};
[12990] Fix | Delete
[12991] Fix | Delete
var emotion_element_6a883da9_browser_esm_ThemeContext = /* #__PURE__ */(0,external_React_.createContext)({});
[12992] Fix | Delete
[12993] Fix | Delete
if (false) {}
[12994] Fix | Delete
[12995] Fix | Delete
var useTheme = function useTheme() {
[12996] Fix | Delete
return useContext(emotion_element_6a883da9_browser_esm_ThemeContext);
[12997] Fix | Delete
};
[12998] Fix | Delete
[12999] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function