@sovereignfs/ui 0.21.1 → 0.21.2
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/Dialog.module.css +4 -0
- package/dist/Drawer.module.css +1 -0
- package/dist/index.js +24 -0
- package/package.json +1 -1
- package/src/components/Dialog/Dialog.module.css +4 -0
- package/src/components/Dialog/Dialog.tsx +10 -0
- package/src/components/Drawer/Drawer.module.css +1 -0
- package/src/components/Drawer/Drawer.tsx +7 -0
- package/src/scroll-lock.ts +16 -0
package/dist/Dialog.module.css
CHANGED
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
flex: 1 1 auto;
|
|
50
50
|
overflow-y: auto;
|
|
51
51
|
padding: var(--sv-space-6);
|
|
52
|
+
/* Prevent iOS scroll-chaining: when the dialog content reaches its top/bottom
|
|
53
|
+
boundary, stop the gesture from propagating to the document (which would
|
|
54
|
+
scroll the shell header and footer out of view in standalone PWA mode). */
|
|
55
|
+
overscroll-behavior: contain;
|
|
52
56
|
}
|
|
53
57
|
|
|
54
58
|
/* Fixed sizes. `max-*: 100%` caps to the scrim's content box (viewport minus
|
package/dist/Drawer.module.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -905,6 +905,20 @@ function Input({ type = "text", className, ...rest }) {
|
|
|
905
905
|
|
|
906
906
|
// src/components/Dialog/Dialog.tsx
|
|
907
907
|
import { useEffect as useEffect2, useRef as useRef2 } from "react";
|
|
908
|
+
|
|
909
|
+
// src/scroll-lock.ts
|
|
910
|
+
function lockBodyScroll() {
|
|
911
|
+
const count = parseInt(document.body.dataset.scrollLocks ?? "0", 10);
|
|
912
|
+
document.body.dataset.scrollLocks = String(count + 1);
|
|
913
|
+
if (count === 0) document.body.style.overflow = "hidden";
|
|
914
|
+
}
|
|
915
|
+
function unlockBodyScroll() {
|
|
916
|
+
const next = Math.max(0, parseInt(document.body.dataset.scrollLocks ?? "0", 10) - 1);
|
|
917
|
+
document.body.dataset.scrollLocks = String(next);
|
|
918
|
+
if (next === 0) document.body.style.overflow = "";
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
// src/components/Dialog/Dialog.tsx
|
|
908
922
|
import styles11 from "./Dialog.module.css";
|
|
909
923
|
import { jsx as jsx39, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
910
924
|
var FOCUSABLE = 'a[href], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
@@ -918,6 +932,11 @@ function Dialog({
|
|
|
918
932
|
}) {
|
|
919
933
|
const panelRef = useRef2(null);
|
|
920
934
|
const previouslyFocused = useRef2(null);
|
|
935
|
+
useEffect2(() => {
|
|
936
|
+
if (!open) return;
|
|
937
|
+
lockBodyScroll();
|
|
938
|
+
return unlockBodyScroll;
|
|
939
|
+
}, [open]);
|
|
921
940
|
useEffect2(() => {
|
|
922
941
|
if (!open) return;
|
|
923
942
|
previouslyFocused.current = document.activeElement;
|
|
@@ -1012,6 +1031,11 @@ var FOCUSABLE2 = 'a[href], button:not([disabled]), textarea:not([disabled]), inp
|
|
|
1012
1031
|
function Drawer({ open, onClose, "aria-label": ariaLabel, children }) {
|
|
1013
1032
|
const panelRef = useRef3(null);
|
|
1014
1033
|
const previouslyFocused = useRef3(null);
|
|
1034
|
+
useEffect3(() => {
|
|
1035
|
+
if (!open) return;
|
|
1036
|
+
lockBodyScroll();
|
|
1037
|
+
return unlockBodyScroll;
|
|
1038
|
+
}, [open]);
|
|
1015
1039
|
useEffect3(() => {
|
|
1016
1040
|
if (!open) return;
|
|
1017
1041
|
previouslyFocused.current = document.activeElement;
|
package/package.json
CHANGED
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
flex: 1 1 auto;
|
|
50
50
|
overflow-y: auto;
|
|
51
51
|
padding: var(--sv-space-6);
|
|
52
|
+
/* Prevent iOS scroll-chaining: when the dialog content reaches its top/bottom
|
|
53
|
+
boundary, stop the gesture from propagating to the document (which would
|
|
54
|
+
scroll the shell header and footer out of view in standalone PWA mode). */
|
|
55
|
+
overscroll-behavior: contain;
|
|
52
56
|
}
|
|
53
57
|
|
|
54
58
|
/* Fixed sizes. `max-*: 100%` caps to the scrim's content box (viewport minus
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
3
|
import { type ReactNode, useEffect, useRef } from 'react';
|
|
4
|
+
import { lockBodyScroll, unlockBodyScroll } from '../../scroll-lock';
|
|
4
5
|
import styles from './Dialog.module.css';
|
|
5
6
|
|
|
6
7
|
export type DialogSize = 'sm' | 'md' | 'lg' | 'full';
|
|
@@ -44,6 +45,15 @@ export function Dialog({
|
|
|
44
45
|
const panelRef = useRef<HTMLDivElement>(null);
|
|
45
46
|
const previouslyFocused = useRef<HTMLElement | null>(null);
|
|
46
47
|
|
|
48
|
+
// Prevent document-level scroll while open. Ref-counted so nested overlays
|
|
49
|
+
// (e.g. a confirmation dialog inside an overlay plugin) don't release the
|
|
50
|
+
// lock while a sibling is still open.
|
|
51
|
+
useEffect(() => {
|
|
52
|
+
if (!open) return;
|
|
53
|
+
lockBodyScroll();
|
|
54
|
+
return unlockBodyScroll;
|
|
55
|
+
}, [open]);
|
|
56
|
+
|
|
47
57
|
// Capture focus on open; restore it on close/unmount.
|
|
48
58
|
useEffect(() => {
|
|
49
59
|
if (!open) return;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
3
|
import { type ReactNode, useEffect, useRef } from 'react';
|
|
4
|
+
import { lockBodyScroll, unlockBodyScroll } from '../../scroll-lock';
|
|
4
5
|
import styles from './Drawer.module.css';
|
|
5
6
|
|
|
6
7
|
export interface DrawerProps {
|
|
@@ -30,6 +31,12 @@ export function Drawer({ open, onClose, 'aria-label': ariaLabel, children }: Dra
|
|
|
30
31
|
const panelRef = useRef<HTMLDivElement>(null);
|
|
31
32
|
const previouslyFocused = useRef<HTMLElement | null>(null);
|
|
32
33
|
|
|
34
|
+
useEffect(() => {
|
|
35
|
+
if (!open) return;
|
|
36
|
+
lockBodyScroll();
|
|
37
|
+
return unlockBodyScroll;
|
|
38
|
+
}, [open]);
|
|
39
|
+
|
|
33
40
|
useEffect(() => {
|
|
34
41
|
if (!open) return;
|
|
35
42
|
previouslyFocused.current = document.activeElement as HTMLElement | null;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// Ref-counted body scroll lock. Multiple overlays (Dialog, Drawer) can be
|
|
2
|
+
// open simultaneously; the body stays locked until all of them close.
|
|
3
|
+
// Uses data-scroll-locks on <body> as a counter so concurrent callers
|
|
4
|
+
// don't clobber each other's lock state.
|
|
5
|
+
|
|
6
|
+
export function lockBodyScroll(): void {
|
|
7
|
+
const count = parseInt(document.body.dataset.scrollLocks ?? '0', 10);
|
|
8
|
+
document.body.dataset.scrollLocks = String(count + 1);
|
|
9
|
+
if (count === 0) document.body.style.overflow = 'hidden';
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export function unlockBodyScroll(): void {
|
|
13
|
+
const next = Math.max(0, parseInt(document.body.dataset.scrollLocks ?? '0', 10) - 1);
|
|
14
|
+
document.body.dataset.scrollLocks = String(next);
|
|
15
|
+
if (next === 0) document.body.style.overflow = '';
|
|
16
|
+
}
|