@hachej/boring-workspace 0.1.39 → 0.1.41
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/{FileTree-DNIzusWa.js → FileTree-CdvCFi6P.js} +1 -1
- package/dist/MarkdownEditor-D6W7J3qC.js +582 -0
- package/dist/{WorkspaceLoadingState-EratTJfG.js → WorkspaceLoadingState-BdtTzpsu.js} +21 -22
- package/dist/{WorkspaceProvider-uuxyAx3i.js → WorkspaceProvider-B6P8ANTL.js} +2724 -2668
- package/dist/app-front.d.ts +5 -0
- package/dist/app-front.js +221 -217
- package/dist/app-server.d.ts +2 -2
- package/dist/app-server.js +23 -5
- package/dist/{createInMemoryBridge-DSjZ9efK.d.ts → createInMemoryBridge-siFWq_R_.d.ts} +8 -0
- package/dist/plugin.d.ts +4 -2
- package/dist/server.d.ts +3 -3
- package/dist/server.js +23 -5
- package/dist/shared.d.ts +1 -1
- package/dist/{surface-obE7YwJk.d.ts → surface-DmIalUmP.d.ts} +2 -0
- package/dist/testing.d.ts +2 -0
- package/dist/testing.js +1 -1
- package/dist/workspace.css +112 -16
- package/dist/workspace.d.ts +8 -2
- package/dist/workspace.js +5 -5
- package/package.json +4 -4
- package/dist/MarkdownEditor-DhVfKSAq.js +0 -549
package/dist/app-front.d.ts
CHANGED
|
@@ -222,6 +222,8 @@ declare interface LeftTabParams {
|
|
|
222
222
|
searchQuery?: string;
|
|
223
223
|
bridge?: unknown;
|
|
224
224
|
chromeless?: boolean;
|
|
225
|
+
/** Optional DOM target for left-tab toolbar actions owned by the pane. */
|
|
226
|
+
chromeActionsElement?: Element | null;
|
|
225
227
|
revealFileTreeRequest?: {
|
|
226
228
|
path: string;
|
|
227
229
|
seq: number;
|
|
@@ -253,6 +255,8 @@ declare interface PanelConfig<T = any> {
|
|
|
253
255
|
essential?: boolean;
|
|
254
256
|
chromeless?: boolean;
|
|
255
257
|
supportsFullPage?: boolean;
|
|
258
|
+
/** Center-panel id opened when this config is used as a left-tab category. */
|
|
259
|
+
defaultPanelId?: string;
|
|
256
260
|
/** Source: "builtin" | "app" */
|
|
257
261
|
source?: string;
|
|
258
262
|
pluginId?: string;
|
|
@@ -385,6 +389,7 @@ declare interface SurfaceShellProps {
|
|
|
385
389
|
*/
|
|
386
390
|
extraPanels?: string[];
|
|
387
391
|
defaultLeftTab?: string;
|
|
392
|
+
onReloadAgentPlugins?: () => void | Promise<unknown>;
|
|
388
393
|
initialPanels?: Array<{
|
|
389
394
|
id: string;
|
|
390
395
|
component: string;
|