@dxos/plugin-deck 0.8.4-main.72ec0f3 → 0.8.4-main.7ace549

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.
@@ -9,7 +9,7 @@ import {
9
9
  Toolkit,
10
10
  UrlHandler,
11
11
  useCompanions
12
- } from "./chunk-OLDBLCAX.mjs";
12
+ } from "./chunk-QKCGZ45E.mjs";
13
13
  import "./chunk-VBYJ664A.mjs";
14
14
  import {
15
15
  DeckCapabilities
@@ -59,7 +59,7 @@ var translations = [
59
59
  "undo action label": "Undo",
60
60
  "undo action alt": "Undo previous action",
61
61
  "undo close label": "Dismiss",
62
- "error fallback message": "Unable to open this item",
62
+ "error fallback message": "Unable to open this object",
63
63
  "plank heading fallback label": "Untitled",
64
64
  "actions menu label": "Options",
65
65
  "settings deck label": "Disable deck",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/events.ts", "../../../src/DeckPlugin.ts", "../../../src/translations.ts"],
4
- "sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport { Events } from '@dxos/app-framework';\n\nimport { meta } from './meta';\n\nexport namespace DeckEvents {\n export const StateReady = Events.createStateEvent(`${meta.id}/state-ready`);\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { setAutoFreeze } from 'immer';\n\nimport { Capabilities, Events, allOf, contributes, defineModule, definePlugin, oneOf } from '@dxos/app-framework';\nimport { translations as stackTranslations } from '@dxos/react-ui-stack';\n\nimport {\n AppGraphBuilder,\n CheckAppScheme,\n DeckSettings,\n DeckState,\n LayoutIntentResolver,\n ReactRoot,\n ReactSurface,\n Toolkit,\n UrlHandler,\n} from './capabilities';\nimport { DeckEvents } from './events';\nimport { meta } from './meta';\nimport { translations } from './translations';\n\n// NOTE(Zan): When producing values with immer, we shouldn't auto-freeze them because\n// our signal implementation needs to add some hidden properties to the produced values.\n// TODO(Zan): Move this to a more global location if we use immer more broadly.\nsetAutoFreeze(false);\n\nexport const DeckPlugin = definePlugin(meta, () => [\n defineModule({\n id: `${meta.id}/module/check-app-scheme`,\n activatesOn: Events.SettingsReady,\n activate: CheckAppScheme,\n }),\n defineModule({\n id: `${meta.id}/module/settings`,\n activatesOn: Events.SetupSettings,\n activate: DeckSettings,\n }),\n defineModule({\n id: `${meta.id}/module/layout`,\n // TODO(wittjosiah): Does not integrate with settings store.\n // Should this be a different event?\n // Should settings store be renamed to be more generic?\n activatesOn: oneOf(Events.SetupSettings, Events.SetupAppGraph),\n activatesAfter: [Events.LayoutReady, DeckEvents.StateReady],\n activate: DeckState,\n }),\n defineModule({\n id: `${meta.id}/module/translations`,\n activatesOn: Events.SetupTranslations,\n activate: () => contributes(Capabilities.Translations, [...translations, ...stackTranslations]),\n }),\n defineModule({\n id: `${meta.id}/module/react-root`,\n activatesOn: Events.Startup,\n activate: ReactRoot,\n }),\n defineModule({\n id: `${meta.id}/module/react-surface`,\n activatesOn: Events.SetupReactSurface,\n activate: ReactSurface,\n }),\n defineModule({\n id: `${meta.id}/module/layout-intent-resolver`,\n activatesOn: Events.SetupIntentResolver,\n activate: LayoutIntentResolver,\n }),\n defineModule({\n id: `${meta.id}/module/app-graph-builder`,\n activatesOn: Events.SetupAppGraph,\n activate: AppGraphBuilder,\n }),\n // defineModule({\n // id: `${meta.id}/module/tools`,\n // activatesOn: Events.SetupArtifactDefinition,\n // activate: Tools,\n // }),\n defineModule({\n id: `${meta.id}/module/toolkit`,\n // TODO(wittjosiah): Shouldn't use the startup event.\n activatesOn: Events.Startup,\n activate: Toolkit,\n }),\n defineModule({\n id: `${meta.id}/module/url`,\n activatesOn: allOf(Events.DispatcherReady, DeckEvents.StateReady),\n activate: UrlHandler,\n }),\n]);\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Resource } from '@dxos/react-ui';\n\nimport { meta } from './meta';\n\nexport const translations = [\n {\n 'en-US': {\n [meta.id]: {\n 'plugin name': 'Deck',\n 'settings title': 'Deck settings',\n 'main header label': 'Main header',\n 'open navigation sidebar label': 'Open sidebar',\n 'collapse navigation sidebar label': 'Minimize sidebar',\n 'open complementary sidebar label': 'Open context sidebar',\n 'close complementary sidebar label': 'Minimize context sidebar',\n 'sidebar title': 'Navigation sidebar',\n 'complementary sidebar title': 'Context sidebar',\n 'plugin error message': 'Content failed to render.',\n 'content fallback message': 'Unsupported',\n 'content fallback description':\n 'No plugin had a response for the address you navigated to. Double-check the URL, and ensure you’ve enabled a plugin that supports the object.',\n 'toggle fullscreen label': 'Toggle fullscreen',\n 'settings show hints label': 'Show hints',\n 'settings native redirect label': 'Enable native url redirect (experimental)',\n 'settings new plank position start label': 'Start',\n 'settings new plank position end label': 'End',\n 'select new plank positioning placeholder': 'Select new plank positioning',\n 'select new plank positioning label': 'New plank positioning',\n 'undo available label': 'Click to undo previous action.',\n 'undo action label': 'Undo',\n 'undo action alt': 'Undo previous action',\n 'undo close label': 'Dismiss',\n 'error fallback message': 'Unable to open this item',\n 'plank heading fallback label': 'Untitled',\n 'actions menu label': 'Options',\n 'settings deck label': 'Disable deck',\n 'pending heading': 'Loading…',\n 'insert plank label': 'Open',\n 'resize label': 'Drag to resize',\n 'pin start label': 'Pin to the left sidebar',\n 'pin end label': 'Pin to the right sidebar',\n 'increment start label': 'Move to the left',\n 'increment end label': 'Move to the right',\n 'show deck plank label': 'Return to deck',\n 'show solo plank label': 'Maximize',\n 'exit fullscreen label': 'Exit fullscreen',\n 'show fullscreen plank label': 'Fullscreen',\n 'close label': 'Close',\n 'minify label': 'Minify',\n 'open companion label': 'Open companion',\n 'close companion label': 'Close companion',\n 'settings overscroll label': 'Plank scrolling',\n 'select overscroll placeholder': 'Select plank scrolling behavior',\n 'settings overscroll centering label': 'Centering',\n 'settings overscroll none label': 'None',\n 'settings enable statusbar label': 'Show status bar',\n 'settings enable deck label': 'Enable Deck',\n 'settings encapsulated planks label': 'Encapsulated planks',\n 'close current label': 'Close current plank',\n 'close others label': 'Close other planks',\n 'close all label': 'Close all planks',\n 'companion plank heading fallback label': 'Related',\n },\n },\n },\n] as const satisfies Resource[];\n"],
4
+ "sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport { Events } from '@dxos/app-framework';\n\nimport { meta } from './meta';\n\nexport namespace DeckEvents {\n export const StateReady = Events.createStateEvent(`${meta.id}/state-ready`);\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { setAutoFreeze } from 'immer';\n\nimport { Capabilities, Events, allOf, contributes, defineModule, definePlugin, oneOf } from '@dxos/app-framework';\nimport { translations as stackTranslations } from '@dxos/react-ui-stack';\n\nimport {\n AppGraphBuilder,\n CheckAppScheme,\n DeckSettings,\n DeckState,\n LayoutIntentResolver,\n ReactRoot,\n ReactSurface,\n Toolkit,\n UrlHandler,\n} from './capabilities';\nimport { DeckEvents } from './events';\nimport { meta } from './meta';\nimport { translations } from './translations';\n\n// NOTE(Zan): When producing values with immer, we shouldn't auto-freeze them because\n// our signal implementation needs to add some hidden properties to the produced values.\n// TODO(Zan): Move this to a more global location if we use immer more broadly.\nsetAutoFreeze(false);\n\nexport const DeckPlugin = definePlugin(meta, () => [\n defineModule({\n id: `${meta.id}/module/check-app-scheme`,\n activatesOn: Events.SettingsReady,\n activate: CheckAppScheme,\n }),\n defineModule({\n id: `${meta.id}/module/settings`,\n activatesOn: Events.SetupSettings,\n activate: DeckSettings,\n }),\n defineModule({\n id: `${meta.id}/module/layout`,\n // TODO(wittjosiah): Does not integrate with settings store.\n // Should this be a different event?\n // Should settings store be renamed to be more generic?\n activatesOn: oneOf(Events.SetupSettings, Events.SetupAppGraph),\n activatesAfter: [Events.LayoutReady, DeckEvents.StateReady],\n activate: DeckState,\n }),\n defineModule({\n id: `${meta.id}/module/translations`,\n activatesOn: Events.SetupTranslations,\n activate: () => contributes(Capabilities.Translations, [...translations, ...stackTranslations]),\n }),\n defineModule({\n id: `${meta.id}/module/react-root`,\n activatesOn: Events.Startup,\n activate: ReactRoot,\n }),\n defineModule({\n id: `${meta.id}/module/react-surface`,\n activatesOn: Events.SetupReactSurface,\n activate: ReactSurface,\n }),\n defineModule({\n id: `${meta.id}/module/layout-intent-resolver`,\n activatesOn: Events.SetupIntentResolver,\n activate: LayoutIntentResolver,\n }),\n defineModule({\n id: `${meta.id}/module/app-graph-builder`,\n activatesOn: Events.SetupAppGraph,\n activate: AppGraphBuilder,\n }),\n // defineModule({\n // id: `${meta.id}/module/tools`,\n // activatesOn: Events.SetupArtifactDefinition,\n // activate: Tools,\n // }),\n defineModule({\n id: `${meta.id}/module/toolkit`,\n // TODO(wittjosiah): Shouldn't use the startup event.\n activatesOn: Events.Startup,\n activate: Toolkit,\n }),\n defineModule({\n id: `${meta.id}/module/url`,\n activatesOn: allOf(Events.DispatcherReady, DeckEvents.StateReady),\n activate: UrlHandler,\n }),\n]);\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Resource } from '@dxos/react-ui';\n\nimport { meta } from './meta';\n\nexport const translations = [\n {\n 'en-US': {\n [meta.id]: {\n 'plugin name': 'Deck',\n 'settings title': 'Deck settings',\n 'main header label': 'Main header',\n 'open navigation sidebar label': 'Open sidebar',\n 'collapse navigation sidebar label': 'Minimize sidebar',\n 'open complementary sidebar label': 'Open context sidebar',\n 'close complementary sidebar label': 'Minimize context sidebar',\n 'sidebar title': 'Navigation sidebar',\n 'complementary sidebar title': 'Context sidebar',\n 'plugin error message': 'Content failed to render.',\n 'content fallback message': 'Unsupported',\n 'content fallback description':\n 'No plugin had a response for the address you navigated to. Double-check the URL, and ensure you’ve enabled a plugin that supports the object.',\n 'toggle fullscreen label': 'Toggle fullscreen',\n 'settings show hints label': 'Show hints',\n 'settings native redirect label': 'Enable native url redirect (experimental)',\n 'settings new plank position start label': 'Start',\n 'settings new plank position end label': 'End',\n 'select new plank positioning placeholder': 'Select new plank positioning',\n 'select new plank positioning label': 'New plank positioning',\n 'undo available label': 'Click to undo previous action.',\n 'undo action label': 'Undo',\n 'undo action alt': 'Undo previous action',\n 'undo close label': 'Dismiss',\n 'error fallback message': 'Unable to open this object',\n 'plank heading fallback label': 'Untitled',\n 'actions menu label': 'Options',\n 'settings deck label': 'Disable deck',\n 'pending heading': 'Loading…',\n 'insert plank label': 'Open',\n 'resize label': 'Drag to resize',\n 'pin start label': 'Pin to the left sidebar',\n 'pin end label': 'Pin to the right sidebar',\n 'increment start label': 'Move to the left',\n 'increment end label': 'Move to the right',\n 'show deck plank label': 'Return to deck',\n 'show solo plank label': 'Maximize',\n 'exit fullscreen label': 'Exit fullscreen',\n 'show fullscreen plank label': 'Fullscreen',\n 'close label': 'Close',\n 'minify label': 'Minify',\n 'open companion label': 'Open companion',\n 'close companion label': 'Close companion',\n 'settings overscroll label': 'Plank scrolling',\n 'select overscroll placeholder': 'Select plank scrolling behavior',\n 'settings overscroll centering label': 'Centering',\n 'settings overscroll none label': 'None',\n 'settings enable statusbar label': 'Show status bar',\n 'settings enable deck label': 'Enable Deck',\n 'settings encapsulated planks label': 'Encapsulated planks',\n 'close current label': 'Close current plank',\n 'close others label': 'Close other planks',\n 'close all label': 'Close all planks',\n 'companion plank heading fallback label': 'Related',\n },\n },\n },\n] as const satisfies Resource[];\n"],
5
5
  "mappings": ";;;;;;;;;;;;;;;;;;;;;;AAIA,SAASA,cAAc;UAINC,aAAAA;cACFC,aAAaC,OAAOC,iBAAiB,GAAGC,KAAKC,EAAE,cAAc;AAC5E,GAFiBL,eAAAA,aAAAA,CAAAA,EAAAA;;;;ACJjB,SAASM,qBAAqB;AAE9B,SAASC,cAAcC,UAAAA,SAAQC,OAAOC,aAAaC,cAAcC,cAAcC,aAAa;AAC5F,SAASC,gBAAgBC,yBAAyB;;;ACC3C,IAAMC,eAAe;EAC1B;IACE,SAAS;MACP,CAACC,KAAKC,EAAE,GAAG;QACT,eAAe;QACf,kBAAkB;QAClB,qBAAqB;QACrB,iCAAiC;QACjC,qCAAqC;QACrC,oCAAoC;QACpC,qCAAqC;QACrC,iBAAiB;QACjB,+BAA+B;QAC/B,wBAAwB;QACxB,4BAA4B;QAC5B,gCACE;QACF,2BAA2B;QAC3B,6BAA6B;QAC7B,kCAAkC;QAClC,2CAA2C;QAC3C,yCAAyC;QACzC,4CAA4C;QAC5C,sCAAsC;QACtC,wBAAwB;QACxB,qBAAqB;QACrB,mBAAmB;QACnB,oBAAoB;QACpB,0BAA0B;QAC1B,gCAAgC;QAChC,sBAAsB;QACtB,uBAAuB;QACvB,mBAAmB;QACnB,sBAAsB;QACtB,gBAAgB;QAChB,mBAAmB;QACnB,iBAAiB;QACjB,yBAAyB;QACzB,uBAAuB;QACvB,yBAAyB;QACzB,yBAAyB;QACzB,yBAAyB;QACzB,+BAA+B;QAC/B,eAAe;QACf,gBAAgB;QAChB,wBAAwB;QACxB,yBAAyB;QACzB,6BAA6B;QAC7B,iCAAiC;QACjC,uCAAuC;QACvC,kCAAkC;QAClC,mCAAmC;QACnC,8BAA8B;QAC9B,sCAAsC;QACtC,uBAAuB;QACvB,sBAAsB;QACtB,mBAAmB;QACnB,0CAA0C;MAC5C;IACF;EACF;;;;ADzCFC,cAAc,KAAA;AAEP,IAAMC,aAAaC,aAAaC,MAAM,MAAM;EACjDC,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;IACdC,aAAaC,QAAOC;IACpBC,UAAUC;EACZ,CAAA;EACAN,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;IACdC,aAAaC,QAAOI;IACpBF,UAAUG;EACZ,CAAA;EACAR,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;;;;IAIdC,aAAaO,MAAMN,QAAOI,eAAeJ,QAAOO,aAAa;IAC7DC,gBAAgB;MAACR,QAAOS;MAAaC,WAAWC;;IAChDT,UAAUU;EACZ,CAAA;EACAf,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;IACdC,aAAaC,QAAOa;IACpBX,UAAU,MAAMY,YAAYC,aAAaC,cAAc;SAAIC;SAAiBC;KAAkB;EAChG,CAAA;EACArB,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;IACdC,aAAaC,QAAOmB;IACpBjB,UAAUkB;EACZ,CAAA;EACAvB,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;IACdC,aAAaC,QAAOqB;IACpBnB,UAAUoB;EACZ,CAAA;EACAzB,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;IACdC,aAAaC,QAAOuB;IACpBrB,UAAUsB;EACZ,CAAA;EACA3B,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;IACdC,aAAaC,QAAOO;IACpBL,UAAUuB;EACZ,CAAA;;;;;;EAMA5B,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;;IAEdC,aAAaC,QAAOmB;IACpBjB,UAAUwB;EACZ,CAAA;EACA7B,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;IACdC,aAAa4B,MAAM3B,QAAO4B,iBAAiBlB,WAAWC,UAAU;IAChET,UAAU2B;EACZ,CAAA;CACD;",
6
6
  "names": ["Events", "DeckEvents", "StateReady", "Events", "createStateEvent", "meta", "id", "setAutoFreeze", "Capabilities", "Events", "allOf", "contributes", "defineModule", "definePlugin", "oneOf", "translations", "stackTranslations", "translations", "meta", "id", "setAutoFreeze", "DeckPlugin", "definePlugin", "meta", "defineModule", "id", "activatesOn", "Events", "SettingsReady", "activate", "CheckAppScheme", "SetupSettings", "DeckSettings", "oneOf", "SetupAppGraph", "activatesAfter", "LayoutReady", "DeckEvents", "StateReady", "DeckState", "SetupTranslations", "contributes", "Capabilities", "Translations", "translations", "stackTranslations", "Startup", "ReactRoot", "SetupReactSurface", "ReactSurface", "SetupIntentResolver", "LayoutIntentResolver", "AppGraphBuilder", "Toolkit", "allOf", "DispatcherReady", "UrlHandler"]
7
7
  }
@@ -1 +1 @@
1
- {"inputs":{"src/meta.ts":{"bytes":1484,"imports":[{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/capabilities/capabilities.ts":{"bytes":1722,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"}],"format":"esm"},"src/types/schema.ts":{"bytes":21992,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true}],"format":"esm"},"src/types/index.ts":{"bytes":459,"imports":[{"path":"src/types/schema.ts","kind":"import-statement","original":"./schema"}],"format":"esm"},"src/capabilities/state.ts":{"bytes":13108,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true},{"path":"@dxos/local-storage","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/capabilities/app-graph-builder.ts":{"bytes":19901,"imports":[{"path":"@effect-atom/atom-react","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/capabilities/check-app-scheme.ts":{"bytes":4623,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"}],"format":"esm"},"src/capabilities/settings.ts":{"bytes":2642,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"src/layout.ts":{"bytes":9821,"imports":[{"path":"immer","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true}],"format":"esm"},"src/util/layoutAppliesTopbar.ts":{"bytes":1251,"imports":[],"format":"esm"},"src/util/overscroll.ts":{"bytes":17423,"imports":[],"format":"esm"},"src/util/set-active.ts":{"bytes":5621,"imports":[{"path":"@preact/signals-core","kind":"import-statement","external":true}],"format":"esm"},"src/util/index.ts":{"bytes":675,"imports":[{"path":"src/util/layoutAppliesTopbar.ts","kind":"import-statement","original":"./layoutAppliesTopbar"},{"path":"src/util/overscroll.ts","kind":"import-statement","original":"./overscroll"},{"path":"src/util/set-active.ts","kind":"import-statement","original":"./set-active"}],"format":"esm"},"src/capabilities/intent-resolver.ts":{"bytes":72553,"imports":[{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/plugin-observability/types","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/layout.ts","kind":"import-statement","original":"../layout"},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"},{"path":"src/util/index.ts","kind":"import-statement","original":"../util"},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/components/DeckLayout/constants.ts":{"bytes":684,"imports":[],"format":"esm"},"src/hooks/useBreakpoints.ts":{"bytes":1275,"imports":[{"path":"@dxos/react-ui","kind":"import-statement","external":true}],"format":"esm"},"src/hooks/useCompanions.ts":{"bytes":2502,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"src/hooks/useDeckCompanions.ts":{"bytes":3543,"imports":[{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"src/hooks/useHoistStatusbar.ts":{"bytes":3315,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"}],"format":"esm"},"src/hooks/useMainSize.ts":{"bytes":1503,"imports":[{"path":"@dxos/react-ui","kind":"import-statement","external":true}],"format":"esm"},"src/hooks/useNodeActionExpander.ts":{"bytes":1913,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true}],"format":"esm"},"src/hooks/index.ts":{"bytes":1022,"imports":[{"path":"src/hooks/useBreakpoints.ts","kind":"import-statement","original":"./useBreakpoints"},{"path":"src/hooks/useCompanions.ts","kind":"import-statement","original":"./useCompanions"},{"path":"src/hooks/useDeckCompanions.ts","kind":"import-statement","original":"./useDeckCompanions"},{"path":"src/hooks/useHoistStatusbar.ts","kind":"import-statement","original":"./useHoistStatusbar"},{"path":"src/hooks/useMainSize.ts","kind":"import-statement","original":"./useMainSize"},{"path":"src/hooks/useNodeActionExpander.ts","kind":"import-statement","original":"./useNodeActionExpander"}],"format":"esm"},"src/components/fragments.ts":{"bytes":1866,"imports":[{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true}],"format":"esm"},"src/components/Plank/PlankControls.tsx":{"bytes":18648,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"}],"format":"esm"},"src/components/Plank/PlankHeading.tsx":{"bytes":28112,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-text-tooltip","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/layout.ts","kind":"import-statement","original":"../../layout"},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/components/fragments.ts","kind":"import-statement","original":"../fragments"},{"path":"src/components/Plank/PlankControls.tsx","kind":"import-statement","original":"./PlankControls"}],"format":"esm"},"src/components/Plank/PlankLoading.tsx":{"bytes":1394,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true}],"format":"esm"},"src/components/Plank/PlankError.tsx":{"bytes":5234,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/components/Plank/PlankHeading.tsx","kind":"import-statement","original":"./PlankHeading"},{"path":"src/components/Plank/PlankLoading.tsx","kind":"import-statement","original":"./PlankLoading"}],"format":"esm"},"src/components/Plank/Plank.tsx":{"bytes":34018,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@fluentui/react-tabster","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/layout.ts","kind":"import-statement","original":"../../layout"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/components/Plank/PlankError.tsx","kind":"import-statement","original":"./PlankError"},{"path":"src/components/Plank/PlankHeading.tsx","kind":"import-statement","original":"./PlankHeading"},{"path":"src/components/Plank/PlankLoading.tsx","kind":"import-statement","original":"./PlankLoading"}],"format":"esm"},"src/components/Plank/index.ts":{"bytes":860,"imports":[{"path":"src/components/Plank/Plank.tsx","kind":"import-statement","original":"./Plank"},{"path":"src/components/Plank/PlankControls.tsx","kind":"import-statement","original":"./PlankControls"},{"path":"src/components/Plank/PlankError.tsx","kind":"import-statement","original":"./PlankError"},{"path":"src/components/Plank/PlankHeading.tsx","kind":"import-statement","original":"./PlankHeading"},{"path":"src/components/Plank/PlankLoading.tsx","kind":"import-statement","original":"./PlankLoading"}],"format":"esm"},"src/components/Sidebar/SidebarButton.tsx":{"bytes":10549,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"}],"format":"esm"},"src/components/Sidebar/ComplementarySidebar.tsx":{"bytes":26188,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-tabs","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/components/Plank/index.ts","kind":"import-statement","original":"../Plank"},{"path":"src/components/Sidebar/SidebarButton.tsx","kind":"import-statement","original":"./SidebarButton"}],"format":"esm"},"src/components/Sidebar/Sidebar.tsx":{"bytes":5528,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/components/Sidebar/index.ts":{"bytes":694,"imports":[{"path":"src/components/Sidebar/ComplementarySidebar.tsx","kind":"import-statement","original":"./ComplementarySidebar"},{"path":"src/components/Sidebar/Sidebar.tsx","kind":"import-statement","original":"./Sidebar"},{"path":"src/components/Sidebar/SidebarButton.tsx","kind":"import-statement","original":"./SidebarButton"}],"format":"esm"},"src/components/DeckLayout/Banner.tsx":{"bytes":5386,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/components/Sidebar/index.ts","kind":"import-statement","original":"../Sidebar"}],"format":"esm"},"src/components/DeckLayout/ActiveNode.tsx":{"bytes":3329,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"}],"format":"esm"},"src/components/DeckLayout/ContentEmpty.tsx":{"bytes":4113,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/components/fragments.ts","kind":"import-statement","original":"../fragments"},{"path":"src/components/Sidebar/index.ts","kind":"import-statement","original":"../Sidebar"}],"format":"esm"},"src/components/DeckLayout/StatusBar.tsx":{"bytes":2638,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true}],"format":"esm"},"src/components/DeckLayout/Topbar.tsx":{"bytes":1151,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"src/components/DeckLayout/Banner.tsx","kind":"import-statement","original":"./Banner"}],"format":"esm"},"src/components/DeckLayout/DeckMain.tsx":{"bytes":37753,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/components/fragments.ts","kind":"import-statement","original":"../fragments"},{"path":"src/components/Plank/index.ts","kind":"import-statement","original":"../Plank"},{"path":"src/components/Sidebar/index.ts","kind":"import-statement","original":"../Sidebar"},{"path":"src/components/DeckLayout/ContentEmpty.tsx","kind":"import-statement","original":"./ContentEmpty"},{"path":"src/components/DeckLayout/StatusBar.tsx","kind":"import-statement","original":"./StatusBar"},{"path":"src/components/DeckLayout/Topbar.tsx","kind":"import-statement","original":"./Topbar"}],"format":"esm"},"src/components/DeckLayout/Dialog.tsx":{"bytes":6059,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/components/Plank/index.ts","kind":"import-statement","original":"../Plank"}],"format":"esm"},"src/components/DeckLayout/Popover.tsx":{"bytes":11728,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@radix-ui/react-context","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"}],"format":"esm"},"src/components/DeckLayout/Toast.tsx":{"bytes":8188,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"}],"format":"esm"},"src/components/DeckLayout/DeckLayout.tsx":{"bytes":3489,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/components/DeckLayout/ActiveNode.tsx","kind":"import-statement","original":"./ActiveNode"},{"path":"src/components/DeckLayout/DeckMain.tsx","kind":"import-statement","original":"./DeckMain"},{"path":"src/components/DeckLayout/Dialog.tsx","kind":"import-statement","original":"./Dialog"},{"path":"src/components/DeckLayout/Popover.tsx","kind":"import-statement","original":"./Popover"},{"path":"src/components/DeckLayout/Toast.tsx","kind":"import-statement","original":"./Toast"}],"format":"esm"},"src/components/DeckLayout/index.ts":{"bytes":707,"imports":[{"path":"src/components/DeckLayout/constants.ts","kind":"import-statement","original":"./constants"},{"path":"src/components/DeckLayout/Banner.tsx","kind":"import-statement","original":"./Banner"},{"path":"src/components/DeckLayout/DeckLayout.tsx","kind":"import-statement","original":"./DeckLayout"}],"format":"esm"},"src/components/DeckSettings/DeckSettings.tsx":{"bytes":13560,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-form","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"}],"format":"esm"},"src/components/DeckSettings/index.ts":{"bytes":491,"imports":[{"path":"src/components/DeckSettings/DeckSettings.tsx","kind":"import-statement","original":"./DeckSettings"}],"format":"esm"},"src/components/index.ts":{"bytes":572,"imports":[{"path":"src/components/DeckLayout/index.ts","kind":"import-statement","original":"./DeckLayout"},{"path":"src/components/DeckSettings/index.ts","kind":"import-statement","original":"./DeckSettings"}],"format":"esm"},"src/capabilities/react-root.tsx":{"bytes":4615,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"src/components/index.ts","kind":"import-statement","original":"../components"},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/capabilities/react-surface.tsx":{"bytes":3695,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/local-storage","kind":"import-statement","external":true},{"path":"src/components/index.ts","kind":"import-statement","original":"../components"},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"}],"format":"esm"},"src/capabilities/toolkit.ts":{"bytes":7024,"imports":[{"path":"@effect/ai/Tool","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/capabilities/url-handler.ts":{"bytes":8579,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/echo-signals/core","kind":"import-statement","external":true},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/capabilities/index.ts":{"bytes":3010,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"},{"path":"src/capabilities/state.ts","kind":"import-statement","original":"./state"},{"path":"src/capabilities/app-graph-builder.ts","kind":"dynamic-import","original":"./app-graph-builder"},{"path":"src/capabilities/check-app-scheme.ts","kind":"dynamic-import","original":"./check-app-scheme"},{"path":"src/capabilities/settings.ts","kind":"dynamic-import","original":"./settings"},{"path":"src/capabilities/state.ts","kind":"dynamic-import","original":"./state"},{"path":"src/capabilities/intent-resolver.ts","kind":"dynamic-import","original":"./intent-resolver"},{"path":"src/capabilities/react-root.tsx","kind":"dynamic-import","original":"./react-root"},{"path":"src/capabilities/react-surface.tsx","kind":"dynamic-import","original":"./react-surface"},{"path":"src/capabilities/toolkit.ts","kind":"dynamic-import","original":"./toolkit"},{"path":"src/capabilities/url-handler.ts","kind":"dynamic-import","original":"./url-handler"}],"format":"esm"},"src/events.ts":{"bytes":1152,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"src/translations.ts":{"bytes":9474,"imports":[{"path":"src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"src/DeckPlugin.ts":{"bytes":10445,"imports":[{"path":"immer","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"./capabilities"},{"path":"src/events.ts","kind":"import-statement","original":"./events"},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/translations.ts","kind":"import-statement","original":"./translations"}],"format":"esm"},"src/index.ts":{"bytes":1024,"imports":[{"path":"src/capabilities/index.ts","kind":"import-statement","original":"./capabilities"},{"path":"src/events.ts","kind":"import-statement","original":"./events"},{"path":"src/DeckPlugin.ts","kind":"import-statement","original":"./DeckPlugin"},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"./hooks"}],"format":"esm"}},"outputs":{"dist/lib/browser/react-surface-2CSKDN7K.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1859},"dist/lib/browser/react-surface-2CSKDN7K.mjs":{"imports":[{"path":"dist/lib/browser/chunk-SDIYDK47.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-OLDBLCAX.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VBYJ664A.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/local-storage","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/react-surface.tsx","inputs":{"src/capabilities/react-surface.tsx":{"bytesInOutput":759}},"bytes":1164},"dist/lib/browser/toolkit-L5CFXJCF.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3616},"dist/lib/browser/toolkit-L5CFXJCF.mjs":{"imports":[{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@effect/ai/Tool","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["DeckToolkit","default"],"entryPoint":"src/capabilities/toolkit.ts","inputs":{"src/capabilities/toolkit.ts":{"bytesInOutput":1486}},"bytes":1710},"dist/lib/browser/url-handler-QEYGYE2H.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":4328},"dist/lib/browser/url-handler-QEYGYE2H.mjs":{"imports":[{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/echo-signals/core","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/url-handler.ts","inputs":{"src/capabilities/url-handler.ts":{"bytesInOutput":1917}},"bytes":2192},"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":9447},"dist/lib/browser/index.mjs":{"imports":[{"path":"dist/lib/browser/chunk-OLDBLCAX.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VBYJ664A.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"immer","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true}],"exports":["DeckCapabilities","DeckEvents","DeckPlugin","meta","useCompanions"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":0},"src/events.ts":{"bytesInOutput":202},"src/DeckPlugin.ts":{"bytesInOutput":2232},"src/translations.ts":{"bytesInOutput":3078}},"bytes":6085},"dist/lib/browser/types/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/browser/types/index.mjs":{"imports":[{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"}],"exports":["ATTENDABLE_PATH_SEPARATOR","DECK_COMPANION_TYPE","DeckAction","DeckPluginState","DeckSettingsSchema","DeckState","NewPlankPositions","OverscrollOptions","PLANK_COMPANION_TYPE","PlankSizing","defaultDeck","getMode","isLayoutMode"],"entryPoint":"src/types/index.ts","inputs":{},"bytes":604},"dist/lib/browser/state-7IFAGZQO.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/browser/state-7IFAGZQO.mjs":{"imports":[{"path":"dist/lib/browser/chunk-VBYJ664A.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"}],"exports":["DeckStateFactory","default"],"entryPoint":"src/capabilities/state.ts","inputs":{},"bytes":272},"dist/lib/browser/app-graph-builder-D74NTOMK.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":9037},"dist/lib/browser/app-graph-builder-D74NTOMK.mjs":{"imports":[{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@effect-atom/atom-react","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/app-graph-builder.ts","inputs":{"src/capabilities/app-graph-builder.ts":{"bytesInOutput":3720}},"bytes":3975},"dist/lib/browser/check-app-scheme-HIEVFAAX.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2515},"dist/lib/browser/check-app-scheme-HIEVFAAX.mjs":{"imports":[{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/check-app-scheme.ts","inputs":{"src/capabilities/check-app-scheme.ts":{"bytesInOutput":873}},"bytes":1066},"dist/lib/browser/settings-SDPTOCCM.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1381},"dist/lib/browser/settings-SDPTOCCM.mjs":{"imports":[{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/settings.ts","inputs":{"src/capabilities/settings.ts":{"bytesInOutput":494}},"bytes":724},"dist/lib/browser/intent-resolver-UA4YQGAC.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":33748},"dist/lib/browser/intent-resolver-UA4YQGAC.mjs":{"imports":[{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/plugin-observability/types","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/intent-resolver.ts","inputs":{"src/capabilities/intent-resolver.ts":{"bytesInOutput":17936}},"bytes":18418},"dist/lib/browser/react-root-76RSDA6R.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2277},"dist/lib/browser/react-root-76RSDA6R.mjs":{"imports":[{"path":"dist/lib/browser/chunk-SDIYDK47.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-OLDBLCAX.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VBYJ664A.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/react-root.tsx","inputs":{"src/capabilities/react-root.tsx":{"bytesInOutput":861}},"bytes":1273},"dist/lib/browser/chunk-SDIYDK47.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":114239},"dist/lib/browser/chunk-SDIYDK47.mjs":{"imports":[{"path":"dist/lib/browser/chunk-OLDBLCAX.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-tabs","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@fluentui/react-tabster","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-text-tooltip","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@radix-ui/react-context","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-form","kind":"import-statement","external":true}],"exports":["Banner","DeckLayout","DeckSettings"],"inputs":{"src/components/DeckLayout/Banner.tsx":{"bytesInOutput":1754},"src/components/Sidebar/ComplementarySidebar.tsx":{"bytesInOutput":7553},"src/components/Plank/Plank.tsx":{"bytesInOutput":7596},"src/components/Plank/PlankError.tsx":{"bytesInOutput":1462},"src/components/Plank/PlankHeading.tsx":{"bytesInOutput":7393},"src/components/fragments.ts":{"bytesInOutput":435},"src/components/Plank/PlankControls.tsx":{"bytesInOutput":5188},"src/components/Plank/PlankLoading.tsx":{"bytesInOutput":361},"src/components/Plank/index.ts":{"bytesInOutput":0},"src/components/Sidebar/SidebarButton.tsx":{"bytesInOutput":3058},"src/components/Sidebar/index.ts":{"bytesInOutput":0},"src/components/Sidebar/Sidebar.tsx":{"bytesInOutput":1381},"src/components/DeckLayout/DeckLayout.tsx":{"bytesInOutput":801},"src/components/DeckLayout/ActiveNode.tsx":{"bytesInOutput":844},"src/components/DeckLayout/DeckMain.tsx":{"bytesInOutput":9463},"src/components/DeckLayout/ContentEmpty.tsx":{"bytesInOutput":975},"src/components/DeckLayout/StatusBar.tsx":{"bytesInOutput":837},"src/components/DeckLayout/Topbar.tsx":{"bytesInOutput":303},"src/components/DeckLayout/Dialog.tsx":{"bytesInOutput":1633},"src/components/DeckLayout/Popover.tsx":{"bytesInOutput":3139},"src/components/DeckLayout/Toast.tsx":{"bytesInOutput":2285},"src/components/DeckSettings/DeckSettings.tsx":{"bytesInOutput":3976},"src/components/DeckLayout/index.ts":{"bytesInOutput":0},"src/components/index.ts":{"bytesInOutput":0},"src/components/DeckSettings/index.ts":{"bytesInOutput":0}},"bytes":62190},"dist/lib/browser/chunk-OLDBLCAX.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":8482},"dist/lib/browser/chunk-OLDBLCAX.mjs":{"imports":[{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"dist/lib/browser/app-graph-builder-D74NTOMK.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/check-app-scheme-HIEVFAAX.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/settings-SDPTOCCM.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/state-7IFAGZQO.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/intent-resolver-UA4YQGAC.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/react-root-76RSDA6R.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/react-surface-2CSKDN7K.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/toolkit-L5CFXJCF.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/url-handler-QEYGYE2H.mjs","kind":"dynamic-import"}],"exports":["AppGraphBuilder","CheckAppScheme","DeckSettings","DeckState","LayoutIntentResolver","ReactRoot","ReactSurface","Toolkit","UrlHandler","getCompanionId","useBreakpoints","useCompanions","useDeckCompanions","useHoistStatusbar","useMainSize","useNodeActionExpander"],"inputs":{"src/hooks/useCompanions.ts":{"bytesInOutput":493},"src/hooks/useBreakpoints.ts":{"bytesInOutput":236},"src/hooks/index.ts":{"bytesInOutput":0},"src/hooks/useDeckCompanions.ts":{"bytesInOutput":634},"src/hooks/useHoistStatusbar.ts":{"bytesInOutput":845},"src/hooks/useMainSize.ts":{"bytesInOutput":319},"src/hooks/useNodeActionExpander.ts":{"bytesInOutput":371},"src/capabilities/index.ts":{"bytesInOutput":668}},"bytes":4294},"dist/lib/browser/chunk-VBYJ664A.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":6606},"dist/lib/browser/chunk-VBYJ664A.mjs":{"imports":[{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true},{"path":"@dxos/local-storage","kind":"import-statement","external":true}],"exports":["DeckStateFactory","state_default"],"inputs":{"src/capabilities/state.ts":{"bytesInOutput":3136}},"bytes":3430},"dist/lib/browser/chunk-CNTGBCMK.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":16063},"dist/lib/browser/chunk-CNTGBCMK.mjs":{"imports":[{"path":"immer","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true},{"path":"@preact/signals-core","kind":"import-statement","external":true}],"exports":["calculateOverscroll","closeEntry","createEntryId","incrementPlank","layoutAppliesTopbar","openEntry","parseEntryId","setActive"],"inputs":{"src/layout.ts":{"bytesInOutput":2156},"src/util/set-active.ts":{"bytesInOutput":1130},"src/util/layoutAppliesTopbar.ts":{"bytesInOutput":188},"src/util/index.ts":{"bytesInOutput":0},"src/util/overscroll.ts":{"bytesInOutput":759}},"bytes":4533},"dist/lib/browser/chunk-5KMJPIQC.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":891},"dist/lib/browser/chunk-5KMJPIQC.mjs":{"imports":[{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true}],"exports":["DeckCapabilities"],"inputs":{"src/capabilities/capabilities.ts":{"bytesInOutput":327}},"bytes":487},"dist/lib/browser/chunk-F3VCCHVL.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":10896},"dist/lib/browser/chunk-F3VCCHVL.mjs":{"imports":[{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true}],"exports":["ATTENDABLE_PATH_SEPARATOR","DECK_COMPANION_TYPE","DeckAction","DeckPluginState","DeckSettingsSchema","DeckState","NewPlankPositions","OverscrollOptions","PLANK_COMPANION_TYPE","PlankSizing","defaultDeck","getMode","isLayoutMode"],"inputs":{"src/types/schema.ts":{"bytesInOutput":5202},"src/types/index.ts":{"bytesInOutput":0}},"bytes":5572},"dist/lib/browser/chunk-UXLU6CMW.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":713},"dist/lib/browser/chunk-UXLU6CMW.mjs":{"imports":[{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["meta"],"inputs":{"src/meta.ts":{"bytesInOutput":321}},"bytes":400}}}
1
+ {"inputs":{"src/meta.ts":{"bytes":1484,"imports":[{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/capabilities/capabilities.ts":{"bytes":1722,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"}],"format":"esm"},"src/types/schema.ts":{"bytes":21992,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true}],"format":"esm"},"src/types/index.ts":{"bytes":459,"imports":[{"path":"src/types/schema.ts","kind":"import-statement","original":"./schema"}],"format":"esm"},"src/capabilities/state.ts":{"bytes":13108,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true},{"path":"@dxos/local-storage","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/capabilities/app-graph-builder.ts":{"bytes":19901,"imports":[{"path":"@effect-atom/atom-react","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/capabilities/check-app-scheme.ts":{"bytes":4623,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"}],"format":"esm"},"src/capabilities/settings.ts":{"bytes":2642,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"src/layout.ts":{"bytes":9821,"imports":[{"path":"immer","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true}],"format":"esm"},"src/util/layoutAppliesTopbar.ts":{"bytes":1251,"imports":[],"format":"esm"},"src/util/overscroll.ts":{"bytes":17423,"imports":[],"format":"esm"},"src/util/set-active.ts":{"bytes":5621,"imports":[{"path":"@preact/signals-core","kind":"import-statement","external":true}],"format":"esm"},"src/util/index.ts":{"bytes":675,"imports":[{"path":"src/util/layoutAppliesTopbar.ts","kind":"import-statement","original":"./layoutAppliesTopbar"},{"path":"src/util/overscroll.ts","kind":"import-statement","original":"./overscroll"},{"path":"src/util/set-active.ts","kind":"import-statement","original":"./set-active"}],"format":"esm"},"src/capabilities/intent-resolver.ts":{"bytes":72553,"imports":[{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/plugin-observability/types","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/layout.ts","kind":"import-statement","original":"../layout"},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"},{"path":"src/util/index.ts","kind":"import-statement","original":"../util"},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/components/DeckLayout/constants.ts":{"bytes":684,"imports":[],"format":"esm"},"src/hooks/useBreakpoints.ts":{"bytes":1275,"imports":[{"path":"@dxos/react-ui","kind":"import-statement","external":true}],"format":"esm"},"src/hooks/useCompanions.ts":{"bytes":2502,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"src/hooks/useDeckCompanions.ts":{"bytes":3543,"imports":[{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"src/hooks/useHoistStatusbar.ts":{"bytes":3315,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"}],"format":"esm"},"src/hooks/useMainSize.ts":{"bytes":1503,"imports":[{"path":"@dxos/react-ui","kind":"import-statement","external":true}],"format":"esm"},"src/hooks/useNodeActionExpander.ts":{"bytes":1913,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true}],"format":"esm"},"src/hooks/index.ts":{"bytes":1022,"imports":[{"path":"src/hooks/useBreakpoints.ts","kind":"import-statement","original":"./useBreakpoints"},{"path":"src/hooks/useCompanions.ts","kind":"import-statement","original":"./useCompanions"},{"path":"src/hooks/useDeckCompanions.ts","kind":"import-statement","original":"./useDeckCompanions"},{"path":"src/hooks/useHoistStatusbar.ts","kind":"import-statement","original":"./useHoistStatusbar"},{"path":"src/hooks/useMainSize.ts","kind":"import-statement","original":"./useMainSize"},{"path":"src/hooks/useNodeActionExpander.ts","kind":"import-statement","original":"./useNodeActionExpander"}],"format":"esm"},"src/components/fragments.ts":{"bytes":1866,"imports":[{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true}],"format":"esm"},"src/components/Plank/PlankControls.tsx":{"bytes":18648,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"}],"format":"esm"},"src/components/Plank/PlankHeading.tsx":{"bytes":28112,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-text-tooltip","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/layout.ts","kind":"import-statement","original":"../../layout"},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/components/fragments.ts","kind":"import-statement","original":"../fragments"},{"path":"src/components/Plank/PlankControls.tsx","kind":"import-statement","original":"./PlankControls"}],"format":"esm"},"src/components/Plank/PlankLoading.tsx":{"bytes":1394,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true}],"format":"esm"},"src/components/Plank/PlankError.tsx":{"bytes":5234,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/components/Plank/PlankHeading.tsx","kind":"import-statement","original":"./PlankHeading"},{"path":"src/components/Plank/PlankLoading.tsx","kind":"import-statement","original":"./PlankLoading"}],"format":"esm"},"src/components/Plank/Plank.tsx":{"bytes":34018,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@fluentui/react-tabster","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/layout.ts","kind":"import-statement","original":"../../layout"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/components/Plank/PlankError.tsx","kind":"import-statement","original":"./PlankError"},{"path":"src/components/Plank/PlankHeading.tsx","kind":"import-statement","original":"./PlankHeading"},{"path":"src/components/Plank/PlankLoading.tsx","kind":"import-statement","original":"./PlankLoading"}],"format":"esm"},"src/components/Plank/index.ts":{"bytes":860,"imports":[{"path":"src/components/Plank/Plank.tsx","kind":"import-statement","original":"./Plank"},{"path":"src/components/Plank/PlankControls.tsx","kind":"import-statement","original":"./PlankControls"},{"path":"src/components/Plank/PlankError.tsx","kind":"import-statement","original":"./PlankError"},{"path":"src/components/Plank/PlankHeading.tsx","kind":"import-statement","original":"./PlankHeading"},{"path":"src/components/Plank/PlankLoading.tsx","kind":"import-statement","original":"./PlankLoading"}],"format":"esm"},"src/components/Sidebar/SidebarButton.tsx":{"bytes":10693,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"}],"format":"esm"},"src/components/Sidebar/ComplementarySidebar.tsx":{"bytes":26188,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-tabs","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/components/Plank/index.ts","kind":"import-statement","original":"../Plank"},{"path":"src/components/Sidebar/SidebarButton.tsx","kind":"import-statement","original":"./SidebarButton"}],"format":"esm"},"src/components/Sidebar/Sidebar.tsx":{"bytes":5528,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/components/Sidebar/index.ts":{"bytes":694,"imports":[{"path":"src/components/Sidebar/ComplementarySidebar.tsx","kind":"import-statement","original":"./ComplementarySidebar"},{"path":"src/components/Sidebar/Sidebar.tsx","kind":"import-statement","original":"./Sidebar"},{"path":"src/components/Sidebar/SidebarButton.tsx","kind":"import-statement","original":"./SidebarButton"}],"format":"esm"},"src/components/DeckLayout/Banner.tsx":{"bytes":5386,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/components/Sidebar/index.ts","kind":"import-statement","original":"../Sidebar"}],"format":"esm"},"src/components/DeckLayout/ActiveNode.tsx":{"bytes":3329,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"}],"format":"esm"},"src/components/DeckLayout/ContentEmpty.tsx":{"bytes":4113,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/components/fragments.ts","kind":"import-statement","original":"../fragments"},{"path":"src/components/Sidebar/index.ts","kind":"import-statement","original":"../Sidebar"}],"format":"esm"},"src/components/DeckLayout/StatusBar.tsx":{"bytes":2638,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true}],"format":"esm"},"src/components/DeckLayout/Topbar.tsx":{"bytes":1151,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"src/components/DeckLayout/Banner.tsx","kind":"import-statement","original":"./Banner"}],"format":"esm"},"src/components/DeckLayout/DeckMain.tsx":{"bytes":37753,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"../../hooks"},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"},{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"},{"path":"src/components/fragments.ts","kind":"import-statement","original":"../fragments"},{"path":"src/components/Plank/index.ts","kind":"import-statement","original":"../Plank"},{"path":"src/components/Sidebar/index.ts","kind":"import-statement","original":"../Sidebar"},{"path":"src/components/DeckLayout/ContentEmpty.tsx","kind":"import-statement","original":"./ContentEmpty"},{"path":"src/components/DeckLayout/StatusBar.tsx","kind":"import-statement","original":"./StatusBar"},{"path":"src/components/DeckLayout/Topbar.tsx","kind":"import-statement","original":"./Topbar"}],"format":"esm"},"src/components/DeckLayout/Dialog.tsx":{"bytes":6059,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/components/Plank/index.ts","kind":"import-statement","original":"../Plank"}],"format":"esm"},"src/components/DeckLayout/Popover.tsx":{"bytes":11728,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@radix-ui/react-context","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"}],"format":"esm"},"src/components/DeckLayout/Toast.tsx":{"bytes":8188,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"}],"format":"esm"},"src/components/DeckLayout/DeckLayout.tsx":{"bytes":3489,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"../../capabilities"},{"path":"src/components/DeckLayout/ActiveNode.tsx","kind":"import-statement","original":"./ActiveNode"},{"path":"src/components/DeckLayout/DeckMain.tsx","kind":"import-statement","original":"./DeckMain"},{"path":"src/components/DeckLayout/Dialog.tsx","kind":"import-statement","original":"./Dialog"},{"path":"src/components/DeckLayout/Popover.tsx","kind":"import-statement","original":"./Popover"},{"path":"src/components/DeckLayout/Toast.tsx","kind":"import-statement","original":"./Toast"}],"format":"esm"},"src/components/DeckLayout/index.ts":{"bytes":707,"imports":[{"path":"src/components/DeckLayout/constants.ts","kind":"import-statement","original":"./constants"},{"path":"src/components/DeckLayout/Banner.tsx","kind":"import-statement","original":"./Banner"},{"path":"src/components/DeckLayout/DeckLayout.tsx","kind":"import-statement","original":"./DeckLayout"}],"format":"esm"},"src/components/DeckSettings/DeckSettings.tsx":{"bytes":13560,"imports":[{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-form","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"../../meta"},{"path":"src/types/index.ts","kind":"import-statement","original":"../../types"}],"format":"esm"},"src/components/DeckSettings/index.ts":{"bytes":491,"imports":[{"path":"src/components/DeckSettings/DeckSettings.tsx","kind":"import-statement","original":"./DeckSettings"}],"format":"esm"},"src/components/index.ts":{"bytes":572,"imports":[{"path":"src/components/DeckLayout/index.ts","kind":"import-statement","original":"./DeckLayout"},{"path":"src/components/DeckSettings/index.ts","kind":"import-statement","original":"./DeckSettings"}],"format":"esm"},"src/capabilities/react-root.tsx":{"bytes":4615,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"src/components/index.ts","kind":"import-statement","original":"../components"},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/capabilities/react-surface.tsx":{"bytes":3695,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/local-storage","kind":"import-statement","external":true},{"path":"src/components/index.ts","kind":"import-statement","original":"../components"},{"path":"src/meta.ts","kind":"import-statement","original":"../meta"}],"format":"esm"},"src/capabilities/toolkit.ts":{"bytes":7024,"imports":[{"path":"@effect/ai/Tool","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/capabilities/url-handler.ts":{"bytes":8579,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/echo-signals/core","kind":"import-statement","external":true},{"path":"src/types/index.ts","kind":"import-statement","original":"../types"},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"}],"format":"esm"},"src/capabilities/index.ts":{"bytes":3010,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/capabilities/capabilities.ts","kind":"import-statement","original":"./capabilities"},{"path":"src/capabilities/state.ts","kind":"import-statement","original":"./state"},{"path":"src/capabilities/app-graph-builder.ts","kind":"dynamic-import","original":"./app-graph-builder"},{"path":"src/capabilities/check-app-scheme.ts","kind":"dynamic-import","original":"./check-app-scheme"},{"path":"src/capabilities/settings.ts","kind":"dynamic-import","original":"./settings"},{"path":"src/capabilities/state.ts","kind":"dynamic-import","original":"./state"},{"path":"src/capabilities/intent-resolver.ts","kind":"dynamic-import","original":"./intent-resolver"},{"path":"src/capabilities/react-root.tsx","kind":"dynamic-import","original":"./react-root"},{"path":"src/capabilities/react-surface.tsx","kind":"dynamic-import","original":"./react-surface"},{"path":"src/capabilities/toolkit.ts","kind":"dynamic-import","original":"./toolkit"},{"path":"src/capabilities/url-handler.ts","kind":"dynamic-import","original":"./url-handler"}],"format":"esm"},"src/events.ts":{"bytes":1152,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"src/translations.ts":{"bytes":9480,"imports":[{"path":"src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"src/DeckPlugin.ts":{"bytes":10445,"imports":[{"path":"immer","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"src/capabilities/index.ts","kind":"import-statement","original":"./capabilities"},{"path":"src/events.ts","kind":"import-statement","original":"./events"},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/translations.ts","kind":"import-statement","original":"./translations"}],"format":"esm"},"src/index.ts":{"bytes":1024,"imports":[{"path":"src/capabilities/index.ts","kind":"import-statement","original":"./capabilities"},{"path":"src/events.ts","kind":"import-statement","original":"./events"},{"path":"src/DeckPlugin.ts","kind":"import-statement","original":"./DeckPlugin"},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/hooks/index.ts","kind":"import-statement","original":"./hooks"}],"format":"esm"}},"outputs":{"dist/lib/browser/react-surface-6LW337ZT.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1859},"dist/lib/browser/react-surface-6LW337ZT.mjs":{"imports":[{"path":"dist/lib/browser/chunk-VUJ6UNIJ.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-QKCGZ45E.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VBYJ664A.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/local-storage","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/react-surface.tsx","inputs":{"src/capabilities/react-surface.tsx":{"bytesInOutput":759}},"bytes":1164},"dist/lib/browser/toolkit-L5CFXJCF.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3616},"dist/lib/browser/toolkit-L5CFXJCF.mjs":{"imports":[{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@effect/ai/Tool","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["DeckToolkit","default"],"entryPoint":"src/capabilities/toolkit.ts","inputs":{"src/capabilities/toolkit.ts":{"bytesInOutput":1486}},"bytes":1710},"dist/lib/browser/url-handler-QEYGYE2H.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":4328},"dist/lib/browser/url-handler-QEYGYE2H.mjs":{"imports":[{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/echo-signals/core","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/url-handler.ts","inputs":{"src/capabilities/url-handler.ts":{"bytesInOutput":1917}},"bytes":2192},"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":9449},"dist/lib/browser/index.mjs":{"imports":[{"path":"dist/lib/browser/chunk-QKCGZ45E.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VBYJ664A.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"immer","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true}],"exports":["DeckCapabilities","DeckEvents","DeckPlugin","meta","useCompanions"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":0},"src/events.ts":{"bytesInOutput":202},"src/DeckPlugin.ts":{"bytesInOutput":2232},"src/translations.ts":{"bytesInOutput":3080}},"bytes":6087},"dist/lib/browser/types/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/browser/types/index.mjs":{"imports":[{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"}],"exports":["ATTENDABLE_PATH_SEPARATOR","DECK_COMPANION_TYPE","DeckAction","DeckPluginState","DeckSettingsSchema","DeckState","NewPlankPositions","OverscrollOptions","PLANK_COMPANION_TYPE","PlankSizing","defaultDeck","getMode","isLayoutMode"],"entryPoint":"src/types/index.ts","inputs":{},"bytes":604},"dist/lib/browser/state-7IFAGZQO.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/browser/state-7IFAGZQO.mjs":{"imports":[{"path":"dist/lib/browser/chunk-VBYJ664A.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"}],"exports":["DeckStateFactory","default"],"entryPoint":"src/capabilities/state.ts","inputs":{},"bytes":272},"dist/lib/browser/app-graph-builder-D74NTOMK.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":9037},"dist/lib/browser/app-graph-builder-D74NTOMK.mjs":{"imports":[{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@effect-atom/atom-react","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/app-graph-builder.ts","inputs":{"src/capabilities/app-graph-builder.ts":{"bytesInOutput":3720}},"bytes":3975},"dist/lib/browser/check-app-scheme-HIEVFAAX.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2515},"dist/lib/browser/check-app-scheme-HIEVFAAX.mjs":{"imports":[{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/check-app-scheme.ts","inputs":{"src/capabilities/check-app-scheme.ts":{"bytesInOutput":873}},"bytes":1066},"dist/lib/browser/settings-SDPTOCCM.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1381},"dist/lib/browser/settings-SDPTOCCM.mjs":{"imports":[{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/settings.ts","inputs":{"src/capabilities/settings.ts":{"bytesInOutput":494}},"bytes":724},"dist/lib/browser/intent-resolver-UA4YQGAC.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":33748},"dist/lib/browser/intent-resolver-UA4YQGAC.mjs":{"imports":[{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/plugin-observability/types","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/intent-resolver.ts","inputs":{"src/capabilities/intent-resolver.ts":{"bytesInOutput":17936}},"bytes":18418},"dist/lib/browser/react-root-JAMHKYWN.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2277},"dist/lib/browser/react-root-JAMHKYWN.mjs":{"imports":[{"path":"dist/lib/browser/chunk-VUJ6UNIJ.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-QKCGZ45E.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VBYJ664A.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/react-root.tsx","inputs":{"src/capabilities/react-root.tsx":{"bytesInOutput":861}},"bytes":1273},"dist/lib/browser/chunk-VUJ6UNIJ.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":114303},"dist/lib/browser/chunk-VUJ6UNIJ.mjs":{"imports":[{"path":"dist/lib/browser/chunk-QKCGZ45E.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-tabs","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@fluentui/react-tabster","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-text-tooltip","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-attention","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-stack","kind":"import-statement","external":true},{"path":"@dxos/react-ui-theme","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"@radix-ui/react-context","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-form","kind":"import-statement","external":true}],"exports":["Banner","DeckLayout","DeckSettings"],"inputs":{"src/components/DeckLayout/Banner.tsx":{"bytesInOutput":1754},"src/components/Sidebar/ComplementarySidebar.tsx":{"bytesInOutput":7553},"src/components/Plank/Plank.tsx":{"bytesInOutput":7596},"src/components/Plank/PlankError.tsx":{"bytesInOutput":1462},"src/components/Plank/PlankHeading.tsx":{"bytesInOutput":7393},"src/components/fragments.ts":{"bytesInOutput":435},"src/components/Plank/PlankControls.tsx":{"bytesInOutput":5188},"src/components/Plank/PlankLoading.tsx":{"bytesInOutput":361},"src/components/Plank/index.ts":{"bytesInOutput":0},"src/components/Sidebar/SidebarButton.tsx":{"bytesInOutput":3090},"src/components/Sidebar/index.ts":{"bytesInOutput":0},"src/components/Sidebar/Sidebar.tsx":{"bytesInOutput":1381},"src/components/DeckLayout/DeckLayout.tsx":{"bytesInOutput":801},"src/components/DeckLayout/ActiveNode.tsx":{"bytesInOutput":844},"src/components/DeckLayout/DeckMain.tsx":{"bytesInOutput":9463},"src/components/DeckLayout/ContentEmpty.tsx":{"bytesInOutput":975},"src/components/DeckLayout/StatusBar.tsx":{"bytesInOutput":837},"src/components/DeckLayout/Topbar.tsx":{"bytesInOutput":303},"src/components/DeckLayout/Dialog.tsx":{"bytesInOutput":1633},"src/components/DeckLayout/Popover.tsx":{"bytesInOutput":3139},"src/components/DeckLayout/Toast.tsx":{"bytesInOutput":2285},"src/components/DeckSettings/DeckSettings.tsx":{"bytesInOutput":3976},"src/components/DeckLayout/index.ts":{"bytesInOutput":0},"src/components/index.ts":{"bytesInOutput":0},"src/components/DeckSettings/index.ts":{"bytesInOutput":0}},"bytes":62222},"dist/lib/browser/chunk-QKCGZ45E.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":8482},"dist/lib/browser/chunk-QKCGZ45E.mjs":{"imports":[{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@preact-signals/safe-react/tracking","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-framework/react","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/plugin-graph","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"dist/lib/browser/app-graph-builder-D74NTOMK.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/check-app-scheme-HIEVFAAX.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/settings-SDPTOCCM.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/state-7IFAGZQO.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/intent-resolver-UA4YQGAC.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/react-root-JAMHKYWN.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/react-surface-6LW337ZT.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/toolkit-L5CFXJCF.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/url-handler-QEYGYE2H.mjs","kind":"dynamic-import"}],"exports":["AppGraphBuilder","CheckAppScheme","DeckSettings","DeckState","LayoutIntentResolver","ReactRoot","ReactSurface","Toolkit","UrlHandler","getCompanionId","useBreakpoints","useCompanions","useDeckCompanions","useHoistStatusbar","useMainSize","useNodeActionExpander"],"inputs":{"src/hooks/useCompanions.ts":{"bytesInOutput":493},"src/hooks/useBreakpoints.ts":{"bytesInOutput":236},"src/hooks/index.ts":{"bytesInOutput":0},"src/hooks/useDeckCompanions.ts":{"bytesInOutput":634},"src/hooks/useHoistStatusbar.ts":{"bytesInOutput":845},"src/hooks/useMainSize.ts":{"bytesInOutput":319},"src/hooks/useNodeActionExpander.ts":{"bytesInOutput":371},"src/capabilities/index.ts":{"bytesInOutput":668}},"bytes":4294},"dist/lib/browser/chunk-VBYJ664A.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":6606},"dist/lib/browser/chunk-VBYJ664A.mjs":{"imports":[{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-F3VCCHVL.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/live-object","kind":"import-statement","external":true},{"path":"@dxos/local-storage","kind":"import-statement","external":true}],"exports":["DeckStateFactory","state_default"],"inputs":{"src/capabilities/state.ts":{"bytesInOutput":3136}},"bytes":3430},"dist/lib/browser/chunk-CNTGBCMK.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":16063},"dist/lib/browser/chunk-CNTGBCMK.mjs":{"imports":[{"path":"immer","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true},{"path":"@preact/signals-core","kind":"import-statement","external":true}],"exports":["calculateOverscroll","closeEntry","createEntryId","incrementPlank","layoutAppliesTopbar","openEntry","parseEntryId","setActive"],"inputs":{"src/layout.ts":{"bytesInOutput":2156},"src/util/set-active.ts":{"bytesInOutput":1130},"src/util/layoutAppliesTopbar.ts":{"bytesInOutput":188},"src/util/index.ts":{"bytesInOutput":0},"src/util/overscroll.ts":{"bytesInOutput":759}},"bytes":4533},"dist/lib/browser/chunk-5KMJPIQC.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":891},"dist/lib/browser/chunk-5KMJPIQC.mjs":{"imports":[{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@dxos/app-framework","kind":"import-statement","external":true}],"exports":["DeckCapabilities"],"inputs":{"src/capabilities/capabilities.ts":{"bytesInOutput":327}},"bytes":487},"dist/lib/browser/chunk-F3VCCHVL.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":10896},"dist/lib/browser/chunk-F3VCCHVL.mjs":{"imports":[{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/react-ui-attention","kind":"import-statement","external":true}],"exports":["ATTENDABLE_PATH_SEPARATOR","DECK_COMPANION_TYPE","DeckAction","DeckPluginState","DeckSettingsSchema","DeckState","NewPlankPositions","OverscrollOptions","PLANK_COMPANION_TYPE","PlankSizing","defaultDeck","getMode","isLayoutMode"],"inputs":{"src/types/schema.ts":{"bytesInOutput":5202},"src/types/index.ts":{"bytesInOutput":0}},"bytes":5572},"dist/lib/browser/chunk-UXLU6CMW.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":713},"dist/lib/browser/chunk-UXLU6CMW.mjs":{"imports":[{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["meta"],"inputs":{"src/meta.ts":{"bytesInOutput":321}},"bytes":400}}}
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  DeckLayout
3
- } from "./chunk-SDIYDK47.mjs";
4
- import "./chunk-OLDBLCAX.mjs";
3
+ } from "./chunk-VUJ6UNIJ.mjs";
4
+ import "./chunk-QKCGZ45E.mjs";
5
5
  import "./chunk-VBYJ664A.mjs";
6
6
  import "./chunk-CNTGBCMK.mjs";
7
7
  import {
@@ -41,4 +41,4 @@ var react_root_default = (() => contributes(Capabilities.ReactRoot, {
41
41
  export {
42
42
  react_root_default as default
43
43
  };
44
- //# sourceMappingURL=react-root-76RSDA6R.mjs.map
44
+ //# sourceMappingURL=react-root-JAMHKYWN.mjs.map
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  Banner,
3
3
  DeckSettings
4
- } from "./chunk-SDIYDK47.mjs";
5
- import "./chunk-OLDBLCAX.mjs";
4
+ } from "./chunk-VUJ6UNIJ.mjs";
5
+ import "./chunk-QKCGZ45E.mjs";
6
6
  import "./chunk-VBYJ664A.mjs";
7
7
  import "./chunk-CNTGBCMK.mjs";
8
8
  import "./chunk-5KMJPIQC.mjs";
@@ -37,4 +37,4 @@ var react_surface_default = (() => contributes(Capabilities.ReactSurface, [
37
37
  export {
38
38
  react_surface_default as default
39
39
  };
40
- //# sourceMappingURL=react-surface-2CSKDN7K.mjs.map
40
+ //# sourceMappingURL=react-surface-6LW337ZT.mjs.map
@@ -11,7 +11,7 @@ export declare namespace DeckToolkit {
11
11
  readonly parameters: Schema.Struct<{
12
12
  id: Schema.Schema<string, string, never> & {
13
13
  toDXN: (reference: ArtifactId, owningSpaceId?: SpaceId) => import("@dxos/keys").DXN;
14
- resolve: <S extends import("@dxos/echo/Type").Obj.Any | import("@dxos/echo/Type").Relation.Any>(schema: S, ref: ArtifactId) => Effect.Effect<Schema.Schema.Type<S>, import("@dxos/echo").ObjectNotFoundError, import("@dxos/echo-db").DatabaseService>;
14
+ resolve: <S extends import("@dxos/echo/Type").Entity.Any>(schema: S, ref: ArtifactId) => Effect.Effect<Schema.Schema.Type<S>, import("@dxos/echo").ObjectNotFoundError, import("@dxos/echo-db").DatabaseService>;
15
15
  };
16
16
  }>;
17
17
  readonly success: typeof Schema.Any;
@@ -1 +1 @@
1
- {"version":3,"file":"toolkit.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/toolkit.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,EAEL,KAAK,UAAU,EAEf,KAAK,aAAa,EAGnB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,KAAK,OAAO,EAAE,MAAM,YAAY,CAAC;AAkB1C,yBAAiB,WAAW,CAAC;IACpB,MAAM,OAAO;;;;gEAbP,CAAC;;;;;;;MAaiB,CAAC;IAEzB,MAAM,WAAW,GAAI,SAAS,aAAa,0EAoB9C,CAAC;CACN;yBAEe,SAAS,aAAa,KAAG,UAAU,CAAC,GAAG,CAAC,EAAE;AAA1D,wBAEE"}
1
+ {"version":3,"file":"toolkit.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/toolkit.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,EAEL,KAAK,UAAU,EAEf,KAAK,aAAa,EAGnB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,KAAK,OAAO,EAAE,MAAM,YAAY,CAAC;AAkB1C,yBAAiB,WAAW,CAAC;IACpB,MAAM,OAAO;;;;gEAdd,CAAC;;;;;;;MAcwB,CAAC;IAEzB,MAAM,WAAW,GAAI,SAAS,aAAa,0EAoB9C,CAAC;CACN;yBAEe,SAAS,aAAa,KAAG,UAAU,CAAC,GAAG,CAAC,EAAE;AAA1D,wBAEE"}
@@ -33,7 +33,7 @@ declare const meta: {
33
33
  readonly 'undo action label': "Undo";
34
34
  readonly 'undo action alt': "Undo previous action";
35
35
  readonly 'undo close label': "Dismiss";
36
- readonly 'error fallback message': "Unable to open this item";
36
+ readonly 'error fallback message': "Unable to open this object";
37
37
  readonly 'plank heading fallback label': "Untitled";
38
38
  readonly 'actions menu label': "Options";
39
39
  readonly 'settings deck label': "Disable deck";
@@ -48,7 +48,7 @@ declare const meta: {
48
48
  readonly 'undo action label': "Undo";
49
49
  readonly 'undo action alt': "Undo previous action";
50
50
  readonly 'undo close label': "Dismiss";
51
- readonly 'error fallback message': "Unable to open this item";
51
+ readonly 'error fallback message': "Unable to open this object";
52
52
  readonly 'plank heading fallback label': "Untitled";
53
53
  readonly 'actions menu label': "Options";
54
54
  readonly 'settings deck label': "Disable deck";
@@ -25,7 +25,7 @@ export declare const translations: [{
25
25
  readonly 'undo action label': "Undo";
26
26
  readonly 'undo action alt': "Undo previous action";
27
27
  readonly 'undo close label': "Dismiss";
28
- readonly 'error fallback message': "Unable to open this item";
28
+ readonly 'error fallback message': "Unable to open this object";
29
29
  readonly 'plank heading fallback label': "Untitled";
30
30
  readonly 'actions menu label': "Options";
31
31
  readonly 'settings deck label': "Disable deck";