@datawire-ai/busyfile-design-library 1.30.7 → 1.30.9
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/index10.js +57 -48
- package/dist/index100.js +170 -114
- package/dist/index101.js +7 -135
- package/dist/index102.js +25 -15
- package/dist/index103.js +5 -15
- package/dist/index104.js +135 -8
- package/dist/index105.js +16 -50
- package/dist/index106.js +8 -219
- package/dist/index107.js +50 -30
- package/dist/index111.js +3 -13
- package/dist/index112.js +44 -224
- package/dist/index113.js +650 -3
- package/dist/index114.js +13 -46
- package/dist/index115.js +221 -645
- package/dist/index123.js +1 -1
- package/dist/index124.js +3 -3
- package/dist/index127.js +3 -3
- package/dist/index128.js +3 -3
- package/dist/index200.js +525 -5
- package/dist/index201.js +128 -3
- package/dist/index202.js +132 -22
- package/dist/index203.js +5 -110
- package/dist/index204.js +3 -16
- package/dist/index205.js +21 -522
- package/dist/index206.js +109 -127
- package/dist/index207.js +15 -133
- package/dist/index269.js +1 -1
- package/dist/index41.js +1 -1
- package/dist/index42.js +4 -4
- package/dist/index44.js +6 -6
- package/dist/index46.js +4 -4
- package/dist/index49.js +9 -9
- package/dist/index52.js +7 -7
- package/dist/index59.js +1 -1
- package/dist/index63.js +1 -1
- package/dist/index75.js +5 -5
- package/dist/index80.js +2 -2
- package/dist/index82.js +15 -15
- package/dist/index85.js +10 -10
- package/dist/index86.js +2 -2
- package/dist/index87.js +4 -4
- package/dist/index92.js +120 -46
- package/dist/index93.js +10 -5
- package/dist/index94.js +219 -24
- package/dist/index95.js +14 -33
- package/dist/index97.js +33 -181
- package/dist/index98.js +51 -7
- package/dist/index99.js +30 -11
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index114.js
CHANGED
|
@@ -1,49 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
|
-
];
|
|
1
|
+
import { UI as t, DayFlag as e, SelectionState as r, Animation as s } from "./index172.js";
|
|
2
|
+
function i() {
|
|
3
|
+
const o = {};
|
|
4
|
+
for (const n in t)
|
|
5
|
+
o[t[n]] = `rdp-${t[n]}`;
|
|
6
|
+
for (const n in e)
|
|
7
|
+
o[e[n]] = `rdp-${e[n]}`;
|
|
8
|
+
for (const n in r)
|
|
9
|
+
o[r[n]] = `rdp-${r[n]}`;
|
|
10
|
+
for (const n in s)
|
|
11
|
+
o[s[n]] = `rdp-${s[n]}`;
|
|
12
|
+
return o;
|
|
46
13
|
}
|
|
47
14
|
export {
|
|
48
|
-
|
|
15
|
+
i as getDefaultClassNames
|
|
49
16
|
};
|