@agent-native/core 0.84.13 → 0.84.14
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/corpus/README.md +1 -1
- package/corpus/core/CHANGELOG.md +8 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/agent/durable-background.ts +12 -5
- package/corpus/core/src/agent/production-agent.ts +38 -4
- package/corpus/core/src/agent/run-manager.ts +39 -2
- package/corpus/core/src/agent/run-store.ts +55 -11
- package/corpus/core/src/client/agent-chat-adapter.ts +21 -3
- package/corpus/core/src/client/blocks/library/diagram.tsx +3 -3
- package/corpus/core/src/client/chat/message-components.tsx +17 -0
- package/corpus/core/src/observability/traces.ts +17 -3
- package/corpus/core/src/server/agent-chat-plugin.ts +11 -1
- package/corpus/core/src/styles/blocks.css +44 -1
- package/corpus/templates/clips/changelog/2026-07-01-chrome-extension-recordings-stream-uploads-while-recording.md +6 -0
- package/corpus/templates/clips/chrome-extension/src/background.ts +8 -0
- package/corpus/templates/clips/chrome-extension/src/offscreen.ts +61 -16
- package/corpus/templates/plan/app/components/plan/wireframe/html-artboard.css +44 -1
- package/corpus/templates/plan/changelog/2026-07-01-visual-plan-and-recap-diagram-labels-now-wrap-inside-their-b.md +6 -0
- package/dist/agent/durable-background.d.ts.map +1 -1
- package/dist/agent/durable-background.js +14 -3
- package/dist/agent/durable-background.js.map +1 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +26 -3
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/run-manager.d.ts +2 -0
- package/dist/agent/run-manager.d.ts.map +1 -1
- package/dist/agent/run-manager.js +28 -3
- package/dist/agent/run-manager.js.map +1 -1
- package/dist/agent/run-store.d.ts +9 -0
- package/dist/agent/run-store.d.ts.map +1 -1
- package/dist/agent/run-store.js +47 -11
- package/dist/agent/run-store.js.map +1 -1
- package/dist/client/agent-chat-adapter.d.ts.map +1 -1
- package/dist/client/agent-chat-adapter.js +19 -3
- package/dist/client/agent-chat-adapter.js.map +1 -1
- package/dist/client/blocks/library/diagram.js +3 -3
- package/dist/client/blocks/library/diagram.js.map +1 -1
- package/dist/client/chat/message-components.d.ts +3 -1
- package/dist/client/chat/message-components.d.ts.map +1 -1
- package/dist/client/chat/message-components.js +16 -2
- package/dist/client/chat/message-components.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/routes.d.ts +2 -2
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/observability/routes.d.ts +3 -3
- package/dist/observability/traces.d.ts +5 -0
- package/dist/observability/traces.d.ts.map +1 -1
- package/dist/observability/traces.js +9 -3
- package/dist/observability/traces.js.map +1 -1
- package/dist/progress/routes.d.ts +1 -1
- package/dist/resources/handlers.d.ts +3 -3
- package/dist/server/agent-chat-plugin.d.ts +2 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +7 -2
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/dist/styles/blocks.css +44 -1
- package/package.json +1 -1
package/dist/styles/blocks.css
CHANGED
|
@@ -1355,8 +1355,37 @@
|
|
|
1355
1355
|
color: var(--wf-ink) !important;
|
|
1356
1356
|
}
|
|
1357
1357
|
|
|
1358
|
-
.plan-diagram-frame
|
|
1358
|
+
.plan-diagram-frame
|
|
1359
|
+
:is(
|
|
1360
|
+
.diagram-panel,
|
|
1361
|
+
.diagram-card,
|
|
1362
|
+
.diagram-node,
|
|
1363
|
+
.diagram-box,
|
|
1364
|
+
[class*="card"],
|
|
1365
|
+
[class*="panel"],
|
|
1366
|
+
[class*="box"]
|
|
1367
|
+
) {
|
|
1359
1368
|
max-width: 100%;
|
|
1369
|
+
overflow-wrap: anywhere !important;
|
|
1370
|
+
word-break: break-word;
|
|
1371
|
+
white-space: normal !important;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.plan-diagram-frame
|
|
1375
|
+
:is(
|
|
1376
|
+
.diagram-panel,
|
|
1377
|
+
.diagram-card,
|
|
1378
|
+
.diagram-node,
|
|
1379
|
+
.diagram-box,
|
|
1380
|
+
[class*="card"],
|
|
1381
|
+
[class*="panel"],
|
|
1382
|
+
[class*="box"]
|
|
1383
|
+
)
|
|
1384
|
+
:is(h1, h2, h3, p, small, strong, span, li) {
|
|
1385
|
+
max-width: 100%;
|
|
1386
|
+
overflow-wrap: anywhere !important;
|
|
1387
|
+
word-break: break-word;
|
|
1388
|
+
white-space: normal !important;
|
|
1360
1389
|
}
|
|
1361
1390
|
|
|
1362
1391
|
/* Base padding so primitive text never touches the box edge, even when an author
|
|
@@ -1422,6 +1451,7 @@
|
|
|
1422
1451
|
display: inline-flex;
|
|
1423
1452
|
align-items: center;
|
|
1424
1453
|
justify-content: center;
|
|
1454
|
+
flex-wrap: wrap;
|
|
1425
1455
|
/* A pill hugs its label. `fit-content` is a definite cross size, so a flex
|
|
1426
1456
|
* column with the default `align-items: stretch` no longer blows the pill out
|
|
1427
1457
|
* to full width (the number chips and short status labels stay pill-shaped).
|
|
@@ -1434,6 +1464,19 @@
|
|
|
1434
1464
|
padding: 3px 11px;
|
|
1435
1465
|
color: var(--wf-ink);
|
|
1436
1466
|
background: var(--wf-paper);
|
|
1467
|
+
overflow-wrap: anywhere !important;
|
|
1468
|
+
text-align: center;
|
|
1469
|
+
white-space: normal !important;
|
|
1470
|
+
word-break: break-word;
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.plan-diagram-frame
|
|
1474
|
+
:is(.diagram-pill, [class*="pill"], [class*="badge"], [class*="chip"])
|
|
1475
|
+
> * {
|
|
1476
|
+
min-width: 0;
|
|
1477
|
+
max-width: 100%;
|
|
1478
|
+
overflow-wrap: anywhere !important;
|
|
1479
|
+
white-space: normal !important;
|
|
1437
1480
|
}
|
|
1438
1481
|
|
|
1439
1482
|
.plan-diagram-frame :is(.diagram-accent, .diagram-pill.accent) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.84.
|
|
3
|
+
"version": "0.84.14",
|
|
4
4
|
"description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
|
|
5
5
|
"homepage": "https://github.com/BuilderIO/agent-native#readme",
|
|
6
6
|
"bugs": {
|