@tutti-os/workbench-surface 0.0.15 → 0.0.17
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/index.d.ts +3 -1
- package/dist/index.js +485 -28
- package/dist/index.js.map +1 -1
- package/dist/styles/workbench.css +77 -11
- package/dist/styles/workbenchStyle.test.ts +13 -1
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -449,6 +449,7 @@ interface WorkbenchHostDockEntryAction {
|
|
|
449
449
|
label: string;
|
|
450
450
|
pendingLabel?: string;
|
|
451
451
|
}
|
|
452
|
+
type WorkbenchHostDockEntryDiagnostics = Record<string, unknown>;
|
|
452
453
|
interface WorkbenchHostDockPopupItemInput {
|
|
453
454
|
externalNodeState?: unknown;
|
|
454
455
|
externalWorkspaceState?: unknown;
|
|
@@ -490,6 +491,7 @@ interface WorkbenchHostDockEntry {
|
|
|
490
491
|
iconSize?: "default" | "large";
|
|
491
492
|
id: string;
|
|
492
493
|
label: string;
|
|
494
|
+
diagnostics?: WorkbenchHostDockEntryDiagnostics;
|
|
493
495
|
instanceMode?: WorkbenchHostNodeInstanceStrategy["mode"];
|
|
494
496
|
launchBehavior?: WorkbenchHostDockEntryLaunchBehavior;
|
|
495
497
|
launchPayload?: unknown;
|
|
@@ -504,7 +506,7 @@ interface WorkbenchHostDockEntry {
|
|
|
504
506
|
typeId: string;
|
|
505
507
|
visibility?: WorkbenchHostDockEntryVisibility;
|
|
506
508
|
}
|
|
507
|
-
type WorkbenchHostDockEntryDynamicState = Partial<Pick<WorkbenchHostDockEntry, "attentionToken" | "badge" | "hoverActions" | "launchBehavior" | "order" | "state" | "visibility">>;
|
|
509
|
+
type WorkbenchHostDockEntryDynamicState = Partial<Pick<WorkbenchHostDockEntry, "attentionToken" | "badge" | "diagnostics" | "hoverActions" | "launchBehavior" | "order" | "state" | "visibility">>;
|
|
508
510
|
interface WorkbenchHostDockEntryStateSource {
|
|
509
511
|
getEntryState(entryId: string): WorkbenchHostDockEntryDynamicState | null | undefined;
|
|
510
512
|
subscribe(listener: () => void): () => void;
|