@datawire-ai/busyfile-design-library 1.30.9 → 1.31.0

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 (64) hide show
  1. package/dist/index100.js +5 -181
  2. package/dist/index101.js +69 -7
  3. package/dist/index102.js +124 -23
  4. package/dist/index103.js +10 -5
  5. package/dist/index104.js +212 -128
  6. package/dist/index105.js +13 -14
  7. package/dist/index106.js +30 -9
  8. package/dist/index107.js +4 -50
  9. package/dist/index108.js +46 -10
  10. package/dist/index109.js +16 -4
  11. package/dist/index110.js +132 -9
  12. package/dist/index111.js +50 -4
  13. package/dist/index112.js +9 -47
  14. package/dist/index113.js +12 -648
  15. package/dist/index116.js +648 -12
  16. package/dist/index121.js +6 -12
  17. package/dist/index122.js +10 -204
  18. package/dist/index123.js +204 -20
  19. package/dist/index124.js +21 -399
  20. package/dist/index125.js +400 -6
  21. package/dist/index126.js +2 -25
  22. package/dist/index127.js +53 -29
  23. package/dist/index128.js +65 -5
  24. package/dist/index129.js +25 -2
  25. package/dist/index130.js +29 -53
  26. package/dist/index131.js +5 -65
  27. package/dist/index200.js +2 -525
  28. package/dist/index201.js +2 -128
  29. package/dist/index202.js +516 -125
  30. package/dist/index203.js +128 -5
  31. package/dist/index204.js +134 -3
  32. package/dist/index205.js +5 -24
  33. package/dist/index206.js +3 -110
  34. package/dist/index207.js +23 -15
  35. package/dist/index208.js +110 -2
  36. package/dist/index209.js +16 -2
  37. package/dist/index268.js +1 -1
  38. package/dist/index269.js +1 -1
  39. package/dist/index40.js +1 -1
  40. package/dist/index42.js +6 -6
  41. package/dist/index44.js +9 -9
  42. package/dist/index46.js +7 -7
  43. package/dist/index49.js +12 -12
  44. package/dist/index52.js +10 -10
  45. package/dist/index59.js +4 -4
  46. package/dist/index63.js +1 -1
  47. package/dist/index75.js +7 -7
  48. package/dist/index82.js +19 -19
  49. package/dist/index85.js +13 -13
  50. package/dist/index86.js +4 -4
  51. package/dist/index87.js +6 -6
  52. package/dist/index89.js +25 -5
  53. package/dist/index90.js +32 -25
  54. package/dist/index92.js +10 -125
  55. package/dist/index93.js +4 -11
  56. package/dist/index94.js +10 -217
  57. package/dist/index95.js +7 -15
  58. package/dist/index96.js +177 -65
  59. package/dist/index97.js +51 -33
  60. package/dist/index98.js +7 -51
  61. package/dist/index99.js +25 -30
  62. package/dist/style.css +1 -1
  63. package/dist/theme.css +5 -5
  64. package/package.json +1 -1
package/dist/index104.js CHANGED
@@ -1,138 +1,222 @@
1
1
  "use client";
2
- import * as d from "react";
3
- import { useComposedRefs as R } from "./index90.js";
4
- import { Primitive as M } from "./index97.js";
5
- import { useCallbackRef as y } from "./index108.js";
6
- import { jsx as _ } from "react/jsx-runtime";
7
- var F = "focusScope.autoFocusOnMount", T = "focusScope.autoFocusOnUnmount", N = { bubbles: !1, cancelable: !0 }, K = "FocusScope", k = d.forwardRef((e, n) => {
8
- const {
9
- loop: t = !1,
10
- trapped: u = !1,
11
- onMountAutoFocus: p,
12
- onUnmountAutoFocus: L,
13
- ...g
14
- } = e, [o, U] = d.useState(null), E = y(p), v = y(L), b = d.useRef(null), A = R(n, (s) => U(s)), a = d.useRef({
15
- paused: !1,
16
- pause() {
17
- this.paused = !0;
18
- },
19
- resume() {
20
- this.paused = !1;
21
- }
22
- }).current;
23
- d.useEffect(() => {
24
- if (u) {
25
- let s = function(i) {
26
- if (a.paused || !o) return;
27
- const c = i.target;
28
- o.contains(c) ? b.current = c : f(b.current, { select: !0 });
29
- }, l = function(i) {
30
- if (a.paused || !o) return;
31
- const c = i.relatedTarget;
32
- c !== null && (o.contains(c) || f(b.current, { select: !0 }));
33
- }, r = function(i) {
34
- if (document.activeElement === document.body)
35
- for (const h of i)
36
- h.removedNodes.length > 0 && f(o);
37
- };
38
- document.addEventListener("focusin", s), document.addEventListener("focusout", l);
39
- const m = new MutationObserver(r);
40
- return o && m.observe(o, { childList: !0, subtree: !0 }), () => {
41
- document.removeEventListener("focusin", s), document.removeEventListener("focusout", l), m.disconnect();
42
- };
43
- }
44
- }, [u, o, a.paused]), d.useEffect(() => {
45
- if (o) {
46
- S.add(a);
47
- const s = document.activeElement;
48
- if (!o.contains(s)) {
49
- const r = new CustomEvent(F, N);
50
- o.addEventListener(F, E), o.dispatchEvent(r), r.defaultPrevented || (w(W(I(o)), { select: !0 }), document.activeElement === s && f(o));
2
+ import * as p from "react";
3
+ import { useFloating as xe, offset as Pe, shift as ye, flip as Ae, size as ve, arrow as Ce, hide as be, limitShift as Se } from "./index123.js";
4
+ import { Root as Oe } from "./index124.js";
5
+ import { useComposedRefs as j } from "./index89.js";
6
+ import { createContextScope as Re } from "./index91.js";
7
+ import { Primitive as z } from "./index90.js";
8
+ import { useCallbackRef as Ee } from "./index92.js";
9
+ import { useLayoutEffect as T } from "./index93.js";
10
+ import { useSize as Ne } from "./index99.js";
11
+ import { jsx as f } from "react/jsx-runtime";
12
+ import { autoUpdate as _e } from "./index125.js";
13
+ var N = "Popper", [L, Ue] = Re(N), [$e, Z] = L(N), U = (e) => {
14
+ const { __scopePopper: s, children: a } = e, [t, i] = p.useState(null);
15
+ return /* @__PURE__ */ f($e, { scope: s, anchor: t, onAnchorChange: i, children: a });
16
+ };
17
+ U.displayName = N;
18
+ var q = "PopperAnchor", G = p.forwardRef(
19
+ (e, s) => {
20
+ const { __scopePopper: a, virtualRef: t, ...i } = e, r = Z(q, a), o = p.useRef(null), w = j(s, o), n = p.useRef(null);
21
+ return p.useEffect(() => {
22
+ const c = n.current;
23
+ n.current = (t == null ? void 0 : t.current) || o.current, c !== n.current && r.onAnchorChange(n.current);
24
+ }), t ? null : /* @__PURE__ */ f(z.div, { ...i, ref: w });
25
+ }
26
+ );
27
+ G.displayName = q;
28
+ var _ = "PopperContent", [He, We] = L(_), J = p.forwardRef(
29
+ (e, s) => {
30
+ var Y, M, X, D, F, k;
31
+ const {
32
+ __scopePopper: a,
33
+ side: t = "bottom",
34
+ sideOffset: i = 0,
35
+ align: r = "center",
36
+ alignOffset: o = 0,
37
+ arrowPadding: w = 0,
38
+ avoidCollisions: n = !0,
39
+ collisionBoundary: c = [],
40
+ collisionPadding: x = 0,
41
+ sticky: m = "partial",
42
+ hideWhenDetached: y = !1,
43
+ updatePositionStrategy: A = "optimized",
44
+ onPlaced: l,
45
+ ...d
46
+ } = e, v = Z(_, a), [h, C] = p.useState(null), ee = j(s, (P) => C(P)), [E, te] = p.useState(null), u = Ne(E), re = (u == null ? void 0 : u.width) ?? 0, $ = (u == null ? void 0 : u.height) ?? 0, oe = t + (r !== "center" ? "-" + r : ""), ne = typeof x == "number" ? x : { top: 0, right: 0, bottom: 0, left: 0, ...x }, H = Array.isArray(c) ? c : [c], ae = H.length > 0, b = {
47
+ padding: ne,
48
+ boundary: H.filter(Ye),
49
+ // with `strategy: 'fixed'`, this is the only way to get it to respect boundaries
50
+ altBoundary: ae
51
+ }, { refs: ie, floatingStyles: W, placement: se, isPositioned: S, middlewareData: g } = xe({
52
+ // default to `fixed` strategy so users don't have to pick and we also avoid focus scroll issues
53
+ strategy: "fixed",
54
+ placement: oe,
55
+ whileElementsMounted: (...P) => _e(...P, {
56
+ animationFrame: A === "always"
57
+ }),
58
+ elements: {
59
+ reference: v.anchor
60
+ },
61
+ middleware: [
62
+ Pe({ mainAxis: i + $, alignmentAxis: o }),
63
+ n && ye({
64
+ mainAxis: !0,
65
+ crossAxis: !1,
66
+ limiter: m === "partial" ? Se() : void 0,
67
+ ...b
68
+ }),
69
+ n && Ae({ ...b }),
70
+ ve({
71
+ ...b,
72
+ apply: ({ elements: P, rects: B, availableWidth: he, availableHeight: ue }) => {
73
+ const { width: ge, height: we } = B.reference, R = P.floating.style;
74
+ R.setProperty("--radix-popper-available-width", `${he}px`), R.setProperty("--radix-popper-available-height", `${ue}px`), R.setProperty("--radix-popper-anchor-width", `${ge}px`), R.setProperty("--radix-popper-anchor-height", `${we}px`);
75
+ }
76
+ }),
77
+ E && Ce({ element: E, padding: w }),
78
+ Me({ arrowWidth: re, arrowHeight: $ }),
79
+ y && be({ strategy: "referenceHidden", ...b })
80
+ ]
81
+ }), [I, ce] = V(se), O = Ee(l);
82
+ T(() => {
83
+ S && (O == null || O());
84
+ }, [S, O]);
85
+ const pe = (Y = g.arrow) == null ? void 0 : Y.x, de = (M = g.arrow) == null ? void 0 : M.y, le = ((X = g.arrow) == null ? void 0 : X.centerOffset) !== 0, [fe, me] = p.useState();
86
+ return T(() => {
87
+ h && me(window.getComputedStyle(h).zIndex);
88
+ }, [h]), /* @__PURE__ */ f(
89
+ "div",
90
+ {
91
+ ref: ie.setFloating,
92
+ "data-radix-popper-content-wrapper": "",
93
+ style: {
94
+ ...W,
95
+ transform: S ? W.transform : "translate(0, -200%)",
96
+ // keep off the page when measuring
97
+ minWidth: "max-content",
98
+ zIndex: fe,
99
+ "--radix-popper-transform-origin": [
100
+ (D = g.transformOrigin) == null ? void 0 : D.x,
101
+ (F = g.transformOrigin) == null ? void 0 : F.y
102
+ ].join(" "),
103
+ // hide the content if using the hide middleware and should be hidden
104
+ // set visibility to hidden and disable pointer events so the UI behaves
105
+ // as if the PopperContent isn't there at all
106
+ ...((k = g.hide) == null ? void 0 : k.referenceHidden) && {
107
+ visibility: "hidden",
108
+ pointerEvents: "none"
109
+ }
110
+ },
111
+ dir: e.dir,
112
+ children: /* @__PURE__ */ f(
113
+ He,
114
+ {
115
+ scope: a,
116
+ placedSide: I,
117
+ onArrowChange: te,
118
+ arrowX: pe,
119
+ arrowY: de,
120
+ shouldHideArrow: le,
121
+ children: /* @__PURE__ */ f(
122
+ z.div,
123
+ {
124
+ "data-side": I,
125
+ "data-align": ce,
126
+ ...d,
127
+ ref: ee,
128
+ style: {
129
+ ...d.style,
130
+ // if the PopperContent hasn't been placed yet (not all measurements done)
131
+ // we prevent animations so that users's animation don't kick in too early referring wrong sides
132
+ animation: S ? void 0 : "none"
133
+ }
134
+ }
135
+ )
136
+ }
137
+ )
51
138
  }
52
- return () => {
53
- o.removeEventListener(F, E), setTimeout(() => {
54
- const r = new CustomEvent(T, N);
55
- o.addEventListener(T, v), o.dispatchEvent(r), r.defaultPrevented || f(s ?? document.body, { select: !0 }), o.removeEventListener(T, v), S.remove(a);
56
- }, 0);
57
- };
58
- }
59
- }, [o, E, v, a]);
60
- const P = d.useCallback(
61
- (s) => {
62
- if (!t && !u || a.paused) return;
63
- const l = s.key === "Tab" && !s.altKey && !s.ctrlKey && !s.metaKey, r = document.activeElement;
64
- if (l && r) {
65
- const m = s.currentTarget, [i, c] = x(m);
66
- i && c ? !s.shiftKey && r === c ? (s.preventDefault(), t && f(i, { select: !0 })) : s.shiftKey && r === i && (s.preventDefault(), t && f(c, { select: !0 })) : r === m && s.preventDefault();
139
+ );
140
+ }
141
+ );
142
+ J.displayName = _;
143
+ var K = "PopperArrow", Ie = {
144
+ top: "bottom",
145
+ right: "left",
146
+ bottom: "top",
147
+ left: "right"
148
+ }, Q = p.forwardRef(function(s, a) {
149
+ const { __scopePopper: t, ...i } = s, r = We(K, t), o = Ie[r.placedSide];
150
+ return (
151
+ // we have to use an extra wrapper because `ResizeObserver` (used by `useSize`)
152
+ // doesn't report size as we'd expect on SVG elements.
153
+ // it reports their bounding box which is effectively the largest path inside the SVG.
154
+ /* @__PURE__ */ f(
155
+ "span",
156
+ {
157
+ ref: r.onArrowChange,
158
+ style: {
159
+ position: "absolute",
160
+ left: r.arrowX,
161
+ top: r.arrowY,
162
+ [o]: 0,
163
+ transformOrigin: {
164
+ top: "",
165
+ right: "0 0",
166
+ bottom: "center 0",
167
+ left: "100% 0"
168
+ }[r.placedSide],
169
+ transform: {
170
+ top: "translateY(100%)",
171
+ right: "translateY(50%) rotate(90deg) translateX(-50%)",
172
+ bottom: "rotate(180deg)",
173
+ left: "translateY(50%) rotate(-90deg) translateX(50%)"
174
+ }[r.placedSide],
175
+ visibility: r.shouldHideArrow ? "hidden" : void 0
176
+ },
177
+ children: /* @__PURE__ */ f(
178
+ Oe,
179
+ {
180
+ ...i,
181
+ ref: a,
182
+ style: {
183
+ ...i.style,
184
+ // ensures the element can be measured correctly (mostly for if SVG)
185
+ display: "block"
186
+ }
187
+ }
188
+ )
67
189
  }
68
- },
69
- [t, u, a.paused]
190
+ )
70
191
  );
71
- return /* @__PURE__ */ _(M.div, { tabIndex: -1, ...g, ref: A, onKeyDown: P });
72
192
  });
73
- k.displayName = K;
74
- function w(e, { select: n = !1 } = {}) {
75
- const t = document.activeElement;
76
- for (const u of e)
77
- if (f(u, { select: n }), document.activeElement !== t) return;
78
- }
79
- function x(e) {
80
- const n = I(e), t = O(n, e), u = O(n.reverse(), e);
81
- return [t, u];
193
+ Q.displayName = K;
194
+ function Ye(e) {
195
+ return e !== null;
82
196
  }
83
- function I(e) {
84
- const n = [], t = document.createTreeWalker(e, NodeFilter.SHOW_ELEMENT, {
85
- acceptNode: (u) => {
86
- const p = u.tagName === "INPUT" && u.type === "hidden";
87
- return u.disabled || u.hidden || p ? NodeFilter.FILTER_SKIP : u.tabIndex >= 0 ? NodeFilter.FILTER_ACCEPT : NodeFilter.FILTER_SKIP;
88
- }
89
- });
90
- for (; t.nextNode(); ) n.push(t.currentNode);
91
- return n;
92
- }
93
- function O(e, n) {
94
- for (const t of e)
95
- if (!D(t, { upTo: n })) return t;
96
- }
97
- function D(e, { upTo: n }) {
98
- if (getComputedStyle(e).visibility === "hidden") return !0;
99
- for (; e; ) {
100
- if (n !== void 0 && e === n) return !1;
101
- if (getComputedStyle(e).display === "none") return !0;
102
- e = e.parentElement;
197
+ var Me = (e) => ({
198
+ name: "transformOrigin",
199
+ options: e,
200
+ fn(s) {
201
+ var v, h, C;
202
+ const { placement: a, rects: t, middlewareData: i } = s, o = ((v = i.arrow) == null ? void 0 : v.centerOffset) !== 0, w = o ? 0 : e.arrowWidth, n = o ? 0 : e.arrowHeight, [c, x] = V(a), m = { start: "0%", center: "50%", end: "100%" }[x], y = (((h = i.arrow) == null ? void 0 : h.x) ?? 0) + w / 2, A = (((C = i.arrow) == null ? void 0 : C.y) ?? 0) + n / 2;
203
+ let l = "", d = "";
204
+ return c === "bottom" ? (l = o ? m : `${y}px`, d = `${-n}px`) : c === "top" ? (l = o ? m : `${y}px`, d = `${t.floating.height + n}px`) : c === "right" ? (l = `${-n}px`, d = o ? m : `${A}px`) : c === "left" && (l = `${t.floating.width + n}px`, d = o ? m : `${A}px`), { data: { x: l, y: d } };
103
205
  }
104
- return !1;
105
- }
106
- function H(e) {
107
- return e instanceof HTMLInputElement && "select" in e;
108
- }
109
- function f(e, { select: n = !1 } = {}) {
110
- if (e && e.focus) {
111
- const t = document.activeElement;
112
- e.focus({ preventScroll: !0 }), e !== t && H(e) && n && e.select();
113
- }
114
- }
115
- var S = V();
116
- function V() {
117
- let e = [];
118
- return {
119
- add(n) {
120
- const t = e[0];
121
- n !== t && (t == null || t.pause()), e = C(e, n), e.unshift(n);
122
- },
123
- remove(n) {
124
- var t;
125
- e = C(e, n), (t = e[0]) == null || t.resume();
126
- }
127
- };
128
- }
129
- function C(e, n) {
130
- const t = [...e], u = t.indexOf(n);
131
- return u !== -1 && t.splice(u, 1), t;
132
- }
133
- function W(e) {
134
- return e.filter((n) => n.tagName !== "A");
206
+ });
207
+ function V(e) {
208
+ const [s, a = "center"] = e.split("-");
209
+ return [s, a];
135
210
  }
211
+ var qe = U, Ge = G, Je = J, Ke = Q;
136
212
  export {
137
- k as FocusScope
213
+ Ge as Anchor,
214
+ Ke as Arrow,
215
+ Je as Content,
216
+ U as Popper,
217
+ G as PopperAnchor,
218
+ Q as PopperArrow,
219
+ J as PopperContent,
220
+ qe as Root,
221
+ Ue as createPopperScope
138
222
  };
package/dist/index105.js CHANGED
@@ -1,18 +1,17 @@
1
1
  "use client";
2
2
  import * as r from "react";
3
- var t = 0;
4
- function a() {
5
- r.useEffect(() => {
6
- const e = document.querySelectorAll("[data-radix-focus-guard]");
7
- return document.body.insertAdjacentElement("afterbegin", e[0] ?? n()), document.body.insertAdjacentElement("beforeend", e[1] ?? n()), t++, () => {
8
- t === 1 && document.querySelectorAll("[data-radix-focus-guard]").forEach((o) => o.remove()), t--;
9
- };
10
- }, []);
11
- }
12
- function n() {
13
- const e = document.createElement("span");
14
- return e.setAttribute("data-radix-focus-guard", ""), e.tabIndex = 0, e.style.outline = "none", e.style.opacity = "0", e.style.position = "fixed", e.style.pointerEvents = "none", e;
15
- }
3
+ import s from "react-dom";
4
+ import { Primitive as c } from "./index90.js";
5
+ import { useLayoutEffect as u } from "./index93.js";
6
+ import { jsx as l } from "react/jsx-runtime";
7
+ var p = "Portal", d = r.forwardRef((e, a) => {
8
+ var o;
9
+ const { container: f, ...i } = e, [m, n] = r.useState(!1);
10
+ u(() => n(!0), []);
11
+ const t = f || m && ((o = globalThis == null ? void 0 : globalThis.document) == null ? void 0 : o.body);
12
+ return t ? s.createPortal(/* @__PURE__ */ l(c.div, { ...i, ref: a }), t) : null;
13
+ });
14
+ d.displayName = p;
16
15
  export {
17
- a as useFocusGuards
16
+ d as Portal
18
17
  };
package/dist/index106.js CHANGED
@@ -1,11 +1,32 @@
1
- import { __assign as m } from "./index126.js";
2
- import * as r from "react";
3
- import { RemoveScroll as e } from "./index127.js";
4
- import t from "./index128.js";
5
- var s = r.forwardRef(function(a, o) {
6
- return r.createElement(e, m({}, a, { ref: o, sideCar: t }));
7
- });
8
- s.classNames = e.classNames;
1
+ import * as a from "react";
2
+ import { Primitive as o } from "./index90.js";
3
+ import { jsx as t } from "react/jsx-runtime";
4
+ var d = Object.freeze({
5
+ // See: https://github.com/twbs/bootstrap/blob/main/scss/mixins/_visually-hidden.scss
6
+ position: "absolute",
7
+ border: 0,
8
+ width: 1,
9
+ height: 1,
10
+ padding: 0,
11
+ margin: -1,
12
+ overflow: "hidden",
13
+ clip: "rect(0, 0, 0, 0)",
14
+ whiteSpace: "nowrap",
15
+ wordWrap: "normal"
16
+ }), l = "VisuallyHidden", e = a.forwardRef(
17
+ (r, i) => /* @__PURE__ */ t(
18
+ o.span,
19
+ {
20
+ ...r,
21
+ ref: i,
22
+ style: { ...d, ...r.style }
23
+ }
24
+ )
25
+ );
26
+ e.displayName = l;
27
+ var p = e;
9
28
  export {
10
- s as default
29
+ p as Root,
30
+ d as VISUALLY_HIDDEN_STYLES,
31
+ e as VisuallyHidden
11
32
  };
package/dist/index107.js CHANGED
@@ -1,52 +1,6 @@
1
- var S = function(r) {
2
- if (typeof document > "u")
3
- return null;
4
- var u = Array.isArray(r) ? r[0] : r;
5
- return u.ownerDocument.body;
6
- }, f = /* @__PURE__ */ new WeakMap(), v = /* @__PURE__ */ new WeakMap(), p = {}, h = 0, W = function(r) {
7
- return r && (r.host || W(r.parentNode));
8
- }, D = function(r, u) {
9
- return u.map(function(e) {
10
- if (r.contains(e))
11
- return e;
12
- var n = W(e);
13
- return n && r.contains(n) ? n : (console.error("aria-hidden", e, "in not contained inside", r, ". Doing nothing"), null);
14
- }).filter(function(e) {
15
- return !!e;
16
- });
17
- }, E = function(r, u, e, n) {
18
- var i = D(u, Array.isArray(r) ? r : [r]);
19
- p[e] || (p[e] = /* @__PURE__ */ new WeakMap());
20
- var s = p[e], l = [], o = /* @__PURE__ */ new Set(), b = new Set(i), y = function(t) {
21
- !t || o.has(t) || (o.add(t), y(t.parentNode));
22
- };
23
- i.forEach(y);
24
- var A = function(t) {
25
- !t || b.has(t) || Array.prototype.forEach.call(t.children, function(a) {
26
- if (o.has(a))
27
- A(a);
28
- else
29
- try {
30
- var c = a.getAttribute(n), w = c !== null && c !== "false", d = (f.get(a) || 0) + 1, M = (s.get(a) || 0) + 1;
31
- f.set(a, d), s.set(a, M), l.push(a), d === 1 && w && v.set(a, !0), M === 1 && a.setAttribute(e, "true"), w || a.setAttribute(n, "true");
32
- } catch (k) {
33
- console.error("aria-hidden: cannot operate on ", a, k);
34
- }
35
- });
36
- };
37
- return A(u), o.clear(), h++, function() {
38
- l.forEach(function(t) {
39
- var a = f.get(t) - 1, c = s.get(t) - 1;
40
- f.set(t, a), s.set(t, c), a || (v.has(t) || t.removeAttribute(n), v.delete(t)), c || t.removeAttribute(e);
41
- }), h--, h || (f = /* @__PURE__ */ new WeakMap(), f = /* @__PURE__ */ new WeakMap(), v = /* @__PURE__ */ new WeakMap(), p = {});
42
- };
43
- }, C = function(r, u, e) {
44
- e === void 0 && (e = "data-aria-hidden");
45
- var n = Array.from(Array.isArray(r) ? r : [r]), i = S(r);
46
- return i ? (n.push.apply(n, Array.from(i.querySelectorAll("[aria-live], script"))), E(n, i, e, "aria-hidden")) : function() {
47
- return null;
48
- };
49
- };
1
+ function m(t, [a, n]) {
2
+ return Math.min(n, Math.max(a, t));
3
+ }
50
4
  export {
51
- C as hideOthers
5
+ m as clamp
52
6
  };
package/dist/index108.js CHANGED
@@ -1,13 +1,49 @@
1
- import * as r from "react";
2
- function o(t) {
3
- const e = r.useRef(t);
4
- return r.useEffect(() => {
5
- e.current = t;
6
- }), r.useMemo(() => (...n) => {
7
- var u;
8
- return (u = e.current) == null ? void 0 : u.call(e, ...n);
9
- }, []);
1
+ "use client";
2
+ import r from "react";
3
+ import { createContextScope as y } from "./index91.js";
4
+ import { useComposedRefs as M } from "./index89.js";
5
+ import { createSlot as x } from "./index40.js";
6
+ import { jsx as u } from "react/jsx-runtime";
7
+ function g(s) {
8
+ const m = s + "CollectionProvider", [A, N] = y(m), [_, f] = A(
9
+ m,
10
+ { collectionRef: { current: null }, itemMap: /* @__PURE__ */ new Map() }
11
+ ), p = (c) => {
12
+ const { scope: e, children: l } = c, o = r.useRef(null), t = r.useRef(/* @__PURE__ */ new Map()).current;
13
+ return /* @__PURE__ */ u(_, { scope: e, itemMap: t, collectionRef: o, children: l });
14
+ };
15
+ p.displayName = m;
16
+ const a = s + "CollectionSlot", E = x(a), C = r.forwardRef(
17
+ (c, e) => {
18
+ const { scope: l, children: o } = c, t = f(a, l), n = M(e, t.collectionRef);
19
+ return /* @__PURE__ */ u(E, { ref: n, children: o });
20
+ }
21
+ );
22
+ C.displayName = a;
23
+ const d = s + "CollectionItemSlot", R = "data-radix-collection-item", T = x(d), I = r.forwardRef(
24
+ (c, e) => {
25
+ const { scope: l, children: o, ...t } = c, n = r.useRef(null), S = M(e, n), i = f(d, l);
26
+ return r.useEffect(() => (i.itemMap.set(n, { ref: n, ...t }), () => void i.itemMap.delete(n))), /* @__PURE__ */ u(T, { [R]: "", ref: S, children: o });
27
+ }
28
+ );
29
+ I.displayName = d;
30
+ function O(c) {
31
+ const e = f(s + "CollectionConsumer", c);
32
+ return r.useCallback(() => {
33
+ const o = e.collectionRef.current;
34
+ if (!o) return [];
35
+ const t = Array.from(o.querySelectorAll(`[${R}]`));
36
+ return Array.from(e.itemMap.values()).sort(
37
+ (i, v) => t.indexOf(i.ref.current) - t.indexOf(v.ref.current)
38
+ );
39
+ }, [e.collectionRef, e.itemMap]);
40
+ }
41
+ return [
42
+ { Provider: p, Slot: C, ItemSlot: I },
43
+ O,
44
+ N
45
+ ];
10
46
  }
11
47
  export {
12
- o as useCallbackRef
48
+ g as createCollection
13
49
  };
package/dist/index109.js CHANGED
@@ -1,6 +1,18 @@
1
- import * as t from "react";
2
- var e = globalThis != null && globalThis.document ? t.useLayoutEffect : () => {
3
- };
1
+ "use client";
2
+ import * as r from "react";
3
+ var t = 0;
4
+ function a() {
5
+ r.useEffect(() => {
6
+ const e = document.querySelectorAll("[data-radix-focus-guard]");
7
+ return document.body.insertAdjacentElement("afterbegin", e[0] ?? n()), document.body.insertAdjacentElement("beforeend", e[1] ?? n()), t++, () => {
8
+ t === 1 && document.querySelectorAll("[data-radix-focus-guard]").forEach((o) => o.remove()), t--;
9
+ };
10
+ }, []);
11
+ }
12
+ function n() {
13
+ const e = document.createElement("span");
14
+ return e.setAttribute("data-radix-focus-guard", ""), e.tabIndex = 0, e.style.outline = "none", e.style.opacity = "0", e.style.position = "fixed", e.style.pointerEvents = "none", e;
15
+ }
4
16
  export {
5
- e as useLayoutEffect
17
+ a as useFocusGuards
6
18
  };