@floegence/floe-webapp-core 0.36.58 → 0.36.59
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/workbench/WorkbenchFilterBar.d.ts +9 -2
- package/dist/components/workbench/WorkbenchFilterBar.js +166 -157
- package/dist/components/workbench/WorkbenchPlacementPreview.js +23 -22
- package/dist/components/workbench/WorkbenchSurface.js +88 -81
- package/dist/components/workbench/workbenchPlacement.d.ts +3 -0
- package/dist/components/workbench/workbenchPlacement.js +35 -30
- package/dist/styles.css +1 -1
- package/dist/workbench.css +10 -0
- package/package.json +1 -1
package/dist/workbench.css
CHANGED
|
@@ -239,6 +239,16 @@
|
|
|
239
239
|
0 18px 44px -22px color-mix(in srgb, var(--primary, #3b82f6) 42%, transparent),
|
|
240
240
|
0 0 0 1px color-mix(in srgb, white 36%, transparent) inset;
|
|
241
241
|
will-change: transform, width, height;
|
|
242
|
+
opacity: 0.72;
|
|
243
|
+
transition:
|
|
244
|
+
opacity 120ms ease,
|
|
245
|
+
border-color 120ms ease,
|
|
246
|
+
background 120ms ease,
|
|
247
|
+
box-shadow 120ms ease;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.workbench-placement-preview.is-drop-armed {
|
|
251
|
+
opacity: 1;
|
|
242
252
|
}
|
|
243
253
|
|
|
244
254
|
.workbench-placement-preview.is-sticky-note {
|