@matthamlin/react-client 0.0.0-experimental-e9638c33-20250721 → 0.0.0-experimental-edac0dde-20250723
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.
|
@@ -1216,25 +1216,37 @@
|
|
|
1216
1216
|
function getIOShortName(ioInfo, description, env, rootEnv) {
|
|
1217
1217
|
ioInfo = ioInfo.name;
|
|
1218
1218
|
env = env === rootEnv || void 0 === env ? "" : " [" + env + "]";
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
if (1 <
|
|
1219
|
+
var desc = "";
|
|
1220
|
+
rootEnv = 30 - ioInfo.length - env.length;
|
|
1221
|
+
if (1 < rootEnv) {
|
|
1222
1222
|
var l = description.length;
|
|
1223
|
-
if (0 < l && l <=
|
|
1223
|
+
if (0 < l && l <= rootEnv) desc = " (" + description + ")";
|
|
1224
1224
|
else if (
|
|
1225
1225
|
description.startsWith("http://") ||
|
|
1226
1226
|
description.startsWith("https://") ||
|
|
1227
1227
|
description.startsWith("/")
|
|
1228
1228
|
) {
|
|
1229
|
-
|
|
1230
|
-
-1 ===
|
|
1231
|
-
47 === description.charCodeAt(
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
(
|
|
1229
|
+
var queryIdx = description.indexOf("?");
|
|
1230
|
+
-1 === queryIdx && (queryIdx = description.length);
|
|
1231
|
+
47 === description.charCodeAt(queryIdx - 1) && queryIdx--;
|
|
1232
|
+
desc = description.lastIndexOf("/", queryIdx - 1);
|
|
1233
|
+
queryIdx - desc < rootEnv
|
|
1234
|
+
? (desc = " (\u2026" + description.slice(desc, queryIdx) + ")")
|
|
1235
|
+
: ((l = description.slice(desc, desc + rootEnv / 2)),
|
|
1236
|
+
(description = description.slice(
|
|
1237
|
+
queryIdx - rootEnv / 2,
|
|
1238
|
+
queryIdx
|
|
1239
|
+
)),
|
|
1240
|
+
(desc =
|
|
1241
|
+
" (" +
|
|
1242
|
+
(0 < desc ? "\u2026" : "") +
|
|
1243
|
+
l +
|
|
1244
|
+
"\u2026" +
|
|
1245
|
+
description +
|
|
1246
|
+
")"));
|
|
1235
1247
|
}
|
|
1236
1248
|
}
|
|
1237
|
-
return ioInfo +
|
|
1249
|
+
return ioInfo + desc + env;
|
|
1238
1250
|
}
|
|
1239
1251
|
function logComponentAwait(
|
|
1240
1252
|
asyncInfo,
|
|
@@ -4136,7 +4148,7 @@
|
|
|
4136
4148
|
version: rendererVersion,
|
|
4137
4149
|
rendererPackageName: rendererPackageName,
|
|
4138
4150
|
currentDispatcherRef: ReactSharedInternals,
|
|
4139
|
-
reconcilerVersion: "19.2.0-experimental-
|
|
4151
|
+
reconcilerVersion: "19.2.0-experimental-edac0dde-20250723",
|
|
4140
4152
|
getCurrentComponentInfo: getCurrentOwnerInDEV
|
|
4141
4153
|
};
|
|
4142
4154
|
if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)
|
|
@@ -1764,7 +1764,7 @@ module.exports = function ($$$config) {
|
|
|
1764
1764
|
version: rendererVersion,
|
|
1765
1765
|
rendererPackageName: rendererPackageName,
|
|
1766
1766
|
currentDispatcherRef: ReactSharedInternals,
|
|
1767
|
-
reconcilerVersion: "19.2.0-experimental-
|
|
1767
|
+
reconcilerVersion: "19.2.0-experimental-edac0dde-20250723",
|
|
1768
1768
|
getCurrentComponentInfo: getCurrentOwnerInDEV
|
|
1769
1769
|
};
|
|
1770
1770
|
if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matthamlin/react-client",
|
|
3
3
|
"description": "React package for consuming streaming models.",
|
|
4
|
-
"version": "0.0.0-experimental-
|
|
4
|
+
"version": "0.0.0-experimental-edac0dde-20250723",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react"
|
|
7
7
|
],
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"node": ">=0.10.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"react": "0.0.0-experimental-
|
|
26
|
+
"react": "0.0.0-experimental-edac0dde-20250723"
|
|
27
27
|
}
|
|
28
28
|
}
|