xshell 1.2.77 → 1.2.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/file.d.ts +4 -2
- package/file.js +4 -4
- package/package.json +6 -6
- package/react.development.js +73 -69
- package/react.development.js.map +1 -1
- package/react.production.js +1146 -1146
- package/react.production.js.map +1 -1
- package/server.js +7 -7
package/file.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export declare function fexists(fp: string, { print }?: {
|
|
|
36
36
|
|
|
37
37
|
- flags: `'r'` https://nodejs.org/docs/latest/api/fs.html#file-system-flags
|
|
38
38
|
- options?:
|
|
39
|
-
- mode?: `'0o666'`
|
|
39
|
+
- mode?: `'0o666'` 设置新建文件时的 mode (permission and sticky bits)
|
|
40
40
|
- print?: `false` */
|
|
41
41
|
export declare function fopen(fp: string, flags?: string | number, { mode, print }?: {
|
|
42
42
|
mode?: fs.Mode;
|
|
@@ -79,6 +79,7 @@ export interface FWriteOptions {
|
|
|
79
79
|
print?: boolean;
|
|
80
80
|
mtime?: number;
|
|
81
81
|
flush?: boolean;
|
|
82
|
+
mode?: fs.Mode;
|
|
82
83
|
}
|
|
83
84
|
/** 写入 data 到 fp 路径或句柄所指的文件
|
|
84
85
|
会在因不存在父文件夹导致写入失败时,自动创建父文件夹,并再次尝试写入
|
|
@@ -92,7 +93,8 @@ export interface FWriteOptions {
|
|
|
92
93
|
- options?:
|
|
93
94
|
- print?: `true`
|
|
94
95
|
- mtime?: 在写入后设置修改时间 (utc 毫秒数)
|
|
95
|
-
- flush?: 用 filehandle.sync() 刷到硬盘,确保已写入
|
|
96
|
+
- flush?: 用 filehandle.sync() 刷到硬盘,确保已写入
|
|
97
|
+
- mode?: 设置 0o755 之类的 mode */
|
|
96
98
|
export declare function fwrite(fp: string, data: string | Uint8Array | any, options?: FWriteOptions): Promise<string>;
|
|
97
99
|
export declare function fwrite(fp: FileHandle, data: string | Uint8Array | any, options?: FWriteOptions): Promise<FileHandle>;
|
|
98
100
|
export declare function fwrite(fp: string | FileHandle, data: string | Uint8Array | any, options?: FWriteOptions): Promise<string | FileHandle>;
|
package/file.js
CHANGED
|
@@ -28,7 +28,7 @@ export function fexists(fp, { print = true } = {}) {
|
|
|
28
28
|
|
|
29
29
|
- flags: `'r'` https://nodejs.org/docs/latest/api/fs.html#file-system-flags
|
|
30
30
|
- options?:
|
|
31
|
-
- mode?: `'0o666'`
|
|
31
|
+
- mode?: `'0o666'` 设置新建文件时的 mode (permission and sticky bits)
|
|
32
32
|
- print?: `false` */
|
|
33
33
|
export async function fopen(fp, flags = 'r', { mode, print } = {}) {
|
|
34
34
|
if (print)
|
|
@@ -87,7 +87,7 @@ export async function fequals(fp_left, fp_right, { print = true } = {}) {
|
|
|
87
87
|
return false;
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
|
-
export async function fwrite(fp, data, { print = true, mtime, flush } = {}) {
|
|
90
|
+
export async function fwrite(fp, data, { print = true, mtime, flush, mode } = {}) {
|
|
91
91
|
const is_handle = typeof fp === 'object' && fp && 'fd' in fp;
|
|
92
92
|
if (is_handle) {
|
|
93
93
|
if (print)
|
|
@@ -102,7 +102,7 @@ export async function fwrite(fp, data, { print = true, mtime, flush } = {}) {
|
|
|
102
102
|
data = to_json(data);
|
|
103
103
|
// 需要设置修改时间,先打开文件再写入
|
|
104
104
|
if (mtime !== undefined && !is_handle) {
|
|
105
|
-
let handle = await fopen(fp, 'w',
|
|
105
|
+
let handle = await fopen(fp, 'w', { mode, print: false });
|
|
106
106
|
try {
|
|
107
107
|
await handle.write(data, 0);
|
|
108
108
|
const mseconds = mtime / 1000;
|
|
@@ -113,7 +113,7 @@ export async function fwrite(fp, data, { print = true, mtime, flush } = {}) {
|
|
|
113
113
|
}
|
|
114
114
|
return fp;
|
|
115
115
|
}
|
|
116
|
-
const write_options = { flush };
|
|
116
|
+
const write_options = { flush, mode };
|
|
117
117
|
try {
|
|
118
118
|
await fsp.writeFile(fp, data, write_options);
|
|
119
119
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xshell",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.79",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"bin": {
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"@svgr/webpack": "^8.1.0",
|
|
58
58
|
"@types/sass-loader": "^8.0.9",
|
|
59
59
|
"@types/ws": "^8.18.1",
|
|
60
|
-
"@typescript-eslint/eslint-plugin": "^8.39.
|
|
61
|
-
"@typescript-eslint/parser": "^8.39.
|
|
62
|
-
"@typescript-eslint/utils": "^8.39.
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^8.39.1",
|
|
61
|
+
"@typescript-eslint/parser": "^8.39.1",
|
|
62
|
+
"@typescript-eslint/utils": "^8.39.1",
|
|
63
63
|
"archiver": "^7.0.1",
|
|
64
64
|
"chalk": "^5.5.0",
|
|
65
65
|
"commander": "^14.0.0",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"typescript": "^5.9.2",
|
|
92
92
|
"ua-parser-js": "^2.0.4",
|
|
93
93
|
"undici": "^7.13.0",
|
|
94
|
-
"webpack": "^5.101.
|
|
94
|
+
"webpack": "^5.101.1",
|
|
95
95
|
"webpack-bundle-analyzer": "^4.10.2",
|
|
96
96
|
"ws": "^8.18.3"
|
|
97
97
|
},
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"@types/koa-compress": "^4.0.6",
|
|
106
106
|
"@types/mime-types": "^3.0.1",
|
|
107
107
|
"@types/node": "^24.2.1",
|
|
108
|
-
"@types/react": "^19.1.
|
|
108
|
+
"@types/react": "^19.1.10",
|
|
109
109
|
"@types/tough-cookie": "^4.0.5",
|
|
110
110
|
"@types/ua-parser-js": "^0.7.39",
|
|
111
111
|
"@types/vscode": "^1.102.0",
|
package/react.development.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/ "./node_modules/.pnpm/react-dom@19.1.
|
|
5
|
+
/***/ "./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/cjs/react-dom-client.development.js":
|
|
6
6
|
/*!*********************************************************************************************************************!*\
|
|
7
|
-
!*** ./node_modules/.pnpm/react-dom@19.1.
|
|
7
|
+
!*** ./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/cjs/react-dom-client.development.js ***!
|
|
8
8
|
\*********************************************************************************************************************/
|
|
9
9
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
10
10
|
|
|
@@ -1389,7 +1389,7 @@
|
|
|
1389
1389
|
prevPrepareStackTrace = error.indexOf("\n");
|
|
1390
1390
|
-1 !== prevPrepareStackTrace &&
|
|
1391
1391
|
(error = error.slice(prevPrepareStackTrace + 1));
|
|
1392
|
-
prevPrepareStackTrace = error.indexOf("
|
|
1392
|
+
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
|
|
1393
1393
|
-1 !== prevPrepareStackTrace &&
|
|
1394
1394
|
(prevPrepareStackTrace = error.lastIndexOf(
|
|
1395
1395
|
"\n",
|
|
@@ -21211,8 +21211,8 @@
|
|
|
21211
21211
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&
|
|
21212
21212
|
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
|
|
21213
21213
|
var Scheduler = __webpack_require__(/*! scheduler */ "./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/index.js"),
|
|
21214
|
-
React = __webpack_require__(/*! react */ "./node_modules/.pnpm/react@19.1.
|
|
21215
|
-
ReactDOM = __webpack_require__(/*! react-dom */ "./node_modules/.pnpm/react-dom@19.1.
|
|
21214
|
+
React = __webpack_require__(/*! react */ "./node_modules/.pnpm/react@19.1.1/node_modules/react/index.js"),
|
|
21215
|
+
ReactDOM = __webpack_require__(/*! react-dom */ "./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/index.js"),
|
|
21216
21216
|
assign = Object.assign,
|
|
21217
21217
|
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
|
21218
21218
|
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
|
@@ -23865,7 +23865,7 @@
|
|
|
23865
23865
|
}
|
|
23866
23866
|
};
|
|
23867
23867
|
var callComponent = {
|
|
23868
|
-
|
|
23868
|
+
react_stack_bottom_frame: function (Component, props, secondArg) {
|
|
23869
23869
|
var wasRendering = isRendering;
|
|
23870
23870
|
isRendering = !0;
|
|
23871
23871
|
try {
|
|
@@ -23876,9 +23876,9 @@
|
|
|
23876
23876
|
}
|
|
23877
23877
|
},
|
|
23878
23878
|
callComponentInDEV =
|
|
23879
|
-
callComponent
|
|
23879
|
+
callComponent.react_stack_bottom_frame.bind(callComponent),
|
|
23880
23880
|
callRender = {
|
|
23881
|
-
|
|
23881
|
+
react_stack_bottom_frame: function (instance) {
|
|
23882
23882
|
var wasRendering = isRendering;
|
|
23883
23883
|
isRendering = !0;
|
|
23884
23884
|
try {
|
|
@@ -23888,9 +23888,9 @@
|
|
|
23888
23888
|
}
|
|
23889
23889
|
}
|
|
23890
23890
|
},
|
|
23891
|
-
callRenderInDEV = callRender
|
|
23891
|
+
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
|
|
23892
23892
|
callComponentDidMount = {
|
|
23893
|
-
|
|
23893
|
+
react_stack_bottom_frame: function (finishedWork, instance) {
|
|
23894
23894
|
try {
|
|
23895
23895
|
instance.componentDidMount();
|
|
23896
23896
|
} catch (error) {
|
|
@@ -23898,11 +23898,12 @@
|
|
|
23898
23898
|
}
|
|
23899
23899
|
}
|
|
23900
23900
|
},
|
|
23901
|
-
callComponentDidMountInDEV =
|
|
23902
|
-
|
|
23903
|
-
|
|
23901
|
+
callComponentDidMountInDEV =
|
|
23902
|
+
callComponentDidMount.react_stack_bottom_frame.bind(
|
|
23903
|
+
callComponentDidMount
|
|
23904
|
+
),
|
|
23904
23905
|
callComponentDidUpdate = {
|
|
23905
|
-
|
|
23906
|
+
react_stack_bottom_frame: function (
|
|
23906
23907
|
finishedWork,
|
|
23907
23908
|
instance,
|
|
23908
23909
|
prevProps,
|
|
@@ -23916,22 +23917,24 @@
|
|
|
23916
23917
|
}
|
|
23917
23918
|
}
|
|
23918
23919
|
},
|
|
23919
|
-
callComponentDidUpdateInDEV =
|
|
23920
|
-
|
|
23921
|
-
|
|
23920
|
+
callComponentDidUpdateInDEV =
|
|
23921
|
+
callComponentDidUpdate.react_stack_bottom_frame.bind(
|
|
23922
|
+
callComponentDidUpdate
|
|
23923
|
+
),
|
|
23922
23924
|
callComponentDidCatch = {
|
|
23923
|
-
|
|
23925
|
+
react_stack_bottom_frame: function (instance, errorInfo) {
|
|
23924
23926
|
var stack = errorInfo.stack;
|
|
23925
23927
|
instance.componentDidCatch(errorInfo.value, {
|
|
23926
23928
|
componentStack: null !== stack ? stack : ""
|
|
23927
23929
|
});
|
|
23928
23930
|
}
|
|
23929
23931
|
},
|
|
23930
|
-
callComponentDidCatchInDEV =
|
|
23931
|
-
|
|
23932
|
-
|
|
23932
|
+
callComponentDidCatchInDEV =
|
|
23933
|
+
callComponentDidCatch.react_stack_bottom_frame.bind(
|
|
23934
|
+
callComponentDidCatch
|
|
23935
|
+
),
|
|
23933
23936
|
callComponentWillUnmount = {
|
|
23934
|
-
|
|
23937
|
+
react_stack_bottom_frame: function (
|
|
23935
23938
|
current,
|
|
23936
23939
|
nearestMountedAncestor,
|
|
23937
23940
|
instance
|
|
@@ -23943,11 +23946,12 @@
|
|
|
23943
23946
|
}
|
|
23944
23947
|
}
|
|
23945
23948
|
},
|
|
23946
|
-
callComponentWillUnmountInDEV =
|
|
23947
|
-
|
|
23948
|
-
|
|
23949
|
+
callComponentWillUnmountInDEV =
|
|
23950
|
+
callComponentWillUnmount.react_stack_bottom_frame.bind(
|
|
23951
|
+
callComponentWillUnmount
|
|
23952
|
+
),
|
|
23949
23953
|
callCreate = {
|
|
23950
|
-
|
|
23954
|
+
react_stack_bottom_frame: function (effect) {
|
|
23951
23955
|
null != effect.resourceKind &&
|
|
23952
23956
|
console.error(
|
|
23953
23957
|
"Expected only SimpleEffects when enableUseEffectCRUDOverload is disabled, got %s",
|
|
@@ -23959,9 +23963,9 @@
|
|
|
23959
23963
|
return (effect.destroy = create);
|
|
23960
23964
|
}
|
|
23961
23965
|
},
|
|
23962
|
-
callCreateInDEV = callCreate
|
|
23966
|
+
callCreateInDEV = callCreate.react_stack_bottom_frame.bind(callCreate),
|
|
23963
23967
|
callDestroy = {
|
|
23964
|
-
|
|
23968
|
+
react_stack_bottom_frame: function (
|
|
23965
23969
|
current,
|
|
23966
23970
|
nearestMountedAncestor,
|
|
23967
23971
|
destroy
|
|
@@ -23973,16 +23977,15 @@
|
|
|
23973
23977
|
}
|
|
23974
23978
|
}
|
|
23975
23979
|
},
|
|
23976
|
-
callDestroyInDEV =
|
|
23977
|
-
callDestroy["react-stack-bottom-frame"].bind(callDestroy),
|
|
23980
|
+
callDestroyInDEV = callDestroy.react_stack_bottom_frame.bind(callDestroy),
|
|
23978
23981
|
callLazyInit = {
|
|
23979
|
-
|
|
23982
|
+
react_stack_bottom_frame: function (lazy) {
|
|
23980
23983
|
var init = lazy._init;
|
|
23981
23984
|
return init(lazy._payload);
|
|
23982
23985
|
}
|
|
23983
23986
|
},
|
|
23984
23987
|
callLazyInitInDEV =
|
|
23985
|
-
callLazyInit
|
|
23988
|
+
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
|
|
23986
23989
|
thenableState = null,
|
|
23987
23990
|
thenableIndexCounter = 0,
|
|
23988
23991
|
currentDebugInfo = null,
|
|
@@ -24803,11 +24806,11 @@
|
|
|
24803
24806
|
};
|
|
24804
24807
|
(function () {
|
|
24805
24808
|
var isomorphicReactPackageVersion = React.version;
|
|
24806
|
-
if ("19.1.
|
|
24809
|
+
if ("19.1.1" !== isomorphicReactPackageVersion)
|
|
24807
24810
|
throw Error(
|
|
24808
24811
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
24809
24812
|
(isomorphicReactPackageVersion +
|
|
24810
|
-
"\n - react-dom: 19.1.
|
|
24813
|
+
"\n - react-dom: 19.1.1\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
24811
24814
|
);
|
|
24812
24815
|
})();
|
|
24813
24816
|
("function" === typeof Map &&
|
|
@@ -24844,10 +24847,10 @@
|
|
|
24844
24847
|
!(function () {
|
|
24845
24848
|
var internals = {
|
|
24846
24849
|
bundleType: 1,
|
|
24847
|
-
version: "19.1.
|
|
24850
|
+
version: "19.1.1",
|
|
24848
24851
|
rendererPackageName: "react-dom",
|
|
24849
24852
|
currentDispatcherRef: ReactSharedInternals,
|
|
24850
|
-
reconcilerVersion: "19.1.
|
|
24853
|
+
reconcilerVersion: "19.1.1"
|
|
24851
24854
|
};
|
|
24852
24855
|
internals.overrideHookState = overrideHookState;
|
|
24853
24856
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
|
@@ -24991,7 +24994,7 @@
|
|
|
24991
24994
|
listenToAllSupportedEvents(container);
|
|
24992
24995
|
return new ReactDOMHydrationRoot(initialChildren);
|
|
24993
24996
|
};
|
|
24994
|
-
exports.version = "19.1.
|
|
24997
|
+
exports.version = "19.1.1";
|
|
24995
24998
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
24996
24999
|
"function" ===
|
|
24997
25000
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -25001,9 +25004,9 @@
|
|
|
25001
25004
|
|
|
25002
25005
|
/***/ }),
|
|
25003
25006
|
|
|
25004
|
-
/***/ "./node_modules/.pnpm/react-dom@19.1.
|
|
25007
|
+
/***/ "./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/cjs/react-dom.development.js":
|
|
25005
25008
|
/*!**************************************************************************************************************!*\
|
|
25006
|
-
!*** ./node_modules/.pnpm/react-dom@19.1.
|
|
25009
|
+
!*** ./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/cjs/react-dom.development.js ***!
|
|
25007
25010
|
\**************************************************************************************************************/
|
|
25008
25011
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
25009
25012
|
|
|
@@ -25090,7 +25093,7 @@
|
|
|
25090
25093
|
"function" ===
|
|
25091
25094
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&
|
|
25092
25095
|
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
|
|
25093
|
-
var React = __webpack_require__(/*! react */ "./node_modules/.pnpm/react@19.1.
|
|
25096
|
+
var React = __webpack_require__(/*! react */ "./node_modules/.pnpm/react@19.1.1/node_modules/react/index.js"),
|
|
25094
25097
|
Internals = {
|
|
25095
25098
|
d: {
|
|
25096
25099
|
f: noop,
|
|
@@ -25425,7 +25428,7 @@
|
|
|
25425
25428
|
exports.useFormStatus = function () {
|
|
25426
25429
|
return resolveDispatcher().useHostTransitionStatus();
|
|
25427
25430
|
};
|
|
25428
|
-
exports.version = "19.1.
|
|
25431
|
+
exports.version = "19.1.1";
|
|
25429
25432
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
25430
25433
|
"function" ===
|
|
25431
25434
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -25435,9 +25438,9 @@
|
|
|
25435
25438
|
|
|
25436
25439
|
/***/ }),
|
|
25437
25440
|
|
|
25438
|
-
/***/ "./node_modules/.pnpm/react-dom@19.1.
|
|
25441
|
+
/***/ "./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/client.js":
|
|
25439
25442
|
/*!*******************************************************************************************!*\
|
|
25440
|
-
!*** ./node_modules/.pnpm/react-dom@19.1.
|
|
25443
|
+
!*** ./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/client.js ***!
|
|
25441
25444
|
\*******************************************************************************************/
|
|
25442
25445
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
25443
25446
|
|
|
@@ -25467,15 +25470,15 @@ function checkDCE() {
|
|
|
25467
25470
|
|
|
25468
25471
|
if (false) // removed by dead control flow
|
|
25469
25472
|
{} else {
|
|
25470
|
-
module.exports = __webpack_require__(/*! ./cjs/react-dom-client.development.js */ "./node_modules/.pnpm/react-dom@19.1.
|
|
25473
|
+
module.exports = __webpack_require__(/*! ./cjs/react-dom-client.development.js */ "./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/cjs/react-dom-client.development.js");
|
|
25471
25474
|
}
|
|
25472
25475
|
|
|
25473
25476
|
|
|
25474
25477
|
/***/ }),
|
|
25475
25478
|
|
|
25476
|
-
/***/ "./node_modules/.pnpm/react-dom@19.1.
|
|
25479
|
+
/***/ "./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/index.js":
|
|
25477
25480
|
/*!******************************************************************************************!*\
|
|
25478
|
-
!*** ./node_modules/.pnpm/react-dom@19.1.
|
|
25481
|
+
!*** ./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/index.js ***!
|
|
25479
25482
|
\******************************************************************************************/
|
|
25480
25483
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
25481
25484
|
|
|
@@ -25505,15 +25508,15 @@ function checkDCE() {
|
|
|
25505
25508
|
|
|
25506
25509
|
if (false) // removed by dead control flow
|
|
25507
25510
|
{} else {
|
|
25508
|
-
module.exports = __webpack_require__(/*! ./cjs/react-dom.development.js */ "./node_modules/.pnpm/react-dom@19.1.
|
|
25511
|
+
module.exports = __webpack_require__(/*! ./cjs/react-dom.development.js */ "./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/cjs/react-dom.development.js");
|
|
25509
25512
|
}
|
|
25510
25513
|
|
|
25511
25514
|
|
|
25512
25515
|
/***/ }),
|
|
25513
25516
|
|
|
25514
|
-
/***/ "./node_modules/.pnpm/react@19.1.
|
|
25517
|
+
/***/ "./node_modules/.pnpm/react@19.1.1/node_modules/react/cjs/react-jsx-runtime.development.js":
|
|
25515
25518
|
/*!*************************************************************************************************!*\
|
|
25516
|
-
!*** ./node_modules/.pnpm/react@19.1.
|
|
25519
|
+
!*** ./node_modules/.pnpm/react@19.1.1/node_modules/react/cjs/react-jsx-runtime.development.js ***!
|
|
25517
25520
|
\*************************************************************************************************/
|
|
25518
25521
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
25519
25522
|
|
|
@@ -25803,7 +25806,7 @@ if (false) // removed by dead control flow
|
|
|
25803
25806
|
node._store &&
|
|
25804
25807
|
(node._store.validated = 1);
|
|
25805
25808
|
}
|
|
25806
|
-
var React = __webpack_require__(/*! react */ "./node_modules/.pnpm/react@19.1.
|
|
25809
|
+
var React = __webpack_require__(/*! react */ "./node_modules/.pnpm/react@19.1.1/node_modules/react/index.js"),
|
|
25807
25810
|
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
|
25808
25811
|
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
|
25809
25812
|
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
|
@@ -25829,13 +25832,13 @@ if (false) // removed by dead control flow
|
|
|
25829
25832
|
return null;
|
|
25830
25833
|
};
|
|
25831
25834
|
React = {
|
|
25832
|
-
|
|
25835
|
+
react_stack_bottom_frame: function (callStackForError) {
|
|
25833
25836
|
return callStackForError();
|
|
25834
25837
|
}
|
|
25835
25838
|
};
|
|
25836
25839
|
var specialPropKeyWarningShown;
|
|
25837
25840
|
var didWarnAboutElementRef = {};
|
|
25838
|
-
var unknownOwnerDebugStack = React
|
|
25841
|
+
var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(
|
|
25839
25842
|
React,
|
|
25840
25843
|
UnknownOwner
|
|
25841
25844
|
)();
|
|
@@ -25879,9 +25882,9 @@ if (false) // removed by dead control flow
|
|
|
25879
25882
|
|
|
25880
25883
|
/***/ }),
|
|
25881
25884
|
|
|
25882
|
-
/***/ "./node_modules/.pnpm/react@19.1.
|
|
25885
|
+
/***/ "./node_modules/.pnpm/react@19.1.1/node_modules/react/cjs/react.development.js":
|
|
25883
25886
|
/*!*************************************************************************************!*\
|
|
25884
|
-
!*** ./node_modules/.pnpm/react@19.1.
|
|
25887
|
+
!*** ./node_modules/.pnpm/react@19.1.1/node_modules/react/cjs/react.development.js ***!
|
|
25885
25888
|
\*************************************************************************************/
|
|
25886
25889
|
/***/ ((module, exports, __webpack_require__) => {
|
|
25887
25890
|
|
|
@@ -26564,15 +26567,16 @@ if (false) // removed by dead control flow
|
|
|
26564
26567
|
return null;
|
|
26565
26568
|
};
|
|
26566
26569
|
deprecatedAPIs = {
|
|
26567
|
-
|
|
26570
|
+
react_stack_bottom_frame: function (callStackForError) {
|
|
26568
26571
|
return callStackForError();
|
|
26569
26572
|
}
|
|
26570
26573
|
};
|
|
26571
26574
|
var specialPropKeyWarningShown, didWarnAboutOldJSXRuntime;
|
|
26572
26575
|
var didWarnAboutElementRef = {};
|
|
26573
|
-
var unknownOwnerDebugStack = deprecatedAPIs
|
|
26574
|
-
|
|
26575
|
-
|
|
26576
|
+
var unknownOwnerDebugStack = deprecatedAPIs.react_stack_bottom_frame.bind(
|
|
26577
|
+
deprecatedAPIs,
|
|
26578
|
+
UnknownOwner
|
|
26579
|
+
)();
|
|
26576
26580
|
var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
|
|
26577
26581
|
var didWarnAboutMaps = !1,
|
|
26578
26582
|
userProvidedKeyEscapeRegex = /\/+/g,
|
|
@@ -27122,7 +27126,7 @@ if (false) // removed by dead control flow
|
|
|
27122
27126
|
exports.useTransition = function () {
|
|
27123
27127
|
return resolveDispatcher().useTransition();
|
|
27124
27128
|
};
|
|
27125
|
-
exports.version = "19.1.
|
|
27129
|
+
exports.version = "19.1.1";
|
|
27126
27130
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
27127
27131
|
"function" ===
|
|
27128
27132
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -27132,9 +27136,9 @@ if (false) // removed by dead control flow
|
|
|
27132
27136
|
|
|
27133
27137
|
/***/ }),
|
|
27134
27138
|
|
|
27135
|
-
/***/ "./node_modules/.pnpm/react@19.1.
|
|
27139
|
+
/***/ "./node_modules/.pnpm/react@19.1.1/node_modules/react/index.js":
|
|
27136
27140
|
/*!*********************************************************************!*\
|
|
27137
|
-
!*** ./node_modules/.pnpm/react@19.1.
|
|
27141
|
+
!*** ./node_modules/.pnpm/react@19.1.1/node_modules/react/index.js ***!
|
|
27138
27142
|
\*********************************************************************/
|
|
27139
27143
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
27140
27144
|
|
|
@@ -27142,15 +27146,15 @@ if (false) // removed by dead control flow
|
|
|
27142
27146
|
|
|
27143
27147
|
if (false) // removed by dead control flow
|
|
27144
27148
|
{} else {
|
|
27145
|
-
module.exports = __webpack_require__(/*! ./cjs/react.development.js */ "./node_modules/.pnpm/react@19.1.
|
|
27149
|
+
module.exports = __webpack_require__(/*! ./cjs/react.development.js */ "./node_modules/.pnpm/react@19.1.1/node_modules/react/cjs/react.development.js");
|
|
27146
27150
|
}
|
|
27147
27151
|
|
|
27148
27152
|
|
|
27149
27153
|
/***/ }),
|
|
27150
27154
|
|
|
27151
|
-
/***/ "./node_modules/.pnpm/react@19.1.
|
|
27155
|
+
/***/ "./node_modules/.pnpm/react@19.1.1/node_modules/react/jsx-runtime.js":
|
|
27152
27156
|
/*!***************************************************************************!*\
|
|
27153
|
-
!*** ./node_modules/.pnpm/react@19.1.
|
|
27157
|
+
!*** ./node_modules/.pnpm/react@19.1.1/node_modules/react/jsx-runtime.js ***!
|
|
27154
27158
|
\***************************************************************************/
|
|
27155
27159
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
27156
27160
|
|
|
@@ -27158,7 +27162,7 @@ if (false) // removed by dead control flow
|
|
|
27158
27162
|
|
|
27159
27163
|
if (false) // removed by dead control flow
|
|
27160
27164
|
{} else {
|
|
27161
|
-
module.exports = __webpack_require__(/*! ./cjs/react-jsx-runtime.development.js */ "./node_modules/.pnpm/react@19.1.
|
|
27165
|
+
module.exports = __webpack_require__(/*! ./cjs/react-jsx-runtime.development.js */ "./node_modules/.pnpm/react@19.1.1/node_modules/react/cjs/react-jsx-runtime.development.js");
|
|
27162
27166
|
}
|
|
27163
27167
|
|
|
27164
27168
|
|
|
@@ -27680,11 +27684,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27680
27684
|
/* harmony export */ ReactDOMClient: () => (/* reexport fake namespace object from non-harmony */ react_dom_client__WEBPACK_IMPORTED_MODULE_3___namespace_cache || (react_dom_client__WEBPACK_IMPORTED_MODULE_3___namespace_cache = __webpack_require__.t(react_dom_client__WEBPACK_IMPORTED_MODULE_3__, 2))),
|
|
27681
27685
|
/* harmony export */ ReactJSX: () => (/* reexport fake namespace object from non-harmony */ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1___namespace_cache || (react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1___namespace_cache = __webpack_require__.t(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__, 2)))
|
|
27682
27686
|
/* harmony export */ });
|
|
27683
|
-
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/.pnpm/react@19.1.
|
|
27687
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/.pnpm/react@19.1.1/node_modules/react/index.js");
|
|
27684
27688
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
27685
|
-
/* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ "./node_modules/.pnpm/react@19.1.
|
|
27686
|
-
/* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ "./node_modules/.pnpm/react-dom@19.1.
|
|
27687
|
-
/* harmony import */ var react_dom_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-dom/client */ "./node_modules/.pnpm/react-dom@19.1.
|
|
27689
|
+
/* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ "./node_modules/.pnpm/react@19.1.1/node_modules/react/jsx-runtime.js");
|
|
27690
|
+
/* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ "./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/index.js");
|
|
27691
|
+
/* harmony import */ var react_dom_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-dom/client */ "./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/client.js");
|
|
27688
27692
|
|
|
27689
27693
|
|
|
27690
27694
|
|