@floegence/floe-webapp-core 0.35.22 → 0.35.24

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.
@@ -1,4 +1,7 @@
1
- const s = {
1
+ function r(...p) {
2
+ return () => Promise.all(p.map((t) => t()));
3
+ }
4
+ const n = {
2
5
  "": "plaintext",
3
6
  text: "plaintext",
4
7
  plaintext: "plaintext",
@@ -43,14 +46,29 @@ const s = {
43
46
  vue: "plaintext",
44
47
  svelte: "plaintext",
45
48
  groovy: "plaintext"
46
- }, n = {
49
+ }, a = {
47
50
  javascript: () => import("monaco-editor/esm/vs/basic-languages/javascript/javascript.contribution.js"),
48
51
  typescript: () => import("monaco-editor/esm/vs/basic-languages/typescript/typescript.contribution.js"),
49
52
  json: () => import("monaco-editor/esm/vs/language/json/monaco.contribution.js"),
50
- html: () => import("monaco-editor/esm/vs/language/html/monaco.contribution.js"),
51
- css: () => import("monaco-editor/esm/vs/language/css/monaco.contribution.js"),
52
- scss: () => import("monaco-editor/esm/vs/language/css/monaco.contribution.js"),
53
- less: () => import("monaco-editor/esm/vs/language/css/monaco.contribution.js"),
53
+ // Monaco's HTML/CSS language-service contributions do not register standalone
54
+ // tokenizers by themselves, so editable syntax coloring must load the paired
55
+ // basic-language contribution alongside the rich language-service runtime.
56
+ html: r(
57
+ () => import("monaco-editor/esm/vs/basic-languages/html/html.contribution.js"),
58
+ () => import("monaco-editor/esm/vs/language/html/monaco.contribution.js")
59
+ ),
60
+ css: r(
61
+ () => import("monaco-editor/esm/vs/basic-languages/css/css.contribution.js"),
62
+ () => import("monaco-editor/esm/vs/language/css/monaco.contribution.js")
63
+ ),
64
+ scss: r(
65
+ () => import("monaco-editor/esm/vs/basic-languages/scss/scss.contribution.js"),
66
+ () => import("monaco-editor/esm/vs/language/css/monaco.contribution.js")
67
+ ),
68
+ less: r(
69
+ () => import("monaco-editor/esm/vs/basic-languages/less/less.contribution.js"),
70
+ () => import("monaco-editor/esm/vs/language/css/monaco.contribution.js")
71
+ ),
54
72
  markdown: () => import("monaco-editor/esm/vs/basic-languages/markdown/markdown.contribution.js"),
55
73
  yaml: () => import("monaco-editor/esm/vs/basic-languages/yaml/yaml.contribution.js"),
56
74
  ini: () => import("monaco-editor/esm/vs/basic-languages/ini/ini.contribution.js"),
@@ -78,33 +96,33 @@ const s = {
78
96
  bat: () => import("monaco-editor/esm/vs/basic-languages/bat/bat.contribution.js"),
79
97
  powershell: () => import("monaco-editor/esm/vs/basic-languages/powershell/powershell.contribution.js")
80
98
  }, e = /* @__PURE__ */ new Map();
81
- function o(p) {
99
+ function c(p) {
82
100
  const t = String(p ?? "").trim().toLowerCase();
83
- return (s[t] ?? t) || "plaintext";
101
+ return (n[t] ?? t) || "plaintext";
84
102
  }
85
- function a(p, t) {
103
+ function l(p, t) {
86
104
  if (t)
87
105
  return () => {
88
106
  const i = e.get(p);
89
107
  if (i) return i;
90
- const r = t().then(() => {
91
- }).catch((c) => {
92
- throw e.delete(p), c;
108
+ const o = t().then(() => {
109
+ }).catch((s) => {
110
+ throw e.delete(p), s;
93
111
  });
94
- return e.set(p, r), r;
112
+ return e.set(p, o), o;
95
113
  };
96
114
  }
97
- function l(p) {
98
- const t = o(p), i = a(t, n[t]);
115
+ function m(p) {
116
+ const t = c(p), i = l(t, a[t]);
99
117
  return {
100
118
  id: t,
101
119
  load: i
102
120
  };
103
121
  }
104
- function m(p) {
105
- return l(p).id !== "plaintext" || o(p) === "plaintext";
122
+ function h(p) {
123
+ return m(p).id !== "plaintext" || c(p) === "plaintext";
106
124
  }
107
125
  export {
108
- m as isCodeEditorLanguageSupported,
109
- l as resolveCodeEditorLanguageSpec
126
+ h as isCodeEditorLanguageSupported,
127
+ m as resolveCodeEditorLanguageSpec
110
128
  };
@@ -1,7 +1,7 @@
1
1
  /**
2
- * Floating preview that follows the cursor during drag operations.
2
+ * Floating preview that follows the cursor during file-browser drag operations.
3
3
  * Shows dragged items with a count badge for multiple items.
4
4
  * Uses Motion library for smooth animations.
5
5
  * Includes fly-to-target animation when dropping onto a valid target.
6
6
  */
7
- export declare function DragPreview(): import("solid-js").JSX.Element;
7
+ export declare function FileBrowserDragPreview(): import("solid-js").JSX.Element;
@@ -1,15 +1,15 @@
1
- import { createComponent as o, Portal as N, insert as a, effect as u, className as $, memo as V, template as l, setAttribute as A } from "solid-js/web";
2
- import { createSignal as F, createEffect as j, createMemo as d, Show as m, For as B } from "solid-js";
1
+ import { createComponent as o, Portal as N, insert as l, effect as u, className as $, memo as B, template as a, setAttribute as A } from "solid-js/web";
2
+ import { createSignal as F, createEffect as V, createMemo as d, Show as m, For as j } from "solid-js";
3
3
  import { Presence as U, Motion as X } from "../../node_modules/.pnpm/solid-motionone@1.0.4_solid-js@1.9.11/node_modules/solid-motionone/dist/index.js";
4
4
  import { cn as f } from "../../utils/cn.js";
5
5
  import { useFileBrowserDrag as G } from "../../context/FileBrowserDragContext.js";
6
6
  import { FileItemIcon as W } from "./FileIcons.js";
7
- var Y = /* @__PURE__ */ l('<div class="text-[10px] text-muted-foreground pl-6">and <!> more...'), q = /* @__PURE__ */ l("<span>Drop to move"), y = /* @__PURE__ */ l("<div>"), H = /* @__PURE__ */ l('<div class="flex items-center gap-2.5 text-xs text-foreground"><span class="flex-shrink-0 w-4 h-4"></span><span class="truncate font-medium">'), J = /* @__PURE__ */ l("<span>Cannot drop here"), K = /* @__PURE__ */ l('<svg xmlns=http://www.w3.org/2000/svg viewBox="0 0 24 24"fill=none stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round><polyline points="20 6 9 17 4 12">'), L = /* @__PURE__ */ l('<svg xmlns=http://www.w3.org/2000/svg viewBox="0 0 24 24"fill=none stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round><line x1=18 y1=6 x2=6 y2=18></line><line x1=6 y1=6 x2=18 y2=18>');
7
+ var Y = /* @__PURE__ */ a('<div class="text-[10px] text-muted-foreground pl-6">and <!> more...'), q = /* @__PURE__ */ a("<span>Drop to move"), y = /* @__PURE__ */ a("<div>"), H = /* @__PURE__ */ a('<div class="flex items-center gap-2.5 text-xs text-foreground"><span class="flex-shrink-0 w-4 h-4"></span><span class="truncate font-medium">'), J = /* @__PURE__ */ a("<span>Cannot drop here"), K = /* @__PURE__ */ a('<svg xmlns=http://www.w3.org/2000/svg viewBox="0 0 24 24"fill=none stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round><polyline points="20 6 9 17 4 12">'), L = /* @__PURE__ */ a('<svg xmlns=http://www.w3.org/2000/svg viewBox="0 0 24 24"fill=none stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round><line x1=18 y1=6 x2=6 y2=18></line><line x1=6 y1=6 x2=18 y2=18>');
8
8
  const x = 3, P = 4, T = 4, Q = 0.2;
9
- function at() {
9
+ function lt() {
10
10
  const g = G(), n = () => g?.dragState(), S = () => n()?.isDragging ?? !1, C = () => n()?.isDragEnding ?? !1, [c, h] = F(null), [s, w] = F(!1);
11
11
  let _ = !1;
12
- j(() => {
12
+ V(() => {
13
13
  const t = S(), e = C();
14
14
  if (t && !e && !_ && (h(null), w(!1)), e && !_) {
15
15
  const r = n();
@@ -57,7 +57,7 @@ function at() {
57
57
  get children() {
58
58
  return o(m, {
59
59
  get when() {
60
- return V(() => !!R())() && E().length > 0;
60
+ return B(() => !!R())() && E().length > 0;
61
61
  },
62
62
  get children() {
63
63
  return o(N, {
@@ -91,32 +91,32 @@ function at() {
91
91
  get children() {
92
92
  return [(() => {
93
93
  var t = y();
94
- return a(t, o(B, {
94
+ return l(t, o(j, {
95
95
  get each() {
96
96
  return E();
97
97
  },
98
98
  children: (e) => (() => {
99
99
  var r = H(), i = r.firstChild, D = i.nextSibling;
100
- return a(i, o(W, {
100
+ return l(i, o(W, {
101
101
  item: e,
102
102
  class: "w-4 h-4"
103
- })), a(D, () => e.name), r;
103
+ })), l(D, () => e.name), r;
104
104
  })()
105
- }), null), a(t, o(m, {
105
+ }), null), l(t, o(m, {
106
106
  get when() {
107
107
  return k() > 0;
108
108
  },
109
109
  get children() {
110
110
  var e = Y(), r = e.firstChild, i = r.nextSibling;
111
- return i.nextSibling, a(e, k, i), e;
111
+ return i.nextSibling, l(e, k, i), e;
112
112
  }
113
- }), null), a(t, o(m, {
113
+ }), null), l(t, o(m, {
114
114
  get when() {
115
115
  return I();
116
116
  },
117
117
  get children() {
118
118
  var e = y();
119
- return a(e, o(m, {
119
+ return l(e, o(m, {
120
120
  get when() {
121
121
  return p();
122
122
  },
@@ -152,7 +152,7 @@ function at() {
152
152
  },
153
153
  get children() {
154
154
  var t = y();
155
- return a(t, v), u(() => $(t, f(
155
+ return l(t, v), u(() => $(t, f(
156
156
  "absolute -top-2 -right-2",
157
157
  "min-w-[20px] h-5 px-1.5 rounded-full",
158
158
  "bg-foreground text-background",
@@ -186,5 +186,5 @@ function tt(g) {
186
186
  })();
187
187
  }
188
188
  export {
189
- at as DragPreview
189
+ lt as FileBrowserDragPreview
190
190
  };
@@ -1,4 +1,4 @@
1
- import { createComponent as n, insert as i, use as k, memo as E, effect as K, className as L, template as I, delegateEvents as B } from "solid-js/web";
1
+ import { createComponent as n, insert as i, use as k, memo as E, effect as B, className as K, template as I, delegateEvents as L } from "solid-js/web";
2
2
  import { createSignal as O, onMount as V, onCleanup as H, createEffect as N, Show as c } from "solid-js";
3
3
  import { cn as T } from "../../utils/cn.js";
4
4
  import { useLayout as j } from "../../context/LayoutContext.js";
@@ -11,9 +11,9 @@ import { FileListView as Y } from "./FileListView.js";
11
11
  import { FileGridView as Z } from "./FileGridView.js";
12
12
  import { FileBrowserToolbar as p } from "./FileBrowserToolbar.js";
13
13
  import { FileContextMenu as ee } from "./FileContextMenu.js";
14
- import { DragPreview as te } from "./DragPreview.js";
14
+ import { FileBrowserDragPreview as te } from "./DragPreview.js";
15
15
  var re = /* @__PURE__ */ I('<div class="border-b border-border">'), ne = /* @__PURE__ */ I('<div><div class="flex flex-1 min-h-0 relative"><div class="flex-1 min-w-0 flex flex-col"><div class="flex-1 min-h-0"></div><div class="flex items-center justify-between px-3 py-1 border-t border-border text-[10px] text-muted-foreground"><span> items</span><span class="truncate max-w-[200px]">');
16
- function we(e) {
16
+ function Ce(e) {
17
17
  return n(q, {
18
18
  get files() {
19
19
  return e.files;
@@ -101,7 +101,7 @@ function we(e) {
101
101
  }
102
102
  function ie(e) {
103
103
  const r = J(), M = j(), o = G(), h = () => M.isMobile(), [v, b] = O(null), D = () => v() ?? r.sidebarWidth(), y = () => e.sidebarResizable ?? !0, a = () => (e.enableDragDrop ?? !0) && !!o, d = () => e.instanceId ?? `filebrowser-${Math.random().toString(36).slice(2, 9)}`;
104
- let C, w = null, x = null;
104
+ let w, C = null, x = null;
105
105
  V(() => {
106
106
  if (!o || !a()) return;
107
107
  const t = {
@@ -109,7 +109,7 @@ function ie(e) {
109
109
  currentPath: r.currentPath,
110
110
  files: r.files,
111
111
  onDragMove: e.onDragMove,
112
- getScrollContainer: () => w,
112
+ getScrollContainer: () => C,
113
113
  getSidebarScrollContainer: () => x,
114
114
  optimisticRemove: r.optimisticRemove,
115
115
  optimisticInsert: r.optimisticInsert
@@ -128,7 +128,7 @@ function ie(e) {
128
128
  !m && t && e.hideSidebarOnMobile !== !1 && !r.sidebarCollapsed() && r.toggleSidebar(), m = t;
129
129
  });
130
130
  const R = (t) => {
131
- (t.metaKey || t.ctrlKey) && t.key.toLowerCase() === "f" && (t.preventDefault(), r.setFilterActive(!0), Q(() => C?.focus()));
131
+ (t.metaKey || t.ctrlKey) && t.key.toLowerCase() === "f" && (t.preventDefault(), r.setFilterActive(!0), Q(() => w?.focus()));
132
132
  }, P = () => !r.sidebarCollapsed() || !h(), $ = () => {
133
133
  b(r.sidebarWidth());
134
134
  }, W = (t) => {
@@ -138,7 +138,7 @@ function ie(e) {
138
138
  t !== null && (r.setSidebarWidth(t), b(null));
139
139
  };
140
140
  return (() => {
141
- var t = ne(), s = t.firstChild, f = s.firstChild, g = f.firstChild, A = g.nextSibling, u = A.firstChild, F = u.firstChild, _ = u.nextSibling;
141
+ var t = ne(), s = t.firstChild, f = s.firstChild, g = f.firstChild, F = g.nextSibling, u = F.firstChild, A = u.firstChild, _ = u.nextSibling;
142
142
  return t.$$keydown = R, i(t, n(c, {
143
143
  get when() {
144
144
  return e.header;
@@ -182,12 +182,12 @@ function ie(e) {
182
182
  });
183
183
  }
184
184
  }), f), i(f, n(p, {
185
- filterInputRef: (l) => C = l,
185
+ filterInputRef: (l) => w = l,
186
186
  get endActions() {
187
187
  return e.toolbarEndActions;
188
188
  }
189
189
  }), g), k((l) => {
190
- w = l;
190
+ C = l;
191
191
  }, g), i(g, n(c, {
192
192
  get when() {
193
193
  return r.viewMode() === "list";
@@ -212,7 +212,7 @@ function ie(e) {
212
212
  }
213
213
  });
214
214
  }
215
- })), i(u, () => r.currentFiles().length, F), i(u, n(c, {
215
+ })), i(u, () => r.currentFiles().length, A), i(u, n(c, {
216
216
  get when() {
217
217
  return r.filterQueryApplied().trim();
218
218
  },
@@ -246,10 +246,10 @@ function ie(e) {
246
246
  get children() {
247
247
  return n(te, {});
248
248
  }
249
- }), null), K(() => L(t, T("flex flex-col h-full min-h-0 bg-background", "border border-border rounded-lg overflow-hidden", "shadow-sm", e.class))), t;
249
+ }), null), B(() => K(t, T("flex flex-col h-full min-h-0 bg-background", "border border-border rounded-lg overflow-hidden", "shadow-sm", e.class))), t;
250
250
  })();
251
251
  }
252
- B(["keydown"]);
252
+ L(["keydown"]);
253
253
  export {
254
- we as FileBrowser
254
+ Ce as FileBrowser
255
255
  };
@@ -6,5 +6,6 @@ export { FileGridView, type FileGridViewProps } from './FileGridView';
6
6
  export { FileContextMenu, type FileContextMenuProps, type BuiltinContextMenuAction, type HideItemsValue } from './FileContextMenu';
7
7
  export { Breadcrumb, type BreadcrumbProps } from './Breadcrumb';
8
8
  export { FileBrowserToolbar, type FileBrowserToolbarProps } from './FileBrowserToolbar';
9
+ export { FileBrowserDragPreview } from './DragPreview';
9
10
  export { FolderIcon, FolderOpenIcon, FileIcon, CodeFileIcon, JavaScriptFileIcon, TypeScriptFileIcon, ShellScriptFileIcon, ImageFileIcon, DocumentFileIcon, ConfigFileIcon, StyleFileIcon, FileItemIcon, getFileIcon, resolveFileItemIcon, } from './FileIcons';
10
11
  export type { FileItem, FileItemIconOverride, ViewMode, SortField, SortDirection, SortConfig, FileListColumnRatios, FileBrowserContextValue, ContextMenuActionType, ContextMenuItem, ContextMenuEvent, ContextMenuCallbacks, OptimisticUpdateType, OptimisticRemove, OptimisticUpdate, OptimisticInsert, OptimisticOperation, ScrollPosition, } from './types';
@@ -1,34 +1,36 @@
1
1
  import { Breadcrumb as r } from "./components/file-browser/Breadcrumb.js";
2
- import { CodeFileIcon as l, ConfigFileIcon as t, DocumentFileIcon as F, FileIcon as c, FileItemIcon as n, FolderIcon as I, FolderOpenIcon as m, ImageFileIcon as p, JavaScriptFileIcon as f, ShellScriptFileIcon as x, StyleFileIcon as s, TypeScriptFileIcon as d, getFileIcon as w, resolveFileItemIcon as a } from "./components/file-browser/FileIcons.js";
2
+ import { CodeFileIcon as l, ConfigFileIcon as t, DocumentFileIcon as F, FileIcon as c, FileItemIcon as n, FolderIcon as I, FolderOpenIcon as m, ImageFileIcon as p, JavaScriptFileIcon as f, ShellScriptFileIcon as x, StyleFileIcon as s, TypeScriptFileIcon as w, getFileIcon as a, resolveFileItemIcon as d } from "./components/file-browser/FileIcons.js";
3
3
  import { DirectoryTree as S } from "./components/file-browser/DirectoryTree.js";
4
- import { FileBrowser as g } from "./components/file-browser/FileBrowser.js";
5
- import { FileBrowserProvider as y, useFileBrowser as C } from "./components/file-browser/FileBrowserContext.js";
6
- import { FileBrowserToolbar as b } from "./components/file-browser/FileBrowserToolbar.js";
7
- import { FileContextMenu as V } from "./components/file-browser/FileContextMenu.js";
8
- import { FileGridView as G } from "./components/file-browser/FileGridView.js";
9
- import { FileListView as L } from "./components/file-browser/FileListView.js";
4
+ import { FileBrowser as u } from "./components/file-browser/FileBrowser.js";
5
+ import { FileBrowserDragPreview as y } from "./components/file-browser/DragPreview.js";
6
+ import { FileBrowserProvider as D, useFileBrowser as T } from "./components/file-browser/FileBrowserContext.js";
7
+ import { FileBrowserToolbar as P } from "./components/file-browser/FileBrowserToolbar.js";
8
+ import { FileContextMenu as h } from "./components/file-browser/FileContextMenu.js";
9
+ import { FileGridView as J } from "./components/file-browser/FileGridView.js";
10
+ import { FileListView as M } from "./components/file-browser/FileListView.js";
10
11
  export {
11
12
  r as Breadcrumb,
12
13
  l as CodeFileIcon,
13
14
  t as ConfigFileIcon,
14
15
  S as DirectoryTree,
15
16
  F as DocumentFileIcon,
16
- g as FileBrowser,
17
- y as FileBrowserProvider,
18
- b as FileBrowserToolbar,
19
- V as FileContextMenu,
20
- G as FileGridView,
17
+ u as FileBrowser,
18
+ y as FileBrowserDragPreview,
19
+ D as FileBrowserProvider,
20
+ P as FileBrowserToolbar,
21
+ h as FileContextMenu,
22
+ J as FileGridView,
21
23
  c as FileIcon,
22
24
  n as FileItemIcon,
23
- L as FileListView,
25
+ M as FileListView,
24
26
  I as FolderIcon,
25
27
  m as FolderOpenIcon,
26
28
  p as ImageFileIcon,
27
29
  f as JavaScriptFileIcon,
28
30
  x as ShellScriptFileIcon,
29
31
  s as StyleFileIcon,
30
- d as TypeScriptFileIcon,
31
- w as getFileIcon,
32
- a as resolveFileItemIcon,
33
- C as useFileBrowser
32
+ w as TypeScriptFileIcon,
33
+ a as getFileIcon,
34
+ d as resolveFileItemIcon,
35
+ T as useFileBrowser
34
36
  };
package/dist/full.js CHANGED
@@ -1,12 +1,12 @@
1
1
  import { FloeProvider as r } from "./app/FloeProvider.js";
2
2
  import { applyTheme as i, builtInThemes as n, getSystemTheme as a, mergeThemeTokenMaps as m, resolveThemeTokenOverrides as c, resolveThemeTokens as l, syncThemeTokenOverrides as p } from "./styles/themes/index.js";
3
3
  import { floeColorTokenCategories as f, floeDesignTokens as d, floeFontFamilyTokens as x, floeMotionTokens as g, floeRadiusTokens as I, floeSharedCssVariables as u, floeSpacingTokens as C, floeThemeColorVariables as S, floeTypographyTokens as k, getFloeColorTokenValue as h } from "./styles/tokens.js";
4
- import { Activity as F, ActivityIcon as P, AlertCircle as y, AlertTriangle as v, ArchiveIcon as B, ArrowDown as D, ArrowLeft as M, ArrowRight as b, ArrowRightLeft as w, ArrowUp as L, AtSign as W, AwardIcon as A, BarChart as R, BatteryIcon as E, Bell as G, BellIcon as H, Bookmark as O, BookmarkIcon as V, Bot as U, BotIcon as N, BugIcon as _, Calendar as z, CalendarIcon as K, Camera as Q, CameraIcon as Z, ChartIcon as X, Check as q, CheckCircle as J, CheckIcon as j, ChevronDown as Y, ChevronLeft as $, ChevronRight as ee, ChevronUp as oe, ChevronsUpDown as re, Clock as te, ClockIcon as ie, CloseIcon as ne, Cloud as ae, CloudIcon as me, Code as ce, CodeIcon as le, CompassIcon as pe, Copy as se, CopyCheck as fe, CopyCheckIcon as de, CopyIcon as xe, Cpu as ge, CreditCardIcon as Ie, Database as ue, DatabaseIcon as Ce, DollarIcon as Se, Download as ke, DownloadIcon as he, EditIcon as Te, ErrorIcon as Fe, ExternalLink as Pe, Eye as ye, EyeIcon as ve, EyeOff as Be, FileCode as De, FilePlus as Me, FilePlusIcon as be, FileText as we, Files as Le, Filter as We, FilterIcon as Ae, FireIcon as Re, Folder as Ee, FolderOpen as Ge, FolderPlus as He, FolderPlusIcon as Oe, GiftIcon as Ve, GitBranch as Ue, GitBranchIcon as Ne, Globe as _e, GlobeIcon as ze, Grid as Ke, Grid3x3 as Qe, GripVertical as Ze, Hash as Xe, HeadphonesIcon as qe, Heart as Je, HeartIcon as je, HelpIcon as Ye, Highlighter as $e, History as eo, Home as oo, HomeIcon as ro, Image as to, ImageIcon as io, Info as no, InfoIcon as ao, Key as mo, KeyIcon as co, Layers as lo, LayersIcon as po, LayoutDashboard as so, Link as fo, LinkIcon as xo, Loader2 as go, LoadingIcon as Io, Lock as uo, LockIcon as Co, MagicIcon as So, Mail as ko, MailIcon as ho, MapPinIcon as To, Maximize as Fo, Menu as Po, MessageIcon as yo, MessageSquare as vo, Mic as Bo, MicIcon as Do, MicOff as Mo, Minus as bo, MinusIcon as wo, Moon as Lo, MoonIcon as Wo, MoreHorizontal as Ao, MoreVertical as Ro, MuteIcon as Eo, Package as Go, PackageIcon as Ho, Paperclip as Oo, Paste as Vo, PasteIcon as Uo, Pause as No, PauseIcon as _o, Pencil as zo, Phone as Ko, PieChart as Qo, Pin as Zo, PinIcon as Xo, Play as qo, PlayIcon as Jo, Plus as jo, PlusIcon as Yo, PowerIcon as $o, PrinterIcon as er, Quote as or, Refresh as rr, RefreshIcon as tr, Restore as ir, RocketIcon as nr, Save as ar, SaveIcon as mr, Search as cr, SearchIcon as lr, Send as pr, SendIcon as sr, Settings as fr, SettingsIcon as dr, ShareIcon as xr, Shield as gr, ShieldCheck as Ir, ShieldIcon as ur, SparkleIcon as Cr, Sparkles as Sr, Star as kr, StarIcon as hr, Stop as Tr, SuccessIcon as Fr, Sun as Pr, SunIcon as yr, Tag as vr, TagIcon as Br, TargetIcon as Dr, Terminal as Mr, TerminalIcon as br, ThumbsDownIcon as wr, ThumbsUpIcon as Lr, Timer as Wr, Trash as Ar, TrashIcon as Rr, TrendingDown as Er, TrendingUp as Gr, Unlock as Hr, Upload as Or, UploadIcon as Vr, User as Ur, UserIcon as Nr, Video as _r, VideoIcon as zr, Volume as Kr, VolumeIcon as Qr, VolumeOff as Zr, Wand as Xr, WarningIcon as qr, WifiIcon as Jr, WifiOffIcon as jr, Workflow as Yr, X as $r, XCircle as et, Zap as ot, ZapIcon as rt } from "./components/icons/index.js";
4
+ import { Activity as F, ActivityIcon as P, AlertCircle as y, AlertTriangle as v, ArchiveIcon as B, ArrowDown as D, ArrowLeft as M, ArrowRight as w, ArrowRightLeft as b, ArrowUp as L, AtSign as W, AwardIcon as A, BarChart as R, BatteryIcon as E, Bell as G, BellIcon as H, Bookmark as O, BookmarkIcon as V, Bot as U, BotIcon as N, BugIcon as _, Calendar as z, CalendarIcon as K, Camera as Q, CameraIcon as Z, ChartIcon as X, Check as q, CheckCircle as J, CheckIcon as j, ChevronDown as Y, ChevronLeft as $, ChevronRight as ee, ChevronUp as oe, ChevronsUpDown as re, Clock as te, ClockIcon as ie, CloseIcon as ne, Cloud as ae, CloudIcon as me, Code as ce, CodeIcon as le, CompassIcon as pe, Copy as se, CopyCheck as fe, CopyCheckIcon as de, CopyIcon as xe, Cpu as ge, CreditCardIcon as Ie, Database as ue, DatabaseIcon as Ce, DollarIcon as Se, Download as ke, DownloadIcon as he, EditIcon as Te, ErrorIcon as Fe, ExternalLink as Pe, Eye as ye, EyeIcon as ve, EyeOff as Be, FileCode as De, FilePlus as Me, FilePlusIcon as we, FileText as be, Files as Le, Filter as We, FilterIcon as Ae, FireIcon as Re, Folder as Ee, FolderOpen as Ge, FolderPlus as He, FolderPlusIcon as Oe, GiftIcon as Ve, GitBranch as Ue, GitBranchIcon as Ne, Globe as _e, GlobeIcon as ze, Grid as Ke, Grid3x3 as Qe, GripVertical as Ze, Hash as Xe, HeadphonesIcon as qe, Heart as Je, HeartIcon as je, HelpIcon as Ye, Highlighter as $e, History as eo, Home as oo, HomeIcon as ro, Image as to, ImageIcon as io, Info as no, InfoIcon as ao, Key as mo, KeyIcon as co, Layers as lo, LayersIcon as po, LayoutDashboard as so, Link as fo, LinkIcon as xo, Loader2 as go, LoadingIcon as Io, Lock as uo, LockIcon as Co, MagicIcon as So, Mail as ko, MailIcon as ho, MapPinIcon as To, Maximize as Fo, Menu as Po, MessageIcon as yo, MessageSquare as vo, Mic as Bo, MicIcon as Do, MicOff as Mo, Minus as wo, MinusIcon as bo, Moon as Lo, MoonIcon as Wo, MoreHorizontal as Ao, MoreVertical as Ro, MuteIcon as Eo, Package as Go, PackageIcon as Ho, Paperclip as Oo, Paste as Vo, PasteIcon as Uo, Pause as No, PauseIcon as _o, Pencil as zo, Phone as Ko, PieChart as Qo, Pin as Zo, PinIcon as Xo, Play as qo, PlayIcon as Jo, Plus as jo, PlusIcon as Yo, PowerIcon as $o, PrinterIcon as er, Quote as or, Refresh as rr, RefreshIcon as tr, Restore as ir, RocketIcon as nr, Save as ar, SaveIcon as mr, Search as cr, SearchIcon as lr, Send as pr, SendIcon as sr, Settings as fr, SettingsIcon as dr, ShareIcon as xr, Shield as gr, ShieldCheck as Ir, ShieldIcon as ur, SparkleIcon as Cr, Sparkles as Sr, Star as kr, StarIcon as hr, Stop as Tr, SuccessIcon as Fr, Sun as Pr, SunIcon as yr, Tag as vr, TagIcon as Br, TargetIcon as Dr, Terminal as Mr, TerminalIcon as wr, ThumbsDownIcon as br, ThumbsUpIcon as Lr, Timer as Wr, Trash as Ar, TrashIcon as Rr, TrendingDown as Er, TrendingUp as Gr, Unlock as Hr, Upload as Or, UploadIcon as Vr, User as Ur, UserIcon as Nr, Video as _r, VideoIcon as zr, Volume as Kr, VolumeIcon as Qr, VolumeOff as Zr, Wand as Xr, WarningIcon as qr, WifiIcon as Jr, WifiOffIcon as jr, Workflow as Yr, X as $r, XCircle as et, Zap as ot, ZapIcon as rt } from "./components/icons/index.js";
5
5
  import { DEFAULT_TERMINAL_WORKSPACE_PROFILE as it, normalizeTerminalWorkspaceProfile as nt } from "./terminal/workspaceProfile.js";
6
6
  import { clampTerminalCursor as mt, createTerminalEditorState as ct, deleteTerminalTextBackward as lt, insertTerminalText as pt, moveTerminalCursor as st, navigateTerminalHistory as ft } from "./terminal/editorModel.js";
7
7
  import { applyTerminalSessionSuggestion as xt, createTerminalSessionState as gt, dispatchTerminalSessionKey as It, getTerminalPromptPreview as ut, getTerminalSessionSuggestions as Ct, setTerminalSessionInputValue as St, submitTerminalSession as kt } from "./terminal/sessionModel.js";
8
8
  import { runTerminalMockCommand as Tt } from "./terminal/mockRuntime.js";
9
- import { DEFAULT_TERMINAL_SUGGESTION_PROVIDERS as Pt, applyTerminalSuggestion as yt, autocompleteTerminalInput as vt, createTerminalFullLineSuggestion as Bt, createTerminalTokenSuggestion as Dt, getTerminalSuggestions as Mt, matchesTerminalSuggestionPrefix as bt, parseTerminalSuggestionContext as wt, terminalCommandTokenSuggestionProvider as Lt, terminalHistorySuggestionProvider as Wt, terminalPathSuggestionProvider as At, terminalRootSuggestionProvider as Rt, terminalSnippetSuggestionProvider as Et } from "./terminal/suggestionEngine.js";
9
+ import { DEFAULT_TERMINAL_SUGGESTION_PROVIDERS as Pt, applyTerminalSuggestion as yt, autocompleteTerminalInput as vt, createTerminalFullLineSuggestion as Bt, createTerminalTokenSuggestion as Dt, getTerminalSuggestions as Mt, matchesTerminalSuggestionPrefix as wt, parseTerminalSuggestionContext as bt, terminalCommandTokenSuggestionProvider as Lt, terminalHistorySuggestionProvider as Wt, terminalPathSuggestionProvider as At, terminalRootSuggestionProvider as Rt, terminalSnippetSuggestionProvider as Et } from "./terminal/suggestionEngine.js";
10
10
  import { ActivityAppsMain as Ht } from "./app/ActivityAppsMain.js";
11
11
  import { ActivityBar as Vt } from "./components/layout/ActivityBar.js";
12
12
  import { AffixInput as Nt, Input as _t, NumberInput as zt, Textarea as Kt } from "./components/ui/Input.js";
@@ -20,7 +20,7 @@ import { Button as ki } from "./components/ui/Button.js";
20
20
  import { ChatContainer as Ti } from "./components/chat/ChatContainer.js";
21
21
  import { ChatInput as Pi } from "./components/chat/input/ChatInput.js";
22
22
  import { ChatProvider as vi, useChatContext as Bi } from "./components/chat/ChatProvider.js";
23
- import { Checkbox as Mi, CheckboxGroup as bi, CheckboxList as wi } from "./components/ui/Checkbox.js";
23
+ import { Checkbox as Mi, CheckboxGroup as wi, CheckboxList as bi } from "./components/ui/Checkbox.js";
24
24
  import { ChecklistBlock as Wi } from "./components/chat/blocks/ChecklistBlock.js";
25
25
  import { CircularProgress as Ri, LinearProgress as Ei, SegmentedProgress as Gi, StepsProgress as Hi } from "./components/ui/Progress.js";
26
26
  import { CodeBlock as Vi } from "./components/chat/blocks/CodeBlock.js";
@@ -32,7 +32,7 @@ import { ComponentRegistryProvider as fn, createComponentRegistry as dn, hasComp
32
32
  import { ConfirmDialog as Sn, Dialog as kn } from "./components/ui/Dialog.js";
33
33
  import { ConnectionStatus as Tn } from "./components/chat/status/ConnectionStatus.js";
34
34
  import { DECK_GRID_CONFIG as Pn, DeckGrid as yn, getGridConfigFromElement as vn } from "./components/deck/DeckGrid.js";
35
- import { DEFAULT_FLOE_CONFIG as Dn, FloeConfigProvider as Mn, useFloeConfig as bn, useResolvedFloeConfig as wn } from "./context/FloeConfigContext.js";
35
+ import { DEFAULT_FLOE_CONFIG as Dn, FloeConfigProvider as Mn, useFloeConfig as wn, useResolvedFloeConfig as bn } from "./context/FloeConfigContext.js";
36
36
  import { DEFAULT_VIRTUAL_LIST_CONFIG as Wn } from "./components/chat/types.js";
37
37
  import { DeckCell as Rn } from "./components/deck/DeckCell.js";
38
38
  import { DeckProvider as Gn, createDeckService as Hn, useDeck as On } from "./context/DeckContext.js";
@@ -45,100 +45,101 @@ import { Dropdown as jn, Select as Yn } from "./components/ui/Dropdown.js";
45
45
  import { ErrorBlock as ea, HighlightBlock as oa, InfoBlock as ra, NoteBlock as ta, SuccessBlock as ia, TipBlock as na, WarningBlock as aa } from "./components/ui/HighlightBlock.js";
46
46
  import { FileBlock as ca } from "./components/chat/blocks/FileBlock.js";
47
47
  import { FileBrowser as pa } from "./components/file-browser/FileBrowser.js";
48
- import { FileBrowserDragProvider as fa, hasFileBrowserDragContext as da, useFileBrowserDrag as xa } from "./context/FileBrowserDragContext.js";
49
- import { FileBrowserProvider as Ia, useFileBrowser as ua } from "./components/file-browser/FileBrowserContext.js";
50
- import { FileBrowserToolbar as Sa } from "./components/file-browser/FileBrowserToolbar.js";
51
- import { FileContextMenu as ha } from "./components/file-browser/FileContextMenu.js";
52
- import { FileGridView as Fa } from "./components/file-browser/FileGridView.js";
53
- import { FileListView as ya } from "./components/file-browser/FileListView.js";
54
- import { FileSavePicker as Ba } from "./components/ui/FileSavePicker.js";
55
- import { FilesSidebarWidget as Ma, SearchSidebarWidget as ba, SettingsSidebarWidget as wa, ShowcaseSidebarWidget as La, SidebarWidget as Wa } from "./widgets/SidebarWidget.js";
56
- import { FloatingWindow as Ra } from "./components/ui/FloatingWindow.js";
57
- import { FloeApp as Ga } from "./app/FloeApp.js";
58
- import { FloeRegistryRuntime as Oa } from "./app/FloeRegistryRuntime.js";
59
- import { Form as Ua, FormActions as Na, FormControl as _a, FormDescription as za, FormDivider as Ka, FormField as Qa, FormLabel as Za, FormMessage as Xa, FormRow as qa, FormSection as Ja, useFormSubmitting as ja } from "./components/ui/Form.js";
60
- import { ImageBlock as $a } from "./components/chat/blocks/ImageBlock.js";
61
- import { KeepAliveStack as om } from "./components/layout/KeepAliveStack.js";
62
- import { Launchpad as tm } from "./components/launchpad/Launchpad.js";
63
- import { LaunchpadGrid as nm } from "./components/launchpad/LaunchpadGrid.js";
64
- import { LaunchpadItem as mm } from "./components/launchpad/LaunchpadItem.js";
65
- import { LaunchpadModal as lm } from "./components/launchpad/LaunchpadModal.js";
66
- import { LaunchpadPagination as sm } from "./components/launchpad/LaunchpadPagination.js";
67
- import { LaunchpadSearch as dm } from "./components/launchpad/LaunchpadSearch.js";
68
- import { LayoutProvider as gm, createLayoutService as Im, useLayout as um } from "./context/LayoutContext.js";
69
- import { LayoutSelector as Sm } from "./components/deck/LayoutSelector.js";
70
- import { LoadingOverlay as hm } from "./components/loading/LoadingOverlay.js";
71
- import { MarkdownBlock as Fm } from "./components/chat/blocks/MarkdownBlock.js";
72
- import { MermaidBlock as ym } from "./components/chat/blocks/MermaidBlock.js";
73
- import { MessageActions as Bm } from "./components/chat/message/MessageActions.js";
74
- import { MessageAvatar as Mm } from "./components/chat/message/MessageAvatar.js";
75
- import { MessageBubble as wm } from "./components/chat/message/MessageBubble.js";
76
- import { MessageItem as Wm } from "./components/chat/message/MessageItem.js";
77
- import { MessageMeta as Rm } from "./components/chat/message/MessageMeta.js";
78
- import { MetricsWidget as Gm } from "./widgets/MetricsWidget.js";
79
- import { MobileKeyboard as Om } from "./components/ui/MobileKeyboard.js";
80
- import { MobileTabBar as Um } from "./components/layout/MobileTabBar.js";
81
- import { NotificationContainer as _m, NotificationProvider as zm, createNotificationService as Km, useNotification as Qm } from "./context/NotificationContext.js";
82
- import { Pagination as Xm } from "./components/ui/Pagination.js";
83
- import { Panel as Jm, PanelContent as jm, PanelHeader as Ym } from "./components/layout/Panel.js";
84
- import { ProcessingIndicator as ec } from "./components/ui/ProcessingIndicator.js";
85
- import { QuoteBlock as rc } from "./components/ui/QuoteBlock.js";
86
- import { RadioGroup as ic, RadioList as nc, RadioOption as ac } from "./components/ui/Radio.js";
87
- import { ResizeHandle as cc } from "./components/layout/ResizeHandle.js";
88
- import { SegmentedControl as pc } from "./components/ui/SegmentedControl.js";
89
- import { Shell as fc } from "./components/layout/Shell.js";
90
- import { ShellBlock as xc } from "./components/chat/blocks/ShellBlock.js";
91
- import { Sidebar as Ic, SidebarContent as uc, SidebarItem as Cc, SidebarItemList as Sc, SidebarSection as kc } from "./components/layout/Sidebar.js";
92
- import { SidebarPane as Tc } from "./components/layout/SidebarPane.js";
93
- import { Skeleton as Pc, SkeletonCard as yc, SkeletonList as vc, SkeletonText as Bc } from "./components/loading/Skeleton.js";
94
- import { SnakeLoader as Mc } from "./components/loading/SnakeLoader.js";
95
- import { Stepper as wc, Wizard as Lc, useWizard as Wc } from "./components/ui/Stepper.js";
96
- import { StreamingCursor as Rc } from "./components/chat/status/StreamingCursor.js";
97
- import { SvgBlock as Gc } from "./components/chat/blocks/SvgBlock.js";
98
- import { Switch as Oc } from "./components/ui/Switch.js";
99
- import { TabPanel as Uc, Tabs as Nc } from "./components/ui/Tabs.js";
100
- import { TerminalWidget as zc, createTerminalWidget as Kc } from "./widgets/TerminalWidget.js";
101
- import { TextBlock as Zc } from "./components/chat/blocks/TextBlock.js";
102
- import { ThemeProvider as qc, createThemeService as Jc, useTheme as jc } from "./context/ThemeContext.js";
103
- import { ThinkingBlock as $c } from "./components/chat/blocks/ThinkingBlock.js";
104
- import { ToolCallBlock as ol } from "./components/chat/blocks/ToolCallBlock.js";
105
- import { Tooltip as tl } from "./components/ui/Tooltip.js";
106
- import { TopBar as nl } from "./components/layout/TopBar.js";
107
- import { TopBarIconButton as ml } from "./components/layout/TopBarIconButton.js";
108
- import { ViewActivationProvider as ll, useViewActivation as pl } from "./context/ViewActivationContext.js";
109
- import { VirtualMessageList as fl } from "./components/chat/message-list/VirtualMessageList.js";
110
- import { WidgetFrame as xl } from "./components/deck/WidgetFrame.js";
111
- import { WidgetPalette as Il } from "./components/deck/WidgetPalette.js";
112
- import { WidgetRegistryProvider as Cl, createWidgetRegistry as Sl, useWidgetRegistry as kl } from "./context/WidgetRegistry.js";
113
- import { WidgetResizeHandle as Tl } from "./components/deck/WidgetResizeHandle.js";
114
- import { WidgetStateProvider as Pl, useCurrentWidgetId as yl, useWidgetState as vl, useWidgetStateContext as Bl } from "./context/WidgetStateContext.js";
115
- import { WidgetTypeSwitcher as Ml } from "./components/deck/WidgetTypeSwitcher.js";
116
- import { WorkingIndicator as wl } from "./components/chat/status/WorkingIndicator.js";
117
- import { applyDragDelta as Wl, applyResizeDelta as Al, getGridCellSize as Rl, pixelDeltaToGridDelta as El, positionToGridArea as Gl, snapToGrid as Hl } from "./utils/gridLayout.js";
118
- import { buildAssistantNoticeEvents as Vl, createStreamEventBuilder as Ul, isStreamEvent as Nl } from "./components/chat/streamEvents.js";
119
- import { checkCollision as zl, constrainPosition as Kl, findFreePosition as Ql, hasCollision as Zl } from "./utils/gridCollision.js";
120
- import { cn as ql } from "./utils/cn.js";
121
- import { computeCodeDiff as jl, computeCodeDiffSync as Yl, configureDiffWorker as $l, createDiffWorker as ep, hasDiffWorker as op, terminateDiffWorker as rp, waitForDiffWorker as tp } from "./components/chat/hooks/useCodeDiff.js";
122
- import { configureMarkdownWorker as np, createMarkdownWorker as ap, hasMarkdownWorker as mp, renderMarkdown as cp, renderMarkdownSync as lp, terminateMarkdownWorker as pp, waitForMarkdownWorker as sp } from "./components/chat/hooks/useMarkdown.js";
123
- import { configureMermaidWorker as dp, configureSyncMermaid as xp, renderMermaid as gp, terminateMermaidWorker as Ip, useMermaid as up } from "./components/chat/hooks/useMermaid.js";
124
- import { configureShikiWorker as Sp, configureSyncHighlighter as kp, highlightCode as hp, terminateShikiWorker as Tp, useCodeHighlight as Fp } from "./components/chat/hooks/useCodeHighlight.js";
125
- import { createSimpleContext as yp } from "./context/createSimpleContext.js";
126
- import { deferAfterPaint as Bp, deferNonBlocking as Dp } from "./utils/defer.js";
127
- import { duration as bp, easing as wp, fadeIn as Lp, listContainer as Wp, listItem as Ap, panelResize as Rp, popIn as Ep, scaleIn as Gp, sidebarVariants as Hp, slideInFromBottom as Op, slideInFromLeft as Vp, slideInFromRight as Up, slideInFromTop as Np, springConfig as _p } from "./utils/animations.js";
128
- import { formatKeybind as Kp, matchKeybind as Qp, parseKeybind as Zp } from "./utils/keybind.js";
129
- import { isTypingElement as qp, shouldIgnoreHotkeys as Jp } from "./utils/dom.js";
130
- import { lockBodyStyle as Yp } from "./utils/bodyStyleLock.js";
131
- import { registerCommandContributions as es, useCommandContributions as os } from "./hooks/useCommandContributions.js";
132
- import { useAttachments as ts } from "./components/chat/hooks/useAttachments.js";
133
- import { useAutoScroll as ns } from "./components/chat/hooks/useAutoScroll.js";
134
- import { useDebounce as ms } from "./hooks/useDebounce.js";
135
- import { useDeckDrag as ls } from "./hooks/useDeckDrag.js";
136
- import { useFileBrowserDropTarget as ss, useFileBrowserItemDrag as fs } from "./hooks/useFileBrowserDrag.js";
137
- import { useKeybind as xs } from "./hooks/useKeybind.js";
138
- import { useMediaQuery as Is } from "./hooks/useMediaQuery.js";
139
- import { usePersisted as Cs } from "./hooks/usePersisted.js";
140
- import { useResizeObserver as ks } from "./hooks/useResizeObserver.js";
141
- import { useVirtualList as Ts } from "./components/chat/hooks/useVirtualList.js";
48
+ import { FileBrowserDragPreview as fa } from "./components/file-browser/DragPreview.js";
49
+ import { FileBrowserDragProvider as xa, hasFileBrowserDragContext as ga, useFileBrowserDrag as Ia } from "./context/FileBrowserDragContext.js";
50
+ import { FileBrowserProvider as Ca, useFileBrowser as Sa } from "./components/file-browser/FileBrowserContext.js";
51
+ import { FileBrowserToolbar as ha } from "./components/file-browser/FileBrowserToolbar.js";
52
+ import { FileContextMenu as Fa } from "./components/file-browser/FileContextMenu.js";
53
+ import { FileGridView as ya } from "./components/file-browser/FileGridView.js";
54
+ import { FileListView as Ba } from "./components/file-browser/FileListView.js";
55
+ import { FileSavePicker as Ma } from "./components/ui/FileSavePicker.js";
56
+ import { FilesSidebarWidget as ba, SearchSidebarWidget as La, SettingsSidebarWidget as Wa, ShowcaseSidebarWidget as Aa, SidebarWidget as Ra } from "./widgets/SidebarWidget.js";
57
+ import { FloatingWindow as Ga } from "./components/ui/FloatingWindow.js";
58
+ import { FloeApp as Oa } from "./app/FloeApp.js";
59
+ import { FloeRegistryRuntime as Ua } from "./app/FloeRegistryRuntime.js";
60
+ import { Form as _a, FormActions as za, FormControl as Ka, FormDescription as Qa, FormDivider as Za, FormField as Xa, FormLabel as qa, FormMessage as Ja, FormRow as ja, FormSection as Ya, useFormSubmitting as $a } from "./components/ui/Form.js";
61
+ import { ImageBlock as om } from "./components/chat/blocks/ImageBlock.js";
62
+ import { KeepAliveStack as tm } from "./components/layout/KeepAliveStack.js";
63
+ import { Launchpad as nm } from "./components/launchpad/Launchpad.js";
64
+ import { LaunchpadGrid as mm } from "./components/launchpad/LaunchpadGrid.js";
65
+ import { LaunchpadItem as lm } from "./components/launchpad/LaunchpadItem.js";
66
+ import { LaunchpadModal as sm } from "./components/launchpad/LaunchpadModal.js";
67
+ import { LaunchpadPagination as dm } from "./components/launchpad/LaunchpadPagination.js";
68
+ import { LaunchpadSearch as gm } from "./components/launchpad/LaunchpadSearch.js";
69
+ import { LayoutProvider as um, createLayoutService as Cm, useLayout as Sm } from "./context/LayoutContext.js";
70
+ import { LayoutSelector as hm } from "./components/deck/LayoutSelector.js";
71
+ import { LoadingOverlay as Fm } from "./components/loading/LoadingOverlay.js";
72
+ import { MarkdownBlock as ym } from "./components/chat/blocks/MarkdownBlock.js";
73
+ import { MermaidBlock as Bm } from "./components/chat/blocks/MermaidBlock.js";
74
+ import { MessageActions as Mm } from "./components/chat/message/MessageActions.js";
75
+ import { MessageAvatar as bm } from "./components/chat/message/MessageAvatar.js";
76
+ import { MessageBubble as Wm } from "./components/chat/message/MessageBubble.js";
77
+ import { MessageItem as Rm } from "./components/chat/message/MessageItem.js";
78
+ import { MessageMeta as Gm } from "./components/chat/message/MessageMeta.js";
79
+ import { MetricsWidget as Om } from "./widgets/MetricsWidget.js";
80
+ import { MobileKeyboard as Um } from "./components/ui/MobileKeyboard.js";
81
+ import { MobileTabBar as _m } from "./components/layout/MobileTabBar.js";
82
+ import { NotificationContainer as Km, NotificationProvider as Qm, createNotificationService as Zm, useNotification as Xm } from "./context/NotificationContext.js";
83
+ import { Pagination as Jm } from "./components/ui/Pagination.js";
84
+ import { Panel as Ym, PanelContent as $m, PanelHeader as ec } from "./components/layout/Panel.js";
85
+ import { ProcessingIndicator as rc } from "./components/ui/ProcessingIndicator.js";
86
+ import { QuoteBlock as ic } from "./components/ui/QuoteBlock.js";
87
+ import { RadioGroup as ac, RadioList as mc, RadioOption as cc } from "./components/ui/Radio.js";
88
+ import { ResizeHandle as pc } from "./components/layout/ResizeHandle.js";
89
+ import { SegmentedControl as fc } from "./components/ui/SegmentedControl.js";
90
+ import { Shell as xc } from "./components/layout/Shell.js";
91
+ import { ShellBlock as Ic } from "./components/chat/blocks/ShellBlock.js";
92
+ import { Sidebar as Cc, SidebarContent as Sc, SidebarItem as kc, SidebarItemList as hc, SidebarSection as Tc } from "./components/layout/Sidebar.js";
93
+ import { SidebarPane as Pc } from "./components/layout/SidebarPane.js";
94
+ import { Skeleton as vc, SkeletonCard as Bc, SkeletonList as Dc, SkeletonText as Mc } from "./components/loading/Skeleton.js";
95
+ import { SnakeLoader as bc } from "./components/loading/SnakeLoader.js";
96
+ import { Stepper as Wc, Wizard as Ac, useWizard as Rc } from "./components/ui/Stepper.js";
97
+ import { StreamingCursor as Gc } from "./components/chat/status/StreamingCursor.js";
98
+ import { SvgBlock as Oc } from "./components/chat/blocks/SvgBlock.js";
99
+ import { Switch as Uc } from "./components/ui/Switch.js";
100
+ import { TabPanel as _c, Tabs as zc } from "./components/ui/Tabs.js";
101
+ import { TerminalWidget as Qc, createTerminalWidget as Zc } from "./widgets/TerminalWidget.js";
102
+ import { TextBlock as qc } from "./components/chat/blocks/TextBlock.js";
103
+ import { ThemeProvider as jc, createThemeService as Yc, useTheme as $c } from "./context/ThemeContext.js";
104
+ import { ThinkingBlock as ol } from "./components/chat/blocks/ThinkingBlock.js";
105
+ import { ToolCallBlock as tl } from "./components/chat/blocks/ToolCallBlock.js";
106
+ import { Tooltip as nl } from "./components/ui/Tooltip.js";
107
+ import { TopBar as ml } from "./components/layout/TopBar.js";
108
+ import { TopBarIconButton as ll } from "./components/layout/TopBarIconButton.js";
109
+ import { ViewActivationProvider as sl, useViewActivation as fl } from "./context/ViewActivationContext.js";
110
+ import { VirtualMessageList as xl } from "./components/chat/message-list/VirtualMessageList.js";
111
+ import { WidgetFrame as Il } from "./components/deck/WidgetFrame.js";
112
+ import { WidgetPalette as Cl } from "./components/deck/WidgetPalette.js";
113
+ import { WidgetRegistryProvider as kl, createWidgetRegistry as hl, useWidgetRegistry as Tl } from "./context/WidgetRegistry.js";
114
+ import { WidgetResizeHandle as Pl } from "./components/deck/WidgetResizeHandle.js";
115
+ import { WidgetStateProvider as vl, useCurrentWidgetId as Bl, useWidgetState as Dl, useWidgetStateContext as Ml } from "./context/WidgetStateContext.js";
116
+ import { WidgetTypeSwitcher as bl } from "./components/deck/WidgetTypeSwitcher.js";
117
+ import { WorkingIndicator as Wl } from "./components/chat/status/WorkingIndicator.js";
118
+ import { applyDragDelta as Rl, applyResizeDelta as El, getGridCellSize as Gl, pixelDeltaToGridDelta as Hl, positionToGridArea as Ol, snapToGrid as Vl } from "./utils/gridLayout.js";
119
+ import { buildAssistantNoticeEvents as Nl, createStreamEventBuilder as _l, isStreamEvent as zl } from "./components/chat/streamEvents.js";
120
+ import { checkCollision as Ql, constrainPosition as Zl, findFreePosition as Xl, hasCollision as ql } from "./utils/gridCollision.js";
121
+ import { cn as jl } from "./utils/cn.js";
122
+ import { computeCodeDiff as $l, computeCodeDiffSync as ep, configureDiffWorker as op, createDiffWorker as rp, hasDiffWorker as tp, terminateDiffWorker as ip, waitForDiffWorker as np } from "./components/chat/hooks/useCodeDiff.js";
123
+ import { configureMarkdownWorker as mp, createMarkdownWorker as cp, hasMarkdownWorker as lp, renderMarkdown as pp, renderMarkdownSync as sp, terminateMarkdownWorker as fp, waitForMarkdownWorker as dp } from "./components/chat/hooks/useMarkdown.js";
124
+ import { configureMermaidWorker as gp, configureSyncMermaid as Ip, renderMermaid as up, terminateMermaidWorker as Cp, useMermaid as Sp } from "./components/chat/hooks/useMermaid.js";
125
+ import { configureShikiWorker as hp, configureSyncHighlighter as Tp, highlightCode as Fp, terminateShikiWorker as Pp, useCodeHighlight as yp } from "./components/chat/hooks/useCodeHighlight.js";
126
+ import { createSimpleContext as Bp } from "./context/createSimpleContext.js";
127
+ import { deferAfterPaint as Mp, deferNonBlocking as wp } from "./utils/defer.js";
128
+ import { duration as Lp, easing as Wp, fadeIn as Ap, listContainer as Rp, listItem as Ep, panelResize as Gp, popIn as Hp, scaleIn as Op, sidebarVariants as Vp, slideInFromBottom as Up, slideInFromLeft as Np, slideInFromRight as _p, slideInFromTop as zp, springConfig as Kp } from "./utils/animations.js";
129
+ import { formatKeybind as Zp, matchKeybind as Xp, parseKeybind as qp } from "./utils/keybind.js";
130
+ import { isTypingElement as jp, shouldIgnoreHotkeys as Yp } from "./utils/dom.js";
131
+ import { lockBodyStyle as es } from "./utils/bodyStyleLock.js";
132
+ import { registerCommandContributions as rs, useCommandContributions as ts } from "./hooks/useCommandContributions.js";
133
+ import { useAttachments as ns } from "./components/chat/hooks/useAttachments.js";
134
+ import { useAutoScroll as ms } from "./components/chat/hooks/useAutoScroll.js";
135
+ import { useDebounce as ls } from "./hooks/useDebounce.js";
136
+ import { useDeckDrag as ss } from "./hooks/useDeckDrag.js";
137
+ import { useFileBrowserDropTarget as ds, useFileBrowserItemDrag as xs } from "./hooks/useFileBrowserDrag.js";
138
+ import { useKeybind as Is } from "./hooks/useKeybind.js";
139
+ import { useMediaQuery as Cs } from "./hooks/useMediaQuery.js";
140
+ import { usePersisted as ks } from "./hooks/usePersisted.js";
141
+ import { useResizeObserver as Ts } from "./hooks/useResizeObserver.js";
142
+ import { useVirtualList as Ps } from "./components/chat/hooks/useVirtualList.js";
142
143
  export {
143
144
  F as Activity,
144
145
  Ht as ActivityAppsMain,
@@ -152,8 +153,8 @@ export {
152
153
  ii as AreaChart,
153
154
  D as ArrowDown,
154
155
  M as ArrowLeft,
155
- b as ArrowRight,
156
- w as ArrowRightLeft,
156
+ w as ArrowRight,
157
+ b as ArrowRightLeft,
157
158
  L as ArrowUp,
158
159
  W as AtSign,
159
160
  pi as AttachmentPreview,
@@ -190,8 +191,8 @@ export {
190
191
  J as CheckCircle,
191
192
  j as CheckIcon,
192
193
  Mi as Checkbox,
193
- bi as CheckboxGroup,
194
- wi as CheckboxList,
194
+ wi as CheckboxGroup,
195
+ bi as CheckboxList,
195
196
  Wi as ChecklistBlock,
196
197
  Y as ChevronDown,
197
198
  $ as ChevronLeft,
@@ -254,45 +255,46 @@ export {
254
255
  Be as EyeOff,
255
256
  ca as FileBlock,
256
257
  pa as FileBrowser,
257
- fa as FileBrowserDragProvider,
258
- Ia as FileBrowserProvider,
259
- Sa as FileBrowserToolbar,
258
+ fa as FileBrowserDragPreview,
259
+ xa as FileBrowserDragProvider,
260
+ Ca as FileBrowserProvider,
261
+ ha as FileBrowserToolbar,
260
262
  De as FileCode,
261
- ha as FileContextMenu,
262
- Fa as FileGridView,
263
+ Fa as FileContextMenu,
264
+ ya as FileGridView,
263
265
  Zi as FileIcon,
264
266
  Xi as FileItemIcon,
265
- ya as FileListView,
267
+ Ba as FileListView,
266
268
  Me as FilePlus,
267
- be as FilePlusIcon,
268
- Ba as FileSavePicker,
269
- we as FileText,
269
+ we as FilePlusIcon,
270
+ Ma as FileSavePicker,
271
+ be as FileText,
270
272
  Le as Files,
271
- Ma as FilesSidebarWidget,
273
+ ba as FilesSidebarWidget,
272
274
  We as Filter,
273
275
  Ae as FilterIcon,
274
276
  Re as FireIcon,
275
- Ra as FloatingWindow,
276
- Ga as FloeApp,
277
+ Ga as FloatingWindow,
278
+ Oa as FloeApp,
277
279
  Mn as FloeConfigProvider,
278
280
  r as FloeProvider,
279
- Oa as FloeRegistryRuntime,
281
+ Ua as FloeRegistryRuntime,
280
282
  Ee as Folder,
281
283
  qi as FolderIcon,
282
284
  Ge as FolderOpen,
283
285
  Ji as FolderOpenIcon,
284
286
  He as FolderPlus,
285
287
  Oe as FolderPlusIcon,
286
- Ua as Form,
287
- Na as FormActions,
288
- _a as FormControl,
289
- za as FormDescription,
290
- Ka as FormDivider,
291
- Qa as FormField,
292
- Za as FormLabel,
293
- Xa as FormMessage,
294
- qa as FormRow,
295
- Ja as FormSection,
288
+ _a as Form,
289
+ za as FormActions,
290
+ Ka as FormControl,
291
+ Qa as FormDescription,
292
+ Za as FormDivider,
293
+ Xa as FormField,
294
+ qa as FormLabel,
295
+ Ja as FormMessage,
296
+ ja as FormRow,
297
+ Ya as FormSection,
296
298
  Ve as GiftIcon,
297
299
  Ue as GitBranch,
298
300
  Ne as GitBranchIcon,
@@ -312,7 +314,7 @@ export {
312
314
  oo as Home,
313
315
  ro as HomeIcon,
314
316
  to as Image,
315
- $a as ImageBlock,
317
+ om as ImageBlock,
316
318
  ji as ImageFileIcon,
317
319
  io as ImageIcon,
318
320
  no as Info,
@@ -321,52 +323,52 @@ export {
321
323
  _t as Input,
322
324
  ei as Interactive3DCard,
323
325
  Yi as JavaScriptFileIcon,
324
- om as KeepAliveStack,
326
+ tm as KeepAliveStack,
325
327
  mo as Key,
326
328
  co as KeyIcon,
327
- tm as Launchpad,
328
- nm as LaunchpadGrid,
329
- mm as LaunchpadItem,
330
- lm as LaunchpadModal,
331
- sm as LaunchpadPagination,
332
- dm as LaunchpadSearch,
329
+ nm as Launchpad,
330
+ mm as LaunchpadGrid,
331
+ lm as LaunchpadItem,
332
+ sm as LaunchpadModal,
333
+ dm as LaunchpadPagination,
334
+ gm as LaunchpadSearch,
333
335
  lo as Layers,
334
336
  po as LayersIcon,
335
337
  so as LayoutDashboard,
336
- gm as LayoutProvider,
337
- Sm as LayoutSelector,
338
+ um as LayoutProvider,
339
+ hm as LayoutSelector,
338
340
  mi as LineChart,
339
341
  Ei as LinearProgress,
340
342
  fo as Link,
341
343
  xo as LinkIcon,
342
344
  go as Loader2,
343
345
  Io as LoadingIcon,
344
- hm as LoadingOverlay,
346
+ Fm as LoadingOverlay,
345
347
  uo as Lock,
346
348
  Co as LockIcon,
347
349
  So as MagicIcon,
348
350
  ko as Mail,
349
351
  ho as MailIcon,
350
352
  To as MapPinIcon,
351
- Fm as MarkdownBlock,
353
+ ym as MarkdownBlock,
352
354
  Fo as Maximize,
353
355
  Po as Menu,
354
- ym as MermaidBlock,
355
- Bm as MessageActions,
356
- Mm as MessageAvatar,
357
- wm as MessageBubble,
356
+ Bm as MermaidBlock,
357
+ Mm as MessageActions,
358
+ bm as MessageAvatar,
359
+ Wm as MessageBubble,
358
360
  yo as MessageIcon,
359
- Wm as MessageItem,
360
- Rm as MessageMeta,
361
+ Rm as MessageItem,
362
+ Gm as MessageMeta,
361
363
  vo as MessageSquare,
362
- Gm as MetricsWidget,
364
+ Om as MetricsWidget,
363
365
  Bo as Mic,
364
366
  Do as MicIcon,
365
367
  Mo as MicOff,
366
- bo as Minus,
367
- wo as MinusIcon,
368
- Om as MobileKeyboard,
369
- Um as MobileTabBar,
368
+ wo as Minus,
369
+ bo as MinusIcon,
370
+ Um as MobileKeyboard,
371
+ _m as MobileTabBar,
370
372
  ci as MonitoringChart,
371
373
  Lo as Moon,
372
374
  Wo as MoonIcon,
@@ -376,15 +378,15 @@ export {
376
378
  Eo as MuteIcon,
377
379
  ri as NeonCard,
378
380
  ta as NoteBlock,
379
- _m as NotificationContainer,
380
- zm as NotificationProvider,
381
+ Km as NotificationContainer,
382
+ Qm as NotificationProvider,
381
383
  zt as NumberInput,
382
384
  Go as Package,
383
385
  Ho as PackageIcon,
384
- Xm as Pagination,
385
- Jm as Panel,
386
- jm as PanelContent,
387
- Ym as PanelHeader,
386
+ Jm as Pagination,
387
+ Ym as Panel,
388
+ $m as PanelContent,
389
+ ec as PanelHeader,
388
390
  Oo as Paperclip,
389
391
  Vo as Paste,
390
392
  Uo as PasteIcon,
@@ -401,86 +403,86 @@ export {
401
403
  Yo as PlusIcon,
402
404
  $o as PowerIcon,
403
405
  er as PrinterIcon,
404
- ec as ProcessingIndicator,
406
+ rc as ProcessingIndicator,
405
407
  or as Quote,
406
- rc as QuoteBlock,
407
- ic as RadioGroup,
408
- nc as RadioList,
409
- ac as RadioOption,
408
+ ic as QuoteBlock,
409
+ ac as RadioGroup,
410
+ mc as RadioList,
411
+ cc as RadioOption,
410
412
  rr as Refresh,
411
413
  tr as RefreshIcon,
412
- cc as ResizeHandle,
414
+ pc as ResizeHandle,
413
415
  ir as Restore,
414
416
  nr as RocketIcon,
415
417
  ar as Save,
416
418
  mr as SaveIcon,
417
419
  cr as Search,
418
420
  lr as SearchIcon,
419
- ba as SearchSidebarWidget,
420
- pc as SegmentedControl,
421
+ La as SearchSidebarWidget,
422
+ fc as SegmentedControl,
421
423
  Gi as SegmentedProgress,
422
424
  Yn as Select,
423
425
  pr as Send,
424
426
  sr as SendIcon,
425
427
  fr as Settings,
426
428
  dr as SettingsIcon,
427
- wa as SettingsSidebarWidget,
429
+ Wa as SettingsSidebarWidget,
428
430
  xr as ShareIcon,
429
- fc as Shell,
430
- xc as ShellBlock,
431
+ xc as Shell,
432
+ Ic as ShellBlock,
431
433
  $i as ShellScriptFileIcon,
432
434
  gr as Shield,
433
435
  Ir as ShieldCheck,
434
436
  ur as ShieldIcon,
435
- La as ShowcaseSidebarWidget,
436
- Ic as Sidebar,
437
- uc as SidebarContent,
438
- Cc as SidebarItem,
439
- Sc as SidebarItemList,
440
- Tc as SidebarPane,
441
- kc as SidebarSection,
442
- Wa as SidebarWidget,
443
- Pc as Skeleton,
444
- yc as SkeletonCard,
445
- vc as SkeletonList,
446
- Bc as SkeletonText,
447
- Mc as SnakeLoader,
437
+ Aa as ShowcaseSidebarWidget,
438
+ Cc as Sidebar,
439
+ Sc as SidebarContent,
440
+ kc as SidebarItem,
441
+ hc as SidebarItemList,
442
+ Pc as SidebarPane,
443
+ Tc as SidebarSection,
444
+ Ra as SidebarWidget,
445
+ vc as Skeleton,
446
+ Bc as SkeletonCard,
447
+ Dc as SkeletonList,
448
+ Mc as SkeletonText,
449
+ bc as SnakeLoader,
448
450
  Cr as SparkleIcon,
449
451
  Sr as Sparkles,
450
452
  kr as Star,
451
453
  hr as StarIcon,
452
454
  Ii as StatusIndicator,
453
- wc as Stepper,
455
+ Wc as Stepper,
454
456
  Hi as StepsProgress,
455
457
  Tr as Stop,
456
- Rc as StreamingCursor,
458
+ Gc as StreamingCursor,
457
459
  en as StyleFileIcon,
458
460
  ia as SuccessBlock,
459
461
  Fr as SuccessIcon,
460
462
  Pr as Sun,
461
463
  yr as SunIcon,
462
- Gc as SvgBlock,
463
- Oc as Switch,
464
- Uc as TabPanel,
465
- Nc as Tabs,
464
+ Oc as SvgBlock,
465
+ Uc as Switch,
466
+ _c as TabPanel,
467
+ zc as Tabs,
466
468
  vr as Tag,
467
469
  Br as TagIcon,
468
470
  Dr as TargetIcon,
469
471
  Mr as Terminal,
470
- br as TerminalIcon,
471
- zc as TerminalWidget,
472
- Zc as TextBlock,
472
+ wr as TerminalIcon,
473
+ Qc as TerminalWidget,
474
+ qc as TextBlock,
473
475
  Kt as Textarea,
474
- qc as ThemeProvider,
475
- $c as ThinkingBlock,
476
- wr as ThumbsDownIcon,
476
+ jc as ThemeProvider,
477
+ ol as ThinkingBlock,
478
+ br as ThumbsDownIcon,
477
479
  Lr as ThumbsUpIcon,
478
480
  Wr as Timer,
479
481
  na as TipBlock,
480
- ol as ToolCallBlock,
481
- tl as Tooltip,
482
- nl as TopBar,
483
- ml as TopBarIconButton,
482
+ tl as ToolCallBlock,
483
+ nl as Tooltip,
484
+ ml as TopBar,
485
+ ll as TopBarIconButton,
484
486
  Ar as Trash,
485
487
  Rr as TrashIcon,
486
488
  Er as TrendingDown,
@@ -493,73 +495,73 @@ export {
493
495
  Nr as UserIcon,
494
496
  _r as Video,
495
497
  zr as VideoIcon,
496
- ll as ViewActivationProvider,
497
- fl as VirtualMessageList,
498
+ sl as ViewActivationProvider,
499
+ xl as VirtualMessageList,
498
500
  Kr as Volume,
499
501
  Qr as VolumeIcon,
500
502
  Zr as VolumeOff,
501
503
  Xr as Wand,
502
504
  aa as WarningBlock,
503
505
  qr as WarningIcon,
504
- xl as WidgetFrame,
505
- Il as WidgetPalette,
506
- Cl as WidgetRegistryProvider,
507
- Tl as WidgetResizeHandle,
508
- Pl as WidgetStateProvider,
509
- Ml as WidgetTypeSwitcher,
506
+ Il as WidgetFrame,
507
+ Cl as WidgetPalette,
508
+ kl as WidgetRegistryProvider,
509
+ Pl as WidgetResizeHandle,
510
+ vl as WidgetStateProvider,
511
+ bl as WidgetTypeSwitcher,
510
512
  Jr as WifiIcon,
511
513
  jr as WifiOffIcon,
512
- Lc as Wizard,
514
+ Ac as Wizard,
513
515
  Yr as Workflow,
514
- wl as WorkingIndicator,
516
+ Wl as WorkingIndicator,
515
517
  $r as X,
516
518
  et as XCircle,
517
519
  ot as Zap,
518
520
  rt as ZapIcon,
519
- Wl as applyDragDelta,
520
- Al as applyResizeDelta,
521
+ Rl as applyDragDelta,
522
+ El as applyResizeDelta,
521
523
  xt as applyTerminalSessionSuggestion,
522
524
  yt as applyTerminalSuggestion,
523
525
  i as applyTheme,
524
526
  vt as autocompleteTerminalInput,
525
- Vl as buildAssistantNoticeEvents,
527
+ Nl as buildAssistantNoticeEvents,
526
528
  n as builtInThemes,
527
- zl as checkCollision,
529
+ Ql as checkCollision,
528
530
  mt as clampTerminalCursor,
529
- ql as cn,
530
- jl as computeCodeDiff,
531
- Yl as computeCodeDiffSync,
532
- $l as configureDiffWorker,
533
- np as configureMarkdownWorker,
534
- dp as configureMermaidWorker,
535
- Sp as configureShikiWorker,
536
- kp as configureSyncHighlighter,
537
- xp as configureSyncMermaid,
538
- Kl as constrainPosition,
531
+ jl as cn,
532
+ $l as computeCodeDiff,
533
+ ep as computeCodeDiffSync,
534
+ op as configureDiffWorker,
535
+ mp as configureMarkdownWorker,
536
+ gp as configureMermaidWorker,
537
+ hp as configureShikiWorker,
538
+ Tp as configureSyncHighlighter,
539
+ Ip as configureSyncMermaid,
540
+ Zl as constrainPosition,
539
541
  ln as createCommandService,
540
542
  dn as createComponentRegistry,
541
543
  Hn as createDeckService,
542
- ep as createDiffWorker,
543
- Im as createLayoutService,
544
- ap as createMarkdownWorker,
545
- Km as createNotificationService,
546
- yp as createSimpleContext,
547
- Ul as createStreamEventBuilder,
544
+ rp as createDiffWorker,
545
+ Cm as createLayoutService,
546
+ cp as createMarkdownWorker,
547
+ Zm as createNotificationService,
548
+ Bp as createSimpleContext,
549
+ _l as createStreamEventBuilder,
548
550
  ct as createTerminalEditorState,
549
551
  Bt as createTerminalFullLineSuggestion,
550
552
  gt as createTerminalSessionState,
551
553
  Dt as createTerminalTokenSuggestion,
552
- Kc as createTerminalWidget,
553
- Jc as createThemeService,
554
- Sl as createWidgetRegistry,
555
- Bp as deferAfterPaint,
556
- Dp as deferNonBlocking,
554
+ Zc as createTerminalWidget,
555
+ Yc as createThemeService,
556
+ hl as createWidgetRegistry,
557
+ Mp as deferAfterPaint,
558
+ wp as deferNonBlocking,
557
559
  lt as deleteTerminalTextBackward,
558
560
  It as dispatchTerminalSessionKey,
559
- bp as duration,
560
- wp as easing,
561
- Lp as fadeIn,
562
- Ql as findFreePosition,
561
+ Lp as duration,
562
+ Wp as easing,
563
+ Ap as fadeIn,
564
+ Xl as findFreePosition,
563
565
  f as floeColorTokenCategories,
564
566
  d as floeDesignTokens,
565
567
  x as floeFontFamilyTokens,
@@ -569,57 +571,57 @@ export {
569
571
  C as floeSpacingTokens,
570
572
  S as floeThemeColorVariables,
571
573
  k as floeTypographyTokens,
572
- Kp as formatKeybind,
574
+ Zp as formatKeybind,
573
575
  rn as getFileIcon,
574
576
  h as getFloeColorTokenValue,
575
- Rl as getGridCellSize,
577
+ Gl as getGridCellSize,
576
578
  vn as getGridConfigFromElement,
577
579
  a as getSystemTheme,
578
580
  ut as getTerminalPromptPreview,
579
581
  Ct as getTerminalSessionSuggestions,
580
582
  Mt as getTerminalSuggestions,
581
- Zl as hasCollision,
583
+ ql as hasCollision,
582
584
  xn as hasComponentRegistryContext,
583
- op as hasDiffWorker,
584
- da as hasFileBrowserDragContext,
585
- mp as hasMarkdownWorker,
586
- hp as highlightCode,
585
+ tp as hasDiffWorker,
586
+ ga as hasFileBrowserDragContext,
587
+ lp as hasMarkdownWorker,
588
+ Fp as highlightCode,
587
589
  pt as insertTerminalText,
588
- Nl as isStreamEvent,
589
- qp as isTypingElement,
590
- Wp as listContainer,
591
- Ap as listItem,
592
- Yp as lockBodyStyle,
593
- Qp as matchKeybind,
594
- bt as matchesTerminalSuggestionPrefix,
590
+ zl as isStreamEvent,
591
+ jp as isTypingElement,
592
+ Rp as listContainer,
593
+ Ep as listItem,
594
+ es as lockBodyStyle,
595
+ Xp as matchKeybind,
596
+ wt as matchesTerminalSuggestionPrefix,
595
597
  m as mergeThemeTokenMaps,
596
598
  st as moveTerminalCursor,
597
599
  ft as navigateTerminalHistory,
598
600
  nt as normalizeTerminalWorkspaceProfile,
599
- Rp as panelResize,
600
- Zp as parseKeybind,
601
- wt as parseTerminalSuggestionContext,
602
- El as pixelDeltaToGridDelta,
603
- Ep as popIn,
604
- Gl as positionToGridArea,
605
- es as registerCommandContributions,
606
- cp as renderMarkdown,
607
- lp as renderMarkdownSync,
608
- gp as renderMermaid,
601
+ Gp as panelResize,
602
+ qp as parseKeybind,
603
+ bt as parseTerminalSuggestionContext,
604
+ Hl as pixelDeltaToGridDelta,
605
+ Hp as popIn,
606
+ Ol as positionToGridArea,
607
+ rs as registerCommandContributions,
608
+ pp as renderMarkdown,
609
+ sp as renderMarkdownSync,
610
+ up as renderMermaid,
609
611
  tn as resolveFileItemIcon,
610
612
  c as resolveThemeTokenOverrides,
611
613
  l as resolveThemeTokens,
612
614
  Tt as runTerminalMockCommand,
613
- Gp as scaleIn,
615
+ Op as scaleIn,
614
616
  St as setTerminalSessionInputValue,
615
- Jp as shouldIgnoreHotkeys,
616
- Hp as sidebarVariants,
617
- Op as slideInFromBottom,
618
- Vp as slideInFromLeft,
619
- Up as slideInFromRight,
620
- Np as slideInFromTop,
621
- Hl as snapToGrid,
622
- _p as springConfig,
617
+ Yp as shouldIgnoreHotkeys,
618
+ Vp as sidebarVariants,
619
+ Up as slideInFromBottom,
620
+ Np as slideInFromLeft,
621
+ _p as slideInFromRight,
622
+ zp as slideInFromTop,
623
+ Vl as snapToGrid,
624
+ Kp as springConfig,
623
625
  kt as submitTerminalSession,
624
626
  p as syncThemeTokenOverrides,
625
627
  Lt as terminalCommandTokenSuggestionProvider,
@@ -627,44 +629,44 @@ export {
627
629
  At as terminalPathSuggestionProvider,
628
630
  Rt as terminalRootSuggestionProvider,
629
631
  Et as terminalSnippetSuggestionProvider,
630
- rp as terminateDiffWorker,
631
- pp as terminateMarkdownWorker,
632
- Ip as terminateMermaidWorker,
633
- Tp as terminateShikiWorker,
634
- ts as useAttachments,
635
- ns as useAutoScroll,
632
+ ip as terminateDiffWorker,
633
+ fp as terminateMarkdownWorker,
634
+ Cp as terminateMermaidWorker,
635
+ Pp as terminateShikiWorker,
636
+ ns as useAttachments,
637
+ ms as useAutoScroll,
636
638
  Bi as useChatContext,
637
- Fp as useCodeHighlight,
639
+ yp as useCodeHighlight,
638
640
  pn as useCommand,
639
- os as useCommandContributions,
641
+ ts as useCommandContributions,
640
642
  gn as useComponentContextFactory,
641
643
  In as useComponentRegistry,
642
- yl as useCurrentWidgetId,
643
- ms as useDebounce,
644
+ Bl as useCurrentWidgetId,
645
+ ls as useDebounce,
644
646
  On as useDeck,
645
- ls as useDeckDrag,
646
- ua as useFileBrowser,
647
- xa as useFileBrowserDrag,
648
- ss as useFileBrowserDropTarget,
649
- fs as useFileBrowserItemDrag,
650
- bn as useFloeConfig,
651
- ja as useFormSubmitting,
652
- xs as useKeybind,
653
- um as useLayout,
654
- Is as useMediaQuery,
655
- up as useMermaid,
656
- Qm as useNotification,
647
+ ss as useDeckDrag,
648
+ Sa as useFileBrowser,
649
+ Ia as useFileBrowserDrag,
650
+ ds as useFileBrowserDropTarget,
651
+ xs as useFileBrowserItemDrag,
652
+ wn as useFloeConfig,
653
+ $a as useFormSubmitting,
654
+ Is as useKeybind,
655
+ Sm as useLayout,
656
+ Cs as useMediaQuery,
657
+ Sp as useMermaid,
658
+ Xm as useNotification,
657
659
  un as useOptionalComponentRegistry,
658
- Cs as usePersisted,
659
- ks as useResizeObserver,
660
- wn as useResolvedFloeConfig,
661
- jc as useTheme,
662
- pl as useViewActivation,
663
- Ts as useVirtualList,
664
- kl as useWidgetRegistry,
665
- vl as useWidgetState,
666
- Bl as useWidgetStateContext,
667
- Wc as useWizard,
668
- tp as waitForDiffWorker,
669
- sp as waitForMarkdownWorker
660
+ ks as usePersisted,
661
+ Ts as useResizeObserver,
662
+ bn as useResolvedFloeConfig,
663
+ $c as useTheme,
664
+ fl as useViewActivation,
665
+ Ps as useVirtualList,
666
+ Tl as useWidgetRegistry,
667
+ Dl as useWidgetState,
668
+ Ml as useWidgetStateContext,
669
+ Rc as useWizard,
670
+ np as waitForDiffWorker,
671
+ dp as waitForMarkdownWorker
670
672
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floegence/floe-webapp-core",
3
- "version": "0.35.22",
3
+ "version": "0.35.24",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",