@design.estate/dees-catalog 4.8.1 → 4.10.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_bundle/bundle.js +580 -95
- package/dist_ts_web/00_commitinfo_data.js +2 -2
- package/dist_ts_web/elements/00group-harness/dees-harness-message/dees-harness-message.js +18 -2
- package/dist_ts_web/elements/00group-harness/dees-harness-session-list/dees-harness-session-list.d.ts +23 -2
- package/dist_ts_web/elements/00group-harness/dees-harness-session-list/dees-harness-session-list.demo.js +10 -1
- package/dist_ts_web/elements/00group-harness/dees-harness-session-list/dees-harness-session-list.js +575 -99
- package/dist_ts_web/elements/00group-harness/interfaces.d.ts +12 -1
- package/package.json +2 -2
- package/readme.md +3 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/00group-harness/dees-harness-message/dees-harness-message.ts +17 -1
- package/ts_web/elements/00group-harness/dees-harness-session-list/dees-harness-session-list.demo.ts +10 -0
- package/ts_web/elements/00group-harness/dees-harness-session-list/dees-harness-session-list.ts +615 -95
- package/ts_web/elements/00group-harness/interfaces.ts +13 -1
- package/dist_watch/bundle.js +0 -235637
- package/dist_watch/bundle.js.map +0 -7
- package/dist_watch/index.html +0 -28
|
@@ -63,6 +63,8 @@ export interface IHarnessMessage {
|
|
|
63
63
|
error?: string;
|
|
64
64
|
/** model that produced this message, e.g. "anthropic/claude-opus-5" */
|
|
65
65
|
model?: string;
|
|
66
|
+
/** reasoning-effort variant this message ran with, e.g. "high" */
|
|
67
|
+
effort?: string;
|
|
66
68
|
/** consumer passthrough; never interpreted by the components */
|
|
67
69
|
meta?: Record<string, unknown>;
|
|
68
70
|
}
|
|
@@ -203,6 +205,8 @@ export interface IHarnessPermissionResponseDetail {
|
|
|
203
205
|
|
|
204
206
|
// ------------------------------------------------------- sessions & status
|
|
205
207
|
|
|
208
|
+
export type THarnessSessionCardState = 'normal' | 'working' | 'finished' | 'attention' | 'error';
|
|
209
|
+
|
|
206
210
|
export interface IHarnessSessionMeta {
|
|
207
211
|
id: string;
|
|
208
212
|
title: string;
|
|
@@ -212,6 +216,12 @@ export interface IHarnessSessionMeta {
|
|
|
212
216
|
preview?: string;
|
|
213
217
|
/** Optional dees-icon name (e.g. 'lucide:Terminal') shown before the title. */
|
|
214
218
|
icon?: string;
|
|
219
|
+
/** Visual card state. Defaults to `normal`. */
|
|
220
|
+
state?: THarnessSessionCardState;
|
|
221
|
+
/** Independent activity signal used for idle-to-working auto-expansion. */
|
|
222
|
+
working?: boolean;
|
|
223
|
+
/** Set false for pinned, non-sortable entries such as terminals. Defaults to true. */
|
|
224
|
+
draggable?: boolean;
|
|
215
225
|
}
|
|
216
226
|
|
|
217
227
|
/** Detail of `harness-session-context`, fired on right-click of a session item. */
|
|
@@ -236,8 +246,10 @@ export interface IHarnessSessionMoveDetail {
|
|
|
236
246
|
sessionId: string;
|
|
237
247
|
/** Target group, or null for the ungrouped section. */
|
|
238
248
|
groupId: string | null;
|
|
239
|
-
/**
|
|
249
|
+
/** Compatibility insertion index using the pre-drag order for same-section moves. */
|
|
240
250
|
index: number;
|
|
251
|
+
/** Stable target anchor in the dragged-card-excluded order; absent means append. */
|
|
252
|
+
beforeSessionId?: string;
|
|
241
253
|
}
|
|
242
254
|
|
|
243
255
|
/** Detail of `harness-group-context`, fired on right-click of a group header. */
|