@floegence/floe-webapp-init 0.39.4 → 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
|
@@ -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
|
-
-
|
|
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
|
-
-
|
|
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
|
-
-
|
|
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:
|