@floegence/floe-webapp-core 0.35.39 → 0.35.41
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/notes/NotesContextMenu.d.ts +27 -0
- package/dist/components/notes/NotesContextMenu.js +52 -0
- package/dist/components/notes/NotesOverlay.d.ts +7 -0
- package/dist/components/notes/NotesOverlay.js +901 -0
- package/dist/components/notes/index.d.ts +4 -0
- package/dist/components/notes/notesAppearance.d.ts +14 -0
- package/dist/components/notes/notesAppearance.js +142 -0
- package/dist/components/notes/types.d.ts +148 -0
- package/dist/components/notes/types.js +277 -0
- package/dist/full.d.ts +1 -0
- package/dist/full.js +560 -521
- package/dist/notes.css +1014 -0
- package/dist/notes.d.ts +1 -0
- package/dist/notes.js +41 -0
- package/dist/styles.css +1 -1
- package/dist/tailwind.css +1 -0
- package/package.json +5 -1
package/dist/notes.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components/notes';
|
package/dist/notes.js
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { NOTES_CONTEXT_MENU_WIDTH_PX as t, NotesContextMenu as r, estimateNotesContextMenuHeight as n } from "./components/notes/NotesContextMenu.js";
|
|
2
|
+
import { NOTES_SCALE_MAX as s, NOTES_SCALE_MIN as T, NOTE_BUCKET_METRICS as p, NOTE_COLOR_TOKENS as N, TOPIC_ACCENT_TOKENS as c, TOPIC_ICON_KEYS as E, applyNotesEvent as O, centerViewportOnWorldPoint as S, clampScale as _, computeBoardBounds as m, createDefaultNotesSnapshot as l, groupTrashItems as C, mergeBoardBounds as I, nextLocalZIndex as i, normalizeNotesSnapshot as h, noteBucketMetrics as L, promoteLocalItem as d, removeSnapshotItem as A, removeSnapshotTopic as u, replaceSnapshotItem as x, replaceSnapshotTopic as B, replaceSnapshotTrashItem as M, screenToWorld as v, visibleWorldRect as P, worldToScreen as f, zoomViewportAtPoint as K } from "./components/notes/types.js";
|
|
3
|
+
import { NOTE_COLOR_LABELS as W, NotesAnimalIcon as g, NotesOverlayIcon as w, NotesTrashCanIcon as y, TOPIC_ACCENT_LABELS as X } from "./components/notes/notesAppearance.js";
|
|
4
|
+
import { NotesOverlay as D } from "./components/notes/NotesOverlay.js";
|
|
5
|
+
export {
|
|
6
|
+
t as NOTES_CONTEXT_MENU_WIDTH_PX,
|
|
7
|
+
s as NOTES_SCALE_MAX,
|
|
8
|
+
T as NOTES_SCALE_MIN,
|
|
9
|
+
p as NOTE_BUCKET_METRICS,
|
|
10
|
+
W as NOTE_COLOR_LABELS,
|
|
11
|
+
N as NOTE_COLOR_TOKENS,
|
|
12
|
+
g as NotesAnimalIcon,
|
|
13
|
+
r as NotesContextMenu,
|
|
14
|
+
D as NotesOverlay,
|
|
15
|
+
w as NotesOverlayIcon,
|
|
16
|
+
y as NotesTrashCanIcon,
|
|
17
|
+
X as TOPIC_ACCENT_LABELS,
|
|
18
|
+
c as TOPIC_ACCENT_TOKENS,
|
|
19
|
+
E as TOPIC_ICON_KEYS,
|
|
20
|
+
O as applyNotesEvent,
|
|
21
|
+
S as centerViewportOnWorldPoint,
|
|
22
|
+
_ as clampScale,
|
|
23
|
+
m as computeBoardBounds,
|
|
24
|
+
l as createDefaultNotesSnapshot,
|
|
25
|
+
n as estimateNotesContextMenuHeight,
|
|
26
|
+
C as groupTrashItems,
|
|
27
|
+
I as mergeBoardBounds,
|
|
28
|
+
i as nextLocalZIndex,
|
|
29
|
+
h as normalizeNotesSnapshot,
|
|
30
|
+
L as noteBucketMetrics,
|
|
31
|
+
d as promoteLocalItem,
|
|
32
|
+
A as removeSnapshotItem,
|
|
33
|
+
u as removeSnapshotTopic,
|
|
34
|
+
x as replaceSnapshotItem,
|
|
35
|
+
B as replaceSnapshotTopic,
|
|
36
|
+
M as replaceSnapshotTrashItem,
|
|
37
|
+
v as screenToWorld,
|
|
38
|
+
P as visibleWorldRect,
|
|
39
|
+
f as worldToScreen,
|
|
40
|
+
K as zoomViewportAtPoint
|
|
41
|
+
};
|