@dxos/plugin-deck 0.8.4-main.a4bbb77 → 0.8.4-main.ae835ea
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/browser/{app-graph-builder-7SR53CCK.mjs → app-graph-builder-PCMSER2O.mjs} +6 -5
- package/dist/lib/browser/app-graph-builder-PCMSER2O.mjs.map +7 -0
- package/dist/lib/browser/{check-app-scheme-GCOL6YDT.mjs → check-app-scheme-HIEVFAAX.mjs} +2 -2
- package/dist/lib/browser/{chunk-WOCUNO27.mjs → chunk-27I7DJUG.mjs} +5 -5
- package/dist/lib/browser/{chunk-WOCUNO27.mjs.map → chunk-27I7DJUG.mjs.map} +2 -2
- package/dist/lib/browser/{chunk-HUWUYTOI.mjs → chunk-5KMJPIQC.mjs} +2 -2
- package/dist/lib/browser/{chunk-VSJ7FFQS.mjs → chunk-F3VCCHVL.mjs} +6 -4
- package/dist/lib/browser/chunk-F3VCCHVL.mjs.map +7 -0
- package/dist/lib/browser/{chunk-7CL25AYA.mjs → chunk-MFFZK4LT.mjs} +13 -13
- package/dist/lib/browser/{chunk-7CL25AYA.mjs.map → chunk-MFFZK4LT.mjs.map} +3 -3
- package/dist/lib/browser/{chunk-QHJ7N7BF.mjs → chunk-SBJLGRJV.mjs} +322 -288
- package/dist/lib/browser/chunk-SBJLGRJV.mjs.map +7 -0
- package/dist/lib/browser/chunk-UXLU6CMW.mjs +16 -0
- package/dist/lib/browser/chunk-UXLU6CMW.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +6 -5
- package/dist/lib/browser/index.mjs.map +2 -2
- package/dist/lib/browser/{intent-resolver-Y5YOA4NR.mjs → intent-resolver-Q3KETDSS.mjs} +12 -9
- package/dist/lib/browser/intent-resolver-Q3KETDSS.mjs.map +7 -0
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/{react-root-A537NMT6.mjs → react-root-LU3662ME.mjs} +7 -7
- package/dist/lib/browser/{react-surface-DAS4HS3Y.mjs → react-surface-TDBFPN5T.mjs} +7 -7
- package/dist/lib/browser/{settings-3642GPOR.mjs → settings-SDPTOCCM.mjs} +5 -4
- package/dist/lib/browser/{settings-3642GPOR.mjs.map → settings-SDPTOCCM.mjs.map} +3 -3
- package/dist/lib/browser/state-QTVNH7N6.mjs +12 -0
- package/dist/lib/browser/toolkit-TM2Y6YL2.mjs +53 -0
- package/dist/lib/browser/toolkit-TM2Y6YL2.mjs.map +7 -0
- package/dist/lib/browser/types/index.mjs +2 -2
- package/dist/lib/browser/{url-handler-354LL74P.mjs → url-handler-QEYGYE2H.mjs} +4 -4
- package/dist/types/src/capabilities/app-graph-builder.d.ts.map +1 -1
- package/dist/types/src/capabilities/intent-resolver.d.ts.map +1 -1
- package/dist/types/src/capabilities/settings.d.ts.map +1 -1
- package/dist/types/src/capabilities/state.d.ts +3 -0
- package/dist/types/src/capabilities/state.d.ts.map +1 -1
- package/dist/types/src/capabilities/toolkit.d.ts +21 -3
- package/dist/types/src/capabilities/toolkit.d.ts.map +1 -1
- package/dist/types/src/components/DeckLayout/DeckLayout.d.ts +2 -3
- package/dist/types/src/components/DeckLayout/DeckLayout.d.ts.map +1 -1
- package/dist/types/src/components/DeckLayout/DeckLayout.stories.d.ts +74 -0
- package/dist/types/src/components/DeckLayout/DeckLayout.stories.d.ts.map +1 -0
- package/dist/types/src/components/DeckLayout/DeckMain.d.ts +3 -0
- package/dist/types/src/components/DeckLayout/DeckMain.d.ts.map +1 -0
- package/dist/types/src/components/DeckLayout/Toast.d.ts +5 -0
- package/dist/types/src/components/DeckLayout/Toast.d.ts.map +1 -1
- package/dist/types/src/components/DeckSettings/DeckSettings.d.ts.map +1 -1
- package/dist/types/src/components/Plank/Plank.d.ts.map +1 -1
- package/dist/types/src/components/Plank/Plank.stories.d.ts +1 -0
- package/dist/types/src/components/Plank/Plank.stories.d.ts.map +1 -1
- package/dist/types/src/components/Plank/PlankHeading.d.ts.map +1 -1
- package/dist/types/src/hooks/useHoistStatusbar.d.ts.map +1 -1
- package/dist/types/src/meta.d.ts.map +1 -1
- package/dist/types/src/translations.d.ts +1 -0
- package/dist/types/src/translations.d.ts.map +1 -1
- package/dist/types/src/types/schema.d.ts +2 -1
- package/dist/types/src/types/schema.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +32 -33
- package/src/capabilities/app-graph-builder.ts +3 -2
- package/src/capabilities/intent-resolver.ts +6 -3
- package/src/capabilities/settings.ts +1 -0
- package/src/capabilities/state.ts +3 -0
- package/src/capabilities/toolkit.ts +23 -10
- package/src/capabilities/tools.ts +1 -1
- package/src/components/DeckLayout/DeckLayout.stories.tsx +64 -0
- package/src/components/DeckLayout/DeckLayout.tsx +8 -278
- package/src/components/DeckLayout/DeckMain.tsx +285 -0
- package/src/components/DeckLayout/Toast.tsx +25 -0
- package/src/components/DeckSettings/DeckSettings.tsx +6 -0
- package/src/components/Plank/Plank.tsx +27 -12
- package/src/components/Plank/PlankHeading.tsx +2 -1
- package/src/hooks/useHoistStatusbar.ts +3 -2
- package/src/meta.ts +5 -0
- package/src/translations.ts +1 -0
- package/src/types/schema.ts +3 -1
- package/dist/lib/browser/app-graph-builder-7SR53CCK.mjs.map +0 -7
- package/dist/lib/browser/chunk-MHP4GPX5.mjs +0 -11
- package/dist/lib/browser/chunk-MHP4GPX5.mjs.map +0 -7
- package/dist/lib/browser/chunk-QHJ7N7BF.mjs.map +0 -7
- package/dist/lib/browser/chunk-VSJ7FFQS.mjs.map +0 -7
- package/dist/lib/browser/intent-resolver-Y5YOA4NR.mjs.map +0 -7
- package/dist/lib/browser/state-MKKK3WGD.mjs +0 -12
- package/dist/lib/browser/toolkit-UPUBQIYU.mjs +0 -61
- package/dist/lib/browser/toolkit-UPUBQIYU.mjs.map +0 -7
- /package/dist/lib/browser/{check-app-scheme-GCOL6YDT.mjs.map → check-app-scheme-HIEVFAAX.mjs.map} +0 -0
- /package/dist/lib/browser/{chunk-HUWUYTOI.mjs.map → chunk-5KMJPIQC.mjs.map} +0 -0
- /package/dist/lib/browser/{react-root-A537NMT6.mjs.map → react-root-LU3662ME.mjs.map} +0 -0
- /package/dist/lib/browser/{react-surface-DAS4HS3Y.mjs.map → react-surface-TDBFPN5T.mjs.map} +0 -0
- /package/dist/lib/browser/{state-MKKK3WGD.mjs.map → state-QTVNH7N6.mjs.map} +0 -0
- /package/dist/lib/browser/{url-handler-354LL74P.mjs.map → url-handler-QEYGYE2H.mjs.map} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/meta.ts":{"bytes":835,"imports":[],"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":21581,"imports":[{"path":"effect","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":12458,"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":20214,"imports":[{"path":"@effect-rx/rx-react","kind":"import-statement","external":true},{"path":"effect","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":2519,"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":72149,"imports":[{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"effect","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":2488,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","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":3481,"imports":[{"path":"@dxos/app-framework","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":3198,"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/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":18577,"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/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":28059,"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/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":31687,"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/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":10421,"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/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":24318,"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/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-tabs","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":5514,"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/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":5372,"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/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":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/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":4099,"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":"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/Dialog.tsx":{"bytes":6045,"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/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":12814,"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","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/StatusBar.tsx":{"bytes":2624,"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/react-ui","kind":"import-statement","external":true}],"format":"esm"},"src/components/DeckLayout/Toast.tsx":{"bytes":6590,"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/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/DeckLayout.tsx":{"bytes":39427,"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/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/ActiveNode.tsx","kind":"import-statement","original":"./ActiveNode"},{"path":"src/components/DeckLayout/ContentEmpty.tsx","kind":"import-statement","original":"./ContentEmpty"},{"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/StatusBar.tsx","kind":"import-statement","original":"./StatusBar"},{"path":"src/components/DeckLayout/Toast.tsx","kind":"import-statement","original":"./Toast"},{"path":"src/components/DeckLayout/Topbar.tsx","kind":"import-statement","original":"./Topbar"}],"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":12632,"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":4486,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","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":6802,"imports":[{"path":"@effect/ai","kind":"import-statement","external":true},{"path":"effect","kind":"import-statement","external":true},{"path":"@dxos/app-framework","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":9285,"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-DAS4HS3Y.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1859},"dist/lib/browser/react-surface-DAS4HS3Y.mjs":{"imports":[{"path":"dist/lib/browser/chunk-QHJ7N7BF.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-7CL25AYA.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-WOCUNO27.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-HUWUYTOI.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.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-UPUBQIYU.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3425},"dist/lib/browser/toolkit-UPUBQIYU.mjs":{"imports":[{"path":"dist/lib/browser/chunk-HUWUYTOI.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.mjs","kind":"import-statement"},{"path":"@effect/ai","kind":"import-statement","external":true},{"path":"effect","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/toolkit.ts","inputs":{"src/capabilities/toolkit.ts":{"bytesInOutput":1570}},"bytes":1779},"dist/lib/browser/url-handler-354LL74P.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":4328},"dist/lib/browser/url-handler-354LL74P.mjs":{"imports":[{"path":"dist/lib/browser/chunk-HUWUYTOI.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.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":9364},"dist/lib/browser/index.mjs":{"imports":[{"path":"dist/lib/browser/chunk-7CL25AYA.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-WOCUNO27.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-HUWUYTOI.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.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":3009}},"bytes":6016},"dist/lib/browser/types/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/browser/types/index.mjs":{"imports":[{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.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-MKKK3WGD.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/browser/state-MKKK3WGD.mjs":{"imports":[{"path":"dist/lib/browser/chunk-WOCUNO27.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-HUWUYTOI.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.mjs","kind":"import-statement"}],"exports":["DeckStateFactory","default"],"entryPoint":"src/capabilities/state.ts","inputs":{},"bytes":272},"dist/lib/browser/app-graph-builder-7SR53CCK.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":9365},"dist/lib/browser/app-graph-builder-7SR53CCK.mjs":{"imports":[{"path":"dist/lib/browser/chunk-HUWUYTOI.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.mjs","kind":"import-statement"},{"path":"@effect-rx/rx-react","kind":"import-statement","external":true},{"path":"effect","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":4323}},"bytes":4578},"dist/lib/browser/check-app-scheme-GCOL6YDT.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2515},"dist/lib/browser/check-app-scheme-GCOL6YDT.mjs":{"imports":[{"path":"dist/lib/browser/chunk-MHP4GPX5.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-3642GPOR.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1313},"dist/lib/browser/settings-3642GPOR.mjs":{"imports":[{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.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":463}},"bytes":693},"dist/lib/browser/intent-resolver-Y5YOA4NR.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":33727},"dist/lib/browser/intent-resolver-Y5YOA4NR.mjs":{"imports":[{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-HUWUYTOI.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.mjs","kind":"import-statement"},{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"effect","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":17805}},"bytes":18287},"dist/lib/browser/react-root-A537NMT6.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2219},"dist/lib/browser/react-root-A537NMT6.mjs":{"imports":[{"path":"dist/lib/browser/chunk-QHJ7N7BF.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-7CL25AYA.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-WOCUNO27.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-HUWUYTOI.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.mjs","kind":"import-statement"},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/capabilities/react-root.tsx","inputs":{"src/capabilities/react-root.tsx":{"bytesInOutput":817}},"bytes":1229},"dist/lib/browser/chunk-QHJ7N7BF.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":110435},"dist/lib/browser/chunk-QHJ7N7BF.mjs":{"imports":[{"path":"dist/lib/browser/chunk-7CL25AYA.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-CNTGBCMK.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-HUWUYTOI.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.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","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/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-tabs","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/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/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/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/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","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":"@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/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","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":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","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/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","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","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":"@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":1748},"src/components/Sidebar/ComplementarySidebar.tsx":{"bytesInOutput":6975},"src/components/Plank/Plank.tsx":{"bytesInOutput":6851},"src/components/Plank/PlankError.tsx":{"bytesInOutput":1462},"src/components/Plank/PlankHeading.tsx":{"bytesInOutput":7368},"src/components/fragments.ts":{"bytesInOutput":435},"src/components/Plank/PlankControls.tsx":{"bytesInOutput":5159},"src/components/Plank/PlankLoading.tsx":{"bytesInOutput":361},"src/components/Plank/index.ts":{"bytesInOutput":0},"src/components/Sidebar/SidebarButton.tsx":{"bytesInOutput":3014},"src/components/Sidebar/index.ts":{"bytesInOutput":0},"src/components/Sidebar/Sidebar.tsx":{"bytesInOutput":1375},"src/components/DeckLayout/DeckLayout.tsx":{"bytesInOutput":9715},"src/components/DeckLayout/ActiveNode.tsx":{"bytesInOutput":838},"src/components/DeckLayout/ContentEmpty.tsx":{"bytesInOutput":969},"src/components/DeckLayout/Dialog.tsx":{"bytesInOutput":1627},"src/components/DeckLayout/Popover.tsx":{"bytesInOutput":3436},"src/components/DeckLayout/StatusBar.tsx":{"bytesInOutput":834},"src/components/DeckLayout/Toast.tsx":{"bytesInOutput":1853},"src/components/DeckLayout/Topbar.tsx":{"bytesInOutput":303},"src/components/DeckSettings/DeckSettings.tsx":{"bytesInOutput":3668},"src/components/DeckLayout/index.ts":{"bytesInOutput":0},"src/components/index.ts":{"bytesInOutput":0},"src/components/DeckSettings/index.ts":{"bytesInOutput":0}},"bytes":59658},"dist/lib/browser/chunk-7CL25AYA.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":8372},"dist/lib/browser/chunk-7CL25AYA.mjs":{"imports":[{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.mjs","kind":"import-statement"},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","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","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/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-7SR53CCK.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/check-app-scheme-GCOL6YDT.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/settings-3642GPOR.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/state-MKKK3WGD.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/intent-resolver-Y5YOA4NR.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/react-root-A537NMT6.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/react-surface-DAS4HS3Y.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/toolkit-UPUBQIYU.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/url-handler-354LL74P.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":487},"src/hooks/useBreakpoints.ts":{"bytesInOutput":236},"src/hooks/index.ts":{"bytesInOutput":0},"src/hooks/useDeckCompanions.ts":{"bytesInOutput":628},"src/hooks/useHoistStatusbar.ts":{"bytesInOutput":800},"src/hooks/useMainSize.ts":{"bytesInOutput":319},"src/hooks/useNodeActionExpander.ts":{"bytesInOutput":371},"src/capabilities/index.ts":{"bytesInOutput":668}},"bytes":4237},"dist/lib/browser/chunk-WOCUNO27.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":6323},"dist/lib/browser/chunk-WOCUNO27.mjs":{"imports":[{"path":"dist/lib/browser/chunk-HUWUYTOI.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-VSJ7FFQS.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MHP4GPX5.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":3052}},"bytes":3346},"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-HUWUYTOI.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":891},"dist/lib/browser/chunk-HUWUYTOI.mjs":{"imports":[{"path":"dist/lib/browser/chunk-MHP4GPX5.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-VSJ7FFQS.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":11334},"dist/lib/browser/chunk-VSJ7FFQS.mjs":{"imports":[{"path":"dist/lib/browser/chunk-MHP4GPX5.mjs","kind":"import-statement"},{"path":"effect","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":5071},"src/types/index.ts":{"bytesInOutput":0}},"bytes":5441},"dist/lib/browser/chunk-MHP4GPX5.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":419},"dist/lib/browser/chunk-MHP4GPX5.mjs":{"imports":[],"exports":["meta"],"inputs":{"src/meta.ts":{"bytesInOutput":94}},"bytes":173}}}
|
|
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":12529,"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":20386,"imports":[{"path":"@effect-rx/rx-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":72557,"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":2488,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","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":3481,"imports":[{"path":"@dxos/app-framework","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":3187,"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/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":18577,"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/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":28114,"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/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":31990,"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/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":10421,"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/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":24318,"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/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-tabs","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":5514,"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/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":5372,"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/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":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/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":4099,"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":"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":2624,"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/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":37573,"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/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":6045,"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/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":12814,"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","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":8245,"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":3475,"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":"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":4487,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","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":7088,"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/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-TDBFPN5T.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1859},"dist/lib/browser/react-surface-TDBFPN5T.mjs":{"imports":[{"path":"dist/lib/browser/chunk-SBJLGRJV.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MFFZK4LT.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-27I7DJUG.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-TM2Y6YL2.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3634},"dist/lib/browser/toolkit-TM2Y6YL2.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/util","kind":"import-statement","external":true}],"exports":["DeckToolkit","default"],"entryPoint":"src/capabilities/toolkit.ts","inputs":{"src/capabilities/toolkit.ts":{"bytesInOutput":1498}},"bytes":1722},"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-MFFZK4LT.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-27I7DJUG.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-QTVNH7N6.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/browser/state-QTVNH7N6.mjs":{"imports":[{"path":"dist/lib/browser/chunk-27I7DJUG.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-PCMSER2O.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":9397},"dist/lib/browser/app-graph-builder-PCMSER2O.mjs":{"imports":[{"path":"dist/lib/browser/chunk-5KMJPIQC.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-UXLU6CMW.mjs","kind":"import-statement"},{"path":"@effect-rx/rx-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":4379}},"bytes":4634},"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-Q3KETDSS.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":33750},"dist/lib/browser/intent-resolver-Q3KETDSS.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-LU3662ME.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2219},"dist/lib/browser/react-root-LU3662ME.mjs":{"imports":[{"path":"dist/lib/browser/chunk-SBJLGRJV.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-MFFZK4LT.mjs","kind":"import-statement"},{"path":"dist/lib/browser/chunk-27I7DJUG.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}],"exports":["default"],"entryPoint":"src/capabilities/react-root.tsx","inputs":{"src/capabilities/react-root.tsx":{"bytesInOutput":817}},"bytes":1229},"dist/lib/browser/chunk-SBJLGRJV.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":112650},"dist/lib/browser/chunk-SBJLGRJV.mjs":{"imports":[{"path":"dist/lib/browser/chunk-MFFZK4LT.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","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/react-ui","kind":"import-statement","external":true},{"path":"@dxos/react-ui-tabs","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/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/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/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/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","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","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/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/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","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/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/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","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":1748},"src/components/Sidebar/ComplementarySidebar.tsx":{"bytesInOutput":6975},"src/components/Plank/Plank.tsx":{"bytesInOutput":7054},"src/components/Plank/PlankError.tsx":{"bytesInOutput":1462},"src/components/Plank/PlankHeading.tsx":{"bytesInOutput":7381},"src/components/fragments.ts":{"bytesInOutput":435},"src/components/Plank/PlankControls.tsx":{"bytesInOutput":5159},"src/components/Plank/PlankLoading.tsx":{"bytesInOutput":361},"src/components/Plank/index.ts":{"bytesInOutput":0},"src/components/Sidebar/SidebarButton.tsx":{"bytesInOutput":3014},"src/components/Sidebar/index.ts":{"bytesInOutput":0},"src/components/Sidebar/Sidebar.tsx":{"bytesInOutput":1375},"src/components/DeckLayout/DeckLayout.tsx":{"bytesInOutput":795},"src/components/DeckLayout/ActiveNode.tsx":{"bytesInOutput":838},"src/components/DeckLayout/DeckMain.tsx":{"bytesInOutput":9419},"src/components/DeckLayout/ContentEmpty.tsx":{"bytesInOutput":969},"src/components/DeckLayout/StatusBar.tsx":{"bytesInOutput":831},"src/components/DeckLayout/Topbar.tsx":{"bytesInOutput":303},"src/components/DeckLayout/Dialog.tsx":{"bytesInOutput":1627},"src/components/DeckLayout/Popover.tsx":{"bytesInOutput":3438},"src/components/DeckLayout/Toast.tsx":{"bytesInOutput":2300},"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":61213},"dist/lib/browser/chunk-MFFZK4LT.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":8374},"dist/lib/browser/chunk-MFFZK4LT.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","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","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/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-PCMSER2O.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-QTVNH7N6.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/intent-resolver-Q3KETDSS.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/react-root-LU3662ME.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/react-surface-TDBFPN5T.mjs","kind":"dynamic-import"},{"path":"dist/lib/browser/toolkit-TM2Y6YL2.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":487},"src/hooks/useBreakpoints.ts":{"bytesInOutput":236},"src/hooks/index.ts":{"bytesInOutput":0},"src/hooks/useDeckCompanions.ts":{"bytesInOutput":628},"src/hooks/useHoistStatusbar.ts":{"bytesInOutput":801},"src/hooks/useMainSize.ts":{"bytesInOutput":319},"src/hooks/useNodeActionExpander.ts":{"bytesInOutput":371},"src/capabilities/index.ts":{"bytesInOutput":668}},"bytes":4238},"dist/lib/browser/chunk-27I7DJUG.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":6349},"dist/lib/browser/chunk-27I7DJUG.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":3052}},"bytes":3346},"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,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DeckLayout
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-SBJLGRJV.mjs";
|
|
4
|
+
import "./chunk-MFFZK4LT.mjs";
|
|
5
|
+
import "./chunk-27I7DJUG.mjs";
|
|
6
6
|
import "./chunk-CNTGBCMK.mjs";
|
|
7
7
|
import {
|
|
8
8
|
DeckCapabilities
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-5KMJPIQC.mjs";
|
|
10
|
+
import "./chunk-F3VCCHVL.mjs";
|
|
11
11
|
import {
|
|
12
12
|
meta
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-UXLU6CMW.mjs";
|
|
14
14
|
|
|
15
15
|
// src/capabilities/react-root.tsx
|
|
16
16
|
import React, { useCallback } from "react";
|
|
@@ -40,4 +40,4 @@ var react_root_default = (() => contributes(Capabilities.ReactRoot, {
|
|
|
40
40
|
export {
|
|
41
41
|
react_root_default as default
|
|
42
42
|
};
|
|
43
|
-
//# sourceMappingURL=react-root-
|
|
43
|
+
//# sourceMappingURL=react-root-LU3662ME.mjs.map
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Banner,
|
|
3
3
|
DeckSettings
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-SBJLGRJV.mjs";
|
|
5
|
+
import "./chunk-MFFZK4LT.mjs";
|
|
6
|
+
import "./chunk-27I7DJUG.mjs";
|
|
7
7
|
import "./chunk-CNTGBCMK.mjs";
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-5KMJPIQC.mjs";
|
|
9
|
+
import "./chunk-F3VCCHVL.mjs";
|
|
10
10
|
import {
|
|
11
11
|
meta
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-UXLU6CMW.mjs";
|
|
13
13
|
|
|
14
14
|
// src/capabilities/react-surface.tsx
|
|
15
15
|
import React from "react";
|
|
@@ -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-
|
|
40
|
+
//# sourceMappingURL=react-surface-TDBFPN5T.mjs.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DeckSettingsSchema
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-F3VCCHVL.mjs";
|
|
4
4
|
import {
|
|
5
5
|
meta
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-UXLU6CMW.mjs";
|
|
7
7
|
|
|
8
8
|
// src/capabilities/settings.ts
|
|
9
9
|
import { Capabilities, contributes } from "@dxos/app-framework";
|
|
@@ -15,7 +15,8 @@ var settings_default = (() => {
|
|
|
15
15
|
enableStatusbar: false,
|
|
16
16
|
enableNativeRedirect: false,
|
|
17
17
|
newPlankPositioning: "start",
|
|
18
|
-
overscroll: "none"
|
|
18
|
+
overscroll: "none",
|
|
19
|
+
encapsulatedPlanks: false
|
|
19
20
|
});
|
|
20
21
|
return contributes(Capabilities.Settings, {
|
|
21
22
|
prefix: meta.id,
|
|
@@ -26,4 +27,4 @@ var settings_default = (() => {
|
|
|
26
27
|
export {
|
|
27
28
|
settings_default as default
|
|
28
29
|
};
|
|
29
|
-
//# sourceMappingURL=settings-
|
|
30
|
+
//# sourceMappingURL=settings-SDPTOCCM.mjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/capabilities/settings.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport { Capabilities, contributes } from '@dxos/app-framework';\nimport { live } from '@dxos/live-object';\n\nimport { meta } from '../meta';\nimport { type DeckSettingsProps, DeckSettingsSchema } from '../types';\n\nexport default () => {\n const settings = live<DeckSettingsProps>({\n showHints: false,\n enableDeck: false,\n enableStatusbar: false,\n enableNativeRedirect: false,\n newPlankPositioning: 'start',\n overscroll: 'none',\n });\n\n return contributes(Capabilities.Settings, {\n prefix: meta.id,\n schema: DeckSettingsSchema,\n value: settings,\n });\n};\n"],
|
|
5
|
-
"mappings": ";;;;;;;;AAIA,SAASA,cAAcC,mBAAmB;AAC1C,SAASC,YAAY;AAKrB,IAAA,oBAAe,MAAA;AACb,QAAMC,WAAWC,KAAwB;IACvCC,WAAW;IACXC,YAAY;IACZC,iBAAiB;IACjBC,sBAAsB;IACtBC,qBAAqB;IACrBC,YAAY;
|
|
6
|
-
"names": ["Capabilities", "contributes", "live", "settings", "live", "showHints", "enableDeck", "enableStatusbar", "enableNativeRedirect", "newPlankPositioning", "overscroll", "contributes", "Capabilities", "Settings", "prefix", "meta", "id", "schema", "DeckSettingsSchema", "value"]
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport { Capabilities, contributes } from '@dxos/app-framework';\nimport { live } from '@dxos/live-object';\n\nimport { meta } from '../meta';\nimport { type DeckSettingsProps, DeckSettingsSchema } from '../types';\n\nexport default () => {\n const settings = live<DeckSettingsProps>({\n showHints: false,\n enableDeck: false,\n enableStatusbar: false,\n enableNativeRedirect: false,\n newPlankPositioning: 'start',\n overscroll: 'none',\n encapsulatedPlanks: false,\n });\n\n return contributes(Capabilities.Settings, {\n prefix: meta.id,\n schema: DeckSettingsSchema,\n value: settings,\n });\n};\n"],
|
|
5
|
+
"mappings": ";;;;;;;;AAIA,SAASA,cAAcC,mBAAmB;AAC1C,SAASC,YAAY;AAKrB,IAAA,oBAAe,MAAA;AACb,QAAMC,WAAWC,KAAwB;IACvCC,WAAW;IACXC,YAAY;IACZC,iBAAiB;IACjBC,sBAAsB;IACtBC,qBAAqB;IACrBC,YAAY;IACZC,oBAAoB;EACtB,CAAA;AAEA,SAAOC,YAAYC,aAAaC,UAAU;IACxCC,QAAQC,KAAKC;IACbC,QAAQC;IACRC,OAAOjB;EACT,CAAA;AACF;",
|
|
6
|
+
"names": ["Capabilities", "contributes", "live", "settings", "live", "showHints", "enableDeck", "enableStatusbar", "enableNativeRedirect", "newPlankPositioning", "overscroll", "encapsulatedPlanks", "contributes", "Capabilities", "Settings", "prefix", "meta", "id", "schema", "DeckSettingsSchema", "value"]
|
|
7
7
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DeckStateFactory,
|
|
3
|
+
state_default
|
|
4
|
+
} from "./chunk-27I7DJUG.mjs";
|
|
5
|
+
import "./chunk-5KMJPIQC.mjs";
|
|
6
|
+
import "./chunk-F3VCCHVL.mjs";
|
|
7
|
+
import "./chunk-UXLU6CMW.mjs";
|
|
8
|
+
export {
|
|
9
|
+
DeckStateFactory,
|
|
10
|
+
state_default as default
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=state-QTVNH7N6.mjs.map
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DeckCapabilities
|
|
3
|
+
} from "./chunk-5KMJPIQC.mjs";
|
|
4
|
+
import "./chunk-UXLU6CMW.mjs";
|
|
5
|
+
|
|
6
|
+
// src/capabilities/toolkit.ts
|
|
7
|
+
import * as Tool from "@effect/ai/Tool";
|
|
8
|
+
import * as Toolkit from "@effect/ai/Toolkit";
|
|
9
|
+
import * as Effect from "effect/Effect";
|
|
10
|
+
import * as Schema from "effect/Schema";
|
|
11
|
+
import { Capabilities, LayoutAction, contributes, createIntent } from "@dxos/app-framework";
|
|
12
|
+
import { ArtifactId } from "@dxos/assistant";
|
|
13
|
+
import { trim } from "@dxos/util";
|
|
14
|
+
var Toolkit$ = Toolkit.make(Tool.make("open-item", {
|
|
15
|
+
description: trim`
|
|
16
|
+
Opens an item in the application.
|
|
17
|
+
`,
|
|
18
|
+
parameters: {
|
|
19
|
+
id: ArtifactId
|
|
20
|
+
},
|
|
21
|
+
success: Schema.Any,
|
|
22
|
+
failure: Schema.Never
|
|
23
|
+
}));
|
|
24
|
+
(function(DeckToolkit2) {
|
|
25
|
+
DeckToolkit2.Toolkit = Toolkit$;
|
|
26
|
+
DeckToolkit2.createLayer = (context) => Toolkit$.toLayer({
|
|
27
|
+
"open-item": ({ id }) => Effect.gen(function* () {
|
|
28
|
+
const state = context.getCapability(DeckCapabilities.DeckState);
|
|
29
|
+
const dxn = ArtifactId.toDXN(id, state.activeDeck);
|
|
30
|
+
const echoDxn = dxn.asEchoDXN();
|
|
31
|
+
if (!echoDxn) {
|
|
32
|
+
throw new Error(`Invalid object ID: ${id}`);
|
|
33
|
+
}
|
|
34
|
+
const { dispatch } = context.getCapability(Capabilities.IntentDispatcher);
|
|
35
|
+
yield* dispatch(createIntent(LayoutAction.Open, {
|
|
36
|
+
subject: [
|
|
37
|
+
`${echoDxn.spaceId}:${echoDxn.echoId}`
|
|
38
|
+
],
|
|
39
|
+
part: "main"
|
|
40
|
+
}));
|
|
41
|
+
}).pipe(Effect.orDie)
|
|
42
|
+
});
|
|
43
|
+
})(DeckToolkit || (DeckToolkit = {}));
|
|
44
|
+
var toolkit_default = ((context) => [
|
|
45
|
+
contributes(Capabilities.Toolkit, DeckToolkit.Toolkit),
|
|
46
|
+
contributes(Capabilities.ToolkitHandler, DeckToolkit.createLayer(context))
|
|
47
|
+
]);
|
|
48
|
+
var DeckToolkit;
|
|
49
|
+
export {
|
|
50
|
+
DeckToolkit,
|
|
51
|
+
toolkit_default as default
|
|
52
|
+
};
|
|
53
|
+
//# sourceMappingURL=toolkit-TM2Y6YL2.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/capabilities/toolkit.ts"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Tool from '@effect/ai/Tool';\nimport * as Toolkit from '@effect/ai/Toolkit';\nimport * as Effect from 'effect/Effect';\nimport * as Schema from 'effect/Schema';\n\nimport {\n Capabilities,\n type Capability,\n LayoutAction,\n type PluginContext,\n contributes,\n createIntent,\n} from '@dxos/app-framework';\nimport { ArtifactId } from '@dxos/assistant';\nimport { type SpaceId } from '@dxos/keys';\nimport { trim } from '@dxos/util';\n\nimport { DeckCapabilities } from './capabilities';\n\nconst Toolkit$ = Toolkit.make(\n Tool.make('open-item', {\n description: trim`\n Opens an item in the application.\n `,\n parameters: {\n id: ArtifactId,\n },\n success: Schema.Any,\n failure: Schema.Never,\n }),\n);\n\nexport namespace DeckToolkit {\n export const Toolkit = Toolkit$;\n\n export const createLayer = (context: PluginContext) =>\n Toolkit$.toLayer({\n 'open-item': ({ id }) =>\n Effect.gen(function* () {\n const state = context.getCapability(DeckCapabilities.DeckState);\n const dxn = ArtifactId.toDXN(id, state.activeDeck as SpaceId);\n\n // TODO(wittjosiah): Support other variants.\n const echoDxn = dxn.asEchoDXN();\n if (!echoDxn) {\n throw new Error(`Invalid object ID: ${id}`);\n }\n\n // TODO(wittjosiah): Get capabilities via layers.\n const { dispatch } = context.getCapability(Capabilities.IntentDispatcher);\n yield* dispatch(\n createIntent(LayoutAction.Open, {\n subject: [`${echoDxn.spaceId!}:${echoDxn.echoId}`],\n part: 'main',\n }),\n );\n }).pipe(Effect.orDie),\n });\n}\n\nexport default (context: PluginContext): Capability<any>[] => [\n contributes(Capabilities.Toolkit, DeckToolkit.Toolkit),\n contributes(Capabilities.ToolkitHandler, DeckToolkit.createLayer(context)),\n];\n"],
|
|
5
|
+
"mappings": ";;;;;;AAIA,YAAYA,UAAU;AACtB,YAAYC,aAAa;AACzB,YAAYC,YAAY;AACxB,YAAYC,YAAY;AAExB,SACEC,cAEAC,cAEAC,aACAC,oBACK;AACP,SAASC,kBAAkB;AAE3B,SAASC,YAAY;AAIrB,IAAMC,WAAmBC,aAClBA,UAAK,aAAa;EACrBC,aAAaC;;;EAGbC,YAAY;IACVC,IAAIC;EACN;EACAC,SAAgBC;EAChBC,SAAgBC;AAClB,CAAA,CAAA;UAGeC,cAAAA;eACFC,UAAUZ;eAEVa,cAAc,CAACC,YAC1Bd,SAASe,QAAQ;IACf,aAAa,CAAC,EAAEV,GAAE,MACTW,WAAI,aAAA;AACT,YAAMC,QAAQH,QAAQI,cAAcC,iBAAiBC,SAAS;AAC9D,YAAMC,MAAMf,WAAWgB,MAAMjB,IAAIY,MAAMM,UAAU;AAGjD,YAAMC,UAAUH,IAAII,UAAS;AAC7B,UAAI,CAACD,SAAS;AACZ,cAAM,IAAIE,MAAM,sBAAsBrB,EAAAA,EAAI;MAC5C;AAGA,YAAM,EAAEsB,SAAQ,IAAKb,QAAQI,cAAcU,aAAaC,gBAAgB;AACxE,aAAOF,SACLG,aAAaC,aAAaC,MAAM;QAC9BC,SAAS;UAAC,GAAGT,QAAQU,OAAO,IAAKV,QAAQW,MAAM;;QAC/CC,MAAM;MACR,CAAA,CAAA;IAEJ,CAAA,EAAGC,KAAYC,YAAK;EACxB,CAAA;AACJ,GA1BiB3B,gBAAAA,cAAAA,CAAAA,EAAAA;AA4BjB,IAAA,mBAAe,CAACG,YAA8C;EAC5DyB,YAAYX,aAAahB,SAASD,YAAYC,OAAO;EACrD2B,YAAYX,aAAaY,gBAAgB7B,YAAYE,YAAYC,OAAAA,CAAAA;;;",
|
|
6
|
+
"names": ["Tool", "Toolkit", "Effect", "Schema", "Capabilities", "LayoutAction", "contributes", "createIntent", "ArtifactId", "trim", "Toolkit$", "make", "description", "trim", "parameters", "id", "ArtifactId", "success", "Any", "failure", "Never", "DeckToolkit", "Toolkit", "createLayer", "context", "toLayer", "gen", "state", "getCapability", "DeckCapabilities", "DeckState", "dxn", "toDXN", "activeDeck", "echoDxn", "asEchoDXN", "Error", "dispatch", "Capabilities", "IntentDispatcher", "createIntent", "LayoutAction", "Open", "subject", "spaceId", "echoId", "part", "pipe", "orDie", "contributes", "ToolkitHandler"]
|
|
7
|
+
}
|
|
@@ -12,8 +12,8 @@ import {
|
|
|
12
12
|
defaultDeck,
|
|
13
13
|
getMode,
|
|
14
14
|
isLayoutMode
|
|
15
|
-
} from "../chunk-
|
|
16
|
-
import "../chunk-
|
|
15
|
+
} from "../chunk-F3VCCHVL.mjs";
|
|
16
|
+
import "../chunk-UXLU6CMW.mjs";
|
|
17
17
|
export {
|
|
18
18
|
ATTENDABLE_PATH_SEPARATOR,
|
|
19
19
|
DECK_COMPANION_TYPE,
|