@tonyclaw/agent-inspector 3.0.24 → 3.0.26
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/.output/nitro.json +1 -1
- package/.output/public/assets/{CompareDrawer-BC52FYwn.js → CompareDrawer-SZRUDQc9.js} +1 -1
- package/.output/public/assets/ProxyViewerContainer-BJvwOrSi.js +4234 -0
- package/.output/public/assets/{ReplayDialog-BcKsarKt.js → ReplayDialog-DgfmqiM3.js} +1 -1
- package/.output/public/assets/{RequestAnatomy-DR0uGpCj.js → RequestAnatomy-CS6c7Qfn.js} +1 -1
- package/.output/public/assets/{ResponseView-kxAAPfmn.js → ResponseView-C0Ri_5gm.js} +2 -2
- package/.output/public/assets/{StreamingChunkSequence-YQR0PjQj.js → StreamingChunkSequence-7dYcHWyZ.js} +1 -1
- package/.output/public/assets/{_sessionId-DRl-Y9om.js → _sessionId-D-V84cgw.js} +1 -1
- package/.output/public/assets/{index-CQbrc-hi.js → index-CSIL7-MK.js} +3 -3
- package/.output/public/assets/index-CmeF5XXS.css +1 -0
- package/.output/public/assets/{index-CcSIBI4L.js → index-DgFWCxOs.js} +1 -1
- package/.output/public/assets/{index-ZrMgyEZV.js → index-DrVJsks2.js} +1 -1
- package/.output/public/assets/{json-viewer-CS5pwnEA.js → json-viewer-C9Ji3gYN.js} +1 -1
- package/.output/server/_libs/lucide-react.mjs +245 -217
- package/.output/server/_libs/three.mjs +26016 -0
- package/.output/server/{_sessionId-BLk2xPkR.mjs → _sessionId-BQ6YQOO1.mjs} +7 -6
- package/.output/server/_ssr/{CompareDrawer-Cw7Dseo3.mjs → CompareDrawer-CqNzIeMR.mjs} +8 -7
- package/.output/server/_ssr/{ProxyViewerContainer-D8SB0zyQ.mjs → ProxyViewerContainer-CMC7Vsbw.mjs} +1164 -405
- package/.output/server/_ssr/{ReplayDialog-B-YMhZkE.mjs → ReplayDialog-D9p_LaTr.mjs} +9 -8
- package/.output/server/_ssr/{RequestAnatomy-a9d8UTYZ.mjs → RequestAnatomy-B4ge3qNZ.mjs} +8 -7
- package/.output/server/_ssr/{ResponseView-PzaZS4CN.mjs → ResponseView-BCqMKApI.mjs} +8 -7
- package/.output/server/_ssr/{StreamingChunkSequence-C21_TCXk.mjs → StreamingChunkSequence-BA4zTLE4.mjs} +8 -7
- package/.output/server/_ssr/{index-CrCeNP7H.mjs → index-CzxhDjlq.mjs} +7 -6
- package/.output/server/_ssr/index.mjs +2 -2
- package/.output/server/_ssr/{json-viewer-Di2gxs9H.mjs → json-viewer-B3qV6iEJ.mjs} +8 -7
- package/.output/server/_ssr/{router-BJzdUbcH.mjs → router-CZe_R31M.mjs} +4 -4
- package/.output/server/{_tanstack-start-manifest_v-CGBTdAYC.mjs → _tanstack-start-manifest_v-B50VTLrH.mjs} +1 -1
- package/.output/server/index.mjs +68 -68
- package/package.json +3 -1
- package/src/components/ProxyViewer.tsx +2 -280
- package/src/components/inspector-pet/InspectorPet.tsx +405 -0
- package/src/components/inspector-pet/InspectorPetCrab3D.tsx +455 -0
- package/src/components/inspector-pet/inspectorPetLogic.ts +258 -0
- package/src/components/providers/ProviderForm.tsx +238 -163
- package/src/components/providers/ProvidersPanel.tsx +16 -6
- package/src/components/providers/providerFormCapabilities.ts +36 -0
- package/styles/globals.css +64 -28
- package/.output/public/assets/ProxyViewerContainer-WuChOrSS.js +0 -127
- package/.output/public/assets/index-DQeXi4Rv.css +0 -1
package/styles/globals.css
CHANGED
|
@@ -45,8 +45,6 @@
|
|
|
45
45
|
--animate-crab-appear: crab-appear 300ms ease-out;
|
|
46
46
|
--animate-crab-settle: crab-settle 400ms ease-in-out;
|
|
47
47
|
--animate-crab-piano-pop: crab-piano-pop 400ms cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
|
|
48
|
-
--animate-crab-short-leg-body: crab-short-leg-body 720ms ease-in-out infinite;
|
|
49
|
-
--animate-crab-short-leg-step: crab-short-leg-step 360ms ease-in-out infinite;
|
|
50
48
|
}
|
|
51
49
|
|
|
52
50
|
:root {
|
|
@@ -222,31 +220,66 @@
|
|
|
222
220
|
}
|
|
223
221
|
}
|
|
224
222
|
|
|
225
|
-
@keyframes
|
|
223
|
+
@keyframes inspector-pet-watch {
|
|
226
224
|
0%,
|
|
227
225
|
100% {
|
|
228
|
-
|
|
229
|
-
}
|
|
230
|
-
25% {
|
|
231
|
-
transform: translateY(1px) rotate(1.5deg);
|
|
226
|
+
filter: brightness(1);
|
|
232
227
|
}
|
|
233
228
|
50% {
|
|
234
|
-
|
|
229
|
+
filter: brightness(1.16) drop-shadow(0 0 8px rgb(34 211 238 / 0.22));
|
|
235
230
|
}
|
|
236
|
-
|
|
237
|
-
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
@keyframes inspector-pet-attention {
|
|
234
|
+
0%,
|
|
235
|
+
82%,
|
|
236
|
+
100% {
|
|
237
|
+
transform: rotate(0deg);
|
|
238
|
+
}
|
|
239
|
+
88% {
|
|
240
|
+
transform: rotate(-4deg);
|
|
241
|
+
}
|
|
242
|
+
94% {
|
|
243
|
+
transform: rotate(4deg);
|
|
238
244
|
}
|
|
239
245
|
}
|
|
240
246
|
|
|
241
|
-
@keyframes
|
|
247
|
+
@keyframes inspector-pet-sleep {
|
|
242
248
|
0%,
|
|
243
249
|
100% {
|
|
244
|
-
|
|
245
|
-
|
|
250
|
+
opacity: 0.72;
|
|
251
|
+
transform: translateY(0) scale(0.98);
|
|
246
252
|
}
|
|
247
253
|
50% {
|
|
248
|
-
transform: translateY(3px) scaleY(1.15) rotate(var(--crab-leg-step, 0deg));
|
|
249
254
|
opacity: 0.9;
|
|
255
|
+
transform: translateY(1px) scale(1);
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
@keyframes inspector-pet-pat {
|
|
260
|
+
0%,
|
|
261
|
+
100% {
|
|
262
|
+
transform: translateY(0) rotate(0deg) scale(1);
|
|
263
|
+
}
|
|
264
|
+
45% {
|
|
265
|
+
transform: translateY(-5px) rotate(4deg) scale(1.08);
|
|
266
|
+
}
|
|
267
|
+
72% {
|
|
268
|
+
transform: translateY(1px) rotate(-2deg) scale(1.02);
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
@keyframes inspector-pet-heart {
|
|
273
|
+
0% {
|
|
274
|
+
opacity: 0;
|
|
275
|
+
transform: translateY(3px) scale(0.65);
|
|
276
|
+
}
|
|
277
|
+
35% {
|
|
278
|
+
opacity: 1;
|
|
279
|
+
}
|
|
280
|
+
100% {
|
|
281
|
+
opacity: 0;
|
|
282
|
+
transform: translateY(-11px) scale(1.05);
|
|
250
283
|
}
|
|
251
284
|
}
|
|
252
285
|
|
|
@@ -254,8 +287,11 @@
|
|
|
254
287
|
.animate-crab-piano-pop {
|
|
255
288
|
animation: none !important;
|
|
256
289
|
}
|
|
257
|
-
.
|
|
258
|
-
.
|
|
290
|
+
.inspector-pet-active,
|
|
291
|
+
.inspector-pet-attention,
|
|
292
|
+
.inspector-pet-sleeping,
|
|
293
|
+
.inspector-pet-patted,
|
|
294
|
+
.inspector-pet-heart {
|
|
259
295
|
animation: none !important;
|
|
260
296
|
}
|
|
261
297
|
}
|
|
@@ -311,24 +347,24 @@
|
|
|
311
347
|
font-size: var(--inspector-font-13);
|
|
312
348
|
}
|
|
313
349
|
|
|
314
|
-
.
|
|
315
|
-
animation:
|
|
316
|
-
|
|
350
|
+
.inspector-pet-active {
|
|
351
|
+
animation: inspector-pet-watch 1.25s ease-in-out infinite;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.inspector-pet-attention {
|
|
355
|
+
animation: inspector-pet-attention 2.4s ease-in-out infinite;
|
|
317
356
|
}
|
|
318
357
|
|
|
319
|
-
.
|
|
320
|
-
animation:
|
|
321
|
-
transform-origin: 50% 0%;
|
|
358
|
+
.inspector-pet-sleeping {
|
|
359
|
+
animation: inspector-pet-sleep 3.6s ease-in-out infinite;
|
|
322
360
|
}
|
|
323
361
|
|
|
324
|
-
.
|
|
325
|
-
|
|
326
|
-
--crab-leg-step: 14deg;
|
|
362
|
+
.inspector-pet-patted {
|
|
363
|
+
animation: inspector-pet-pat 720ms cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
327
364
|
}
|
|
328
365
|
|
|
329
|
-
.
|
|
330
|
-
|
|
331
|
-
--crab-leg-step: -14deg;
|
|
366
|
+
.inspector-pet-heart {
|
|
367
|
+
animation: inspector-pet-heart 720ms ease-out forwards;
|
|
332
368
|
}
|
|
333
369
|
|
|
334
370
|
.inspector-scrollbar {
|