@konstructio/ui 0.1.2-alpha.3 → 0.1.2-alpha.31
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/DatePicker.css +1 -1
- package/dist/Modal-5xSxFoaD.js +99 -0
- package/dist/_commonjsHelpers-DaMA6jEr.js +8 -0
- package/dist/chevron-down-DgT-uSF9.js +5 -0
- package/dist/chevron-right-DYvXLeql.js +7 -0
- package/dist/chevron-up-DrQr2Fwd.js +5 -0
- package/dist/components/Alert/Alert.js +2 -2
- package/dist/components/AlertDialog/AlertDialog.js +1 -1
- package/dist/components/AlertDialog/components/AlertDialogTrigger.js +1 -1
- package/dist/components/AlertDialog/components/index.js +1 -1
- package/dist/components/Badge/Badge.js +30 -33
- package/dist/components/Badge/Badge.variants.js +8 -6
- package/dist/components/Breadcrumb/Breadcrumb.js +1 -1
- package/dist/components/Breadcrumb/components/Item/Item.js +24 -23
- package/dist/components/Breadcrumb/hooks/useBreadcrumb.js +1 -1
- package/dist/components/Button/Button.js +1 -1
- package/dist/components/Button/Button.variants.js +1 -1
- package/dist/components/Card/Card.variants.js +5 -9
- package/dist/components/Checkbox/Checkbox.js +6 -6
- package/dist/components/Command/Command.js +2 -2
- package/dist/components/Command/components/Command.js +1 -1
- package/dist/components/Command/components/CommandEmpty.js +1 -1
- package/dist/components/Command/components/CommandGroup.js +1 -1
- package/dist/components/Command/components/CommandInput.js +2 -2
- package/dist/components/Command/components/CommandItem.js +1 -1
- package/dist/components/Command/components/CommandList.js +1 -1
- package/dist/components/Command/components/CommandSeparator.js +1 -1
- package/dist/components/Command/components/DialogContent.js +2 -2
- package/dist/components/Command/components/DialogOverlay.js +1 -1
- package/dist/components/Datepicker/DatePicker.js +1209 -1147
- package/dist/components/Divider/Divider.variants.js +1 -1
- package/dist/components/Dropdown/Dropdown.js +46 -28
- package/dist/components/Dropdown/Dropdown.variants.js +32 -9
- package/dist/components/Dropdown/components/List/List.js +133 -54
- package/dist/components/Dropdown/components/List/List.variants.js +9 -7
- package/dist/components/Dropdown/components/ListItem/ListItem.js +74 -24
- package/dist/components/Dropdown/components/ListItem/ListItem.variants.js +9 -7
- package/dist/components/Dropdown/components/Wrapper.js +144 -109
- package/dist/components/Dropdown/constants/index.js +4 -0
- package/dist/components/Dropdown/constants/pagination.js +4 -0
- package/dist/components/Dropdown/contexts/dropdown.context.js +26 -8
- package/dist/components/Dropdown/contexts/dropdown.provider.js +48 -19
- package/dist/components/Dropdown/hooks/useDropdown.js +83 -39
- package/dist/components/Dropdown/hooks/useNavigationList.js +28 -36
- package/dist/components/DropdownButton/DropdownButton.js +1 -1
- package/dist/components/Filter/Filter.variants.js +2 -2
- package/dist/components/Filter/components/BadgeDropdown/BadgeMultiSelect.js +1 -1
- package/dist/components/Filter/components/DateFilterDropdown/DateFilterDropdown.js +1 -1
- package/dist/components/Input/Input.js +1 -1
- package/dist/components/Input/Input.variants.js +1 -1
- package/dist/components/Loading/Loading.js +1 -7
- package/dist/components/Modal/Modal.js +2 -2
- package/dist/components/Modal/components/Body/Body.js +1 -1
- package/dist/components/Modal/components/Footer/Footer.js +1 -1
- package/dist/components/Modal/components/Header/Header.js +1 -1
- package/dist/components/Modal/components/Wrapper/Wrapper.js +3 -3
- package/dist/components/Modal/components/index.js +1 -1
- package/dist/components/NumberInput/NumberInput.js +2 -2
- package/dist/components/PhoneNumberInput/PhoneNumberInput.js +8 -0
- package/dist/components/PhoneNumberInput/PhoneNumberInput.variants.js +45 -0
- package/dist/components/PhoneNumberInput/components/FlagContent/FlagContent.js +27 -0
- package/dist/components/PhoneNumberInput/components/FlagSelectorList/FlagSelectorList.js +629 -0
- package/dist/components/PhoneNumberInput/components/FlagSelectorWrapper/FlagSelectorWrapper.js +36 -0
- package/dist/components/PhoneNumberInput/components/TruncateText/TruncateText.js +45 -0
- package/dist/components/PhoneNumberInput/components/Wrapper.js +625 -0
- package/dist/components/PhoneNumberInput/components/index.js +6 -0
- package/dist/components/PhoneNumberInput/contexts/index.js +8 -0
- package/dist/components/PhoneNumberInput/contexts/phone-number.context.js +28 -0
- package/dist/components/PhoneNumberInput/contexts/phone-number.hook.js +13 -0
- package/dist/components/PhoneNumberInput/contexts/phone-number.provider.js +6139 -0
- package/dist/components/PhoneNumberInput/utils/index.js +11 -0
- package/dist/components/PieChart/PieChart.js +647 -664
- package/dist/components/RadioCard/RadioCard.variants.js +1 -6
- package/dist/components/RadioGroup/RadioGroup.js +1 -1
- package/dist/components/Range/Range.js +1 -1
- package/dist/components/Sidebar/Sidebar.variants.js +2 -2
- package/dist/components/Sidebar/components/Wrapper/Wrapper.js +29 -28
- package/dist/components/Slider/Slider.js +1 -1
- package/dist/components/Switch/Switch.js +8 -8
- package/dist/components/Switch/Switch.variants.js +4 -4
- package/dist/components/Tabs/Tabs.js +1 -1
- package/dist/components/Tabs/Tabs.variants.js +45 -24
- package/dist/components/Tabs/components/Content.js +1 -1
- package/dist/components/Tabs/components/List.js +1 -1
- package/dist/components/Tabs/components/Trigger.js +9 -8
- package/dist/components/Tag/Tag.js +1 -1
- package/dist/components/TagSelect/components/Wrapper/Wrapper.js +98 -49
- package/dist/components/TimePicker/TimePicker.variants.js +2 -2
- package/dist/components/TimePicker/components/Wrapper/Wrapper.js +2 -2
- package/dist/components/Toast/Toast.js +206 -181
- package/dist/components/Tooltip/Tooltip.js +1 -1
- package/dist/components/Typography/Typography.variants.js +18 -23
- package/dist/components/VirtualizedTable/VirtualizedTable.js +119 -0
- package/dist/components/VirtualizedTable/VirtualizedTable.variants.js +5 -0
- package/dist/components/VirtualizedTable/assets/chevron-down.js +25 -0
- package/dist/components/VirtualizedTable/assets/chevron-up.js +25 -0
- package/dist/components/VirtualizedTable/assets/index.js +6 -0
- package/dist/components/VirtualizedTable/components/Actions/Actions.js +72 -0
- package/dist/components/VirtualizedTable/components/Body/Body.js +51 -0
- package/dist/components/VirtualizedTable/components/DotPaginate/DotPaginate.js +165 -0
- package/dist/components/VirtualizedTable/components/DropdownPaginate/DropdownPaginate.js +34 -0
- package/dist/components/VirtualizedTable/components/Filter/Filter.js +88 -0
- package/dist/components/VirtualizedTable/components/FormPaginate/FormPaginate.js +48 -0
- package/dist/components/VirtualizedTable/components/Header/Header.js +84 -0
- package/dist/components/VirtualizedTable/components/Pagination/Pagination.js +53 -0
- package/dist/components/VirtualizedTable/components/Skeleton/Skeleton.js +67 -0
- package/dist/components/VirtualizedTable/components/TruncateText/TruncateText.js +34 -0
- package/dist/components/VirtualizedTable/components/WrapperBody/WrapperBody.js +27 -0
- package/dist/components/VirtualizedTable/components/index.js +16 -0
- package/dist/components/VirtualizedTable/constants/index.js +5 -0
- package/dist/components/VirtualizedTable/constants/pagination.js +5 -0
- package/dist/components/VirtualizedTable/contexts/index.js +8 -0
- package/dist/components/VirtualizedTable/contexts/table.context.js +32 -0
- package/dist/components/VirtualizedTable/contexts/table.hook.js +11 -0
- package/dist/components/VirtualizedTable/contexts/table.provider.js +85 -0
- package/dist/components/index.js +79 -73
- package/dist/contexts/theme.provider.js +0 -1
- package/dist/{createLucideIcon-DbC6TvM5.js → createLucideIcon-D4r5Phnh.js} +0 -24
- package/dist/debounce-BFejQm9P.js +200 -0
- package/dist/ellipsis-vertical-BVPtjl5f.js +9 -0
- package/dist/{index-h-Ul0anl.js → index--V_ZsiQe.js} +1 -22
- package/dist/index-2hB40Iuc.js +1873 -0
- package/dist/index-BZPx6jYI.js +8 -0
- package/dist/{index-bwWKd82e.js → index-BbQkJE5L.js} +1 -1
- package/dist/index-BtQfgaSF.js +60 -0
- package/dist/index-C3tHPg8y.js +662 -0
- package/dist/index-CIAmiWcw.js +200 -0
- package/dist/index-CSFe9uC5.js +14 -0
- package/dist/index-CSWGJT-v.js +1722 -0
- package/dist/index-CigKKiZS.js +91 -0
- package/dist/index-DDByhzds.js +137 -0
- package/dist/{index-BAraV3ai.js → index-DH2Fnov1.js} +11 -12
- package/dist/index-DLcqcWxM.js +29 -0
- package/dist/index-Dbt2vBmS.js +136 -0
- package/dist/{index-DB2XhXHn.js → index-DpW9ExsS.js} +7 -7
- package/dist/index-DrWQH0QF.js +55 -0
- package/dist/{index-D3xzCzcO.js → index-X4k_cU8k.js} +4 -4
- package/dist/index-kyuBfLcN.js +479 -0
- package/dist/{index-C1g_chDT.js → index-mPY_8Y5v.js} +2 -2
- package/dist/index-ohdbKsws.js +27 -0
- package/dist/index.d.ts +184 -18
- package/dist/index.js +106 -98
- package/dist/libphonenumber-_7ZyKWA7.js +11549 -0
- package/dist/package.json +46 -32
- package/dist/styles.css +1 -1
- package/dist/ui/civo-theme.css +191 -167
- package/dist/{useBreadcrumb-B8DnuqkR.js → useBreadcrumb-BAHbGQ_O.js} +0 -10
- package/dist/utils/index.js +534 -501
- package/dist/{x-BPcqkRZd.js → x-DPU9OdYH.js} +1 -1
- package/package.json +46 -32
- package/dist/Modal-V67Uz78z.js +0 -98
- package/dist/_commonjsHelpers-C6fGbg64.js +0 -6
- package/dist/chevron-down-BLZPftpV.js +0 -11
- package/dist/chevron-up-RLP4nX7V.js +0 -54
- package/dist/index-BXuxPoz7.js +0 -435
- package/dist/index-BfXxHr_2.js +0 -125
- package/dist/index-C9T9HQaa.js +0 -423
- package/dist/index-CZnD2QxM.js +0 -32
- package/dist/index-CrBonFvu.js +0 -144
- package/dist/index-Cvx4lqTq.js +0 -47
- package/dist/index-DQH6odE9.js +0 -82
- package/dist/index-Oq5GlCHP.js +0 -131
- package/dist/index-iXyXtdgP.js +0 -31
package/dist/index-DQH6odE9.js
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import * as i from "react";
|
|
2
|
-
import { jsx as f, Fragment as g } from "react/jsx-runtime";
|
|
3
|
-
function d(e, n) {
|
|
4
|
-
if (typeof e == "function")
|
|
5
|
-
return e(n);
|
|
6
|
-
e != null && (e.current = n);
|
|
7
|
-
}
|
|
8
|
-
function m(...e) {
|
|
9
|
-
return (n) => {
|
|
10
|
-
let r = !1;
|
|
11
|
-
const o = e.map((t) => {
|
|
12
|
-
const l = d(t, n);
|
|
13
|
-
return !r && typeof l == "function" && (r = !0), l;
|
|
14
|
-
});
|
|
15
|
-
if (r)
|
|
16
|
-
return () => {
|
|
17
|
-
for (let t = 0; t < o.length; t++) {
|
|
18
|
-
const l = o[t];
|
|
19
|
-
typeof l == "function" ? l() : d(e[t], null);
|
|
20
|
-
}
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
function x(...e) {
|
|
25
|
-
return i.useCallback(m(...e), e);
|
|
26
|
-
}
|
|
27
|
-
// @__NO_SIDE_EFFECTS__
|
|
28
|
-
function C(e) {
|
|
29
|
-
const n = /* @__PURE__ */ b(e), r = i.forwardRef((o, t) => {
|
|
30
|
-
const { children: l, ...a } = o, s = i.Children.toArray(l), c = s.find(E);
|
|
31
|
-
if (c) {
|
|
32
|
-
const u = c.props.children, S = s.map((p) => p === c ? i.Children.count(u) > 1 ? i.Children.only(null) : i.isValidElement(u) ? u.props.children : null : p);
|
|
33
|
-
return /* @__PURE__ */ f(n, { ...a, ref: t, children: i.isValidElement(u) ? i.cloneElement(u, void 0, S) : null });
|
|
34
|
-
}
|
|
35
|
-
return /* @__PURE__ */ f(n, { ...a, ref: t, children: l });
|
|
36
|
-
});
|
|
37
|
-
return r.displayName = `${e}.Slot`, r;
|
|
38
|
-
}
|
|
39
|
-
var I = /* @__PURE__ */ C("Slot");
|
|
40
|
-
// @__NO_SIDE_EFFECTS__
|
|
41
|
-
function b(e) {
|
|
42
|
-
const n = i.forwardRef((r, o) => {
|
|
43
|
-
const { children: t, ...l } = r;
|
|
44
|
-
if (i.isValidElement(t)) {
|
|
45
|
-
const a = h(t), s = R(l, t.props);
|
|
46
|
-
return t.type !== i.Fragment && (s.ref = o ? m(o, a) : a), i.cloneElement(t, s);
|
|
47
|
-
}
|
|
48
|
-
return i.Children.count(t) > 1 ? i.Children.only(null) : null;
|
|
49
|
-
});
|
|
50
|
-
return n.displayName = `${e}.SlotClone`, n;
|
|
51
|
-
}
|
|
52
|
-
var y = Symbol("radix.slottable");
|
|
53
|
-
// @__NO_SIDE_EFFECTS__
|
|
54
|
-
function V(e) {
|
|
55
|
-
const n = ({ children: r }) => /* @__PURE__ */ f(g, { children: r });
|
|
56
|
-
return n.displayName = `${e}.Slottable`, n.__radixId = y, n;
|
|
57
|
-
}
|
|
58
|
-
function E(e) {
|
|
59
|
-
return i.isValidElement(e) && typeof e.type == "function" && "__radixId" in e.type && e.type.__radixId === y;
|
|
60
|
-
}
|
|
61
|
-
function R(e, n) {
|
|
62
|
-
const r = { ...n };
|
|
63
|
-
for (const o in n) {
|
|
64
|
-
const t = e[o], l = n[o];
|
|
65
|
-
/^on[A-Z]/.test(o) ? t && l ? r[o] = (...s) => {
|
|
66
|
-
const c = l(...s);
|
|
67
|
-
return t(...s), c;
|
|
68
|
-
} : t && (r[o] = t) : o === "style" ? r[o] = { ...t, ...l } : o === "className" && (r[o] = [t, l].filter(Boolean).join(" "));
|
|
69
|
-
}
|
|
70
|
-
return { ...e, ...r };
|
|
71
|
-
}
|
|
72
|
-
function h(e) {
|
|
73
|
-
let n = Object.getOwnPropertyDescriptor(e.props, "ref")?.get, r = n && "isReactWarning" in n && n.isReactWarning;
|
|
74
|
-
return r ? e.ref : (n = Object.getOwnPropertyDescriptor(e, "ref")?.get, r = n && "isReactWarning" in n && n.isReactWarning, r ? e.props.ref : e.props.ref || e.ref);
|
|
75
|
-
}
|
|
76
|
-
export {
|
|
77
|
-
I as S,
|
|
78
|
-
m as a,
|
|
79
|
-
V as b,
|
|
80
|
-
C as c,
|
|
81
|
-
x as u
|
|
82
|
-
};
|
package/dist/index-Oq5GlCHP.js
DELETED
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
import { jsx as i, jsxs as O } from "react/jsx-runtime";
|
|
2
|
-
import * as l from "react";
|
|
3
|
-
import { c as w, b as M } from "./index-BfXxHr_2.js";
|
|
4
|
-
import { u, b as x } from "./index-DQH6odE9.js";
|
|
5
|
-
import { c as A, R as I, P as $, O as L, W as F, C as G, T as W, d as j, b as v, e as B } from "./index-BXuxPoz7.js";
|
|
6
|
-
import { Button as Y } from "./components/Button/Button.js";
|
|
7
|
-
import { cn as k } from "./utils/index.js";
|
|
8
|
-
var D = "AlertDialog", [q, le] = w(D, [
|
|
9
|
-
A
|
|
10
|
-
]), s = A(), f = (e) => {
|
|
11
|
-
const { __scopeAlertDialog: o, ...r } = e, a = s(o);
|
|
12
|
-
return /* @__PURE__ */ i(I, { ...a, ...r, modal: !0 });
|
|
13
|
-
};
|
|
14
|
-
f.displayName = D;
|
|
15
|
-
var H = "AlertDialogTrigger", m = l.forwardRef(
|
|
16
|
-
(e, o) => {
|
|
17
|
-
const { __scopeAlertDialog: r, ...a } = e, t = s(r);
|
|
18
|
-
return /* @__PURE__ */ i(B, { ...t, ...a, ref: o });
|
|
19
|
-
}
|
|
20
|
-
);
|
|
21
|
-
m.displayName = H;
|
|
22
|
-
var V = "AlertDialogPortal", y = (e) => {
|
|
23
|
-
const { __scopeAlertDialog: o, ...r } = e, a = s(o);
|
|
24
|
-
return /* @__PURE__ */ i($, { ...a, ...r });
|
|
25
|
-
};
|
|
26
|
-
y.displayName = V;
|
|
27
|
-
var z = "AlertDialogOverlay", _ = l.forwardRef(
|
|
28
|
-
(e, o) => {
|
|
29
|
-
const { __scopeAlertDialog: r, ...a } = e, t = s(r);
|
|
30
|
-
return /* @__PURE__ */ i(L, { ...t, ...a, ref: o });
|
|
31
|
-
}
|
|
32
|
-
);
|
|
33
|
-
_.displayName = z;
|
|
34
|
-
var n = "AlertDialogContent", [J, K] = q(n), Q = x("AlertDialogContent"), N = l.forwardRef(
|
|
35
|
-
(e, o) => {
|
|
36
|
-
const { __scopeAlertDialog: r, children: a, ...t } = e, d = s(r), p = l.useRef(null), b = u(o, p), g = l.useRef(null);
|
|
37
|
-
return /* @__PURE__ */ i(
|
|
38
|
-
F,
|
|
39
|
-
{
|
|
40
|
-
contentName: n,
|
|
41
|
-
titleName: h,
|
|
42
|
-
docsSlug: "alert-dialog",
|
|
43
|
-
children: /* @__PURE__ */ i(J, { scope: r, cancelRef: g, children: /* @__PURE__ */ O(
|
|
44
|
-
G,
|
|
45
|
-
{
|
|
46
|
-
role: "alertdialog",
|
|
47
|
-
...d,
|
|
48
|
-
...t,
|
|
49
|
-
ref: b,
|
|
50
|
-
onOpenAutoFocus: M(t.onOpenAutoFocus, (c) => {
|
|
51
|
-
c.preventDefault(), g.current?.focus({ preventScroll: !0 });
|
|
52
|
-
}),
|
|
53
|
-
onPointerDownOutside: (c) => c.preventDefault(),
|
|
54
|
-
onInteractOutside: (c) => c.preventDefault(),
|
|
55
|
-
children: [
|
|
56
|
-
/* @__PURE__ */ i(Q, { children: a }),
|
|
57
|
-
/* @__PURE__ */ i(X, { contentRef: p })
|
|
58
|
-
]
|
|
59
|
-
}
|
|
60
|
-
) })
|
|
61
|
-
}
|
|
62
|
-
);
|
|
63
|
-
}
|
|
64
|
-
);
|
|
65
|
-
N.displayName = n;
|
|
66
|
-
var h = "AlertDialogTitle", C = l.forwardRef(
|
|
67
|
-
(e, o) => {
|
|
68
|
-
const { __scopeAlertDialog: r, ...a } = e, t = s(r);
|
|
69
|
-
return /* @__PURE__ */ i(W, { ...t, ...a, ref: o });
|
|
70
|
-
}
|
|
71
|
-
);
|
|
72
|
-
C.displayName = h;
|
|
73
|
-
var R = "AlertDialogDescription", E = l.forwardRef((e, o) => {
|
|
74
|
-
const { __scopeAlertDialog: r, ...a } = e, t = s(r);
|
|
75
|
-
return /* @__PURE__ */ i(j, { ...t, ...a, ref: o });
|
|
76
|
-
});
|
|
77
|
-
E.displayName = R;
|
|
78
|
-
var U = "AlertDialogAction", P = l.forwardRef(
|
|
79
|
-
(e, o) => {
|
|
80
|
-
const { __scopeAlertDialog: r, ...a } = e, t = s(r);
|
|
81
|
-
return /* @__PURE__ */ i(v, { ...t, ...a, ref: o });
|
|
82
|
-
}
|
|
83
|
-
);
|
|
84
|
-
P.displayName = U;
|
|
85
|
-
var S = "AlertDialogCancel", T = l.forwardRef(
|
|
86
|
-
(e, o) => {
|
|
87
|
-
const { __scopeAlertDialog: r, ...a } = e, { cancelRef: t } = K(S, r), d = s(r), p = u(o, t);
|
|
88
|
-
return /* @__PURE__ */ i(v, { ...d, ...a, ref: p });
|
|
89
|
-
}
|
|
90
|
-
);
|
|
91
|
-
T.displayName = S;
|
|
92
|
-
var X = ({ contentRef: e }) => {
|
|
93
|
-
const o = `\`${n}\` requires a description for the component to be accessible for screen reader users.
|
|
94
|
-
|
|
95
|
-
You can add a description to the \`${n}\` by passing a \`${R}\` component as a child, which also benefits sighted users by adding visible context to the dialog.
|
|
96
|
-
|
|
97
|
-
Alternatively, you can use your own component as a description by assigning it an \`id\` and passing the same value to the \`aria-describedby\` prop in \`${n}\`. If the description is confusing or duplicative for sighted users, you can use the \`@radix-ui/react-visually-hidden\` primitive as a wrapper around your description component.
|
|
98
|
-
|
|
99
|
-
For more information, see https://radix-ui.com/primitives/docs/components/alert-dialog`;
|
|
100
|
-
return l.useEffect(() => {
|
|
101
|
-
document.getElementById(
|
|
102
|
-
e.current?.getAttribute("aria-describedby")
|
|
103
|
-
) || console.warn(o);
|
|
104
|
-
}, [o, e]), null;
|
|
105
|
-
}, se = f, Z = m, ne = y, ce = _, pe = N, de = P, ge = T, ue = C, Ae = E;
|
|
106
|
-
const ve = ({
|
|
107
|
-
"data-theme": e,
|
|
108
|
-
className: o,
|
|
109
|
-
text: r,
|
|
110
|
-
onOpen: a
|
|
111
|
-
}) => /* @__PURE__ */ i(Z, { asChild: !0, children: /* @__PURE__ */ i(
|
|
112
|
-
Y,
|
|
113
|
-
{
|
|
114
|
-
type: "button",
|
|
115
|
-
"data-theme": e,
|
|
116
|
-
className: k(o),
|
|
117
|
-
onClick: a,
|
|
118
|
-
children: r
|
|
119
|
-
}
|
|
120
|
-
) });
|
|
121
|
-
export {
|
|
122
|
-
ve as A,
|
|
123
|
-
pe as C,
|
|
124
|
-
Ae as D,
|
|
125
|
-
ce as O,
|
|
126
|
-
ne as P,
|
|
127
|
-
se as R,
|
|
128
|
-
ue as T,
|
|
129
|
-
ge as a,
|
|
130
|
-
de as b
|
|
131
|
-
};
|
package/dist/index-iXyXtdgP.js
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import * as i from "react";
|
|
2
|
-
import { P as o } from "./index-C9T9HQaa.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
|
-
}), s = "VisuallyHidden", e = i.forwardRef(
|
|
17
|
-
(r, a) => /* @__PURE__ */ t(
|
|
18
|
-
o.span,
|
|
19
|
-
{
|
|
20
|
-
...r,
|
|
21
|
-
ref: a,
|
|
22
|
-
style: { ...d, ...r.style }
|
|
23
|
-
}
|
|
24
|
-
)
|
|
25
|
-
);
|
|
26
|
-
e.displayName = s;
|
|
27
|
-
var n = e;
|
|
28
|
-
export {
|
|
29
|
-
n as R,
|
|
30
|
-
e as V
|
|
31
|
-
};
|