@floegence/floe-webapp-core 0.36.8 → 0.36.10
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/DeckCell.d.ts +3 -6
- package/dist/components/deck/DeckCell.js +35 -44
- package/dist/components/deck/DeckGrid.d.ts +2 -16
- package/dist/components/deck/DeckGrid.js +122 -122
- package/dist/components/deck/DropZonePreview.js +15 -15
- package/dist/components/deck/WidgetResizeHandle.d.ts +3 -1
- package/dist/components/deck/WidgetResizeHandle.js +46 -80
- package/dist/components/deck/deckGridMetrics.d.ts +41 -0
- package/dist/components/deck/deckGridMetrics.js +52 -0
- package/dist/components/deck/deckPointerSession.d.ts +52 -0
- package/dist/components/deck/deckPointerSession.js +113 -0
- package/dist/context/DeckContext.d.ts +13 -8
- package/dist/context/DeckContext.js +250 -242
- package/dist/deck.js +22 -21
- package/dist/floe.css +2 -0
- package/dist/full.js +384 -382
- package/dist/hooks/useDeckDrag.d.ts +4 -3
- package/dist/hooks/useDeckDrag.js +42 -72
- package/dist/index.js +54 -53
- package/dist/styles.css +1 -1
- package/dist/utils/gridCollision.d.ts +1 -0
- package/dist/utils/gridCollision.js +21 -17
- package/package.json +1 -1
package/dist/deck.js
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
|
-
import { DECK_GRID_CONFIG as o,
|
|
2
|
-
import { DeckCell as
|
|
3
|
-
import { DeckContextMenu as
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
1
|
+
import { DECK_GRID_CONFIG as o, getGridConfigFromElement as t } from "./components/deck/deckGridMetrics.js";
|
|
2
|
+
import { DeckCell as p } from "./components/deck/DeckCell.js";
|
|
3
|
+
import { DeckContextMenu as x } from "./components/deck/DeckContextMenu.js";
|
|
4
|
+
import { DeckGrid as d } from "./components/deck/DeckGrid.js";
|
|
5
|
+
import { DeckTopBar as c } from "./components/deck/DeckTopBar.js";
|
|
6
|
+
import { DropZonePreview as l } from "./components/deck/DropZonePreview.js";
|
|
7
|
+
import { LayoutSelector as a } from "./components/deck/LayoutSelector.js";
|
|
8
|
+
import { WidgetFrame as k } from "./components/deck/WidgetFrame.js";
|
|
9
|
+
import { WidgetPalette as W } from "./components/deck/WidgetPalette.js";
|
|
10
|
+
import { WidgetResizeHandle as u } from "./components/deck/WidgetResizeHandle.js";
|
|
11
|
+
import { WidgetTypeSwitcher as y } from "./components/deck/WidgetTypeSwitcher.js";
|
|
11
12
|
export {
|
|
12
13
|
o as DECK_GRID_CONFIG,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
14
|
+
p as DeckCell,
|
|
15
|
+
x as DeckContextMenu,
|
|
16
|
+
d as DeckGrid,
|
|
17
|
+
c as DeckTopBar,
|
|
18
|
+
l as DropZonePreview,
|
|
19
|
+
a as LayoutSelector,
|
|
20
|
+
k as WidgetFrame,
|
|
21
|
+
W as WidgetPalette,
|
|
22
|
+
u as WidgetResizeHandle,
|
|
23
|
+
y as WidgetTypeSwitcher,
|
|
24
|
+
t as getGridConfigFromElement
|
|
24
25
|
};
|
package/dist/floe.css
CHANGED
|
@@ -414,7 +414,9 @@
|
|
|
414
414
|
[data-floe-hot-interaction~='resize'] [data-floe-geometry-surface='shell-sidebar'],
|
|
415
415
|
[data-floe-hot-interaction~='resize'] [data-floe-geometry-surface='sidebar-pane'],
|
|
416
416
|
[data-floe-hot-interaction~='resize'] [data-floe-geometry-surface='floating-window'],
|
|
417
|
+
[data-floe-hot-interaction~='resize'] [data-floe-geometry-surface='deck-widget'],
|
|
417
418
|
[data-floe-hot-interaction~='drag'] [data-floe-geometry-surface='floating-window'],
|
|
419
|
+
[data-floe-hot-interaction~='drag'] [data-floe-geometry-surface='deck-widget'],
|
|
418
420
|
[data-floe-hot-interaction~='drag'] [data-floe-geometry-surface='notes-note'],
|
|
419
421
|
[data-floe-hot-interaction~='drag'] [data-floe-geometry-surface='notes-note'] .notes-note__surface {
|
|
420
422
|
animation: none !important;
|