@floegence/floe-webapp-core 0.1.9 → 0.1.11

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.
Files changed (82) hide show
  1. package/dist/components/ui/Tabs.d.ts +25 -0
  2. package/dist/components/ui/index.d.ts +1 -0
  3. package/dist/context/FloeConfigContext.d.ts +31 -1
  4. package/dist/index.js +187 -184
  5. package/dist/index10.js +65 -50
  6. package/dist/index11.js +4 -4
  7. package/dist/index12.js +3 -3
  8. package/dist/index13.js +41 -39
  9. package/dist/index14.js +5 -5
  10. package/dist/index15.js +5 -5
  11. package/dist/index16.js +4 -4
  12. package/dist/index17.js +6 -6
  13. package/dist/index18.js +2 -2
  14. package/dist/index19.js +2 -2
  15. package/dist/index2.js +6 -6
  16. package/dist/index20.js +1 -1
  17. package/dist/index21.js +4 -4
  18. package/dist/index22.js +3 -3
  19. package/dist/index23.js +3 -3
  20. package/dist/index24.js +21 -15
  21. package/dist/index25.js +5 -5
  22. package/dist/index26.js +1 -1
  23. package/dist/index27.js +187 -80
  24. package/dist/index28.js +87 -37
  25. package/dist/index29.js +37 -66
  26. package/dist/index3.js +1 -1
  27. package/dist/index30.js +69 -278
  28. package/dist/index31.js +278 -152
  29. package/dist/index32.js +147 -24
  30. package/dist/index33.js +26 -45
  31. package/dist/index34.js +45 -10
  32. package/dist/index35.js +10 -27
  33. package/dist/index36.js +27 -142
  34. package/dist/index37.js +135 -99
  35. package/dist/index38.js +105 -89
  36. package/dist/index39.js +79 -97
  37. package/dist/index4.js +1 -1
  38. package/dist/index40.js +84 -60
  39. package/dist/index41.js +81 -173
  40. package/dist/index42.js +177 -65
  41. package/dist/index43.js +56 -61
  42. package/dist/index44.js +70 -38
  43. package/dist/index45.js +39 -48
  44. package/dist/index46.js +40 -30
  45. package/dist/index47.js +37 -24
  46. package/dist/index48.js +21 -169
  47. package/dist/index49.js +169 -36
  48. package/dist/index5.js +4 -4
  49. package/dist/index50.js +38 -64
  50. package/dist/index51.js +63 -93
  51. package/dist/index52.js +88 -109
  52. package/dist/index53.js +110 -131
  53. package/dist/index54.js +131 -32
  54. package/dist/index55.js +30 -374
  55. package/dist/index56.js +405 -12
  56. package/dist/index57.js +13 -10
  57. package/dist/index58.js +10 -16
  58. package/dist/index59.js +16 -10
  59. package/dist/index6.js +2 -2
  60. package/dist/index60.js +10 -8
  61. package/dist/index61.js +8 -56
  62. package/dist/index62.js +58 -5
  63. package/dist/index63.js +5 -3
  64. package/dist/index64.js +3 -45
  65. package/dist/index65.js +42 -23
  66. package/dist/index66.js +24 -30
  67. package/dist/index67.js +31 -90
  68. package/dist/index68.js +91 -22
  69. package/dist/index69.js +19 -43
  70. package/dist/index7.js +1 -1
  71. package/dist/index70.js +45 -13
  72. package/dist/index71.js +14 -35
  73. package/dist/index72.js +33 -62
  74. package/dist/index73.js +61 -81
  75. package/dist/index74.js +84 -14
  76. package/dist/index75.js +12 -2261
  77. package/dist/index76.js +2262 -6
  78. package/dist/index77.js +10 -0
  79. package/dist/index8.js +2 -2
  80. package/dist/index9.js +1 -1
  81. package/dist/styles.css +1 -1
  82. package/package.json +1 -1
@@ -0,0 +1,25 @@
1
+ import { type JSX } from 'solid-js';
2
+ export interface TabItem {
3
+ id: string;
4
+ label: string;
5
+ icon?: JSX.Element;
6
+ closable?: boolean;
7
+ disabled?: boolean;
8
+ }
9
+ export interface TabsProps extends Omit<JSX.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onClose'> {
10
+ items: TabItem[];
11
+ activeId?: string;
12
+ onChange?: (id: string) => void;
13
+ onClose?: (id: string) => void;
14
+ onAdd?: () => void;
15
+ showAdd?: boolean;
16
+ closable?: boolean;
17
+ size?: 'sm' | 'md';
18
+ variant?: 'default' | 'card' | 'underline';
19
+ }
20
+ export declare function Tabs(props: TabsProps): JSX.Element;
21
+ export interface TabPanelProps extends JSX.HTMLAttributes<HTMLDivElement> {
22
+ active?: boolean;
23
+ keepMounted?: boolean;
24
+ }
25
+ export declare function TabPanel(props: TabPanelProps): JSX.Element;
@@ -6,3 +6,4 @@ export { Dropdown, Select, type DropdownProps, type DropdownItem, type SelectPro
6
6
  export { Tooltip, type TooltipProps } from './Tooltip';
7
7
  export { CommandPalette } from './CommandPalette';
8
8
  export { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter, Interactive3DCard, AnimatedBorderCard, NeonCard, MorphCard, type CardProps, type CardVariant, type CardHeaderProps, type CardTitleProps, type CardDescriptionProps, type CardContentProps, type CardFooterProps, type Interactive3DCardProps, type AnimatedBorderCardProps, type NeonCardProps, type MorphCardProps, } from './Card';
9
+ export { Tabs, TabPanel, type TabsProps, type TabPanelProps, type TabItem } from './Tabs';
@@ -75,6 +75,36 @@ export interface FloeThemeConfig {
75
75
  }
76
76
  export interface FloeDeckConfig {
77
77
  storageKey: string;
78
+ /**
79
+ * Optional deck presets to seed the initial layouts list.
80
+ * When provided, these layouts are treated as (potentially) read-only presets
81
+ * depending on `isPreset`.
82
+ */
83
+ presets?: FloeDeckPresetLayout[];
84
+ /**
85
+ * Optional default active layout id when there is no persisted active layout.
86
+ * If the id does not exist, the deck will fall back to the first available layout.
87
+ */
88
+ defaultActiveLayoutId?: string;
89
+ }
90
+ export interface FloeDeckPresetLayout {
91
+ id: string;
92
+ name: string;
93
+ widgets: FloeDeckPresetWidget[];
94
+ /** When true, the layout is treated as a preset (rename/delete disabled by default UI). */
95
+ isPreset?: boolean;
96
+ }
97
+ export interface FloeDeckPresetWidget {
98
+ id: string;
99
+ type: string;
100
+ position: {
101
+ col: number;
102
+ row: number;
103
+ colSpan: number;
104
+ rowSpan: number;
105
+ };
106
+ config?: Record<string, unknown>;
107
+ title?: string;
78
108
  }
79
109
  export interface FloeStrings {
80
110
  topBar: {
@@ -116,7 +146,7 @@ export interface FloeConfigValue {
116
146
  config: FloeConfig;
117
147
  persist: PersistApi;
118
148
  }
119
- export type DeepPartial<T> = T extends (...args: never[]) => unknown ? T : T extends readonly (infer U)[] ? readonly U[] : T extends object ? {
149
+ export type DeepPartial<T> = T extends (...args: never[]) => unknown ? T : T extends readonly (infer U)[] ? readonly DeepPartial<U>[] : T extends object ? {
120
150
  [K in keyof T]?: DeepPartial<T[K]>;
121
151
  } : T;
122
152
  export declare const DEFAULT_FLOE_CONFIG: FloeConfig;
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import { TopBar as x } from "./index5.js";
5
5
  import { BottomBar as c, BottomBarItem as C, StatusIndicator as g } from "./index6.js";
6
6
  import { MobileTabBar as S } from "./index7.js";
7
7
  import { ResizeHandle as h } from "./index8.js";
8
- import { Panel as I, PanelContent as D, PanelHeader as v } from "./index9.js";
8
+ import { Panel as I, PanelContent as D, PanelHeader as b } from "./index9.js";
9
9
  import { DECK_GRID_CONFIG as T, DeckGrid as P } from "./index10.js";
10
10
  import { DeckCell as L } from "./index11.js";
11
11
  import { WidgetFrame as k } from "./index12.js";
@@ -23,61 +23,62 @@ import { Dropdown as oe, Select as re } from "./index23.js";
23
23
  import { Tooltip as ie } from "./index24.js";
24
24
  import { CommandPalette as ne } from "./index25.js";
25
25
  import { AnimatedBorderCard as pe, Card as de, CardContent as fe, CardDescription as le, CardFooter as xe, CardHeader as se, CardTitle as ce, Interactive3DCard as Ce, MorphCard as ge, NeonCard as ue } from "./index26.js";
26
- import { SnakeLoader as Fe } from "./index27.js";
27
- import { LoadingOverlay as ye } from "./index28.js";
28
- import { Skeleton as De, SkeletonCard as ve, SkeletonList as be, SkeletonText as Te } from "./index29.js";
29
- import { ArrowRightLeft as Be, Bell as Le, Check as Re, ChevronDown as ke, ChevronRight as We, Copy as Ge, Files as we, GitBranch as Me, Grid as Ne, Grid3x3 as ze, GripVertical as Ae, LayoutDashboard as Oe, Loader2 as Ke, Maximize as He, Minus as Ve, Moon as _e, Pencil as Ee, Plus as Qe, Restore as Ue, Search as Xe, Settings as Ze, Sun as je, Terminal as qe, Trash as Je, X as Ye } from "./index30.js";
30
- import { Launchpad as eo } from "./index31.js";
31
- import { LaunchpadItem as ro } from "./index32.js";
32
- import { LaunchpadGrid as io } from "./index33.js";
33
- import { LaunchpadSearch as no } from "./index34.js";
34
- import { LaunchpadPagination as po } from "./index35.js";
35
- import { FileBrowser as lo } from "./index36.js";
36
- import { FileBrowserProvider as so, useFileBrowser as co } from "./index37.js";
37
- import { DirectoryTree as go } from "./index38.js";
38
- import { FileListView as So } from "./index39.js";
39
- import { FileGridView as ho } from "./index40.js";
40
- import { FileContextMenu as Io } from "./index41.js";
41
- import { Breadcrumb as vo } from "./index42.js";
42
- import { FileBrowserToolbar as To } from "./index43.js";
43
- import { CodeFileIcon as Bo, ConfigFileIcon as Lo, DocumentFileIcon as Ro, FileIcon as ko, FolderIcon as Wo, FolderOpenIcon as Go, ImageFileIcon as wo, StyleFileIcon as Mo, getFileIcon as No } from "./index44.js";
44
- import { FloeProvider as Ao } from "./index45.js";
45
- import { FloeApp as Ko } from "./index46.js";
46
- import { createSimpleContext as Vo } from "./index47.js";
47
- import { DEFAULT_FLOE_CONFIG as Eo, FloeConfigProvider as Qo, useFloeConfig as Uo, useResolvedFloeConfig as Xo } from "./index48.js";
48
- import { ThemeProvider as jo, createThemeService as qo, useTheme as Jo } from "./index49.js";
49
- import { LayoutProvider as $o, createLayoutService as er, useLayout as or } from "./index50.js";
50
- import { CommandProvider as tr, createCommandService as ir, useCommand as ar } from "./index51.js";
51
- import { NotificationContainer as mr, NotificationProvider as pr, createNotificationService as dr, useNotification as fr } from "./index52.js";
52
- import { ComponentRegistryProvider as xr, createComponentRegistry as sr, useComponentContextFactory as cr, useComponentRegistry as Cr } from "./index53.js";
53
- import { WidgetRegistryProvider as ur, createWidgetRegistry as Sr, useWidgetRegistry as Fr } from "./index54.js";
54
- import { DeckProvider as yr, createDeckService as Ir, useDeck as Dr } from "./index55.js";
55
- import { useMediaQuery as br } from "./index56.js";
56
- import { useDebounce as Pr } from "./index57.js";
57
- import { useResizeObserver as Lr } from "./index58.js";
58
- import { useKeybind as kr } from "./index59.js";
59
- import { usePersisted as Gr } from "./index60.js";
60
- import { useDeckDrag as Mr } from "./index61.js";
61
- import { cn as zr } from "./index62.js";
62
- import { deferNonBlocking as Or } from "./index63.js";
63
- import { clearAll as Hr, debouncedSave as Vr, load as _r, remove as Er, save as Qr } from "./index64.js";
64
- import { formatKeybind as Xr, matchKeybind as Zr, parseKeybind as jr } from "./index65.js";
65
- import { lockBodyStyle as Jr } from "./index66.js";
66
- import { duration as $r, easing as et, fadeIn as ot, listContainer as rt, listItem as tt, panelResize as it, popIn as at, scaleIn as nt, sidebarVariants as mt, slideInFromBottom as pt, slideInFromLeft as dt, slideInFromRight as ft, slideInFromTop as lt, springConfig as xt } from "./index67.js";
67
- import { checkCollision as ct, constrainPosition as Ct, findFreePosition as gt, hasCollision as ut } from "./index68.js";
68
- import { applyDragDelta as Ft, applyResizeDelta as ht, getGridCellSize as yt, pixelDeltaToGridDelta as It, positionToGridArea as Dt, snapToGrid as vt } from "./index69.js";
69
- import { applyTheme as Tt, builtInThemes as Pt, getSystemTheme as Bt } from "./index70.js";
70
- import { FilesSidebarWidget as Rt, SearchSidebarWidget as kt, SettingsSidebarWidget as Wt, ShowcaseSidebarWidget as Gt, SidebarWidget as wt } from "./index71.js";
71
- import { MetricsWidget as Nt } from "./index72.js";
72
- import { TerminalWidget as At } from "./index73.js";
26
+ import { TabPanel as Fe, Tabs as he } from "./index27.js";
27
+ import { SnakeLoader as Ie } from "./index28.js";
28
+ import { LoadingOverlay as be } from "./index29.js";
29
+ import { Skeleton as Te, SkeletonCard as Pe, SkeletonList as Be, SkeletonText as Le } from "./index30.js";
30
+ import { ArrowRightLeft as ke, Bell as We, Check as Ge, ChevronDown as we, ChevronRight as Me, Copy as Ne, Files as ze, GitBranch as Ae, Grid as Oe, Grid3x3 as Ke, GripVertical as He, LayoutDashboard as Ve, Loader2 as _e, Maximize as Ee, Minus as Qe, Moon as Ue, Pencil as Xe, Plus as Ze, Restore as je, Search as qe, Settings as Je, Sun as Ye, Terminal as $e, Trash as eo, X as oo } from "./index31.js";
31
+ import { Launchpad as to } from "./index32.js";
32
+ import { LaunchpadItem as ao } from "./index33.js";
33
+ import { LaunchpadGrid as mo } from "./index34.js";
34
+ import { LaunchpadSearch as fo } from "./index35.js";
35
+ import { LaunchpadPagination as xo } from "./index36.js";
36
+ import { FileBrowser as co } from "./index37.js";
37
+ import { FileBrowserProvider as go, useFileBrowser as uo } from "./index38.js";
38
+ import { DirectoryTree as Fo } from "./index39.js";
39
+ import { FileListView as yo } from "./index40.js";
40
+ import { FileGridView as Do } from "./index41.js";
41
+ import { FileContextMenu as vo } from "./index42.js";
42
+ import { Breadcrumb as Po } from "./index43.js";
43
+ import { FileBrowserToolbar as Lo } from "./index44.js";
44
+ import { CodeFileIcon as ko, ConfigFileIcon as Wo, DocumentFileIcon as Go, FileIcon as wo, FolderIcon as Mo, FolderOpenIcon as No, ImageFileIcon as zo, StyleFileIcon as Ao, getFileIcon as Oo } from "./index45.js";
45
+ import { FloeProvider as Ho } from "./index46.js";
46
+ import { FloeApp as _o } from "./index47.js";
47
+ import { createSimpleContext as Qo } from "./index48.js";
48
+ import { DEFAULT_FLOE_CONFIG as Xo, FloeConfigProvider as Zo, useFloeConfig as jo, useResolvedFloeConfig as qo } from "./index49.js";
49
+ import { ThemeProvider as Yo, createThemeService as $o, useTheme as er } from "./index50.js";
50
+ import { LayoutProvider as rr, createLayoutService as tr, useLayout as ir } from "./index51.js";
51
+ import { CommandProvider as nr, createCommandService as mr, useCommand as pr } from "./index52.js";
52
+ import { NotificationContainer as fr, NotificationProvider as lr, createNotificationService as xr, useNotification as sr } from "./index53.js";
53
+ import { ComponentRegistryProvider as Cr, createComponentRegistry as gr, useComponentContextFactory as ur, useComponentRegistry as Sr } from "./index54.js";
54
+ import { WidgetRegistryProvider as hr, createWidgetRegistry as yr, useWidgetRegistry as Ir } from "./index55.js";
55
+ import { DeckProvider as br, createDeckService as vr, useDeck as Tr } from "./index56.js";
56
+ import { useMediaQuery as Br } from "./index57.js";
57
+ import { useDebounce as Rr } from "./index58.js";
58
+ import { useResizeObserver as Wr } from "./index59.js";
59
+ import { useKeybind as wr } from "./index60.js";
60
+ import { usePersisted as Nr } from "./index61.js";
61
+ import { useDeckDrag as Ar } from "./index62.js";
62
+ import { cn as Kr } from "./index63.js";
63
+ import { deferNonBlocking as Vr } from "./index64.js";
64
+ import { clearAll as Er, debouncedSave as Qr, load as Ur, remove as Xr, save as Zr } from "./index65.js";
65
+ import { formatKeybind as qr, matchKeybind as Jr, parseKeybind as Yr } from "./index66.js";
66
+ import { lockBodyStyle as et } from "./index67.js";
67
+ import { duration as rt, easing as tt, fadeIn as it, listContainer as at, listItem as nt, panelResize as mt, popIn as pt, scaleIn as dt, sidebarVariants as ft, slideInFromBottom as lt, slideInFromLeft as xt, slideInFromRight as st, slideInFromTop as ct, springConfig as Ct } from "./index68.js";
68
+ import { checkCollision as ut, constrainPosition as St, findFreePosition as Ft, hasCollision as ht } from "./index69.js";
69
+ import { applyDragDelta as It, applyResizeDelta as Dt, getGridCellSize as bt, pixelDeltaToGridDelta as vt, positionToGridArea as Tt, snapToGrid as Pt } from "./index70.js";
70
+ import { applyTheme as Lt, builtInThemes as Rt, getSystemTheme as kt } from "./index71.js";
71
+ import { FilesSidebarWidget as Gt, SearchSidebarWidget as wt, SettingsSidebarWidget as Mt, ShowcaseSidebarWidget as Nt, SidebarWidget as zt } from "./index72.js";
72
+ import { MetricsWidget as Ot } from "./index73.js";
73
+ import { TerminalWidget as Ht } from "./index74.js";
73
74
  export {
74
75
  i as ActivityBar,
75
76
  pe as AnimatedBorderCard,
76
- Be as ArrowRightLeft,
77
- Le as Bell,
77
+ ke as ArrowRightLeft,
78
+ We as Bell,
78
79
  c as BottomBar,
79
80
  C as BottomBarItem,
80
- vo as Breadcrumb,
81
+ Po as Breadcrumb,
81
82
  Q as Button,
82
83
  de as Card,
83
84
  fe as CardContent,
@@ -85,171 +86,173 @@ export {
85
86
  xe as CardFooter,
86
87
  se as CardHeader,
87
88
  ce as CardTitle,
88
- Re as Check,
89
- ke as ChevronDown,
90
- We as ChevronRight,
91
- Bo as CodeFileIcon,
89
+ Ge as Check,
90
+ we as ChevronDown,
91
+ Me as ChevronRight,
92
+ ko as CodeFileIcon,
92
93
  ne as CommandPalette,
93
- tr as CommandProvider,
94
- xr as ComponentRegistryProvider,
95
- Lo as ConfigFileIcon,
94
+ nr as CommandProvider,
95
+ Cr as ComponentRegistryProvider,
96
+ Wo as ConfigFileIcon,
96
97
  q as ConfirmDialog,
97
- Ge as Copy,
98
+ Ne as Copy,
98
99
  T as DECK_GRID_CONFIG,
99
- Eo as DEFAULT_FLOE_CONFIG,
100
+ Xo as DEFAULT_FLOE_CONFIG,
100
101
  L as DeckCell,
101
102
  P as DeckGrid,
102
- yr as DeckProvider,
103
+ br as DeckProvider,
103
104
  H as DeckTopBar,
104
105
  J as Dialog,
105
- go as DirectoryTree,
106
- Ro as DocumentFileIcon,
106
+ Fo as DirectoryTree,
107
+ Go as DocumentFileIcon,
107
108
  _ as DropZonePreview,
108
109
  oe as Dropdown,
109
- lo as FileBrowser,
110
- so as FileBrowserProvider,
111
- To as FileBrowserToolbar,
112
- Io as FileContextMenu,
113
- ho as FileGridView,
114
- ko as FileIcon,
115
- So as FileListView,
116
- we as Files,
117
- Rt as FilesSidebarWidget,
110
+ co as FileBrowser,
111
+ go as FileBrowserProvider,
112
+ Lo as FileBrowserToolbar,
113
+ vo as FileContextMenu,
114
+ Do as FileGridView,
115
+ wo as FileIcon,
116
+ yo as FileListView,
117
+ ze as Files,
118
+ Gt as FilesSidebarWidget,
118
119
  $ as FloatingWindow,
119
- Ko as FloeApp,
120
- Qo as FloeConfigProvider,
121
- Ao as FloeProvider,
122
- Wo as FolderIcon,
123
- Go as FolderOpenIcon,
124
- Me as GitBranch,
125
- Ne as Grid,
126
- ze as Grid3x3,
127
- Ae as GripVertical,
128
- wo as ImageFileIcon,
120
+ _o as FloeApp,
121
+ Zo as FloeConfigProvider,
122
+ Ho as FloeProvider,
123
+ Mo as FolderIcon,
124
+ No as FolderOpenIcon,
125
+ Ae as GitBranch,
126
+ Oe as Grid,
127
+ Ke as Grid3x3,
128
+ He as GripVertical,
129
+ zo as ImageFileIcon,
129
130
  X as Input,
130
131
  Ce as Interactive3DCard,
131
- eo as Launchpad,
132
- io as LaunchpadGrid,
133
- ro as LaunchpadItem,
134
- po as LaunchpadPagination,
135
- no as LaunchpadSearch,
136
- Oe as LayoutDashboard,
137
- $o as LayoutProvider,
132
+ to as Launchpad,
133
+ mo as LaunchpadGrid,
134
+ ao as LaunchpadItem,
135
+ xo as LaunchpadPagination,
136
+ fo as LaunchpadSearch,
137
+ Ve as LayoutDashboard,
138
+ rr as LayoutProvider,
138
139
  O as LayoutSelector,
139
- Ke as Loader2,
140
- ye as LoadingOverlay,
141
- He as Maximize,
142
- Nt as MetricsWidget,
143
- Ve as Minus,
140
+ _e as Loader2,
141
+ be as LoadingOverlay,
142
+ Ee as Maximize,
143
+ Ot as MetricsWidget,
144
+ Qe as Minus,
144
145
  S as MobileTabBar,
145
- _e as Moon,
146
+ Ue as Moon,
146
147
  ge as MorphCard,
147
148
  ue as NeonCard,
148
- mr as NotificationContainer,
149
- pr as NotificationProvider,
149
+ fr as NotificationContainer,
150
+ lr as NotificationProvider,
150
151
  I as Panel,
151
152
  D as PanelContent,
152
- v as PanelHeader,
153
- Ee as Pencil,
154
- Qe as Plus,
153
+ b as PanelHeader,
154
+ Xe as Pencil,
155
+ Ze as Plus,
155
156
  h as ResizeHandle,
156
- Ue as Restore,
157
- Xe as Search,
158
- kt as SearchSidebarWidget,
157
+ je as Restore,
158
+ qe as Search,
159
+ wt as SearchSidebarWidget,
159
160
  re as Select,
160
- Ze as Settings,
161
- Wt as SettingsSidebarWidget,
161
+ Je as Settings,
162
+ Mt as SettingsSidebarWidget,
162
163
  r as Shell,
163
- Gt as ShowcaseSidebarWidget,
164
+ Nt as ShowcaseSidebarWidget,
164
165
  n as Sidebar,
165
166
  m as SidebarContent,
166
167
  p as SidebarItem,
167
168
  d as SidebarItemList,
168
169
  f as SidebarSection,
169
- wt as SidebarWidget,
170
- De as Skeleton,
171
- ve as SkeletonCard,
172
- be as SkeletonList,
173
- Te as SkeletonText,
174
- Fe as SnakeLoader,
170
+ zt as SidebarWidget,
171
+ Te as Skeleton,
172
+ Pe as SkeletonCard,
173
+ Be as SkeletonList,
174
+ Le as SkeletonText,
175
+ Ie as SnakeLoader,
175
176
  g as StatusIndicator,
176
- Mo as StyleFileIcon,
177
- je as Sun,
178
- qe as Terminal,
179
- At as TerminalWidget,
177
+ Ao as StyleFileIcon,
178
+ Ye as Sun,
179
+ Fe as TabPanel,
180
+ he as Tabs,
181
+ $e as Terminal,
182
+ Ht as TerminalWidget,
180
183
  Z as Textarea,
181
- jo as ThemeProvider,
184
+ Yo as ThemeProvider,
182
185
  ie as Tooltip,
183
186
  x as TopBar,
184
- Je as Trash,
187
+ eo as Trash,
185
188
  k as WidgetFrame,
186
189
  M as WidgetPalette,
187
- ur as WidgetRegistryProvider,
190
+ hr as WidgetRegistryProvider,
188
191
  G as WidgetResizeHandle,
189
192
  z as WidgetTypeSwitcher,
190
- Ye as X,
191
- Ft as applyDragDelta,
192
- ht as applyResizeDelta,
193
- Tt as applyTheme,
194
- Pt as builtInThemes,
195
- ct as checkCollision,
196
- Hr as clearAll,
197
- zr as cn,
198
- Ct as constrainPosition,
199
- ir as createCommandService,
200
- sr as createComponentRegistry,
201
- Ir as createDeckService,
202
- er as createLayoutService,
203
- dr as createNotificationService,
204
- Vo as createSimpleContext,
205
- qo as createThemeService,
206
- Sr as createWidgetRegistry,
207
- Vr as debouncedSave,
208
- Or as deferNonBlocking,
209
- $r as duration,
210
- et as easing,
211
- ot as fadeIn,
212
- gt as findFreePosition,
213
- Xr as formatKeybind,
214
- No as getFileIcon,
215
- yt as getGridCellSize,
216
- Bt as getSystemTheme,
217
- ut as hasCollision,
218
- rt as listContainer,
219
- tt as listItem,
220
- _r as load,
221
- Jr as lockBodyStyle,
222
- Zr as matchKeybind,
223
- it as panelResize,
224
- jr as parseKeybind,
225
- It as pixelDeltaToGridDelta,
226
- at as popIn,
227
- Dt as positionToGridArea,
228
- Er as remove,
229
- Qr as save,
230
- nt as scaleIn,
231
- mt as sidebarVariants,
232
- pt as slideInFromBottom,
233
- dt as slideInFromLeft,
234
- ft as slideInFromRight,
235
- lt as slideInFromTop,
236
- vt as snapToGrid,
237
- xt as springConfig,
238
- ar as useCommand,
239
- cr as useComponentContextFactory,
240
- Cr as useComponentRegistry,
241
- Pr as useDebounce,
242
- Dr as useDeck,
243
- Mr as useDeckDrag,
244
- co as useFileBrowser,
245
- Uo as useFloeConfig,
246
- kr as useKeybind,
247
- or as useLayout,
248
- br as useMediaQuery,
249
- fr as useNotification,
250
- Gr as usePersisted,
251
- Lr as useResizeObserver,
252
- Xo as useResolvedFloeConfig,
253
- Jo as useTheme,
254
- Fr as useWidgetRegistry
193
+ oo as X,
194
+ It as applyDragDelta,
195
+ Dt as applyResizeDelta,
196
+ Lt as applyTheme,
197
+ Rt as builtInThemes,
198
+ ut as checkCollision,
199
+ Er as clearAll,
200
+ Kr as cn,
201
+ St as constrainPosition,
202
+ mr as createCommandService,
203
+ gr as createComponentRegistry,
204
+ vr as createDeckService,
205
+ tr as createLayoutService,
206
+ xr as createNotificationService,
207
+ Qo as createSimpleContext,
208
+ $o as createThemeService,
209
+ yr as createWidgetRegistry,
210
+ Qr as debouncedSave,
211
+ Vr as deferNonBlocking,
212
+ rt as duration,
213
+ tt as easing,
214
+ it as fadeIn,
215
+ Ft as findFreePosition,
216
+ qr as formatKeybind,
217
+ Oo as getFileIcon,
218
+ bt as getGridCellSize,
219
+ kt as getSystemTheme,
220
+ ht as hasCollision,
221
+ at as listContainer,
222
+ nt as listItem,
223
+ Ur as load,
224
+ et as lockBodyStyle,
225
+ Jr as matchKeybind,
226
+ mt as panelResize,
227
+ Yr as parseKeybind,
228
+ vt as pixelDeltaToGridDelta,
229
+ pt as popIn,
230
+ Tt as positionToGridArea,
231
+ Xr as remove,
232
+ Zr as save,
233
+ dt as scaleIn,
234
+ ft as sidebarVariants,
235
+ lt as slideInFromBottom,
236
+ xt as slideInFromLeft,
237
+ st as slideInFromRight,
238
+ ct as slideInFromTop,
239
+ Pt as snapToGrid,
240
+ Ct as springConfig,
241
+ pr as useCommand,
242
+ ur as useComponentContextFactory,
243
+ Sr as useComponentRegistry,
244
+ Rr as useDebounce,
245
+ Tr as useDeck,
246
+ Ar as useDeckDrag,
247
+ uo as useFileBrowser,
248
+ jo as useFloeConfig,
249
+ wr as useKeybind,
250
+ ir as useLayout,
251
+ Br as useMediaQuery,
252
+ sr as useNotification,
253
+ Nr as usePersisted,
254
+ Wr as useResizeObserver,
255
+ qo as useResolvedFloeConfig,
256
+ er as useTheme,
257
+ Ir as useWidgetRegistry
255
258
  };