@floegence/floe-webapp-init 0.39.5 → 0.39.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floegence/floe-webapp-init",
3
- "version": "0.39.5",
3
+ "version": "0.39.6",
4
4
  "type": "module",
5
5
  "description": "Scaffolding tool for Floe Webapp applications",
6
6
  "repository": {
@@ -92,13 +92,15 @@ done
92
92
  ```bash
93
93
  for dir in apps packages src; do
94
94
  [ -d "$dir" ] || continue
95
- rg "useOverlayMask|startHotInteraction|deferAfterPaint|deferNonBlocking|data-floe-geometry-surface|hiddenOnMobile|renderIn|fullScreen|collapseBehavior" "$dir" --hidden
95
+ rg "useOverlayMask|BottomBarCompanion|startHotInteraction|deferAfterPaint|deferNonBlocking|data-floe-geometry-surface|hiddenOnMobile|renderIn|fullScreen|collapseBehavior" "$dir" --hidden
96
96
  done
97
97
  ```
98
98
 
99
99
  2. Apply the current guardrails from `docs/interaction-architecture.md`:
100
100
  - UI first for click/open/selection flows.
101
- - `useOverlayMask()` for overlays and drawers.
101
+ - Classify modal overlays separately from non-modal anchored companions.
102
+ - `useOverlayMask()` for modal overlays and modal drawers.
103
+ - `BottomBarCompanion` from `@floegence/floe-webapp-core/layout` for a persistent Bottom Bar disclosure that grows from one explicit anchor into one stable shell. Keep `retained`, `visible`, and `open` orthogonal, provide an explicit mount, and do not wrap it with `FloatingWindow`, `SurfaceFloatingLayer`, or `useOverlayMask()`.
102
104
  - `startHotInteraction()` plus preview/commit separation for drag or resize flows.
103
105
  - No hot-path `transition-all` or geometry-following animation regressions.
104
106
  3. Validate responsive behavior manually in browser devtools at:
@@ -92,13 +92,15 @@ done
92
92
  ```bash
93
93
  for dir in apps packages src; do
94
94
  [ -d "$dir" ] || continue
95
- rg "useOverlayMask|startHotInteraction|deferAfterPaint|deferNonBlocking|data-floe-geometry-surface|hiddenOnMobile|renderIn|fullScreen|collapseBehavior" "$dir" --hidden
95
+ rg "useOverlayMask|BottomBarCompanion|startHotInteraction|deferAfterPaint|deferNonBlocking|data-floe-geometry-surface|hiddenOnMobile|renderIn|fullScreen|collapseBehavior" "$dir" --hidden
96
96
  done
97
97
  ```
98
98
 
99
99
  2. Apply the current guardrails from `docs/interaction-architecture.md`:
100
100
  - UI first for click/open/selection flows.
101
- - `useOverlayMask()` for overlays and drawers.
101
+ - Classify modal overlays separately from non-modal anchored companions.
102
+ - `useOverlayMask()` for modal overlays and modal drawers.
103
+ - `BottomBarCompanion` from `@floegence/floe-webapp-core/layout` for a persistent Bottom Bar disclosure that grows from one explicit anchor into one stable shell. Keep `retained`, `visible`, and `open` orthogonal, provide an explicit mount, and do not wrap it with `FloatingWindow`, `SurfaceFloatingLayer`, or `useOverlayMask()`.
102
104
  - `startHotInteraction()` plus preview/commit separation for drag or resize flows.
103
105
  - No hot-path `transition-all` or geometry-following animation regressions.
104
106
  3. Validate responsive behavior manually in browser devtools at:
@@ -92,13 +92,15 @@ done
92
92
  ```bash
93
93
  for dir in apps packages src; do
94
94
  [ -d "$dir" ] || continue
95
- rg "useOverlayMask|startHotInteraction|deferAfterPaint|deferNonBlocking|data-floe-geometry-surface|hiddenOnMobile|renderIn|fullScreen|collapseBehavior" "$dir" --hidden
95
+ rg "useOverlayMask|BottomBarCompanion|startHotInteraction|deferAfterPaint|deferNonBlocking|data-floe-geometry-surface|hiddenOnMobile|renderIn|fullScreen|collapseBehavior" "$dir" --hidden
96
96
  done
97
97
  ```
98
98
 
99
99
  2. Apply the current guardrails from `docs/interaction-architecture.md`:
100
100
  - UI first for click/open/selection flows.
101
- - `useOverlayMask()` for overlays and drawers.
101
+ - Classify modal overlays separately from non-modal anchored companions.
102
+ - `useOverlayMask()` for modal overlays and modal drawers.
103
+ - `BottomBarCompanion` from `@floegence/floe-webapp-core/layout` for a persistent Bottom Bar disclosure that grows from one explicit anchor into one stable shell. Keep `retained`, `visible`, and `open` orthogonal, provide an explicit mount, and do not wrap it with `FloatingWindow`, `SurfaceFloatingLayer`, or `useOverlayMask()`.
102
104
  - `startHotInteraction()` plus preview/commit separation for drag or resize flows.
103
105
  - No hot-path `transition-all` or geometry-following animation regressions.
104
106
  3. Validate responsive behavior manually in browser devtools at: