@pstdio/ui 0.20.1 → 0.21.0
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/dist/chat-ui.js +1 -5
- package/dist/chat-ui.js.map +1 -1
- package/dist/components/data-table/build-columns.d.ts +1 -0
- package/dist/components/data-table/types.d.ts +1 -0
- package/dist/components/diff-viewer/index.d.ts +1 -0
- package/dist/components/tag-editor/tag-editor-row.d.ts +1 -0
- package/dist/components/tag-editor/tag-editor.types.d.ts +1 -0
- package/dist/components/tag-editor/tag-settings-panel.d.ts +1 -1
- package/dist/data-table.js +666 -643
- package/dist/data-table.js.map +1 -1
- package/dist/diff.js +3 -0
- package/dist/index.js +752 -744
- package/dist/index.js.map +1 -1
- package/dist/terminal.js +1 -1
- package/dist/terminal.js.map +1 -1
- package/package.json +1 -1
package/dist/chat-ui.js
CHANGED
|
@@ -1193,11 +1193,9 @@ const _r = {
|
|
|
1193
1193
|
skill: "Load skill",
|
|
1194
1194
|
todowrite: "Update todos"
|
|
1195
1195
|
}, xn = {
|
|
1196
|
-
pending: "queued",
|
|
1197
1196
|
error: "failed",
|
|
1198
1197
|
"output-error": "failed",
|
|
1199
1198
|
input_streaming: "running",
|
|
1200
|
-
input_available: "queued",
|
|
1201
1199
|
running: "running",
|
|
1202
1200
|
completed: "completed",
|
|
1203
1201
|
failed: "failed"
|
|
@@ -1527,11 +1525,9 @@ const _r = {
|
|
|
1527
1525
|
todo_write: wn,
|
|
1528
1526
|
todowrite: wn
|
|
1529
1527
|
}), An = {
|
|
1530
|
-
pending: "queued",
|
|
1531
1528
|
error: "failed",
|
|
1532
1529
|
"output-error": "failed",
|
|
1533
|
-
"input-streaming": "running"
|
|
1534
|
-
"input-available": "queued"
|
|
1530
|
+
"input-streaming": "running"
|
|
1535
1531
|
}, ni = (t) => t.split(" ").filter((e) => e.length > 0).map((e) => e[0].toUpperCase() + e.slice(1)).join(" "), ss = (t) => {
|
|
1536
1532
|
const e = vt(t ?? "tool").replace(/_/g, " ");
|
|
1537
1533
|
return ni(e);
|