diff --git a/compiled/eslint-plugin-react-hooks/index.js b/compiled/eslint-plugin-react-hooks/index.js index efc9c59f2c..1802cfa501 100644 --- a/compiled/eslint-plugin-react-hooks/index.js +++ b/compiled/eslint-plugin-react-hooks/index.js @@ -6078,372 +6078,385 @@ if (process.env.NODE_ENV !== "production") { return (0, _helperValidatorIdentifier$1.isIdentifierName)(name); } var lib$1 = {}; - Object.defineProperty(lib$1, "__esModule", { value: true }); - lib$1.readCodePoint = readCodePoint; - lib$1.readInt = readInt; - lib$1.readStringContents = readStringContents; - var _isDigit = function isDigit(code) { - return code >= 48 && code <= 57; - }; - var forbiddenNumericSeparatorSiblings = { - decBinOct: new Set([46, 66, 69, 79, 95, 98, 101, 111]), - hex: new Set([46, 88, 95, 120]) - }; - var isAllowedNumericSeparatorSibling = { - bin: function bin(ch) { - return ch === 48 || ch === 49; - }, - oct: function oct(ch) { - return ch >= 48 && ch <= 55; - }, - dec: function dec(ch) { - return ch >= 48 && ch <= 57; - }, - hex: function hex(ch) { - return ( - (ch >= 48 && ch <= 57) || - (ch >= 65 && ch <= 70) || - (ch >= 97 && ch <= 102) - ); - } - }; - function readStringContents(type, input, pos, lineStart, curLine, errors) { - var initialPos = pos; - var initialLineStart = lineStart; - var initialCurLine = curLine; - var out = ""; - var firstInvalidLoc = null; - var chunkStart = pos; - var length = input.length; - for (;;) { - if (pos >= length) { - errors.unterminated(initialPos, initialLineStart, initialCurLine); - out += input.slice(chunkStart, pos); - break; - } - var ch = input.charCodeAt(pos); - if (isStringEnd(type, ch, input, pos)) { - out += input.slice(chunkStart, pos); - break; - } - if (ch === 92) { - out += input.slice(chunkStart, pos); - var res = readEscapedChar( - input, - pos, - lineStart, - curLine, - type === "template", - errors - ); - if (res.ch === null && !firstInvalidLoc) { - firstInvalidLoc = { - pos: pos, - lineStart: lineStart, - curLine: curLine - }; - } else { - out += res.ch; - } - pos = res.pos; - lineStart = res.lineStart; - curLine = res.curLine; - chunkStart = pos; - } else if (ch === 8232 || ch === 8233) { - ++pos; - ++curLine; - lineStart = pos; - } else if (ch === 10 || ch === 13) { - if (type === "template") { - out += input.slice(chunkStart, pos) + "\n"; - ++pos; - if (ch === 13 && input.charCodeAt(pos) === 10) { - ++pos; - } - ++curLine; - chunkStart = lineStart = pos; - } else { - errors.unterminated(initialPos, initialLineStart, initialCurLine); - } - } else { - ++pos; - } - } - return { - pos: pos, - str: out, - firstInvalidLoc: firstInvalidLoc, - lineStart: lineStart, - curLine: curLine, - containsInvalid: !!firstInvalidLoc + var hasRequiredLib$1; + function requireLib$1() { + if (hasRequiredLib$1) return lib$1; + hasRequiredLib$1 = 1; + Object.defineProperty(lib$1, "__esModule", { value: true }); + lib$1.readCodePoint = readCodePoint; + lib$1.readInt = readInt; + lib$1.readStringContents = readStringContents; + var _isDigit = function isDigit(code) { + return code >= 48 && code <= 57; }; - } - function isStringEnd(type, ch, input, pos) { - if (type === "template") { - return ch === 96 || (ch === 36 && input.charCodeAt(pos + 1) === 123); - } - return ch === (type === "double" ? 34 : 39); - } - function readEscapedChar( - input, - pos, - lineStart, - curLine, - inTemplate, - errors - ) { - var throwOnInvalid = !inTemplate; - pos++; - var res = function res(ch) { - return { pos: pos, ch: ch, lineStart: lineStart, curLine: curLine }; + var forbiddenNumericSeparatorSiblings = { + decBinOct: new Set([46, 66, 69, 79, 95, 98, 101, 111]), + hex: new Set([46, 88, 95, 120]) }; - var ch = input.charCodeAt(pos++); - switch (ch) { - case 110: - return res("\n"); - case 114: - return res("\r"); - case 120: { - var code; - var _readHexChar = readHexChar( - input, - pos, - lineStart, - curLine, - 2, - false, - throwOnInvalid, - errors + var isAllowedNumericSeparatorSibling = { + bin: function bin(ch) { + return ch === 48 || ch === 49; + }, + oct: function oct(ch) { + return ch >= 48 && ch <= 55; + }, + dec: function dec(ch) { + return ch >= 48 && ch <= 57; + }, + hex: function hex(ch) { + return ( + (ch >= 48 && ch <= 57) || + (ch >= 65 && ch <= 70) || + (ch >= 97 && ch <= 102) ); - code = _readHexChar.code; - pos = _readHexChar.pos; - return res(code === null ? null : String.fromCharCode(code)); } - case 117: { - var _code; - var _readCodePoint = readCodePoint( - input, - pos, - lineStart, - curLine, - throwOnInvalid, - errors - ); - _code = _readCodePoint.code; - pos = _readCodePoint.pos; - return res(_code === null ? null : String.fromCodePoint(_code)); - } - case 116: - return res("\t"); - case 98: - return res("\b"); - case 118: - return res("\x0B"); - case 102: - return res("\f"); - case 13: - if (input.charCodeAt(pos) === 10) { - ++pos; - } - case 10: - lineStart = pos; - ++curLine; - case 8232: - case 8233: - return res(""); - case 56: - case 57: - if (inTemplate) { - return res(null); - } else { - errors.strictNumericEscape(pos - 1, lineStart, curLine); - } - default: - if (ch >= 48 && ch <= 55) { - var startPos = pos - 1; - var match = /^[0-7]+/.exec(input.slice(startPos, pos + 2)); - var octalStr = match[0]; - var octal = parseInt(octalStr, 8); - if (octal > 255) { - octalStr = octalStr.slice(0, -1); - octal = parseInt(octalStr, 8); - } - pos += octalStr.length - 1; - var next = input.charCodeAt(pos); - if (octalStr !== "0" || next === 56 || next === 57) { - if (inTemplate) { - return res(null); - } else { - errors.strictNumericEscape(startPos, lineStart, curLine); - } - } - return res(String.fromCharCode(octal)); - } - return res(String.fromCharCode(ch)); - } - } - function readHexChar( - input, - pos, - lineStart, - curLine, - len, - forceLen, - throwOnInvalid, - errors - ) { - var initialPos = pos; - var n; - var _readInt = readInt( + }; + function readStringContents( + type, input, pos, lineStart, curLine, - 16, - len, - forceLen, - false, - errors, - !throwOnInvalid - ); - n = _readInt.n; - pos = _readInt.pos; - if (n === null) { - if (throwOnInvalid) { - errors.invalidEscapeSequence(initialPos, lineStart, curLine); - } else { - pos = initialPos - 1; - } - } - return { code: n, pos: pos }; - } - function readInt( - input, - pos, - lineStart, - curLine, - radix, - len, - forceLen, - allowNumSeparator, - errors, - bailOnError - ) { - var start = pos; - var forbiddenSiblings = - radix === 16 - ? forbiddenNumericSeparatorSiblings.hex - : forbiddenNumericSeparatorSiblings.decBinOct; - var isAllowedSibling = - radix === 16 - ? isAllowedNumericSeparatorSibling.hex - : radix === 10 - ? isAllowedNumericSeparatorSibling.dec - : radix === 8 - ? isAllowedNumericSeparatorSibling.oct - : isAllowedNumericSeparatorSibling.bin; - var invalid = false; - var total = 0; - for (var i = 0, e = len == null ? Infinity : len; i < e; ++i) { - var code = input.charCodeAt(pos); - var val = void 0; - if (code === 95 && allowNumSeparator !== "bail") { - var prev = input.charCodeAt(pos - 1); - var next = input.charCodeAt(pos + 1); - if (!allowNumSeparator) { - if (bailOnError) return { n: null, pos: pos }; - errors.numericSeparatorInEscapeSequence(pos, lineStart, curLine); - } else if ( - Number.isNaN(next) || - !isAllowedSibling(next) || - forbiddenSiblings.has(prev) || - forbiddenSiblings.has(next) - ) { - if (bailOnError) return { n: null, pos: pos }; - errors.unexpectedNumericSeparator(pos, lineStart, curLine); - } - ++pos; - continue; - } - if (code >= 97) { - val = code - 97 + 10; - } else if (code >= 65) { - val = code - 65 + 10; - } else if (_isDigit(code)) { - val = code - 48; - } else { - val = Infinity; - } - if (val >= radix) { - if (val <= 9 && bailOnError) { - return { n: null, pos: pos }; - } else if ( - val <= 9 && - errors.invalidDigit(pos, lineStart, curLine, radix) - ) { - val = 0; - } else if (forceLen) { - val = 0; - invalid = true; - } else { + errors + ) { + var initialPos = pos; + var initialLineStart = lineStart; + var initialCurLine = curLine; + var out = ""; + var firstInvalidLoc = null; + var chunkStart = pos; + var length = input.length; + for (;;) { + if (pos >= length) { + errors.unterminated(initialPos, initialLineStart, initialCurLine); + out += input.slice(chunkStart, pos); break; } - } - ++pos; - total = total * radix + val; - } - if (pos === start || (len != null && pos - start !== len) || invalid) { - return { n: null, pos: pos }; - } - return { n: total, pos: pos }; - } - function readCodePoint( - input, - pos, - lineStart, - curLine, - throwOnInvalid, - errors - ) { - var ch = input.charCodeAt(pos); - var code; - if (ch === 123) { - ++pos; - var _readHexChar2 = readHexChar( - input, - pos, - lineStart, - curLine, - input.indexOf("}", pos) - pos, - true, - throwOnInvalid, - errors - ); - code = _readHexChar2.code; - pos = _readHexChar2.pos; - ++pos; - if (code !== null && code > 0x10ffff) { - if (throwOnInvalid) { - errors.invalidCodePoint(pos, lineStart, curLine); + var ch = input.charCodeAt(pos); + if (isStringEnd(type, ch, input, pos)) { + out += input.slice(chunkStart, pos); + break; + } + if (ch === 92) { + out += input.slice(chunkStart, pos); + var res = readEscapedChar( + input, + pos, + lineStart, + curLine, + type === "template", + errors + ); + if (res.ch === null && !firstInvalidLoc) { + firstInvalidLoc = { + pos: pos, + lineStart: lineStart, + curLine: curLine + }; + } else { + out += res.ch; + } + pos = res.pos; + lineStart = res.lineStart; + curLine = res.curLine; + chunkStart = pos; + } else if (ch === 8232 || ch === 8233) { + ++pos; + ++curLine; + lineStart = pos; + } else if (ch === 10 || ch === 13) { + if (type === "template") { + out += input.slice(chunkStart, pos) + "\n"; + ++pos; + if (ch === 13 && input.charCodeAt(pos) === 10) { + ++pos; + } + ++curLine; + chunkStart = lineStart = pos; + } else { + errors.unterminated(initialPos, initialLineStart, initialCurLine); + } } else { - return { code: null, pos: pos }; + ++pos; } } - } else { - var _readHexChar3 = readHexChar( + return { + pos: pos, + str: out, + firstInvalidLoc: firstInvalidLoc, + lineStart: lineStart, + curLine: curLine, + containsInvalid: !!firstInvalidLoc + }; + } + function isStringEnd(type, ch, input, pos) { + if (type === "template") { + return ch === 96 || (ch === 36 && input.charCodeAt(pos + 1) === 123); + } + return ch === (type === "double" ? 34 : 39); + } + function readEscapedChar( + input, + pos, + lineStart, + curLine, + inTemplate, + errors + ) { + var throwOnInvalid = !inTemplate; + pos++; + var res = function res(ch) { + return { pos: pos, ch: ch, lineStart: lineStart, curLine: curLine }; + }; + var ch = input.charCodeAt(pos++); + switch (ch) { + case 110: + return res("\n"); + case 114: + return res("\r"); + case 120: { + var code; + var _readHexChar = readHexChar( + input, + pos, + lineStart, + curLine, + 2, + false, + throwOnInvalid, + errors + ); + code = _readHexChar.code; + pos = _readHexChar.pos; + return res(code === null ? null : String.fromCharCode(code)); + } + case 117: { + var _code; + var _readCodePoint = readCodePoint( + input, + pos, + lineStart, + curLine, + throwOnInvalid, + errors + ); + _code = _readCodePoint.code; + pos = _readCodePoint.pos; + return res(_code === null ? null : String.fromCodePoint(_code)); + } + case 116: + return res("\t"); + case 98: + return res("\b"); + case 118: + return res("\x0B"); + case 102: + return res("\f"); + case 13: + if (input.charCodeAt(pos) === 10) { + ++pos; + } + case 10: + lineStart = pos; + ++curLine; + case 8232: + case 8233: + return res(""); + case 56: + case 57: + if (inTemplate) { + return res(null); + } else { + errors.strictNumericEscape(pos - 1, lineStart, curLine); + } + default: + if (ch >= 48 && ch <= 55) { + var startPos = pos - 1; + var match = /^[0-7]+/.exec(input.slice(startPos, pos + 2)); + var octalStr = match[0]; + var octal = parseInt(octalStr, 8); + if (octal > 255) { + octalStr = octalStr.slice(0, -1); + octal = parseInt(octalStr, 8); + } + pos += octalStr.length - 1; + var next = input.charCodeAt(pos); + if (octalStr !== "0" || next === 56 || next === 57) { + if (inTemplate) { + return res(null); + } else { + errors.strictNumericEscape(startPos, lineStart, curLine); + } + } + return res(String.fromCharCode(octal)); + } + return res(String.fromCharCode(ch)); + } + } + function readHexChar( + input, + pos, + lineStart, + curLine, + len, + forceLen, + throwOnInvalid, + errors + ) { + var initialPos = pos; + var n; + var _readInt = readInt( input, pos, lineStart, curLine, - 4, + 16, + len, + forceLen, false, - throwOnInvalid, - errors + errors, + !throwOnInvalid ); - code = _readHexChar3.code; - pos = _readHexChar3.pos; + n = _readInt.n; + pos = _readInt.pos; + if (n === null) { + if (throwOnInvalid) { + errors.invalidEscapeSequence(initialPos, lineStart, curLine); + } else { + pos = initialPos - 1; + } + } + return { code: n, pos: pos }; } - return { code: code, pos: pos }; + function readInt( + input, + pos, + lineStart, + curLine, + radix, + len, + forceLen, + allowNumSeparator, + errors, + bailOnError + ) { + var start = pos; + var forbiddenSiblings = + radix === 16 + ? forbiddenNumericSeparatorSiblings.hex + : forbiddenNumericSeparatorSiblings.decBinOct; + var isAllowedSibling = + radix === 16 + ? isAllowedNumericSeparatorSibling.hex + : radix === 10 + ? isAllowedNumericSeparatorSibling.dec + : radix === 8 + ? isAllowedNumericSeparatorSibling.oct + : isAllowedNumericSeparatorSibling.bin; + var invalid = false; + var total = 0; + for (var i = 0, e = len == null ? Infinity : len; i < e; ++i) { + var code = input.charCodeAt(pos); + var val = void 0; + if (code === 95 && allowNumSeparator !== "bail") { + var prev = input.charCodeAt(pos - 1); + var next = input.charCodeAt(pos + 1); + if (!allowNumSeparator) { + if (bailOnError) return { n: null, pos: pos }; + errors.numericSeparatorInEscapeSequence(pos, lineStart, curLine); + } else if ( + Number.isNaN(next) || + !isAllowedSibling(next) || + forbiddenSiblings.has(prev) || + forbiddenSiblings.has(next) + ) { + if (bailOnError) return { n: null, pos: pos }; + errors.unexpectedNumericSeparator(pos, lineStart, curLine); + } + ++pos; + continue; + } + if (code >= 97) { + val = code - 97 + 10; + } else if (code >= 65) { + val = code - 65 + 10; + } else if (_isDigit(code)) { + val = code - 48; + } else { + val = Infinity; + } + if (val >= radix) { + if (val <= 9 && bailOnError) { + return { n: null, pos: pos }; + } else if ( + val <= 9 && + errors.invalidDigit(pos, lineStart, curLine, radix) + ) { + val = 0; + } else if (forceLen) { + val = 0; + invalid = true; + } else { + break; + } + } + ++pos; + total = total * radix + val; + } + if (pos === start || (len != null && pos - start !== len) || invalid) { + return { n: null, pos: pos }; + } + return { n: total, pos: pos }; + } + function readCodePoint( + input, + pos, + lineStart, + curLine, + throwOnInvalid, + errors + ) { + var ch = input.charCodeAt(pos); + var code; + if (ch === 123) { + ++pos; + var _readHexChar2 = readHexChar( + input, + pos, + lineStart, + curLine, + input.indexOf("}", pos) - pos, + true, + throwOnInvalid, + errors + ); + code = _readHexChar2.code; + pos = _readHexChar2.pos; + ++pos; + if (code !== null && code > 0x10ffff) { + if (throwOnInvalid) { + errors.invalidCodePoint(pos, lineStart, curLine); + } else { + return { code: null, pos: pos }; + } + } + } else { + var _readHexChar3 = readHexChar( + input, + pos, + lineStart, + curLine, + 4, + false, + throwOnInvalid, + errors + ); + code = _readHexChar3.code; + pos = _readHexChar3.pos; + } + return { code: code, pos: pos }; + } + return lib$1; } var constants = {}; Object.defineProperty(constants, "__esModule", { value: true }); @@ -7030,7 +7043,7 @@ if (process.env.NODE_ENV !== "production") { var _is = requireIs(); var _isValidIdentifier = isValidIdentifier$1; var _helperValidatorIdentifier = lib$2; - var _helperStringParser = lib$1; + var _helperStringParser = requireLib$1(); var _index = constants; var _utils = requireUtils(); var defineType = (0, _utils.defineAliasedType)("Standardized"); diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index 15279b7357..5d06fa6658 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -fbcda19a23da819889afdd7164b29c556fbcfc7a +9320a0139df876509c8ebb6f6fd950a6690bd5d9 diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index 15279b7357..5d06fa6658 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -fbcda19a23da819889afdd7164b29c556fbcfc7a +9320a0139df876509c8ebb6f6fd950a6690bd5d9 diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index ab5c89ab1e..f09728b217 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -1534,7 +1534,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-classic-fbcda19a-20250317"; + exports.version = "19.1.0-www-classic-9320a013-20250317"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-dev.modern.js b/compiled/facebook-www/React-dev.modern.js index 2064b3a7ce..91912bde5e 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1534,7 +1534,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-modern-fbcda19a-20250317"; + exports.version = "19.1.0-www-modern-9320a013-20250317"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-prod.classic.js b/compiled/facebook-www/React-prod.classic.js index e1f41df744..9bdf25da5f 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -641,4 +641,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-classic-fbcda19a-20250317"; +exports.version = "19.1.0-www-classic-9320a013-20250317"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index cd3c82e71d..ee49cbd986 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -641,4 +641,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-modern-fbcda19a-20250317"; +exports.version = "19.1.0-www-modern-9320a013-20250317"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index a66e6187e4..dd7f6ddc1f 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -645,7 +645,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-classic-fbcda19a-20250317"; +exports.version = "19.1.0-www-classic-9320a013-20250317"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-profiling.modern.js b/compiled/facebook-www/React-profiling.modern.js index 441338924b..316f0f1616 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -645,7 +645,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-modern-fbcda19a-20250317"; +exports.version = "19.1.0-www-modern-9320a013-20250317"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-dev.classic.js b/compiled/facebook-www/ReactART-dev.classic.js index fb85d6d69c..8ca131a755 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -18541,10 +18541,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-fbcda19a-20250317", + version: "19.1.0-www-classic-9320a013-20250317", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-classic-9320a013-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18578,7 +18578,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-classic-fbcda19a-20250317"; + exports.version = "19.1.0-www-classic-9320a013-20250317"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-dev.modern.js b/compiled/facebook-www/ReactART-dev.modern.js index 6e9a96982e..1a8e1bff94 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -18313,10 +18313,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-fbcda19a-20250317", + version: "19.1.0-www-modern-9320a013-20250317", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-modern-9320a013-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18350,7 +18350,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-modern-fbcda19a-20250317"; + exports.version = "19.1.0-www-modern-9320a013-20250317"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-prod.classic.js b/compiled/facebook-www/ReactART-prod.classic.js index fe6f020649..6f8e7f3797 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -11334,10 +11334,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1582 = { bundleType: 0, - version: "19.1.0-www-classic-fbcda19a-20250317", + version: "19.1.0-www-classic-9320a013-20250317", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-classic-9320a013-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1583 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11363,4 +11363,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-classic-fbcda19a-20250317"; +exports.version = "19.1.0-www-classic-9320a013-20250317"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 8cf4408142..56e9172c6a 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -11047,10 +11047,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1555 = { bundleType: 0, - version: "19.1.0-www-modern-fbcda19a-20250317", + version: "19.1.0-www-modern-9320a013-20250317", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-modern-9320a013-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1556 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11076,4 +11076,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-modern-fbcda19a-20250317"; +exports.version = "19.1.0-www-modern-9320a013-20250317"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index a16fa6db65..3ca9d02777 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -30203,11 +30203,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-fbcda19a-20250317" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-9320a013-20250317" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-www-classic-fbcda19a-20250317\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-9320a013-20250317\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30250,10 +30250,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-fbcda19a-20250317", + version: "19.1.0-www-classic-9320a013-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-classic-9320a013-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30851,7 +30851,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-fbcda19a-20250317"; + exports.version = "19.1.0-www-classic-9320a013-20250317"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-dev.modern.js b/compiled/facebook-www/ReactDOM-dev.modern.js index 02a3209000..df283dde14 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -29989,11 +29989,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-fbcda19a-20250317" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-9320a013-20250317" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-www-modern-fbcda19a-20250317\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-9320a013-20250317\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30036,10 +30036,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-fbcda19a-20250317", + version: "19.1.0-www-modern-9320a013-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-modern-9320a013-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30637,7 +30637,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-fbcda19a-20250317"; + exports.version = "19.1.0-www-modern-9320a013-20250317"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-prod.classic.js b/compiled/facebook-www/ReactDOM-prod.classic.js index af54529f64..c28334451a 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -18934,14 +18934,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1918 = React.version; if ( - "19.1.0-www-classic-fbcda19a-20250317" !== + "19.1.0-www-classic-9320a013-20250317" !== isomorphicReactPackageVersion$jscomp$inline_1918 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1918, - "19.1.0-www-classic-fbcda19a-20250317" + "19.1.0-www-classic-9320a013-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18959,10 +18959,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2507 = { bundleType: 0, - version: "19.1.0-www-classic-fbcda19a-20250317", + version: "19.1.0-www-classic-9320a013-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-classic-9320a013-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2508 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19326,4 +19326,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-fbcda19a-20250317"; +exports.version = "19.1.0-www-classic-9320a013-20250317"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index 1fdd93309d..e75f692fe7 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -18663,14 +18663,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1908 = React.version; if ( - "19.1.0-www-modern-fbcda19a-20250317" !== + "19.1.0-www-modern-9320a013-20250317" !== isomorphicReactPackageVersion$jscomp$inline_1908 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1908, - "19.1.0-www-modern-fbcda19a-20250317" + "19.1.0-www-modern-9320a013-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18688,10 +18688,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2489 = { bundleType: 0, - version: "19.1.0-www-modern-fbcda19a-20250317", + version: "19.1.0-www-modern-9320a013-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-modern-9320a013-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2490 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19055,4 +19055,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-fbcda19a-20250317"; +exports.version = "19.1.0-www-modern-9320a013-20250317"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index dea6ad8afd..0c945fed0a 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -20676,14 +20676,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2078 = React.version; if ( - "19.1.0-www-classic-fbcda19a-20250317" !== + "19.1.0-www-classic-9320a013-20250317" !== isomorphicReactPackageVersion$jscomp$inline_2078 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2078, - "19.1.0-www-classic-fbcda19a-20250317" + "19.1.0-www-classic-9320a013-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20701,10 +20701,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2080 = { bundleType: 0, - version: "19.1.0-www-classic-fbcda19a-20250317", + version: "19.1.0-www-classic-9320a013-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-classic-9320a013-20250317" }; enableSchedulingProfiler && ((internals$jscomp$inline_2080.getLaneLabelMap = getLaneLabelMap), @@ -21071,7 +21071,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-fbcda19a-20250317"; +exports.version = "19.1.0-www-classic-9320a013-20250317"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-profiling.modern.js b/compiled/facebook-www/ReactDOM-profiling.modern.js index 7443be7bdc..0d7509bf5a 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -20474,14 +20474,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2068 = React.version; if ( - "19.1.0-www-modern-fbcda19a-20250317" !== + "19.1.0-www-modern-9320a013-20250317" !== isomorphicReactPackageVersion$jscomp$inline_2068 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2068, - "19.1.0-www-modern-fbcda19a-20250317" + "19.1.0-www-modern-9320a013-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20499,10 +20499,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2070 = { bundleType: 0, - version: "19.1.0-www-modern-fbcda19a-20250317", + version: "19.1.0-www-modern-9320a013-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-modern-9320a013-20250317" }; enableSchedulingProfiler && ((internals$jscomp$inline_2070.getLaneLabelMap = getLaneLabelMap), @@ -20869,7 +20869,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-fbcda19a-20250317"; +exports.version = "19.1.0-www-modern-9320a013-20250317"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOMServer-dev.classic.js b/compiled/facebook-www/ReactDOMServer-dev.classic.js index 0cd0fc8d36..ba0a30b63b 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -9414,5 +9414,5 @@ __DEV__ && 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; - exports.version = "19.1.0-www-classic-fbcda19a-20250317"; + exports.version = "19.1.0-www-classic-9320a013-20250317"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index 02602783c1..528b2f6c95 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -9240,5 +9240,5 @@ __DEV__ && 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; - exports.version = "19.1.0-www-modern-fbcda19a-20250317"; + exports.version = "19.1.0-www-modern-9320a013-20250317"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index 522dd006bc..1074fb16db 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -6198,4 +6198,4 @@ exports.renderToString = function (children, options) { 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; -exports.version = "19.1.0-www-classic-fbcda19a-20250317"; +exports.version = "19.1.0-www-classic-9320a013-20250317"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index a1057e6806..672cebba19 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -6110,4 +6110,4 @@ exports.renderToString = function (children, options) { 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; -exports.version = "19.1.0-www-modern-fbcda19a-20250317"; +exports.version = "19.1.0-www-modern-9320a013-20250317"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index ff7a7919a2..9d20f89d77 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -30524,11 +30524,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-fbcda19a-20250317" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-9320a013-20250317" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-www-classic-fbcda19a-20250317\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-9320a013-20250317\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30571,10 +30571,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-fbcda19a-20250317", + version: "19.1.0-www-classic-9320a013-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-classic-9320a013-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -31338,5 +31338,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-fbcda19a-20250317"; + exports.version = "19.1.0-www-classic-9320a013-20250317"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index dd40edf053..fb0bfb3c1e 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -30310,11 +30310,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-fbcda19a-20250317" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-9320a013-20250317" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-www-modern-fbcda19a-20250317\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-9320a013-20250317\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30357,10 +30357,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-fbcda19a-20250317", + version: "19.1.0-www-modern-9320a013-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-modern-9320a013-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -31124,5 +31124,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-fbcda19a-20250317"; + exports.version = "19.1.0-www-modern-9320a013-20250317"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index dc858697a0..fcff97fa8b 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -19250,14 +19250,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1947 = React.version; if ( - "19.1.0-www-classic-fbcda19a-20250317" !== + "19.1.0-www-classic-9320a013-20250317" !== isomorphicReactPackageVersion$jscomp$inline_1947 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1947, - "19.1.0-www-classic-fbcda19a-20250317" + "19.1.0-www-classic-9320a013-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19275,10 +19275,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2541 = { bundleType: 0, - version: "19.1.0-www-classic-fbcda19a-20250317", + version: "19.1.0-www-classic-9320a013-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-classic-9320a013-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2542 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19793,4 +19793,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-fbcda19a-20250317"; +exports.version = "19.1.0-www-classic-9320a013-20250317"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index c11693a539..1f4b222b99 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -18979,14 +18979,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1937 = React.version; if ( - "19.1.0-www-modern-fbcda19a-20250317" !== + "19.1.0-www-modern-9320a013-20250317" !== isomorphicReactPackageVersion$jscomp$inline_1937 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1937, - "19.1.0-www-modern-fbcda19a-20250317" + "19.1.0-www-modern-9320a013-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19004,10 +19004,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2523 = { bundleType: 0, - version: "19.1.0-www-modern-fbcda19a-20250317", + version: "19.1.0-www-modern-9320a013-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-modern-9320a013-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2524 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19522,4 +19522,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-fbcda19a-20250317"; +exports.version = "19.1.0-www-modern-9320a013-20250317"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index e33d8b1746..2856e36c07 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -21233,7 +21233,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-classic-9320a013-20250317" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index d83c208877..e55dfd7ca1 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -21014,7 +21014,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-modern-9320a013-20250317" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index 7b9daec72b..2e2a158cb7 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -13939,7 +13939,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-classic-9320a013-20250317" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index d5ae7d0a34..c00b74a583 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -13656,7 +13656,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-modern-9320a013-20250317" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index fb3aaf5b72..f89c02dc92 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -15075,10 +15075,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-fbcda19a-20250317", + version: "19.1.0-www-classic-9320a013-20250317", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-classic-9320a013-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15213,5 +15213,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.1.0-www-classic-fbcda19a-20250317"; + exports.version = "19.1.0-www-classic-9320a013-20250317"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index 063faab31d..c4dc409719 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -15075,10 +15075,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-fbcda19a-20250317", + version: "19.1.0-www-modern-9320a013-20250317", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-fbcda19a-20250317" + reconcilerVersion: "19.1.0-www-modern-9320a013-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15213,5 +15213,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.1.0-www-modern-fbcda19a-20250317"; + exports.version = "19.1.0-www-modern-9320a013-20250317"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index f6982fb06c..c5d96ffef2 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.1.0-www-classic-fbcda19a-20250317 \ No newline at end of file +19.1.0-www-classic-9320a013-20250317 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index 3225ff05fa..9bea971b65 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.1.0-www-modern-fbcda19a-20250317 \ No newline at end of file +19.1.0-www-modern-9320a013-20250317 \ No newline at end of file