@floegence/floe-webapp-core 0.33.5 → 0.33.7
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/file-browser/FileBrowser.js +97 -132
- package/dist/components/file-browser/FileIcons.d.ts +1 -0
- package/dist/components/file-browser/FileIcons.js +42 -38
- package/dist/components/file-browser/index.d.ts +1 -1
- package/dist/components/layout/SidebarPane.d.ts +19 -0
- package/dist/components/layout/SidebarPane.js +68 -0
- package/dist/components/layout/index.d.ts +1 -0
- package/dist/file-browser.js +15 -14
- package/dist/full.js +343 -340
- package/dist/layout.js +14 -12
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/layout.js
CHANGED
|
@@ -1,30 +1,32 @@
|
|
|
1
|
-
import { ActivityBar as
|
|
1
|
+
import { ActivityBar as o } from "./components/layout/ActivityBar.js";
|
|
2
2
|
import { BottomBar as a, BottomBarItem as m, StatusIndicator as i } from "./components/layout/BottomBar.js";
|
|
3
3
|
import { KeepAliveStack as n } from "./components/layout/KeepAliveStack.js";
|
|
4
4
|
import { MobileTabBar as x } from "./components/layout/MobileTabBar.js";
|
|
5
|
-
import { Panel as
|
|
5
|
+
import { Panel as d, PanelContent as B, PanelHeader as b } from "./components/layout/Panel.js";
|
|
6
6
|
import { ResizeHandle as c } from "./components/layout/ResizeHandle.js";
|
|
7
|
-
import { Shell as
|
|
7
|
+
import { Shell as P } from "./components/layout/Shell.js";
|
|
8
8
|
import { Sidebar as T, SidebarContent as u, SidebarItem as v, SidebarItemList as A, SidebarSection as C } from "./components/layout/Sidebar.js";
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
9
|
+
import { SidebarPane as h } from "./components/layout/SidebarPane.js";
|
|
10
|
+
import { TopBar as y } from "./components/layout/TopBar.js";
|
|
11
|
+
import { TopBarIconButton as K } from "./components/layout/TopBarIconButton.js";
|
|
11
12
|
export {
|
|
12
|
-
|
|
13
|
+
o as ActivityBar,
|
|
13
14
|
a as BottomBar,
|
|
14
15
|
m as BottomBarItem,
|
|
15
16
|
n as KeepAliveStack,
|
|
16
17
|
x as MobileTabBar,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
d as Panel,
|
|
19
|
+
B as PanelContent,
|
|
20
|
+
b as PanelHeader,
|
|
20
21
|
c as ResizeHandle,
|
|
21
|
-
|
|
22
|
+
P as Shell,
|
|
22
23
|
T as Sidebar,
|
|
23
24
|
u as SidebarContent,
|
|
24
25
|
v as SidebarItem,
|
|
25
26
|
A as SidebarItemList,
|
|
27
|
+
h as SidebarPane,
|
|
26
28
|
C as SidebarSection,
|
|
27
29
|
i as StatusIndicator,
|
|
28
|
-
|
|
29
|
-
|
|
30
|
+
y as TopBar,
|
|
31
|
+
K as TopBarIconButton
|
|
30
32
|
};
|