@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.
- package/dist/components/editor/languages.js +37 -19
- package/dist/components/file-browser/DragPreview.d.ts +2 -2
- package/dist/components/file-browser/DragPreview.js +15 -15
- package/dist/components/file-browser/FileBrowser.js +13 -13
- package/dist/components/file-browser/index.d.ts +1 -0
- package/dist/file-browser.js +19 -17
- package/dist/full.js +302 -300
- package/package.json +1 -1
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
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
|
-
},
|
|
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
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
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
|
|
99
|
+
function c(p) {
|
|
82
100
|
const t = String(p ?? "").trim().toLowerCase();
|
|
83
|
-
return (
|
|
101
|
+
return (n[t] ?? t) || "plaintext";
|
|
84
102
|
}
|
|
85
|
-
function
|
|
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
|
|
91
|
-
}).catch((
|
|
92
|
-
throw e.delete(p),
|
|
108
|
+
const o = t().then(() => {
|
|
109
|
+
}).catch((s) => {
|
|
110
|
+
throw e.delete(p), s;
|
|
93
111
|
});
|
|
94
|
-
return e.set(p,
|
|
112
|
+
return e.set(p, o), o;
|
|
95
113
|
};
|
|
96
114
|
}
|
|
97
|
-
function
|
|
98
|
-
const 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
|
|
105
|
-
return
|
|
122
|
+
function h(p) {
|
|
123
|
+
return m(p).id !== "plaintext" || c(p) === "plaintext";
|
|
106
124
|
}
|
|
107
125
|
export {
|
|
108
|
-
|
|
109
|
-
|
|
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
|
|
7
|
+
export declare function FileBrowserDragPreview(): import("solid-js").JSX.Element;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { createComponent as o, Portal as N, insert as
|
|
2
|
-
import { createSignal as F, createEffect as
|
|
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__ */
|
|
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
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
|
100
|
+
return l(i, o(W, {
|
|
101
101
|
item: e,
|
|
102
102
|
class: "w-4 h-4"
|
|
103
|
-
})),
|
|
103
|
+
})), l(D, () => e.name), r;
|
|
104
104
|
})()
|
|
105
|
-
}), null),
|
|
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,
|
|
111
|
+
return i.nextSibling, l(e, k, i), e;
|
|
112
112
|
}
|
|
113
|
-
}), null),
|
|
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
|
|
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
|
|
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
|
-
|
|
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
|
|
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 {
|
|
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
|
|
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
|
|
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: () =>
|
|
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(() =>
|
|
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,
|
|
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) =>
|
|
185
|
+
filterInputRef: (l) => w = l,
|
|
186
186
|
get endActions() {
|
|
187
187
|
return e.toolbarEndActions;
|
|
188
188
|
}
|
|
189
189
|
}), g), k((l) => {
|
|
190
|
-
|
|
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,
|
|
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),
|
|
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
|
-
|
|
252
|
+
L(["keydown"]);
|
|
253
253
|
export {
|
|
254
|
-
|
|
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';
|
package/dist/file-browser.js
CHANGED
|
@@ -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
|
|
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
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
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
|
-
|
|
17
|
-
y as
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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
|
-
|
|
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
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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 {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
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
|
-
|
|
156
|
-
|
|
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
|
-
|
|
194
|
-
|
|
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
|
|
258
|
-
|
|
259
|
-
|
|
258
|
+
fa as FileBrowserDragPreview,
|
|
259
|
+
xa as FileBrowserDragProvider,
|
|
260
|
+
Ca as FileBrowserProvider,
|
|
261
|
+
ha as FileBrowserToolbar,
|
|
260
262
|
De as FileCode,
|
|
261
|
-
|
|
262
|
-
|
|
263
|
+
Fa as FileContextMenu,
|
|
264
|
+
ya as FileGridView,
|
|
263
265
|
Zi as FileIcon,
|
|
264
266
|
Xi as FileItemIcon,
|
|
265
|
-
|
|
267
|
+
Ba as FileListView,
|
|
266
268
|
Me as FilePlus,
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
269
|
+
we as FilePlusIcon,
|
|
270
|
+
Ma as FileSavePicker,
|
|
271
|
+
be as FileText,
|
|
270
272
|
Le as Files,
|
|
271
|
-
|
|
273
|
+
ba as FilesSidebarWidget,
|
|
272
274
|
We as Filter,
|
|
273
275
|
Ae as FilterIcon,
|
|
274
276
|
Re as FireIcon,
|
|
275
|
-
|
|
276
|
-
|
|
277
|
+
Ga as FloatingWindow,
|
|
278
|
+
Oa as FloeApp,
|
|
277
279
|
Mn as FloeConfigProvider,
|
|
278
280
|
r as FloeProvider,
|
|
279
|
-
|
|
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
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
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
|
-
|
|
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
|
-
|
|
326
|
+
tm as KeepAliveStack,
|
|
325
327
|
mo as Key,
|
|
326
328
|
co as KeyIcon,
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
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
|
-
|
|
337
|
-
|
|
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
|
-
|
|
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
|
-
|
|
353
|
+
ym as MarkdownBlock,
|
|
352
354
|
Fo as Maximize,
|
|
353
355
|
Po as Menu,
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
356
|
+
Bm as MermaidBlock,
|
|
357
|
+
Mm as MessageActions,
|
|
358
|
+
bm as MessageAvatar,
|
|
359
|
+
Wm as MessageBubble,
|
|
358
360
|
yo as MessageIcon,
|
|
359
|
-
|
|
360
|
-
|
|
361
|
+
Rm as MessageItem,
|
|
362
|
+
Gm as MessageMeta,
|
|
361
363
|
vo as MessageSquare,
|
|
362
|
-
|
|
364
|
+
Om as MetricsWidget,
|
|
363
365
|
Bo as Mic,
|
|
364
366
|
Do as MicIcon,
|
|
365
367
|
Mo as MicOff,
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
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
|
-
|
|
380
|
-
|
|
381
|
+
Km as NotificationContainer,
|
|
382
|
+
Qm as NotificationProvider,
|
|
381
383
|
zt as NumberInput,
|
|
382
384
|
Go as Package,
|
|
383
385
|
Ho as PackageIcon,
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
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
|
-
|
|
406
|
+
rc as ProcessingIndicator,
|
|
405
407
|
or as Quote,
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
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
|
-
|
|
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
|
-
|
|
420
|
-
|
|
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
|
-
|
|
429
|
+
Wa as SettingsSidebarWidget,
|
|
428
430
|
xr as ShareIcon,
|
|
429
|
-
|
|
430
|
-
|
|
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
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
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
|
-
|
|
455
|
+
Wc as Stepper,
|
|
454
456
|
Hi as StepsProgress,
|
|
455
457
|
Tr as Stop,
|
|
456
|
-
|
|
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
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
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
|
-
|
|
471
|
-
|
|
472
|
-
|
|
472
|
+
wr as TerminalIcon,
|
|
473
|
+
Qc as TerminalWidget,
|
|
474
|
+
qc as TextBlock,
|
|
473
475
|
Kt as Textarea,
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
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
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
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
|
-
|
|
497
|
-
|
|
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
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
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
|
-
|
|
514
|
+
Ac as Wizard,
|
|
513
515
|
Yr as Workflow,
|
|
514
|
-
|
|
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
|
-
|
|
520
|
-
|
|
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
|
-
|
|
527
|
+
Nl as buildAssistantNoticeEvents,
|
|
526
528
|
n as builtInThemes,
|
|
527
|
-
|
|
529
|
+
Ql as checkCollision,
|
|
528
530
|
mt as clampTerminalCursor,
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
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
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
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
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
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
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
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
|
-
|
|
574
|
+
Zp as formatKeybind,
|
|
573
575
|
rn as getFileIcon,
|
|
574
576
|
h as getFloeColorTokenValue,
|
|
575
|
-
|
|
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
|
-
|
|
583
|
+
ql as hasCollision,
|
|
582
584
|
xn as hasComponentRegistryContext,
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
585
|
+
tp as hasDiffWorker,
|
|
586
|
+
ga as hasFileBrowserDragContext,
|
|
587
|
+
lp as hasMarkdownWorker,
|
|
588
|
+
Fp as highlightCode,
|
|
587
589
|
pt as insertTerminalText,
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
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
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
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
|
-
|
|
615
|
+
Op as scaleIn,
|
|
614
616
|
St as setTerminalSessionInputValue,
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
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
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
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
|
-
|
|
639
|
+
yp as useCodeHighlight,
|
|
638
640
|
pn as useCommand,
|
|
639
|
-
|
|
641
|
+
ts as useCommandContributions,
|
|
640
642
|
gn as useComponentContextFactory,
|
|
641
643
|
In as useComponentRegistry,
|
|
642
|
-
|
|
643
|
-
|
|
644
|
+
Bl as useCurrentWidgetId,
|
|
645
|
+
ls as useDebounce,
|
|
644
646
|
On as useDeck,
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
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
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
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
|
};
|