@adam-milo/ui 1.0.29 → 1.0.30

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.
Files changed (66) hide show
  1. package/dist/index27.cjs +1 -1
  2. package/dist/index27.js +21 -21
  3. package/dist/index42.cjs +1 -1
  4. package/dist/index42.js +3 -8
  5. package/dist/index43.cjs +1 -1
  6. package/dist/index43.js +7 -66
  7. package/dist/index44.cjs +1 -1
  8. package/dist/index44.js +66 -35
  9. package/dist/index45.cjs +1 -1
  10. package/dist/index45.js +31 -56
  11. package/dist/index46.cjs +1 -1
  12. package/dist/index46.js +60 -6
  13. package/dist/index47.cjs +1 -1
  14. package/dist/index47.js +6 -208
  15. package/dist/index48.cjs +1 -1
  16. package/dist/index48.js +203 -20
  17. package/dist/index49.cjs +1 -1
  18. package/dist/index49.js +23 -202
  19. package/dist/index50.cjs +1 -1
  20. package/dist/index50.js +204 -10
  21. package/dist/index51.cjs +1 -1
  22. package/dist/index51.js +10 -289
  23. package/dist/index52.cjs +1 -1
  24. package/dist/index52.js +288 -13
  25. package/dist/index53.cjs +1 -1
  26. package/dist/index53.js +14 -39
  27. package/dist/index54.cjs +1 -1
  28. package/dist/index54.js +36 -82
  29. package/dist/index55.cjs +1 -1
  30. package/dist/index55.js +84 -9
  31. package/dist/index56.cjs +1 -1
  32. package/dist/index56.js +8 -65
  33. package/dist/index57.cjs +1 -1
  34. package/dist/index57.js +68 -3
  35. package/dist/index58.cjs +1 -1
  36. package/dist/index58.js +3 -11
  37. package/dist/index59.cjs +1 -1
  38. package/dist/index59.js +11 -31
  39. package/dist/index60.cjs +1 -1
  40. package/dist/index60.js +30 -118
  41. package/dist/index61.cjs +1 -1
  42. package/dist/index61.js +120 -9
  43. package/dist/index62.cjs +1 -0
  44. package/dist/index62.js +11 -0
  45. package/dist/index63.cjs +1 -1
  46. package/dist/index63.js +1 -1
  47. package/dist/index65.cjs +1 -1
  48. package/dist/index65.js +1 -1
  49. package/dist/index66.cjs +1 -1
  50. package/dist/index66.js +1 -1
  51. package/dist/index80.cjs +1 -1
  52. package/dist/index80.js +1 -1
  53. package/dist/index81.cjs +1 -1
  54. package/dist/index81.js +1 -1
  55. package/dist/index86.cjs +1 -1
  56. package/dist/index86.js +12 -33
  57. package/dist/index87.cjs +1 -1
  58. package/dist/index87.js +44 -12
  59. package/dist/index88.cjs +1 -1
  60. package/dist/index88.js +5 -44
  61. package/dist/index89.cjs +1 -1
  62. package/dist/index89.js +33 -5
  63. package/dist/src/components/forms/radio/Radio.component.d.ts.map +1 -1
  64. package/package.json +2 -1
  65. package/dist/index41.cjs +0 -1
  66. package/dist/index41.js +0 -6
package/dist/index49.js CHANGED
@@ -1,208 +1,29 @@
1
1
  import * as React from "react";
2
- import { useComposedRefs } from "./index44.js";
3
- import { Primitive } from "./index53.js";
4
- import { useCallbackRef } from "./index55.js";
5
- import { jsx } from "react/jsx-runtime";
6
- var AUTOFOCUS_ON_MOUNT = "focusScope.autoFocusOnMount";
7
- var AUTOFOCUS_ON_UNMOUNT = "focusScope.autoFocusOnUnmount";
8
- var EVENT_OPTIONS = { bubbles: false, cancelable: true };
9
- var FOCUS_SCOPE_NAME = "FocusScope";
10
- var FocusScope = React.forwardRef((props, forwardedRef) => {
11
- const {
12
- loop = false,
13
- trapped = false,
14
- onMountAutoFocus: onMountAutoFocusProp,
15
- onUnmountAutoFocus: onUnmountAutoFocusProp,
16
- ...scopeProps
17
- } = props;
18
- const [container, setContainer] = React.useState(null);
19
- const onMountAutoFocus = useCallbackRef(onMountAutoFocusProp);
20
- const onUnmountAutoFocus = useCallbackRef(onUnmountAutoFocusProp);
21
- const lastFocusedElementRef = React.useRef(null);
22
- const composedRefs = useComposedRefs(forwardedRef, (node) => setContainer(node));
23
- const focusScope = React.useRef({
24
- paused: false,
25
- pause() {
26
- this.paused = true;
27
- },
28
- resume() {
29
- this.paused = false;
30
- }
31
- }).current;
2
+ var count = 0;
3
+ function useFocusGuards() {
32
4
  React.useEffect(() => {
33
- if (trapped) {
34
- let handleFocusIn2 = function(event) {
35
- if (focusScope.paused || !container) return;
36
- const target = event.target;
37
- if (container.contains(target)) {
38
- lastFocusedElementRef.current = target;
39
- } else {
40
- focus(lastFocusedElementRef.current, { select: true });
41
- }
42
- }, handleFocusOut2 = function(event) {
43
- if (focusScope.paused || !container) return;
44
- const relatedTarget = event.relatedTarget;
45
- if (relatedTarget === null) return;
46
- if (!container.contains(relatedTarget)) {
47
- focus(lastFocusedElementRef.current, { select: true });
48
- }
49
- }, handleMutations2 = function(mutations) {
50
- const focusedElement = document.activeElement;
51
- if (focusedElement !== document.body) return;
52
- for (const mutation of mutations) {
53
- if (mutation.removedNodes.length > 0) focus(container);
54
- }
55
- };
56
- document.addEventListener("focusin", handleFocusIn2);
57
- document.addEventListener("focusout", handleFocusOut2);
58
- const mutationObserver = new MutationObserver(handleMutations2);
59
- if (container) mutationObserver.observe(container, { childList: true, subtree: true });
60
- return () => {
61
- document.removeEventListener("focusin", handleFocusIn2);
62
- document.removeEventListener("focusout", handleFocusOut2);
63
- mutationObserver.disconnect();
64
- };
65
- }
66
- }, [trapped, container, focusScope.paused]);
67
- React.useEffect(() => {
68
- if (container) {
69
- focusScopesStack.add(focusScope);
70
- const previouslyFocusedElement = document.activeElement;
71
- const hasFocusedCandidate = container.contains(previouslyFocusedElement);
72
- if (!hasFocusedCandidate) {
73
- const mountEvent = new CustomEvent(AUTOFOCUS_ON_MOUNT, EVENT_OPTIONS);
74
- container.addEventListener(AUTOFOCUS_ON_MOUNT, onMountAutoFocus);
75
- container.dispatchEvent(mountEvent);
76
- if (!mountEvent.defaultPrevented) {
77
- focusFirst(removeLinks(getTabbableCandidates(container)), { select: true });
78
- if (document.activeElement === previouslyFocusedElement) {
79
- focus(container);
80
- }
81
- }
82
- }
83
- return () => {
84
- container.removeEventListener(AUTOFOCUS_ON_MOUNT, onMountAutoFocus);
85
- setTimeout(() => {
86
- const unmountEvent = new CustomEvent(AUTOFOCUS_ON_UNMOUNT, EVENT_OPTIONS);
87
- container.addEventListener(AUTOFOCUS_ON_UNMOUNT, onUnmountAutoFocus);
88
- container.dispatchEvent(unmountEvent);
89
- if (!unmountEvent.defaultPrevented) {
90
- focus(previouslyFocusedElement ?? document.body, { select: true });
91
- }
92
- container.removeEventListener(AUTOFOCUS_ON_UNMOUNT, onUnmountAutoFocus);
93
- focusScopesStack.remove(focusScope);
94
- }, 0);
95
- };
96
- }
97
- }, [container, onMountAutoFocus, onUnmountAutoFocus, focusScope]);
98
- const handleKeyDown = React.useCallback(
99
- (event) => {
100
- if (!loop && !trapped) return;
101
- if (focusScope.paused) return;
102
- const isTabKey = event.key === "Tab" && !event.altKey && !event.ctrlKey && !event.metaKey;
103
- const focusedElement = document.activeElement;
104
- if (isTabKey && focusedElement) {
105
- const container2 = event.currentTarget;
106
- const [first, last] = getTabbableEdges(container2);
107
- const hasTabbableElementsInside = first && last;
108
- if (!hasTabbableElementsInside) {
109
- if (focusedElement === container2) event.preventDefault();
110
- } else {
111
- if (!event.shiftKey && focusedElement === last) {
112
- event.preventDefault();
113
- if (loop) focus(first, { select: true });
114
- } else if (event.shiftKey && focusedElement === first) {
115
- event.preventDefault();
116
- if (loop) focus(last, { select: true });
117
- }
118
- }
119
- }
120
- },
121
- [loop, trapped, focusScope.paused]
122
- );
123
- return /* @__PURE__ */ jsx(Primitive.div, { tabIndex: -1, ...scopeProps, ref: composedRefs, onKeyDown: handleKeyDown });
124
- });
125
- FocusScope.displayName = FOCUS_SCOPE_NAME;
126
- function focusFirst(candidates, { select = false } = {}) {
127
- const previouslyFocusedElement = document.activeElement;
128
- for (const candidate of candidates) {
129
- focus(candidate, { select });
130
- if (document.activeElement !== previouslyFocusedElement) return;
131
- }
132
- }
133
- function getTabbableEdges(container) {
134
- const candidates = getTabbableCandidates(container);
135
- const first = findVisible(candidates, container);
136
- const last = findVisible(candidates.reverse(), container);
137
- return [first, last];
138
- }
139
- function getTabbableCandidates(container) {
140
- const nodes = [];
141
- const walker = document.createTreeWalker(container, NodeFilter.SHOW_ELEMENT, {
142
- acceptNode: (node) => {
143
- const isHiddenInput = node.tagName === "INPUT" && node.type === "hidden";
144
- if (node.disabled || node.hidden || isHiddenInput) return NodeFilter.FILTER_SKIP;
145
- return node.tabIndex >= 0 ? NodeFilter.FILTER_ACCEPT : NodeFilter.FILTER_SKIP;
146
- }
147
- });
148
- while (walker.nextNode()) nodes.push(walker.currentNode);
149
- return nodes;
150
- }
151
- function findVisible(elements, container) {
152
- for (const element of elements) {
153
- if (!isHidden(element, { upTo: container })) return element;
154
- }
155
- }
156
- function isHidden(node, { upTo }) {
157
- if (getComputedStyle(node).visibility === "hidden") return true;
158
- while (node) {
159
- if (upTo !== void 0 && node === upTo) return false;
160
- if (getComputedStyle(node).display === "none") return true;
161
- node = node.parentElement;
162
- }
163
- return false;
164
- }
165
- function isSelectableInput(element) {
166
- return element instanceof HTMLInputElement && "select" in element;
167
- }
168
- function focus(element, { select = false } = {}) {
169
- if (element && element.focus) {
170
- const previouslyFocusedElement = document.activeElement;
171
- element.focus({ preventScroll: true });
172
- if (element !== previouslyFocusedElement && isSelectableInput(element) && select)
173
- element.select();
174
- }
175
- }
176
- var focusScopesStack = createFocusScopesStack();
177
- function createFocusScopesStack() {
178
- let stack = [];
179
- return {
180
- add(focusScope) {
181
- const activeFocusScope = stack[0];
182
- if (focusScope !== activeFocusScope) {
183
- activeFocusScope == null ? void 0 : activeFocusScope.pause();
5
+ const edgeGuards = document.querySelectorAll("[data-radix-focus-guard]");
6
+ document.body.insertAdjacentElement("afterbegin", edgeGuards[0] ?? createFocusGuard());
7
+ document.body.insertAdjacentElement("beforeend", edgeGuards[1] ?? createFocusGuard());
8
+ count++;
9
+ return () => {
10
+ if (count === 1) {
11
+ document.querySelectorAll("[data-radix-focus-guard]").forEach((node) => node.remove());
184
12
  }
185
- stack = arrayRemove(stack, focusScope);
186
- stack.unshift(focusScope);
187
- },
188
- remove(focusScope) {
189
- var _a;
190
- stack = arrayRemove(stack, focusScope);
191
- (_a = stack[0]) == null ? void 0 : _a.resume();
192
- }
193
- };
194
- }
195
- function arrayRemove(array, item) {
196
- const updatedArray = [...array];
197
- const index = updatedArray.indexOf(item);
198
- if (index !== -1) {
199
- updatedArray.splice(index, 1);
200
- }
201
- return updatedArray;
202
- }
203
- function removeLinks(items) {
204
- return items.filter((item) => item.tagName !== "A");
13
+ count--;
14
+ };
15
+ }, []);
16
+ }
17
+ function createFocusGuard() {
18
+ const element = document.createElement("span");
19
+ element.setAttribute("data-radix-focus-guard", "");
20
+ element.tabIndex = 0;
21
+ element.style.outline = "none";
22
+ element.style.opacity = "0";
23
+ element.style.position = "fixed";
24
+ element.style.pointerEvents = "none";
25
+ return element;
205
26
  }
206
27
  export {
207
- FocusScope
28
+ useFocusGuards
208
29
  };
package/dist/index50.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react"),t=require("./index57.cjs");function r(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e)for(const r in e)if("default"!==r){const n=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,n.get?n:{enumerable:!0,get:()=>e[r]})}return t.default=e,Object.freeze(t)}const n=r(e);var o=n[" useId ".trim().toString()]||(()=>{}),u=0;exports.useId=function(e){const[r,c]=n.useState(o());return t.useLayoutEffect(()=>{c(e=>e??String(u++))},[e]),e||(r?`radix-${r}`:"")};
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react"),t=require("./index45.cjs"),n=require("./index54.cjs"),o=require("./index56.cjs"),r=require("react/jsx-runtime");function u(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e)for(const n in e)if("default"!==n){const o=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,o.get?o:{enumerable:!0,get:()=>e[n]})}return t.default=e,Object.freeze(t)}const c=u(e);var s="focusScope.autoFocusOnMount",i="focusScope.autoFocusOnUnmount",a={bubbles:!1,cancelable:!0},d=c.forwardRef((e,u)=>{const{loop:d=!1,trapped:m=!1,onMountAutoFocus:E,onUnmountAutoFocus:b,...y}=e,[T,g]=c.useState(null),S=o.useCallbackRef(E),L=o.useCallbackRef(b),h=c.useRef(null),F=t.useComposedRefs(u,e=>g(e)),N=c.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;c.useEffect(()=>{if(m){let e=function(e){if(N.paused||!T)return;const t=e.target;T.contains(t)?h.current=t:v(h.current,{select:!0})},t=function(e){if(N.paused||!T)return;const t=e.relatedTarget;null!==t&&(T.contains(t)||v(h.current,{select:!0}))},n=function(e){if(document.activeElement===document.body)for(const t of e)t.removedNodes.length>0&&v(T)};document.addEventListener("focusin",e),document.addEventListener("focusout",t);const o=new MutationObserver(n);return T&&o.observe(T,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",e),document.removeEventListener("focusout",t),o.disconnect()}}},[m,T,N.paused]),c.useEffect(()=>{if(T){p.add(N);const t=document.activeElement;if(!T.contains(t)){const n=new CustomEvent(s,a);T.addEventListener(s,S),T.dispatchEvent(n),n.defaultPrevented||(!function(e,{select:t=!1}={}){const n=document.activeElement;for(const o of e)if(v(o,{select:t}),document.activeElement!==n)return}((e=l(T),e.filter(e=>"A"!==e.tagName)),{select:!0}),document.activeElement===t&&v(T))}return()=>{T.removeEventListener(s,S),setTimeout(()=>{const e=new CustomEvent(i,a);T.addEventListener(i,L),T.dispatchEvent(e),e.defaultPrevented||v(t??document.body,{select:!0}),T.removeEventListener(i,L),p.remove(N)},0)}}var e},[T,S,L,N]);const x=c.useCallback(e=>{if(!d&&!m)return;if(N.paused)return;const t="Tab"===e.key&&!e.altKey&&!e.ctrlKey&&!e.metaKey,n=document.activeElement;if(t&&n){const t=e.currentTarget,[o,r]=function(e){const t=l(e),n=f(t,e),o=f(t.reverse(),e);return[n,o]}(t);o&&r?e.shiftKey||n!==r?e.shiftKey&&n===o&&(e.preventDefault(),d&&v(r,{select:!0})):(e.preventDefault(),d&&v(o,{select:!0})):n===t&&e.preventDefault()}},[d,m,N.paused]);return r.jsx(n.Primitive.div,{tabIndex:-1,...y,ref:F,onKeyDown:x})});function l(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:e=>{const t="INPUT"===e.tagName&&"hidden"===e.type;return e.disabled||e.hidden||t?NodeFilter.FILTER_SKIP:e.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t}function f(e,t){for(const n of e)if(!m(n,{upTo:t}))return n}function m(e,{upTo:t}){if("hidden"===getComputedStyle(e).visibility)return!0;for(;e;){if(void 0!==t&&e===t)return!1;if("none"===getComputedStyle(e).display)return!0;e=e.parentElement}return!1}function v(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&function(e){return e instanceof HTMLInputElement&&"select"in e}(e)&&t&&e.select()}}d.displayName="FocusScope";var p=function(){let e=[];return{add(t){const n=e[0];t!==n&&(null==n||n.pause()),e=E(e,t),e.unshift(t)},remove(t){var n;e=E(e,t),null==(n=e[0])||n.resume()}}}();function E(e,t){const n=[...e],o=n.indexOf(t);return-1!==o&&n.splice(o,1),n}exports.FocusScope=d;
package/dist/index50.js CHANGED
@@ -1,14 +1,208 @@
1
1
  import * as React from "react";
2
- import { useLayoutEffect as useLayoutEffect2 } from "./index57.js";
3
- var useReactId = React[" useId ".trim().toString()] || (() => void 0);
4
- var count = 0;
5
- function useId(deterministicId) {
6
- const [id, setId] = React.useState(useReactId());
7
- useLayoutEffect2(() => {
8
- setId((reactId) => reactId ?? String(count++));
9
- }, [deterministicId]);
10
- return deterministicId || (id ? `radix-${id}` : "");
2
+ import { useComposedRefs } from "./index45.js";
3
+ import { Primitive } from "./index54.js";
4
+ import { useCallbackRef } from "./index56.js";
5
+ import { jsx } from "react/jsx-runtime";
6
+ var AUTOFOCUS_ON_MOUNT = "focusScope.autoFocusOnMount";
7
+ var AUTOFOCUS_ON_UNMOUNT = "focusScope.autoFocusOnUnmount";
8
+ var EVENT_OPTIONS = { bubbles: false, cancelable: true };
9
+ var FOCUS_SCOPE_NAME = "FocusScope";
10
+ var FocusScope = React.forwardRef((props, forwardedRef) => {
11
+ const {
12
+ loop = false,
13
+ trapped = false,
14
+ onMountAutoFocus: onMountAutoFocusProp,
15
+ onUnmountAutoFocus: onUnmountAutoFocusProp,
16
+ ...scopeProps
17
+ } = props;
18
+ const [container, setContainer] = React.useState(null);
19
+ const onMountAutoFocus = useCallbackRef(onMountAutoFocusProp);
20
+ const onUnmountAutoFocus = useCallbackRef(onUnmountAutoFocusProp);
21
+ const lastFocusedElementRef = React.useRef(null);
22
+ const composedRefs = useComposedRefs(forwardedRef, (node) => setContainer(node));
23
+ const focusScope = React.useRef({
24
+ paused: false,
25
+ pause() {
26
+ this.paused = true;
27
+ },
28
+ resume() {
29
+ this.paused = false;
30
+ }
31
+ }).current;
32
+ React.useEffect(() => {
33
+ if (trapped) {
34
+ let handleFocusIn2 = function(event) {
35
+ if (focusScope.paused || !container) return;
36
+ const target = event.target;
37
+ if (container.contains(target)) {
38
+ lastFocusedElementRef.current = target;
39
+ } else {
40
+ focus(lastFocusedElementRef.current, { select: true });
41
+ }
42
+ }, handleFocusOut2 = function(event) {
43
+ if (focusScope.paused || !container) return;
44
+ const relatedTarget = event.relatedTarget;
45
+ if (relatedTarget === null) return;
46
+ if (!container.contains(relatedTarget)) {
47
+ focus(lastFocusedElementRef.current, { select: true });
48
+ }
49
+ }, handleMutations2 = function(mutations) {
50
+ const focusedElement = document.activeElement;
51
+ if (focusedElement !== document.body) return;
52
+ for (const mutation of mutations) {
53
+ if (mutation.removedNodes.length > 0) focus(container);
54
+ }
55
+ };
56
+ document.addEventListener("focusin", handleFocusIn2);
57
+ document.addEventListener("focusout", handleFocusOut2);
58
+ const mutationObserver = new MutationObserver(handleMutations2);
59
+ if (container) mutationObserver.observe(container, { childList: true, subtree: true });
60
+ return () => {
61
+ document.removeEventListener("focusin", handleFocusIn2);
62
+ document.removeEventListener("focusout", handleFocusOut2);
63
+ mutationObserver.disconnect();
64
+ };
65
+ }
66
+ }, [trapped, container, focusScope.paused]);
67
+ React.useEffect(() => {
68
+ if (container) {
69
+ focusScopesStack.add(focusScope);
70
+ const previouslyFocusedElement = document.activeElement;
71
+ const hasFocusedCandidate = container.contains(previouslyFocusedElement);
72
+ if (!hasFocusedCandidate) {
73
+ const mountEvent = new CustomEvent(AUTOFOCUS_ON_MOUNT, EVENT_OPTIONS);
74
+ container.addEventListener(AUTOFOCUS_ON_MOUNT, onMountAutoFocus);
75
+ container.dispatchEvent(mountEvent);
76
+ if (!mountEvent.defaultPrevented) {
77
+ focusFirst(removeLinks(getTabbableCandidates(container)), { select: true });
78
+ if (document.activeElement === previouslyFocusedElement) {
79
+ focus(container);
80
+ }
81
+ }
82
+ }
83
+ return () => {
84
+ container.removeEventListener(AUTOFOCUS_ON_MOUNT, onMountAutoFocus);
85
+ setTimeout(() => {
86
+ const unmountEvent = new CustomEvent(AUTOFOCUS_ON_UNMOUNT, EVENT_OPTIONS);
87
+ container.addEventListener(AUTOFOCUS_ON_UNMOUNT, onUnmountAutoFocus);
88
+ container.dispatchEvent(unmountEvent);
89
+ if (!unmountEvent.defaultPrevented) {
90
+ focus(previouslyFocusedElement ?? document.body, { select: true });
91
+ }
92
+ container.removeEventListener(AUTOFOCUS_ON_UNMOUNT, onUnmountAutoFocus);
93
+ focusScopesStack.remove(focusScope);
94
+ }, 0);
95
+ };
96
+ }
97
+ }, [container, onMountAutoFocus, onUnmountAutoFocus, focusScope]);
98
+ const handleKeyDown = React.useCallback(
99
+ (event) => {
100
+ if (!loop && !trapped) return;
101
+ if (focusScope.paused) return;
102
+ const isTabKey = event.key === "Tab" && !event.altKey && !event.ctrlKey && !event.metaKey;
103
+ const focusedElement = document.activeElement;
104
+ if (isTabKey && focusedElement) {
105
+ const container2 = event.currentTarget;
106
+ const [first, last] = getTabbableEdges(container2);
107
+ const hasTabbableElementsInside = first && last;
108
+ if (!hasTabbableElementsInside) {
109
+ if (focusedElement === container2) event.preventDefault();
110
+ } else {
111
+ if (!event.shiftKey && focusedElement === last) {
112
+ event.preventDefault();
113
+ if (loop) focus(first, { select: true });
114
+ } else if (event.shiftKey && focusedElement === first) {
115
+ event.preventDefault();
116
+ if (loop) focus(last, { select: true });
117
+ }
118
+ }
119
+ }
120
+ },
121
+ [loop, trapped, focusScope.paused]
122
+ );
123
+ return /* @__PURE__ */ jsx(Primitive.div, { tabIndex: -1, ...scopeProps, ref: composedRefs, onKeyDown: handleKeyDown });
124
+ });
125
+ FocusScope.displayName = FOCUS_SCOPE_NAME;
126
+ function focusFirst(candidates, { select = false } = {}) {
127
+ const previouslyFocusedElement = document.activeElement;
128
+ for (const candidate of candidates) {
129
+ focus(candidate, { select });
130
+ if (document.activeElement !== previouslyFocusedElement) return;
131
+ }
132
+ }
133
+ function getTabbableEdges(container) {
134
+ const candidates = getTabbableCandidates(container);
135
+ const first = findVisible(candidates, container);
136
+ const last = findVisible(candidates.reverse(), container);
137
+ return [first, last];
138
+ }
139
+ function getTabbableCandidates(container) {
140
+ const nodes = [];
141
+ const walker = document.createTreeWalker(container, NodeFilter.SHOW_ELEMENT, {
142
+ acceptNode: (node) => {
143
+ const isHiddenInput = node.tagName === "INPUT" && node.type === "hidden";
144
+ if (node.disabled || node.hidden || isHiddenInput) return NodeFilter.FILTER_SKIP;
145
+ return node.tabIndex >= 0 ? NodeFilter.FILTER_ACCEPT : NodeFilter.FILTER_SKIP;
146
+ }
147
+ });
148
+ while (walker.nextNode()) nodes.push(walker.currentNode);
149
+ return nodes;
150
+ }
151
+ function findVisible(elements, container) {
152
+ for (const element of elements) {
153
+ if (!isHidden(element, { upTo: container })) return element;
154
+ }
155
+ }
156
+ function isHidden(node, { upTo }) {
157
+ if (getComputedStyle(node).visibility === "hidden") return true;
158
+ while (node) {
159
+ if (upTo !== void 0 && node === upTo) return false;
160
+ if (getComputedStyle(node).display === "none") return true;
161
+ node = node.parentElement;
162
+ }
163
+ return false;
164
+ }
165
+ function isSelectableInput(element) {
166
+ return element instanceof HTMLInputElement && "select" in element;
167
+ }
168
+ function focus(element, { select = false } = {}) {
169
+ if (element && element.focus) {
170
+ const previouslyFocusedElement = document.activeElement;
171
+ element.focus({ preventScroll: true });
172
+ if (element !== previouslyFocusedElement && isSelectableInput(element) && select)
173
+ element.select();
174
+ }
175
+ }
176
+ var focusScopesStack = createFocusScopesStack();
177
+ function createFocusScopesStack() {
178
+ let stack = [];
179
+ return {
180
+ add(focusScope) {
181
+ const activeFocusScope = stack[0];
182
+ if (focusScope !== activeFocusScope) {
183
+ activeFocusScope == null ? void 0 : activeFocusScope.pause();
184
+ }
185
+ stack = arrayRemove(stack, focusScope);
186
+ stack.unshift(focusScope);
187
+ },
188
+ remove(focusScope) {
189
+ var _a;
190
+ stack = arrayRemove(stack, focusScope);
191
+ (_a = stack[0]) == null ? void 0 : _a.resume();
192
+ }
193
+ };
194
+ }
195
+ function arrayRemove(array, item) {
196
+ const updatedArray = [...array];
197
+ const index = updatedArray.indexOf(item);
198
+ if (index !== -1) {
199
+ updatedArray.splice(index, 1);
200
+ }
201
+ return updatedArray;
202
+ }
203
+ function removeLinks(items) {
204
+ return items.filter((item) => item.tagName !== "A");
11
205
  }
12
206
  export {
13
- useId
207
+ FocusScope
14
208
  };
package/dist/index51.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react"),r=require("./index64.cjs"),t=require("./index65.cjs"),o=require("./index44.cjs"),i=require("./index45.cjs"),n=require("./index53.cjs"),a=require("./index55.cjs"),s=require("./index57.cjs"),l=require("./index66.cjs"),d=require("react/jsx-runtime"),p=require("./index67.cjs");function c(e){const r=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e)for(const t in e)if("default"!==t){const o=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(r,t,o.get?o:{enumerable:!0,get:()=>e[t]})}return r.default=e,Object.freeze(r)}const u=c(e);var f="Popper",[h,x]=i.createContextScope(f),[g,m]=h(f),y=e=>{const{__scopePopper:r,children:t}=e,[o,i]=u.useState(null);return d.jsx(g,{scope:r,anchor:o,onAnchorChange:i,children:t})};y.displayName=f;var w="PopperAnchor",v=u.forwardRef((e,r)=>{const{__scopePopper:t,virtualRef:i,...a}=e,s=m(w,t),l=u.useRef(null),p=o.useComposedRefs(r,l),c=u.useRef(null);return u.useEffect(()=>{const e=c.current;c.current=(null==i?void 0:i.current)||l.current,e!==c.current&&s.onAnchorChange(c.current)}),i?null:d.jsx(n.Primitive.div,{...a,ref:p})});v.displayName=w;var P="PopperContent",[b,j]=h(P),S=u.forwardRef((e,t)=>{var i,c,f,h,x,g;const{__scopePopper:y,side:w="bottom",sideOffset:v=0,align:j="center",alignOffset:S=0,arrowPadding:A=0,avoidCollisions:O=!0,collisionBoundary:C=[],collisionPadding:_=0,sticky:H="partial",hideWhenDetached:z=!1,updatePositionStrategy:E="optimized",onPlaced:W,...Y}=e,D=m(P,y),[N,X]=u.useState(null),k=o.useComposedRefs(t,e=>X(e)),[F,M]=u.useState(null),B=l.useSize(F),I=(null==B?void 0:B.width)??0,L=(null==B?void 0:B.height)??0,T=w+("center"!==j?"-"+j:""),U="number"==typeof _?_:{top:0,right:0,bottom:0,left:0,..._},G=Array.isArray(C)?C:[C],J=G.length>0,K={padding:U,boundary:G.filter(q),altBoundary:J},{refs:Q,floatingStyles:V,placement:Z,isPositioned:ee,middlewareData:re}=r.useFloating({strategy:"fixed",placement:T,whileElementsMounted:(...e)=>p.autoUpdate(...e,{animationFrame:"always"===E}),elements:{reference:D.anchor},middleware:[r.offset({mainAxis:v+L,alignmentAxis:S}),O&&r.shift({mainAxis:!0,crossAxis:!1,limiter:"partial"===H?r.limitShift():void 0,...K}),O&&r.flip({...K}),r.size({...K,apply:({elements:e,rects:r,availableWidth:t,availableHeight:o})=>{const{width:i,height:n}=r.reference,a=e.floating.style;a.setProperty("--radix-popper-available-width",`${t}px`),a.setProperty("--radix-popper-available-height",`${o}px`),a.setProperty("--radix-popper-anchor-width",`${i}px`),a.setProperty("--radix-popper-anchor-height",`${n}px`)}}),F&&r.arrow({element:F,padding:A}),R({arrowWidth:I,arrowHeight:L}),z&&r.hide({strategy:"referenceHidden",...K})]}),[te,oe]=$(Z),ie=a.useCallbackRef(W);s.useLayoutEffect(()=>{ee&&(null==ie||ie())},[ee,ie]);const ne=null==(i=re.arrow)?void 0:i.x,ae=null==(c=re.arrow)?void 0:c.y,se=0!==(null==(f=re.arrow)?void 0:f.centerOffset),[le,de]=u.useState();return s.useLayoutEffect(()=>{N&&de(window.getComputedStyle(N).zIndex)},[N]),d.jsx("div",{ref:Q.setFloating,"data-radix-popper-content-wrapper":"",style:{...V,transform:ee?V.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:le,"--radix-popper-transform-origin":[null==(h=re.transformOrigin)?void 0:h.x,null==(x=re.transformOrigin)?void 0:x.y].join(" "),...(null==(g=re.hide)?void 0:g.referenceHidden)&&{visibility:"hidden",pointerEvents:"none"}},dir:e.dir,children:d.jsx(b,{scope:y,placedSide:te,onArrowChange:M,arrowX:ne,arrowY:ae,shouldHideArrow:se,children:d.jsx(n.Primitive.div,{"data-side":te,"data-align":oe,...Y,ref:k,style:{...Y.style,animation:ee?void 0:"none"}})})})});S.displayName=P;var A="PopperArrow",O={top:"bottom",right:"left",bottom:"top",left:"right"},C=u.forwardRef(function(e,r){const{__scopePopper:o,...i}=e,n=j(A,o),a=O[n.placedSide];return d.jsx("span",{ref:n.onArrowChange,style:{position:"absolute",left:n.arrowX,top:n.arrowY,[a]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[n.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[n.placedSide],visibility:n.shouldHideArrow?"hidden":void 0},children:d.jsx(t.Root,{...i,ref:r,style:{...i.style,display:"block"}})})});function q(e){return null!==e}C.displayName=A;var R=e=>({name:"transformOrigin",options:e,fn(r){var t,o,i;const{placement:n,rects:a,middlewareData:s}=r,l=0!==(null==(t=s.arrow)?void 0:t.centerOffset),d=l?0:e.arrowWidth,p=l?0:e.arrowHeight,[c,u]=$(n),f={start:"0%",center:"50%",end:"100%"}[u],h=((null==(o=s.arrow)?void 0:o.x)??0)+d/2,x=((null==(i=s.arrow)?void 0:i.y)??0)+p/2;let g="",m="";return"bottom"===c?(g=l?f:`${h}px`,m=-p+"px"):"top"===c?(g=l?f:`${h}px`,m=`${a.floating.height+p}px`):"right"===c?(g=-p+"px",m=l?f:`${x}px`):"left"===c&&(g=`${a.floating.width+p}px`,m=l?f:`${x}px`),{data:{x:g,y:m}}}});function $(e){const[r,t="center"]=e.split("-");return[r,t]}var _=y,H=v,z=S,E=C;exports.Anchor=H,exports.Arrow=E,exports.Content=z,exports.Popper=y,exports.PopperAnchor=v,exports.PopperArrow=C,exports.PopperContent=S,exports.Root=_,exports.createPopperScope=x;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react"),t=require("./index58.cjs");function r(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e)for(const r in e)if("default"!==r){const n=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,n.get?n:{enumerable:!0,get:()=>e[r]})}return t.default=e,Object.freeze(t)}const n=r(e);var o=n[" useId ".trim().toString()]||(()=>{}),u=0;exports.useId=function(e){const[r,c]=n.useState(o());return t.useLayoutEffect(()=>{c(e=>e??String(u++))},[e]),e||(r?`radix-${r}`:"")};