impact-nova 1.1.1 → 1.2.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/components/ui/accordion.js +37 -33
- package/dist/components/ui/alert.d.ts +2 -0
- package/dist/components/ui/alert.js +46 -31
- package/dist/components/ui/breadcrumb.d.ts +7 -2
- package/dist/components/ui/breadcrumb.js +98 -77
- package/dist/components/ui/calendar.js +198 -178
- package/dist/components/ui/date-picker/date-picker.js +94 -87
- package/dist/components/ui/date-picker/date-range-picker.js +124 -117
- package/dist/components/ui/date-picker/month-picker.js +98 -91
- package/dist/components/ui/date-picker/month-range-picker.js +118 -111
- package/dist/components/ui/date-picker/multi-date-picker.js +76 -69
- package/dist/components/ui/date-picker/multi-month-picker.js +72 -65
- package/dist/components/ui/date-picker/multi-week-picker.js +88 -81
- package/dist/components/ui/date-picker/week-picker.js +107 -100
- package/dist/components/ui/date-picker/week-range-picker.js +144 -137
- package/dist/components/ui/dialog.js +65 -61
- package/dist/components/ui/drawer.d.ts +3 -1
- package/dist/components/ui/drawer.js +44 -29
- package/dist/components/ui/file-upload.d.ts +2 -1
- package/dist/components/ui/file-upload.js +159 -135
- package/dist/components/ui/filter-panel/filter-panel.js +89 -70
- package/dist/components/ui/filter-strip/filter-summary.js +117 -104
- package/dist/components/ui/filter-strip/filter-tag-list.js +81 -65
- package/dist/components/ui/popover.js +52 -48
- package/dist/components/ui/prompt.d.ts +2 -1
- package/dist/components/ui/prompt.js +81 -64
- package/dist/components/ui/sheet.js +91 -84
- package/dist/components/ui/sidebar.js +9 -8
- package/dist/components/ui/tabs.d.ts +2 -0
- package/dist/components/ui/tabs.js +58 -55
- package/dist/components/ui/tag.js +21 -20
- package/dist/components/ui/toast.js +41 -37
- package/dist/components/ui/tooltip.js +1 -1
- package/dist/impact-nova.css +1 -1
- package/dist/index.js +250 -248
- package/package.json +1 -1
|
@@ -1,54 +1,58 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import { ChevronRight as
|
|
1
|
+
import { jsx as e, jsxs as i } from "react/jsx-runtime";
|
|
2
|
+
import * as d from "react";
|
|
3
|
+
import * as r from "@radix-ui/react-accordion";
|
|
4
|
+
import { ChevronRight as m } from "lucide-react";
|
|
5
5
|
import { cn as s } from "../../lib/utils.js";
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
import { Tooltip as f, TooltipTrigger as p, TooltipContent as g } from "./tooltip.js";
|
|
7
|
+
const w = r.Root, h = d.forwardRef(({ className: o, ...t }, a) => /* @__PURE__ */ e(
|
|
8
|
+
r.Item,
|
|
8
9
|
{
|
|
9
|
-
ref:
|
|
10
|
-
"data-item":
|
|
11
|
-
"data-disabled":
|
|
12
|
-
className: s("border-b rounded-lg bg-white overflow-hidden border-b-[#D9DDE7]",
|
|
13
|
-
...
|
|
10
|
+
ref: a,
|
|
11
|
+
"data-item": t.value,
|
|
12
|
+
"data-disabled": t.disabled ? "" : void 0,
|
|
13
|
+
className: s("border-b rounded-lg bg-white overflow-hidden border-b-[#D9DDE7]", o),
|
|
14
|
+
...t
|
|
14
15
|
}
|
|
15
16
|
));
|
|
16
|
-
|
|
17
|
-
const
|
|
18
|
-
|
|
17
|
+
h.displayName = "AccordionItem";
|
|
18
|
+
const x = d.forwardRef(({ className: o, children: t, badge: a, rightActions: n, ...c }, l) => /* @__PURE__ */ e(r.Header, { className: "flex", children: /* @__PURE__ */ i(
|
|
19
|
+
r.Trigger,
|
|
19
20
|
{
|
|
20
|
-
ref:
|
|
21
|
+
ref: l,
|
|
21
22
|
className: s(
|
|
22
23
|
"flex flex-1 items-center gap-3 px-4 py-2 text-sm font-semibold transition-all text-left [&[data-state=open]>div>svg]:-rotate-90",
|
|
23
|
-
|
|
24
|
+
o
|
|
24
25
|
),
|
|
25
26
|
...c,
|
|
26
27
|
children: [
|
|
27
|
-
/* @__PURE__ */
|
|
28
|
-
|
|
29
|
-
/* @__PURE__ */
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
/* @__PURE__ */ i(f, { children: [
|
|
29
|
+
/* @__PURE__ */ e(p, { asChild: !0, children: /* @__PURE__ */ e("div", { className: "flex items-center justify-center h-8 w-8 shrink-0 rounded-lg bg-secondary text-secondary-foreground transition-transform duration-200", children: /* @__PURE__ */ e(m, { className: "h-4 w-4 transition-transform duration-200" }) }) }),
|
|
30
|
+
/* @__PURE__ */ e(g, { side: "top", variant: "tertiary", children: "Toggle" })
|
|
31
|
+
] }),
|
|
32
|
+
/* @__PURE__ */ i("div", { className: "flex flex-1 items-center justify-between", children: [
|
|
33
|
+
/* @__PURE__ */ i("div", { className: "flex items-center gap-3", children: [
|
|
34
|
+
t,
|
|
35
|
+
a
|
|
32
36
|
] }),
|
|
33
|
-
|
|
37
|
+
n
|
|
34
38
|
] })
|
|
35
39
|
]
|
|
36
40
|
}
|
|
37
41
|
) }));
|
|
38
|
-
|
|
39
|
-
const
|
|
40
|
-
|
|
42
|
+
x.displayName = r.Trigger.displayName;
|
|
43
|
+
const N = d.forwardRef(({ className: o, children: t, ...a }, n) => /* @__PURE__ */ e(
|
|
44
|
+
r.Content,
|
|
41
45
|
{
|
|
42
|
-
ref:
|
|
46
|
+
ref: n,
|
|
43
47
|
className: "overflow-hidden text-sm data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",
|
|
44
|
-
...
|
|
45
|
-
children: /* @__PURE__ */
|
|
48
|
+
...a,
|
|
49
|
+
children: /* @__PURE__ */ e("div", { className: s("px-4 pb-4 pt-2", o), children: t })
|
|
46
50
|
}
|
|
47
51
|
));
|
|
48
|
-
|
|
52
|
+
N.displayName = r.Content.displayName;
|
|
49
53
|
export {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
+
w as Accordion,
|
|
55
|
+
N as AccordionContent,
|
|
56
|
+
h as AccordionItem,
|
|
57
|
+
x as AccordionTrigger
|
|
54
58
|
};
|
|
@@ -5,6 +5,8 @@ declare const alertVariants: (props?: {
|
|
|
5
5
|
} & import('class-variance-authority/types').ClassProp) => string;
|
|
6
6
|
export interface AlertProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof alertVariants> {
|
|
7
7
|
asChild?: boolean;
|
|
8
|
+
removable?: boolean;
|
|
9
|
+
onClose?: () => void;
|
|
8
10
|
}
|
|
9
11
|
declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
|
|
10
12
|
declare const AlertTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsxs as f, jsx as o } from "react/jsx-runtime";
|
|
2
2
|
import * as n from "react";
|
|
3
|
-
import { Slot as
|
|
4
|
-
import { cva as
|
|
3
|
+
import { Slot as m } from "@radix-ui/react-slot";
|
|
4
|
+
import { cva as p } from "class-variance-authority";
|
|
5
5
|
import { cn as s } from "../../lib/utils.js";
|
|
6
|
-
import {
|
|
7
|
-
|
|
6
|
+
import { Button as b } from "./button.js";
|
|
7
|
+
import { X as u, XCircle as x, AlertTriangle as v, CheckCircle as h, Info as a } from "lucide-react";
|
|
8
|
+
const w = p(
|
|
8
9
|
"relative w-full rounded-lg border px-4 py-3 text-sm flex gap-3 items-start",
|
|
9
10
|
{
|
|
10
11
|
variants: {
|
|
@@ -20,21 +21,35 @@ const p = d(
|
|
|
20
21
|
variant: "default"
|
|
21
22
|
}
|
|
22
23
|
}
|
|
23
|
-
),
|
|
24
|
-
({ className: e, variant: r, asChild: t = !1,
|
|
25
|
-
t ?
|
|
24
|
+
), A = n.forwardRef(
|
|
25
|
+
({ className: e, variant: r, asChild: t = !1, removable: l, onClose: i, children: c, ...d }, g) => /* @__PURE__ */ f(
|
|
26
|
+
t ? m : "div",
|
|
26
27
|
{
|
|
27
|
-
ref:
|
|
28
|
+
ref: g,
|
|
28
29
|
role: "alert",
|
|
29
30
|
"data-component": "alert",
|
|
30
31
|
"data-variant": r ?? "default",
|
|
31
|
-
className: s(
|
|
32
|
-
...
|
|
32
|
+
className: s(w({ variant: r }), e),
|
|
33
|
+
...d,
|
|
34
|
+
children: [
|
|
35
|
+
c,
|
|
36
|
+
l && /* @__PURE__ */ o(
|
|
37
|
+
b,
|
|
38
|
+
{
|
|
39
|
+
variant: "ghost",
|
|
40
|
+
size: "icon",
|
|
41
|
+
className: "absolute right-4 top-3 h-4 w-4 p-0 text-secondary-foreground hover:text-foreground hover:bg-transparent",
|
|
42
|
+
onClick: i,
|
|
43
|
+
"aria-label": "Close",
|
|
44
|
+
children: /* @__PURE__ */ o(u, { className: "h-4 w-4" })
|
|
45
|
+
}
|
|
46
|
+
)
|
|
47
|
+
]
|
|
33
48
|
}
|
|
34
49
|
)
|
|
35
50
|
);
|
|
36
|
-
|
|
37
|
-
const
|
|
51
|
+
A.displayName = "Alert";
|
|
52
|
+
const N = n.forwardRef(({ className: e, ...r }, t) => /* @__PURE__ */ o(
|
|
38
53
|
"h5",
|
|
39
54
|
{
|
|
40
55
|
ref: t,
|
|
@@ -43,8 +58,8 @@ const u = n.forwardRef(({ className: e, ...r }, t) => /* @__PURE__ */ a(
|
|
|
43
58
|
...r
|
|
44
59
|
}
|
|
45
60
|
));
|
|
46
|
-
|
|
47
|
-
const
|
|
61
|
+
N.displayName = "AlertTitle";
|
|
62
|
+
const y = n.forwardRef(({ className: e, ...r }, t) => /* @__PURE__ */ o(
|
|
48
63
|
"div",
|
|
49
64
|
{
|
|
50
65
|
ref: t,
|
|
@@ -53,22 +68,22 @@ const x = n.forwardRef(({ className: e, ...r }, t) => /* @__PURE__ */ a(
|
|
|
53
68
|
...r
|
|
54
69
|
}
|
|
55
70
|
));
|
|
56
|
-
|
|
57
|
-
const
|
|
58
|
-
default:
|
|
59
|
-
info:
|
|
60
|
-
success:
|
|
61
|
-
warning:
|
|
62
|
-
error:
|
|
63
|
-
},
|
|
64
|
-
const t =
|
|
65
|
-
return /* @__PURE__ */
|
|
71
|
+
y.displayName = "AlertDescription";
|
|
72
|
+
const C = {
|
|
73
|
+
default: a,
|
|
74
|
+
info: a,
|
|
75
|
+
success: h,
|
|
76
|
+
warning: v,
|
|
77
|
+
error: x
|
|
78
|
+
}, k = ({ variant: e = "info", className: r = "h-4 w-4 shrink-0 mt-1" }) => {
|
|
79
|
+
const t = C[e] || a;
|
|
80
|
+
return /* @__PURE__ */ o(t, { className: r });
|
|
66
81
|
};
|
|
67
|
-
|
|
82
|
+
k.displayName = "AlertIcon";
|
|
68
83
|
export {
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
84
|
+
A as Alert,
|
|
85
|
+
y as AlertDescription,
|
|
86
|
+
k as AlertIcon,
|
|
87
|
+
N as AlertTitle,
|
|
88
|
+
w as alertVariants
|
|
74
89
|
};
|
|
@@ -5,12 +5,17 @@ declare const HomeIcon: ({ className }: {
|
|
|
5
5
|
declare const Breadcrumb: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
6
6
|
separator?: React.ReactNode;
|
|
7
7
|
} & React.RefAttributes<HTMLElement>>;
|
|
8
|
-
declare const BreadcrumbList: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> &
|
|
8
|
+
declare const BreadcrumbList: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & {
|
|
9
|
+
maxWords?: number;
|
|
10
|
+
} & React.RefAttributes<HTMLOListElement>>;
|
|
9
11
|
declare const BreadcrumbItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
|
|
10
12
|
declare const BreadcrumbLink: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
|
|
11
13
|
asChild?: boolean;
|
|
14
|
+
maxWords?: number;
|
|
12
15
|
} & React.RefAttributes<HTMLAnchorElement>>;
|
|
13
|
-
declare const BreadcrumbPage: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> &
|
|
16
|
+
declare const BreadcrumbPage: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
17
|
+
maxWords?: number;
|
|
18
|
+
} & React.RefAttributes<HTMLSpanElement>>;
|
|
14
19
|
declare const BreadcrumbSeparator: {
|
|
15
20
|
({ children, className, ...props }: React.ComponentProps<"li">): import("react/jsx-runtime").JSX.Element;
|
|
16
21
|
displayName: string;
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import { jsx as a, jsxs as
|
|
2
|
-
import * as
|
|
3
|
-
import { Slot as
|
|
4
|
-
import { MoreHorizontal as
|
|
5
|
-
import { ClickMeArrow as
|
|
6
|
-
import {
|
|
7
|
-
|
|
1
|
+
import { jsx as a, jsxs as f } from "react/jsx-runtime";
|
|
2
|
+
import * as s from "react";
|
|
3
|
+
import { Slot as N } from "@radix-ui/react-slot";
|
|
4
|
+
import { MoreHorizontal as y } from "lucide-react";
|
|
5
|
+
import { ClickMeArrow as v } from "../../icons/index.js";
|
|
6
|
+
import { Tooltip as h, TooltipTrigger as w, TooltipContent as g } from "./tooltip.js";
|
|
7
|
+
import { cn as n } from "../../lib/utils.js";
|
|
8
|
+
const x = s.createContext({}), b = (r, e) => {
|
|
9
|
+
const t = r.split(/\s+/);
|
|
10
|
+
return t.length <= e ? r : t.slice(0, e).join(" ") + "...";
|
|
11
|
+
}, Z = ({ className: r }) => /* @__PURE__ */ a(
|
|
8
12
|
"svg",
|
|
9
13
|
{
|
|
10
14
|
width: "13",
|
|
@@ -12,7 +16,7 @@ const L = ({ className: e }) => /* @__PURE__ */ a(
|
|
|
12
16
|
viewBox: "0 0 12 13",
|
|
13
17
|
fill: "none",
|
|
14
18
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
-
className:
|
|
19
|
+
className: n("h-3.5 w-3.5", r),
|
|
16
20
|
children: /* @__PURE__ */ a(
|
|
17
21
|
"path",
|
|
18
22
|
{
|
|
@@ -21,63 +25,80 @@ const L = ({ className: e }) => /* @__PURE__ */ a(
|
|
|
21
25
|
}
|
|
22
26
|
)
|
|
23
27
|
}
|
|
24
|
-
),
|
|
25
|
-
|
|
26
|
-
const
|
|
28
|
+
), H = s.forwardRef(({ ...r }, e) => /* @__PURE__ */ a("nav", { ref: e, "aria-label": "breadcrumb", ...r }));
|
|
29
|
+
H.displayName = "Breadcrumb";
|
|
30
|
+
const W = s.forwardRef(({ className: r, maxWords: e, ...t }, o) => /* @__PURE__ */ a(x.Provider, { value: { maxWords: e }, children: /* @__PURE__ */ a(
|
|
27
31
|
"ol",
|
|
28
32
|
{
|
|
29
|
-
ref:
|
|
30
|
-
className:
|
|
33
|
+
ref: o,
|
|
34
|
+
className: n(
|
|
31
35
|
"flex flex-wrap items-center gap-2 text-[14px] font-medium text-secondary-foreground",
|
|
32
|
-
|
|
36
|
+
r
|
|
33
37
|
),
|
|
34
|
-
...r
|
|
35
|
-
}
|
|
36
|
-
));
|
|
37
|
-
p.displayName = "BreadcrumbList";
|
|
38
|
-
const f = o.forwardRef(({ className: e, ...r }, t) => /* @__PURE__ */ a(
|
|
39
|
-
"li",
|
|
40
|
-
{
|
|
41
|
-
ref: t,
|
|
42
|
-
className: s("inline-flex items-center gap-1.5", e),
|
|
43
|
-
...r
|
|
44
|
-
}
|
|
45
|
-
));
|
|
46
|
-
f.displayName = "BreadcrumbItem";
|
|
47
|
-
const u = o.forwardRef(({ asChild: e, className: r, ...t }, i) => /* @__PURE__ */ a(
|
|
48
|
-
e ? l : "a",
|
|
49
|
-
{
|
|
50
|
-
ref: i,
|
|
51
|
-
className: s("transition-colors text-primary hover:text-primary-700 font-medium", r),
|
|
52
38
|
...t
|
|
53
39
|
}
|
|
54
|
-
));
|
|
55
|
-
|
|
56
|
-
const
|
|
57
|
-
"
|
|
40
|
+
) }));
|
|
41
|
+
W.displayName = "BreadcrumbList";
|
|
42
|
+
const L = s.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
43
|
+
"li",
|
|
58
44
|
{
|
|
59
45
|
ref: t,
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"aria-current": "page",
|
|
63
|
-
"data-current": "page",
|
|
64
|
-
className: s("font-extrabold text-[#1f2b4d]", e),
|
|
65
|
-
...r
|
|
46
|
+
className: n("inline-flex items-center gap-1.5", r),
|
|
47
|
+
...e
|
|
66
48
|
}
|
|
67
49
|
));
|
|
68
|
-
|
|
69
|
-
const
|
|
70
|
-
|
|
71
|
-
|
|
50
|
+
L.displayName = "BreadcrumbItem";
|
|
51
|
+
const M = s.forwardRef(({ asChild: r, className: e, maxWords: t, children: o, ...p }, u) => {
|
|
52
|
+
const i = r ? N : "a", { maxWords: d } = s.useContext(x), c = t ?? d, l = typeof o == "string", m = l && c ? b(o, c) : o, B = l && c && o.split(/\s+/).length > c, C = /* @__PURE__ */ a(
|
|
53
|
+
i,
|
|
54
|
+
{
|
|
55
|
+
ref: u,
|
|
56
|
+
className: n(
|
|
57
|
+
"transition-colors text-primary hover:text-primary-700 font-medium",
|
|
58
|
+
e
|
|
59
|
+
),
|
|
60
|
+
...p,
|
|
61
|
+
children: m
|
|
62
|
+
}
|
|
63
|
+
);
|
|
64
|
+
return B ? /* @__PURE__ */ f(h, { children: [
|
|
65
|
+
/* @__PURE__ */ a(w, { asChild: !0, children: C }),
|
|
66
|
+
/* @__PURE__ */ a(g, { side: "top", variant: "tertiary", children: o })
|
|
67
|
+
] }) : C;
|
|
68
|
+
});
|
|
69
|
+
M.displayName = "BreadcrumbLink";
|
|
70
|
+
const R = s.forwardRef(({ className: r, maxWords: e, children: t, ...o }, p) => {
|
|
71
|
+
const { maxWords: u } = s.useContext(x), i = e ?? u, d = typeof t == "string", c = d && i ? b(t, i) : t, l = d && i && t.split(/\s+/).length > i, m = /* @__PURE__ */ a(
|
|
72
|
+
"span",
|
|
73
|
+
{
|
|
74
|
+
ref: p,
|
|
75
|
+
role: "link",
|
|
76
|
+
"aria-disabled": "true",
|
|
77
|
+
"aria-current": "page",
|
|
78
|
+
"data-current": "page",
|
|
79
|
+
className: n("font-extrabold text-[#1f2b4d]", r),
|
|
80
|
+
...o,
|
|
81
|
+
children: c
|
|
82
|
+
}
|
|
83
|
+
);
|
|
84
|
+
return l ? /* @__PURE__ */ f(h, { children: [
|
|
85
|
+
/* @__PURE__ */ a(w, { asChild: !0, children: m }),
|
|
86
|
+
/* @__PURE__ */ a(g, { side: "top", variant: "tertiary", children: t })
|
|
87
|
+
] }) : m;
|
|
88
|
+
});
|
|
89
|
+
R.displayName = "BreadcrumbPage";
|
|
90
|
+
const V = ({
|
|
91
|
+
children: r,
|
|
92
|
+
className: e,
|
|
72
93
|
...t
|
|
73
94
|
}) => /* @__PURE__ */ a(
|
|
74
95
|
"li",
|
|
75
96
|
{
|
|
76
97
|
role: "presentation",
|
|
77
98
|
"aria-hidden": "true",
|
|
78
|
-
className:
|
|
99
|
+
className: n("[&>svg]:w-3.5 [&>svg]:h-3.5 text-secondary-foreground", e),
|
|
79
100
|
...t,
|
|
80
|
-
children:
|
|
101
|
+
children: r ?? /* @__PURE__ */ a(
|
|
81
102
|
"svg",
|
|
82
103
|
{
|
|
83
104
|
width: "16",
|
|
@@ -97,55 +118,55 @@ const h = ({
|
|
|
97
118
|
)
|
|
98
119
|
}
|
|
99
120
|
);
|
|
100
|
-
|
|
101
|
-
const
|
|
102
|
-
className:
|
|
103
|
-
...
|
|
104
|
-
}) => /* @__PURE__ */
|
|
121
|
+
V.displayName = "BreadcrumbSeparator";
|
|
122
|
+
const S = ({
|
|
123
|
+
className: r,
|
|
124
|
+
...e
|
|
125
|
+
}) => /* @__PURE__ */ f(
|
|
105
126
|
"span",
|
|
106
127
|
{
|
|
107
128
|
role: "presentation",
|
|
108
129
|
"aria-hidden": "true",
|
|
109
|
-
className:
|
|
110
|
-
...
|
|
130
|
+
className: n("flex h-9 w-9 items-center justify-center", r),
|
|
131
|
+
...e,
|
|
111
132
|
children: [
|
|
112
|
-
/* @__PURE__ */ a(
|
|
133
|
+
/* @__PURE__ */ a(y, { className: "h-4 w-4" }),
|
|
113
134
|
/* @__PURE__ */ a("span", { className: "sr-only", children: "More" })
|
|
114
135
|
]
|
|
115
136
|
}
|
|
116
137
|
);
|
|
117
|
-
|
|
118
|
-
const
|
|
138
|
+
S.displayName = "BreadcrumbElipssis";
|
|
139
|
+
const T = s.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
119
140
|
"div",
|
|
120
141
|
{
|
|
121
142
|
ref: t,
|
|
122
|
-
className:
|
|
123
|
-
...
|
|
143
|
+
className: n("flex h-14 items-center justify-between px-6", r),
|
|
144
|
+
...e
|
|
124
145
|
}
|
|
125
146
|
));
|
|
126
|
-
|
|
127
|
-
const
|
|
147
|
+
T.displayName = "BreadcrumbHeader";
|
|
148
|
+
const j = s.forwardRef(({ className: r, style: e, ...t }, o) => /* @__PURE__ */ a(
|
|
128
149
|
"li",
|
|
129
150
|
{
|
|
130
|
-
ref:
|
|
151
|
+
ref: o,
|
|
131
152
|
role: "presentation",
|
|
132
153
|
"aria-hidden": "true",
|
|
133
|
-
className:
|
|
134
|
-
style:
|
|
154
|
+
className: n("inline-flex items-center", r),
|
|
155
|
+
style: e,
|
|
135
156
|
...t,
|
|
136
|
-
children: /* @__PURE__ */ a(
|
|
157
|
+
children: /* @__PURE__ */ a(v, { size: 12 })
|
|
137
158
|
}
|
|
138
159
|
));
|
|
139
|
-
|
|
160
|
+
j.displayName = "BreadcrumbArrowSeparator";
|
|
140
161
|
export {
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
162
|
+
H as Breadcrumb,
|
|
163
|
+
j as BreadcrumbArrowSeparator,
|
|
164
|
+
S as BreadcrumbEllipsis,
|
|
165
|
+
T as BreadcrumbHeader,
|
|
166
|
+
L as BreadcrumbItem,
|
|
167
|
+
M as BreadcrumbLink,
|
|
168
|
+
W as BreadcrumbList,
|
|
169
|
+
R as BreadcrumbPage,
|
|
170
|
+
V as BreadcrumbSeparator,
|
|
171
|
+
Z as HomeIcon
|
|
151
172
|
};
|