@floegence/floe-webapp-core 0.36.15 → 0.36.17
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/ui/InfiniteCanvas.d.ts +1 -0
- package/dist/components/ui/InfiniteCanvas.js +94 -84
- package/dist/components/ui/index.d.ts +1 -0
- package/dist/components/ui/pointerSession.d.ts +35 -0
- package/dist/components/ui/pointerSession.js +85 -0
- package/dist/components/workbench/WorkbenchCanvas.d.ts +3 -0
- package/dist/components/workbench/WorkbenchCanvas.js +51 -28
- package/dist/components/workbench/WorkbenchCanvasField.d.ts +2 -0
- package/dist/components/workbench/WorkbenchCanvasField.js +18 -6
- package/dist/components/workbench/WorkbenchFilterBar.js +119 -117
- package/dist/components/workbench/WorkbenchHud.d.ts +9 -0
- package/dist/components/workbench/WorkbenchHud.js +24 -10
- package/dist/components/workbench/WorkbenchSurface.js +68 -49
- package/dist/components/workbench/WorkbenchThemeSelector.d.ts +6 -0
- package/dist/components/workbench/WorkbenchThemeSelector.js +77 -0
- package/dist/components/workbench/WorkbenchWidget.d.ts +2 -0
- package/dist/components/workbench/WorkbenchWidget.js +211 -167
- package/dist/components/workbench/index.d.ts +2 -0
- package/dist/components/workbench/types.d.ts +2 -0
- package/dist/components/workbench/useWorkbenchModel.d.ts +5 -0
- package/dist/components/workbench/useWorkbenchModel.js +83 -77
- package/dist/components/workbench/workbenchHelpers.js +53 -50
- package/dist/components/workbench/workbenchThemes.d.ts +32 -0
- package/dist/components/workbench/workbenchThemes.js +82 -0
- package/dist/full.js +71 -69
- package/dist/styles.css +1 -1
- package/dist/ui.js +26 -24
- package/dist/workbench-themes.css +1106 -0
- package/dist/workbench.css +492 -96
- package/dist/workbench.js +35 -27
- package/package.json +1 -1
package/dist/ui.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { AffixInput as e, Input as t, NumberInput as a, Textarea as i } from "./components/ui/Input.js";
|
|
2
|
-
import { AnimatedBorderCard as c, Card as m, CardContent as p, CardDescription as l, CardFooter as
|
|
3
|
-
import { AreaChart as
|
|
2
|
+
import { AnimatedBorderCard as c, Card as m, CardContent as p, CardDescription as l, CardFooter as s, CardHeader as f, CardTitle as C, Interactive3DCard as T, MorphCard as S, NeonCard as A } from "./components/ui/Card.js";
|
|
3
|
+
import { AreaChart as R, DataBarChart as _, DataPieChart as E, LineChart as d, MonitoringChart as u } from "./components/ui/Charts.js";
|
|
4
4
|
import { Button as F } from "./components/ui/Button.js";
|
|
5
|
-
import { CANVAS_WHEEL_INTERACTIVE_ATTR as
|
|
5
|
+
import { CANVAS_WHEEL_INTERACTIVE_ATTR as I, DEFAULT_CANVAS_WHEEL_INTERACTIVE_SELECTOR as g, DEFAULT_LOCAL_INTERACTION_SURFACE_SELECTOR as D, DEFAULT_WORKBENCH_WIDGET_SHELL_SELECTOR as O, LOCAL_INTERACTION_SURFACE_ATTR as h, WORKBENCH_WIDGET_SHELL_ATTR as v, isLocalInteractionSurfaceTarget as k, resolveSurfaceInteractionTargetRole as B, resolveSurfaceWheelRouting as W, resolveWorkbenchWidgetEventOwnership as N } from "./components/ui/localInteractionSurface.js";
|
|
6
6
|
import { Checkbox as H, CheckboxGroup as U, CheckboxList as M } from "./components/ui/Checkbox.js";
|
|
7
7
|
import { CircularProgress as G, LinearProgress as V, SegmentedProgress as y, StepsProgress as K } from "./components/ui/Progress.js";
|
|
8
8
|
import { CommandPalette as z } from "./components/ui/CommandPalette.js";
|
|
9
9
|
import { ConfirmDialog as Q, Dialog as Z } from "./components/ui/Dialog.js";
|
|
10
10
|
import { DIALOG_SURFACE_BOUNDARY_ATTR as J, DIALOG_SURFACE_HOST_ATTR as X, SURFACE_PORTAL_HOST_ATTR as $, SURFACE_PORTAL_LAYER_ATTR as rr, __resetSurfacePortalScopeForTests as or, ensureSurfacePortalInteractionTracking as er, isSurfacePortalMode as tr, projectSurfacePortalPosition as ar, projectSurfacePortalRect as ir, resolveSurfacePortalBoundaryRect as nr, resolveSurfacePortalHost as cr, resolveSurfacePortalMount as mr, resolveSurfacePortalMountRect as pr } from "./components/ui/dialogSurfaceScope.js";
|
|
11
|
-
import { DirectoryInput as
|
|
12
|
-
import { DirectoryPicker as
|
|
11
|
+
import { DirectoryInput as sr } from "./components/ui/DirectoryInput.js";
|
|
12
|
+
import { DirectoryPicker as Cr } from "./components/ui/DirectoryPicker.js";
|
|
13
13
|
import { Dropdown as Sr, Select as Ar } from "./components/ui/Dropdown.js";
|
|
14
|
-
import { ErrorBlock as
|
|
15
|
-
import { FileSavePicker as
|
|
14
|
+
import { ErrorBlock as Rr, HighlightBlock as _r, InfoBlock as Er, NoteBlock as dr, SuccessBlock as ur, TipBlock as Lr, WarningBlock as Fr } from "./components/ui/HighlightBlock.js";
|
|
15
|
+
import { FileSavePicker as Ir } from "./components/ui/FileSavePicker.js";
|
|
16
16
|
import { FloatingWindow as Dr } from "./components/ui/FloatingWindow.js";
|
|
17
17
|
import { Form as hr, FormActions as vr, FormControl as kr, FormDescription as Br, FormDivider as Wr, FormField as Nr, FormLabel as br, FormMessage as Hr, FormRow as Ur, FormSection as Mr, useFormSubmitting as wr } from "./components/ui/Form.js";
|
|
18
18
|
import { InfiniteCanvas as Vr } from "./components/ui/InfiniteCanvas.js";
|
|
@@ -24,22 +24,23 @@ import { RadioGroup as Xr, RadioList as $r, RadioOption as ro } from "./componen
|
|
|
24
24
|
import { SegmentedControl as eo } from "./components/ui/SegmentedControl.js";
|
|
25
25
|
import { Stepper as ao, Wizard as io, useWizard as no } from "./components/ui/Stepper.js";
|
|
26
26
|
import { Switch as mo } from "./components/ui/Switch.js";
|
|
27
|
-
import { TabPanel as lo, Tabs as
|
|
28
|
-
import { Tag as
|
|
27
|
+
import { TabPanel as lo, Tabs as so } from "./components/ui/Tabs.js";
|
|
28
|
+
import { Tag as Co } from "./components/ui/Tag.js";
|
|
29
29
|
import { Tooltip as So } from "./components/ui/Tooltip.js";
|
|
30
|
-
import { clientToCanvasLocal as
|
|
30
|
+
import { clientToCanvasLocal as xo, clientToCanvasWorld as Ro, createViewportFromZoomAnchor as _o, isPointInsideCanvasRect as Eo, localToCanvasWorld as uo } from "./components/ui/canvasGeometry.js";
|
|
31
|
+
import { startPointerSession as Fo } from "./components/ui/pointerSession.js";
|
|
31
32
|
export {
|
|
32
33
|
e as AffixInput,
|
|
33
34
|
c as AnimatedBorderCard,
|
|
34
|
-
|
|
35
|
+
R as AreaChart,
|
|
35
36
|
F as Button,
|
|
36
|
-
|
|
37
|
+
I as CANVAS_WHEEL_INTERACTIVE_ATTR,
|
|
37
38
|
m as Card,
|
|
38
39
|
p as CardContent,
|
|
39
40
|
l as CardDescription,
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
s as CardFooter,
|
|
42
|
+
f as CardHeader,
|
|
43
|
+
C as CardTitle,
|
|
43
44
|
H as Checkbox,
|
|
44
45
|
U as CheckboxGroup,
|
|
45
46
|
M as CheckboxList,
|
|
@@ -54,11 +55,11 @@ export {
|
|
|
54
55
|
_ as DataBarChart,
|
|
55
56
|
E as DataPieChart,
|
|
56
57
|
Z as Dialog,
|
|
57
|
-
|
|
58
|
-
|
|
58
|
+
sr as DirectoryInput,
|
|
59
|
+
Cr as DirectoryPicker,
|
|
59
60
|
Sr as Dropdown,
|
|
60
|
-
|
|
61
|
-
|
|
61
|
+
Rr as ErrorBlock,
|
|
62
|
+
Ir as FileSavePicker,
|
|
62
63
|
Dr as FloatingWindow,
|
|
63
64
|
hr as Form,
|
|
64
65
|
vr as FormActions,
|
|
@@ -74,7 +75,7 @@ export {
|
|
|
74
75
|
Vr as InfiniteCanvas,
|
|
75
76
|
Er as InfoBlock,
|
|
76
77
|
t as Input,
|
|
77
|
-
|
|
78
|
+
T as Interactive3DCard,
|
|
78
79
|
h as LOCAL_INTERACTION_SURFACE_ATTR,
|
|
79
80
|
d as LineChart,
|
|
80
81
|
V as LinearProgress,
|
|
@@ -100,8 +101,8 @@ export {
|
|
|
100
101
|
ur as SuccessBlock,
|
|
101
102
|
mo as Switch,
|
|
102
103
|
lo as TabPanel,
|
|
103
|
-
|
|
104
|
-
|
|
104
|
+
so as Tabs,
|
|
105
|
+
Co as Tag,
|
|
105
106
|
i as Textarea,
|
|
106
107
|
Lr as TipBlock,
|
|
107
108
|
So as Tooltip,
|
|
@@ -109,8 +110,8 @@ export {
|
|
|
109
110
|
Fr as WarningBlock,
|
|
110
111
|
io as Wizard,
|
|
111
112
|
or as __resetSurfacePortalScopeForTests,
|
|
112
|
-
|
|
113
|
-
|
|
113
|
+
xo as clientToCanvasLocal,
|
|
114
|
+
Ro as clientToCanvasWorld,
|
|
114
115
|
_o as createViewportFromZoomAnchor,
|
|
115
116
|
er as ensureSurfacePortalInteractionTracking,
|
|
116
117
|
k as isLocalInteractionSurfaceTarget,
|
|
@@ -126,6 +127,7 @@ export {
|
|
|
126
127
|
pr as resolveSurfacePortalMountRect,
|
|
127
128
|
W as resolveSurfaceWheelRouting,
|
|
128
129
|
N as resolveWorkbenchWidgetEventOwnership,
|
|
130
|
+
Fo as startPointerSession,
|
|
129
131
|
wr as useFormSubmitting,
|
|
130
132
|
no as useWizard
|
|
131
133
|
};
|