@floegence/floe-webapp-core 0.36.47 → 0.36.48

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.
@@ -1290,6 +1290,31 @@
1290
1290
  border-color 180ms ease;
1291
1291
  }
1292
1292
 
1293
+ .workbench-widget.is-entering {
1294
+ animation: workbench-widget-enter 140ms cubic-bezier(0.33, 1, 0.68, 1) both;
1295
+ will-change: opacity, scale;
1296
+ }
1297
+
1298
+ @keyframes workbench-widget-enter {
1299
+ from {
1300
+ opacity: 0;
1301
+ scale: 0.985;
1302
+ }
1303
+
1304
+ to {
1305
+ opacity: 1;
1306
+ scale: 1;
1307
+ }
1308
+ }
1309
+
1310
+ @media (prefers-reduced-motion: reduce) {
1311
+ .workbench-widget.is-entering {
1312
+ animation: none;
1313
+ opacity: 1;
1314
+ scale: 1;
1315
+ }
1316
+ }
1317
+
1293
1318
  .workbench-canvas__projected-work-layer > .workbench-widget,
1294
1319
  .workbench-canvas__projected-work-layer > .workbench-sticky {
1295
1320
  pointer-events: auto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floegence/floe-webapp-core",
3
- "version": "0.36.47",
3
+ "version": "0.36.48",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",