@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.
- package/dist/index100.js +5 -181
- package/dist/index101.js +69 -7
- package/dist/index102.js +124 -23
- package/dist/index103.js +10 -5
- package/dist/index104.js +212 -128
- package/dist/index105.js +13 -14
- package/dist/index106.js +30 -9
- package/dist/index107.js +4 -50
- package/dist/index108.js +46 -10
- package/dist/index109.js +16 -4
- package/dist/index110.js +132 -9
- package/dist/index111.js +50 -4
- package/dist/index112.js +9 -47
- package/dist/index113.js +12 -648
- package/dist/index116.js +648 -12
- package/dist/index121.js +6 -12
- package/dist/index122.js +10 -204
- package/dist/index123.js +204 -20
- package/dist/index124.js +21 -399
- package/dist/index125.js +400 -6
- package/dist/index126.js +2 -25
- package/dist/index127.js +53 -29
- package/dist/index128.js +65 -5
- package/dist/index129.js +25 -2
- package/dist/index130.js +29 -53
- package/dist/index131.js +5 -65
- package/dist/index200.js +2 -525
- package/dist/index201.js +2 -128
- package/dist/index202.js +516 -125
- package/dist/index203.js +128 -5
- package/dist/index204.js +134 -3
- package/dist/index205.js +5 -24
- package/dist/index206.js +3 -110
- package/dist/index207.js +23 -15
- package/dist/index208.js +110 -2
- package/dist/index209.js +16 -2
- package/dist/index268.js +1 -1
- package/dist/index269.js +1 -1
- package/dist/index40.js +1 -1
- package/dist/index42.js +6 -6
- package/dist/index44.js +9 -9
- package/dist/index46.js +7 -7
- package/dist/index49.js +12 -12
- package/dist/index52.js +10 -10
- package/dist/index59.js +4 -4
- package/dist/index63.js +1 -1
- package/dist/index75.js +7 -7
- package/dist/index82.js +19 -19
- package/dist/index85.js +13 -13
- package/dist/index86.js +4 -4
- package/dist/index87.js +6 -6
- package/dist/index89.js +25 -5
- package/dist/index90.js +32 -25
- package/dist/index92.js +10 -125
- package/dist/index93.js +4 -11
- package/dist/index94.js +10 -217
- package/dist/index95.js +7 -15
- package/dist/index96.js +177 -65
- package/dist/index97.js +51 -33
- package/dist/index98.js +7 -51
- package/dist/index99.js +25 -30
- package/dist/style.css +1 -1
- package/dist/theme.css +5 -5
- package/package.json +1 -1
package/dist/index110.js
CHANGED
|
@@ -1,15 +1,138 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
"use client";
|
|
2
|
+
import * as d from "react";
|
|
3
|
+
import { useComposedRefs as R } from "./index89.js";
|
|
4
|
+
import { Primitive as M } from "./index90.js";
|
|
5
|
+
import { useCallbackRef as y } from "./index92.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));
|
|
51
|
+
}
|
|
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();
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
[t, u, a.paused]
|
|
7
70
|
);
|
|
71
|
+
return /* @__PURE__ */ _(M.div, { tabIndex: -1, ...g, ref: A, onKeyDown: P });
|
|
72
|
+
});
|
|
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;
|
|
8
78
|
}
|
|
9
|
-
function e
|
|
10
|
-
|
|
79
|
+
function x(e) {
|
|
80
|
+
const n = I(e), t = O(n, e), u = O(n.reverse(), e);
|
|
81
|
+
return [t, u];
|
|
82
|
+
}
|
|
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;
|
|
103
|
+
}
|
|
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
|
+
}
|
|
11
127
|
};
|
|
12
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");
|
|
135
|
+
}
|
|
13
136
|
export {
|
|
14
|
-
|
|
137
|
+
k as FocusScope
|
|
15
138
|
};
|
package/dist/index111.js
CHANGED
|
@@ -1,6 +1,52 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
};
|
|
4
50
|
export {
|
|
5
|
-
|
|
51
|
+
C as hideOthers
|
|
6
52
|
};
|
package/dist/index112.js
CHANGED
|
@@ -1,49 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
import r from "react";
|
|
3
|
-
import {
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
];
|
|
46
|
-
}
|
|
1
|
+
import { __assign as m } from "./index129.js";
|
|
2
|
+
import * as r from "react";
|
|
3
|
+
import { RemoveScroll as e } from "./index130.js";
|
|
4
|
+
import t from "./index131.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;
|
|
47
9
|
export {
|
|
48
|
-
|
|
10
|
+
s as default
|
|
49
11
|
};
|