@floegence/floe-webapp-core 0.1.18 → 0.1.20
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/deck/DeckGrid.d.ts +17 -1
- package/dist/components/deck/index.d.ts +1 -1
- package/dist/index.js +231 -230
- package/dist/index11.js +101 -70
- package/dist/index14.js +51 -45
- package/dist/index3.js +13 -13
- package/dist/index66.js +39 -39
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -4,11 +4,27 @@ export interface DeckGridProps {
|
|
|
4
4
|
children?: JSX.Element;
|
|
5
5
|
}
|
|
6
6
|
/**
|
|
7
|
-
* CSS Grid container for the deck layout (
|
|
7
|
+
* CSS Grid container for the deck layout (24x24 grid that fills the container)
|
|
8
|
+
*
|
|
9
|
+
* The grid is designed to:
|
|
10
|
+
* 1. Fill exactly one screen with a 24x24 grid (no scrolling by default)
|
|
11
|
+
* 2. Expand vertically when widgets are placed beyond row 24
|
|
12
|
+
* 3. Row height is calculated dynamically based on container height
|
|
8
13
|
*/
|
|
9
14
|
export declare function DeckGrid(props: DeckGridProps): JSX.Element;
|
|
10
15
|
export declare const DECK_GRID_CONFIG: {
|
|
16
|
+
cols: number;
|
|
17
|
+
defaultRows: number;
|
|
18
|
+
gap: number;
|
|
19
|
+
rowHeight: number;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Get grid configuration from the DOM element
|
|
23
|
+
* Use this for accurate row height during drag/resize operations
|
|
24
|
+
*/
|
|
25
|
+
export declare function getGridConfigFromElement(gridEl: HTMLElement): {
|
|
11
26
|
cols: number;
|
|
12
27
|
rowHeight: number;
|
|
13
28
|
gap: number;
|
|
29
|
+
defaultRows: number;
|
|
14
30
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { DeckGrid, DECK_GRID_CONFIG, type DeckGridProps } from './DeckGrid';
|
|
1
|
+
export { DeckGrid, DECK_GRID_CONFIG, getGridConfigFromElement, type DeckGridProps } from './DeckGrid';
|
|
2
2
|
export { DeckCell, type DeckCellProps } from './DeckCell';
|
|
3
3
|
export { WidgetFrame, type WidgetFrameProps } from './WidgetFrame';
|
|
4
4
|
export { WidgetResizeHandle, type WidgetResizeHandleProps } from './WidgetResizeHandle';
|
package/dist/index.js
CHANGED
|
@@ -7,264 +7,265 @@ import { MobileTabBar as S } from "./index7.js";
|
|
|
7
7
|
import { ResizeHandle as v } from "./index8.js";
|
|
8
8
|
import { Panel as y, PanelContent as I, PanelHeader as D } from "./index9.js";
|
|
9
9
|
import { KeepAliveStack as T } from "./index10.js";
|
|
10
|
-
import { DECK_GRID_CONFIG as B, DeckGrid as L } from "./index11.js";
|
|
11
|
-
import { DeckCell as
|
|
12
|
-
import { WidgetFrame as
|
|
13
|
-
import { WidgetResizeHandle as
|
|
14
|
-
import { WidgetPalette as
|
|
15
|
-
import { WidgetTypeSwitcher as
|
|
16
|
-
import { LayoutSelector as
|
|
10
|
+
import { DECK_GRID_CONFIG as B, DeckGrid as L, getGridConfigFromElement as W } from "./index11.js";
|
|
11
|
+
import { DeckCell as R } from "./index12.js";
|
|
12
|
+
import { WidgetFrame as G } from "./index13.js";
|
|
13
|
+
import { WidgetResizeHandle as M } from "./index14.js";
|
|
14
|
+
import { WidgetPalette as z } from "./index15.js";
|
|
15
|
+
import { WidgetTypeSwitcher as O } from "./index16.js";
|
|
16
|
+
import { LayoutSelector as E } from "./index17.js";
|
|
17
17
|
import { DeckTopBar as _ } from "./index18.js";
|
|
18
|
-
import { DropZonePreview as
|
|
19
|
-
import { Button as
|
|
20
|
-
import { Input as
|
|
21
|
-
import { ConfirmDialog as
|
|
22
|
-
import { FloatingWindow as
|
|
23
|
-
import { Dropdown as
|
|
24
|
-
import { Tooltip as
|
|
25
|
-
import { CommandPalette as
|
|
26
|
-
import { AnimatedBorderCard as
|
|
27
|
-
import { TabPanel as
|
|
28
|
-
import { SnakeLoader as
|
|
29
|
-
import { LoadingOverlay as
|
|
30
|
-
import { Skeleton as
|
|
31
|
-
import { ArrowRightLeft as
|
|
32
|
-
import { Launchpad as
|
|
33
|
-
import { LaunchpadItem as
|
|
34
|
-
import { LaunchpadGrid as
|
|
35
|
-
import { LaunchpadSearch as
|
|
36
|
-
import { LaunchpadPagination as
|
|
37
|
-
import { FileBrowser as
|
|
38
|
-
import { FileBrowserProvider as
|
|
39
|
-
import { DirectoryTree as
|
|
40
|
-
import { FileListView as
|
|
41
|
-
import { FileGridView as
|
|
42
|
-
import { FileContextMenu as
|
|
43
|
-
import { Breadcrumb as
|
|
44
|
-
import { FileBrowserToolbar as
|
|
45
|
-
import { CodeFileIcon as
|
|
18
|
+
import { DropZonePreview as U } from "./index19.js";
|
|
19
|
+
import { Button as Z } from "./index20.js";
|
|
20
|
+
import { Input as q, Textarea as J } from "./index21.js";
|
|
21
|
+
import { ConfirmDialog as $, Dialog as ee } from "./index22.js";
|
|
22
|
+
import { FloatingWindow as re } from "./index23.js";
|
|
23
|
+
import { Dropdown as ie, Select as ae } from "./index24.js";
|
|
24
|
+
import { Tooltip as me } from "./index25.js";
|
|
25
|
+
import { CommandPalette as de } from "./index26.js";
|
|
26
|
+
import { AnimatedBorderCard as le, Card as xe, CardContent as se, CardDescription as ce, CardFooter as ge, CardHeader as Ce, CardTitle as ue, Interactive3DCard as Se, MorphCard as Fe, NeonCard as ve } from "./index27.js";
|
|
27
|
+
import { TabPanel as ye, Tabs as Ie } from "./index28.js";
|
|
28
|
+
import { SnakeLoader as be } from "./index29.js";
|
|
29
|
+
import { LoadingOverlay as Pe } from "./index30.js";
|
|
30
|
+
import { Skeleton as Le, SkeletonCard as We, SkeletonList as ke, SkeletonText as Re } from "./index31.js";
|
|
31
|
+
import { ArrowRightLeft as Ge, Bell as Ae, Check as Me, ChevronDown as Ne, ChevronRight as ze, Copy as Ke, Files as Oe, GitBranch as Ve, Grid as Ee, Grid3x3 as He, GripVertical as _e, LayoutDashboard as Qe, Loader2 as Ue, Maximize as Xe, Minus as Ze, Moon as je, Pencil as qe, Plus as Je, Restore as Ye, Search as $e, Settings as eo, Sun as oo, Terminal as ro, Trash as to, X as io } from "./index32.js";
|
|
32
|
+
import { Launchpad as no } from "./index33.js";
|
|
33
|
+
import { LaunchpadItem as po } from "./index34.js";
|
|
34
|
+
import { LaunchpadGrid as lo } from "./index35.js";
|
|
35
|
+
import { LaunchpadSearch as so } from "./index36.js";
|
|
36
|
+
import { LaunchpadPagination as go } from "./index37.js";
|
|
37
|
+
import { FileBrowser as uo } from "./index38.js";
|
|
38
|
+
import { FileBrowserProvider as Fo, useFileBrowser as vo } from "./index39.js";
|
|
39
|
+
import { DirectoryTree as yo } from "./index40.js";
|
|
40
|
+
import { FileListView as Do } from "./index41.js";
|
|
41
|
+
import { FileGridView as To } from "./index42.js";
|
|
42
|
+
import { FileContextMenu as Bo } from "./index43.js";
|
|
43
|
+
import { Breadcrumb as Wo } from "./index44.js";
|
|
44
|
+
import { FileBrowserToolbar as Ro } from "./index45.js";
|
|
45
|
+
import { CodeFileIcon as Go, ConfigFileIcon as Ao, DocumentFileIcon as Mo, FileIcon as No, FolderIcon as zo, FolderOpenIcon as Ko, ImageFileIcon as Oo, StyleFileIcon as Vo, getFileIcon as Eo } from "./index46.js";
|
|
46
46
|
import { FloeProvider as _o } from "./index47.js";
|
|
47
|
-
import { FloeApp as
|
|
48
|
-
import { ActivityAppsMain as
|
|
49
|
-
import { createSimpleContext as
|
|
50
|
-
import { DEFAULT_FLOE_CONFIG as
|
|
51
|
-
import { ThemeProvider as
|
|
52
|
-
import { LayoutProvider as
|
|
53
|
-
import { CommandProvider as
|
|
54
|
-
import { NotificationContainer as
|
|
55
|
-
import { ComponentRegistryProvider as
|
|
56
|
-
import { WidgetRegistryProvider as
|
|
57
|
-
import { DeckProvider as
|
|
58
|
-
import { WidgetStateProvider as
|
|
59
|
-
import { ViewActivationProvider as
|
|
60
|
-
import { useMediaQuery as
|
|
47
|
+
import { FloeApp as Uo } from "./index48.js";
|
|
48
|
+
import { ActivityAppsMain as Zo } from "./index49.js";
|
|
49
|
+
import { createSimpleContext as qo } from "./index50.js";
|
|
50
|
+
import { DEFAULT_FLOE_CONFIG as Yo, FloeConfigProvider as $o, useFloeConfig as er, useResolvedFloeConfig as or } from "./index51.js";
|
|
51
|
+
import { ThemeProvider as tr, createThemeService as ir, useTheme as ar } from "./index52.js";
|
|
52
|
+
import { LayoutProvider as mr, createLayoutService as pr, useLayout as dr } from "./index53.js";
|
|
53
|
+
import { CommandProvider as lr, createCommandService as xr, useCommand as sr } from "./index54.js";
|
|
54
|
+
import { NotificationContainer as gr, NotificationProvider as Cr, createNotificationService as ur, useNotification as Sr } from "./index55.js";
|
|
55
|
+
import { ComponentRegistryProvider as vr, createComponentRegistry as hr, useComponentContextFactory as yr, useComponentRegistry as Ir } from "./index56.js";
|
|
56
|
+
import { WidgetRegistryProvider as br, createWidgetRegistry as Tr, useWidgetRegistry as Pr } from "./index57.js";
|
|
57
|
+
import { DeckProvider as Lr, createDeckService as Wr, useDeck as kr } from "./index58.js";
|
|
58
|
+
import { WidgetStateProvider as wr, useCurrentWidgetId as Gr, useWidgetState as Ar, useWidgetStateContext as Mr } from "./index59.js";
|
|
59
|
+
import { ViewActivationProvider as zr, useViewActivation as Kr } from "./index60.js";
|
|
60
|
+
import { useMediaQuery as Vr } from "./index61.js";
|
|
61
61
|
import { useDebounce as Hr } from "./index62.js";
|
|
62
|
-
import { useResizeObserver as
|
|
63
|
-
import { useKeybind as
|
|
64
|
-
import { usePersisted as
|
|
65
|
-
import { useDeckDrag as
|
|
66
|
-
import { cn as
|
|
67
|
-
import { deferNonBlocking as
|
|
68
|
-
import { clearAll as
|
|
69
|
-
import { formatKeybind as
|
|
70
|
-
import { lockBodyStyle as
|
|
71
|
-
import { duration as
|
|
72
|
-
import { checkCollision as
|
|
73
|
-
import { applyDragDelta as
|
|
74
|
-
import { applyTheme as
|
|
75
|
-
import { FilesSidebarWidget as
|
|
76
|
-
import { MetricsWidget as
|
|
77
|
-
import { TerminalWidget as
|
|
62
|
+
import { useResizeObserver as Qr } from "./index63.js";
|
|
63
|
+
import { useKeybind as Xr } from "./index64.js";
|
|
64
|
+
import { usePersisted as jr } from "./index65.js";
|
|
65
|
+
import { useDeckDrag as Jr } from "./index66.js";
|
|
66
|
+
import { cn as $r } from "./index67.js";
|
|
67
|
+
import { deferNonBlocking as ot } from "./index68.js";
|
|
68
|
+
import { clearAll as tt, debouncedSave as it, load as at, remove as nt, save as mt } from "./index69.js";
|
|
69
|
+
import { formatKeybind as dt, matchKeybind as ft, parseKeybind as lt } from "./index70.js";
|
|
70
|
+
import { lockBodyStyle as st } from "./index71.js";
|
|
71
|
+
import { duration as gt, easing as Ct, fadeIn as ut, listContainer as St, listItem as Ft, panelResize as vt, popIn as ht, scaleIn as yt, sidebarVariants as It, slideInFromBottom as Dt, slideInFromLeft as bt, slideInFromRight as Tt, slideInFromTop as Pt, springConfig as Bt } from "./index72.js";
|
|
72
|
+
import { checkCollision as Wt, constrainPosition as kt, findFreePosition as Rt, hasCollision as wt } from "./index73.js";
|
|
73
|
+
import { applyDragDelta as At, applyResizeDelta as Mt, getGridCellSize as Nt, pixelDeltaToGridDelta as zt, positionToGridArea as Kt, snapToGrid as Ot } from "./index74.js";
|
|
74
|
+
import { applyTheme as Et, builtInThemes as Ht, getSystemTheme as _t } from "./index75.js";
|
|
75
|
+
import { FilesSidebarWidget as Ut, SearchSidebarWidget as Xt, SettingsSidebarWidget as Zt, ShowcaseSidebarWidget as jt, SidebarWidget as qt } from "./index76.js";
|
|
76
|
+
import { MetricsWidget as Yt } from "./index77.js";
|
|
77
|
+
import { TerminalWidget as ei } from "./index78.js";
|
|
78
78
|
export {
|
|
79
|
-
|
|
79
|
+
Zo as ActivityAppsMain,
|
|
80
80
|
i as ActivityBar,
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
81
|
+
le as AnimatedBorderCard,
|
|
82
|
+
Ge as ArrowRightLeft,
|
|
83
|
+
Ae as Bell,
|
|
84
84
|
c as BottomBar,
|
|
85
85
|
g as BottomBarItem,
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
86
|
+
Wo as Breadcrumb,
|
|
87
|
+
Z as Button,
|
|
88
|
+
xe as Card,
|
|
89
|
+
se as CardContent,
|
|
90
|
+
ce as CardDescription,
|
|
91
|
+
ge as CardFooter,
|
|
92
|
+
Ce as CardHeader,
|
|
93
|
+
ue as CardTitle,
|
|
94
|
+
Me as Check,
|
|
95
|
+
Ne as ChevronDown,
|
|
96
|
+
ze as ChevronRight,
|
|
97
|
+
Go as CodeFileIcon,
|
|
98
|
+
de as CommandPalette,
|
|
99
|
+
lr as CommandProvider,
|
|
100
|
+
vr as ComponentRegistryProvider,
|
|
101
|
+
Ao as ConfigFileIcon,
|
|
102
|
+
$ as ConfirmDialog,
|
|
103
|
+
Ke as Copy,
|
|
104
104
|
B as DECK_GRID_CONFIG,
|
|
105
|
-
|
|
106
|
-
|
|
105
|
+
Yo as DEFAULT_FLOE_CONFIG,
|
|
106
|
+
R as DeckCell,
|
|
107
107
|
L as DeckGrid,
|
|
108
|
-
|
|
108
|
+
Lr as DeckProvider,
|
|
109
109
|
_ as DeckTopBar,
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
110
|
+
ee as Dialog,
|
|
111
|
+
yo as DirectoryTree,
|
|
112
|
+
Mo as DocumentFileIcon,
|
|
113
|
+
U as DropZonePreview,
|
|
114
|
+
ie as Dropdown,
|
|
115
|
+
uo as FileBrowser,
|
|
116
|
+
Fo as FileBrowserProvider,
|
|
117
|
+
Ro as FileBrowserToolbar,
|
|
118
|
+
Bo as FileContextMenu,
|
|
119
|
+
To as FileGridView,
|
|
120
|
+
No as FileIcon,
|
|
121
|
+
Do as FileListView,
|
|
122
|
+
Oe as Files,
|
|
123
|
+
Ut as FilesSidebarWidget,
|
|
124
|
+
re as FloatingWindow,
|
|
125
|
+
Uo as FloeApp,
|
|
126
|
+
$o as FloeConfigProvider,
|
|
127
127
|
_o as FloeProvider,
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
128
|
+
zo as FolderIcon,
|
|
129
|
+
Ko as FolderOpenIcon,
|
|
130
|
+
Ve as GitBranch,
|
|
131
|
+
Ee as Grid,
|
|
132
132
|
He as Grid3x3,
|
|
133
133
|
_e as GripVertical,
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
134
|
+
Oo as ImageFileIcon,
|
|
135
|
+
q as Input,
|
|
136
|
+
Se as Interactive3DCard,
|
|
137
137
|
T as KeepAliveStack,
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
138
|
+
no as Launchpad,
|
|
139
|
+
lo as LaunchpadGrid,
|
|
140
|
+
po as LaunchpadItem,
|
|
141
|
+
go as LaunchpadPagination,
|
|
142
|
+
so as LaunchpadSearch,
|
|
143
|
+
Qe as LayoutDashboard,
|
|
144
|
+
mr as LayoutProvider,
|
|
145
|
+
E as LayoutSelector,
|
|
146
|
+
Ue as Loader2,
|
|
147
|
+
Pe as LoadingOverlay,
|
|
148
|
+
Xe as Maximize,
|
|
149
|
+
Yt as MetricsWidget,
|
|
150
|
+
Ze as Minus,
|
|
151
151
|
S as MobileTabBar,
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
152
|
+
je as Moon,
|
|
153
|
+
Fe as MorphCard,
|
|
154
|
+
ve as NeonCard,
|
|
155
|
+
gr as NotificationContainer,
|
|
156
|
+
Cr as NotificationProvider,
|
|
157
157
|
y as Panel,
|
|
158
158
|
I as PanelContent,
|
|
159
159
|
D as PanelHeader,
|
|
160
|
-
|
|
161
|
-
|
|
160
|
+
qe as Pencil,
|
|
161
|
+
Je as Plus,
|
|
162
162
|
v as ResizeHandle,
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
163
|
+
Ye as Restore,
|
|
164
|
+
$e as Search,
|
|
165
|
+
Xt as SearchSidebarWidget,
|
|
166
|
+
ae as Select,
|
|
167
|
+
eo as Settings,
|
|
168
|
+
Zt as SettingsSidebarWidget,
|
|
169
169
|
r as Shell,
|
|
170
|
-
|
|
170
|
+
jt as ShowcaseSidebarWidget,
|
|
171
171
|
n as Sidebar,
|
|
172
172
|
m as SidebarContent,
|
|
173
173
|
p as SidebarItem,
|
|
174
174
|
d as SidebarItemList,
|
|
175
175
|
f as SidebarSection,
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
176
|
+
qt as SidebarWidget,
|
|
177
|
+
Le as Skeleton,
|
|
178
|
+
We as SkeletonCard,
|
|
179
|
+
ke as SkeletonList,
|
|
180
|
+
Re as SkeletonText,
|
|
181
|
+
be as SnakeLoader,
|
|
182
182
|
C as StatusIndicator,
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
183
|
+
Vo as StyleFileIcon,
|
|
184
|
+
oo as Sun,
|
|
185
|
+
ye as TabPanel,
|
|
186
|
+
Ie as Tabs,
|
|
187
|
+
ro as Terminal,
|
|
188
|
+
ei as TerminalWidget,
|
|
189
|
+
J as Textarea,
|
|
190
|
+
tr as ThemeProvider,
|
|
191
|
+
me as Tooltip,
|
|
192
192
|
x as TopBar,
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
193
|
+
to as Trash,
|
|
194
|
+
zr as ViewActivationProvider,
|
|
195
|
+
G as WidgetFrame,
|
|
196
|
+
z as WidgetPalette,
|
|
197
|
+
br as WidgetRegistryProvider,
|
|
198
|
+
M as WidgetResizeHandle,
|
|
199
|
+
wr as WidgetStateProvider,
|
|
200
|
+
O as WidgetTypeSwitcher,
|
|
201
|
+
io as X,
|
|
202
|
+
At as applyDragDelta,
|
|
203
|
+
Mt as applyResizeDelta,
|
|
204
|
+
Et as applyTheme,
|
|
205
205
|
Ht as builtInThemes,
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
206
|
+
Wt as checkCollision,
|
|
207
|
+
tt as clearAll,
|
|
208
|
+
$r as cn,
|
|
209
|
+
kt as constrainPosition,
|
|
210
|
+
xr as createCommandService,
|
|
211
|
+
hr as createComponentRegistry,
|
|
212
|
+
Wr as createDeckService,
|
|
213
|
+
pr as createLayoutService,
|
|
214
|
+
ur as createNotificationService,
|
|
215
|
+
qo as createSimpleContext,
|
|
216
|
+
ir as createThemeService,
|
|
217
|
+
Tr as createWidgetRegistry,
|
|
218
|
+
it as debouncedSave,
|
|
219
|
+
ot as deferNonBlocking,
|
|
220
|
+
gt as duration,
|
|
221
|
+
Ct as easing,
|
|
222
|
+
ut as fadeIn,
|
|
223
|
+
Rt as findFreePosition,
|
|
224
|
+
dt as formatKeybind,
|
|
225
|
+
Eo as getFileIcon,
|
|
226
|
+
Nt as getGridCellSize,
|
|
227
|
+
W as getGridConfigFromElement,
|
|
227
228
|
_t as getSystemTheme,
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
229
|
+
wt as hasCollision,
|
|
230
|
+
St as listContainer,
|
|
231
|
+
Ft as listItem,
|
|
232
|
+
at as load,
|
|
233
|
+
st as lockBodyStyle,
|
|
234
|
+
ft as matchKeybind,
|
|
235
|
+
vt as panelResize,
|
|
236
|
+
lt as parseKeybind,
|
|
237
|
+
zt as pixelDeltaToGridDelta,
|
|
238
|
+
ht as popIn,
|
|
239
|
+
Kt as positionToGridArea,
|
|
240
|
+
nt as remove,
|
|
241
|
+
mt as save,
|
|
242
|
+
yt as scaleIn,
|
|
243
|
+
It as sidebarVariants,
|
|
244
|
+
Dt as slideInFromBottom,
|
|
245
|
+
bt as slideInFromLeft,
|
|
246
|
+
Tt as slideInFromRight,
|
|
247
|
+
Pt as slideInFromTop,
|
|
248
|
+
Ot as snapToGrid,
|
|
249
|
+
Bt as springConfig,
|
|
250
|
+
sr as useCommand,
|
|
251
|
+
yr as useComponentContextFactory,
|
|
252
|
+
Ir as useComponentRegistry,
|
|
253
|
+
Gr as useCurrentWidgetId,
|
|
253
254
|
Hr as useDebounce,
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
255
|
+
kr as useDeck,
|
|
256
|
+
Jr as useDeckDrag,
|
|
257
|
+
vo as useFileBrowser,
|
|
258
|
+
er as useFloeConfig,
|
|
259
|
+
Xr as useKeybind,
|
|
260
|
+
dr as useLayout,
|
|
261
|
+
Vr as useMediaQuery,
|
|
262
|
+
Sr as useNotification,
|
|
263
|
+
jr as usePersisted,
|
|
264
|
+
Qr as useResizeObserver,
|
|
265
|
+
or as useResolvedFloeConfig,
|
|
266
|
+
ar as useTheme,
|
|
267
|
+
Kr as useViewActivation,
|
|
268
|
+
Pr as useWidgetRegistry,
|
|
269
|
+
Ar as useWidgetState,
|
|
270
|
+
Mr as useWidgetStateContext
|
|
270
271
|
};
|