@floegence/floe-webapp-core 0.52.10 → 0.52.12
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/Button.js +24 -24
- package/dist/components/ui/Card.js +3 -3
- package/dist/components/ui/FloatingWindow.d.ts +11 -0
- package/dist/components/ui/FloatingWindow.js +318 -279
- package/dist/components/ui/SurfaceFloatingPanel.d.ts +4 -0
- package/dist/components/ui/SurfaceFloatingPanel.js +169 -80
- package/dist/components/ui/Tooltip.js +2 -2
- package/dist/components/ui/dialogSurfaceScope.js +74 -71
- package/dist/components/ui/pointerSession.d.ts +4 -0
- package/dist/components/ui/pointerSession.js +23 -15
- package/dist/components/ui/surfaceFloatingPanelGeometry.d.ts +1 -1
- package/dist/components/ui/surfaceFloatingPanelGeometry.js +36 -36
- package/dist/context/FloeConfigContext.d.ts +1 -1
- package/dist/context/FloeConfigContext.js +1 -1
- package/dist/floe.css +13 -1
- package/dist/styles/tokens.d.ts +30 -6
- package/dist/styles/tokens.js +16 -4
- package/dist/styles.css +1 -1
- package/dist/surface.css +3 -3
- package/package.json +1 -1
package/dist/surface.css
CHANGED
|
@@ -118,21 +118,21 @@
|
|
|
118
118
|
[data-floe-surface-style='soft-neumorphic'] [data-floe-surface='raised'] {
|
|
119
119
|
--floe-surface-decoration: var(
|
|
120
120
|
--floe-surface-shadow-raised,
|
|
121
|
-
0
|
|
121
|
+
0 1px 3px -2px var(--floe-surface-shade),
|
|
122
122
|
inset 0 1px 1px var(--floe-surface-highlight)
|
|
123
123
|
);
|
|
124
124
|
}
|
|
125
125
|
[data-floe-surface-style='soft-neumorphic'] [data-floe-surface='inset'] {
|
|
126
126
|
--floe-surface-decoration: var(
|
|
127
127
|
--floe-surface-shadow-inset,
|
|
128
|
-
inset 0 1px
|
|
128
|
+
inset 0 1px 1px var(--floe-surface-shade),
|
|
129
129
|
inset 0 -1px 1px var(--floe-surface-highlight)
|
|
130
130
|
);
|
|
131
131
|
}
|
|
132
132
|
[data-floe-surface-style='soft-neumorphic'] [data-floe-surface='floating'] {
|
|
133
133
|
--floe-surface-decoration: var(
|
|
134
134
|
--floe-surface-shadow-floating,
|
|
135
|
-
0 8px
|
|
135
|
+
0 8px 18px -8px var(--floe-surface-shade),
|
|
136
136
|
inset 0 1px 1px var(--floe-surface-highlight)
|
|
137
137
|
);
|
|
138
138
|
background-color: var(--card);
|