@revealui/presentation 0.3.0 → 0.3.2

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.
@@ -0,0 +1,196 @@
1
+ import { v as cn } from "./skeleton-Bb51IWbG.js";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ //#region src/components/auth-layout.tsx
4
+ function AuthLayout({ children, header, footer }) {
5
+ return /* @__PURE__ */ jsx("main", {
6
+ className: "flex min-h-dvh flex-col p-2",
7
+ children: /* @__PURE__ */ jsxs("div", {
8
+ className: "flex grow flex-col items-center justify-center gap-6 p-6 lg:rounded-lg lg:bg-white lg:p-10 lg:shadow-xs lg:ring-1 lg:ring-zinc-950/5 dark:lg:bg-zinc-900 dark:lg:ring-white/10",
9
+ children: [
10
+ header,
11
+ children,
12
+ footer
13
+ ]
14
+ })
15
+ });
16
+ }
17
+ //#endregion
18
+ //#region src/components/Card.tsx
19
+ function Card({ className, ref, ...props }) {
20
+ return /* @__PURE__ */ jsx("div", {
21
+ className: cn("rounded-lg border bg-card text-card-foreground shadow-sm", className),
22
+ ref,
23
+ ...props
24
+ });
25
+ }
26
+ function CardHeader({ className, ref, ...props }) {
27
+ return /* @__PURE__ */ jsx("div", {
28
+ className: cn("flex flex-col space-y-1.5 p-6", className),
29
+ ref,
30
+ ...props
31
+ });
32
+ }
33
+ function CardTitle({ className, ref, ...props }) {
34
+ return /* @__PURE__ */ jsx("h3", {
35
+ className: cn("text-2xl font-semibold leading-none tracking-tight", className),
36
+ ref,
37
+ ...props
38
+ });
39
+ }
40
+ function CardDescription({ className, ref, ...props }) {
41
+ return /* @__PURE__ */ jsx("p", {
42
+ className: cn("text-sm text-muted-foreground", className),
43
+ ref,
44
+ ...props
45
+ });
46
+ }
47
+ function CardContent({ className, ref, ...props }) {
48
+ return /* @__PURE__ */ jsx("div", {
49
+ className: cn("p-6 pt-0", className),
50
+ ref,
51
+ ...props
52
+ });
53
+ }
54
+ function CardFooter({ className, ref, ...props }) {
55
+ return /* @__PURE__ */ jsx("div", {
56
+ className: cn("flex items-center p-6 pt-0", className),
57
+ ref,
58
+ ...props
59
+ });
60
+ }
61
+ //#endregion
62
+ //#region src/components/Label.tsx
63
+ function Label({ className, ref, ...props }) {
64
+ return /* @__PURE__ */ jsx("label", {
65
+ ref,
66
+ className: cn("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70", className),
67
+ ...props
68
+ });
69
+ }
70
+ Label.displayName = "Label";
71
+ //#endregion
72
+ //#region src/components/FormLabel.tsx
73
+ function FormLabel({ required, className, children, ref, ...props }) {
74
+ return /* @__PURE__ */ jsxs(Label, {
75
+ ref,
76
+ className: cn(className),
77
+ ...props,
78
+ children: [children, required && /* @__PURE__ */ jsx("span", {
79
+ className: "text-destructive ml-1",
80
+ children: "*"
81
+ })]
82
+ });
83
+ }
84
+ FormLabel.displayName = "FormLabel";
85
+ //#endregion
86
+ //#region src/components/form-field.tsx
87
+ function FormField({ id, label, error, description, required, className, children }) {
88
+ const descriptionId = description ? `${id}-description` : void 0;
89
+ const errorId = error ? `${id}-error` : void 0;
90
+ return /* @__PURE__ */ jsxs("div", {
91
+ className: cn("space-y-1.5", className),
92
+ children: [
93
+ /* @__PURE__ */ jsx(FormLabel, {
94
+ htmlFor: id,
95
+ required,
96
+ children: label
97
+ }),
98
+ children,
99
+ description && !error && /* @__PURE__ */ jsx("p", {
100
+ id: descriptionId,
101
+ className: "text-xs text-zinc-500 dark:text-zinc-400",
102
+ children: description
103
+ }),
104
+ error && /* @__PURE__ */ jsx("p", {
105
+ id: errorId,
106
+ role: "alert",
107
+ className: "text-xs text-red-600 dark:text-red-400",
108
+ children: error
109
+ })
110
+ ]
111
+ });
112
+ }
113
+ FormField.displayName = "FormField";
114
+ //#endregion
115
+ //#region src/components/Input.tsx
116
+ function Input({ type, className, ref, ...props }) {
117
+ return /* @__PURE__ */ jsx("input", {
118
+ className: cn("flex h-10 w-full rounded border border-border bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50", className),
119
+ ref,
120
+ type,
121
+ ...props
122
+ });
123
+ }
124
+ //#endregion
125
+ //#region src/components/Textarea.tsx
126
+ function Textarea({ className, ref, ...props }) {
127
+ return /* @__PURE__ */ jsx("textarea", {
128
+ className: cn("flex min-h-[80px] w-full rounded border border-border bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50", className),
129
+ ref,
130
+ ...props
131
+ });
132
+ }
133
+ //#endregion
134
+ //#region src/primitives/Flex.tsx
135
+ /**
136
+ * Flex primitive - Flexbox container component
137
+ */
138
+ function Flex({ direction = "row", align, justify, wrap, gap, className, style, ref, ...props }) {
139
+ return /* @__PURE__ */ jsx("div", {
140
+ ref,
141
+ className: cn("flex", direction && `flex-${direction}`, align && `items-${align === "start" ? "start" : align === "end" ? "end" : align}`, justify && `justify-${justify === "start" ? "start" : justify === "end" ? "end" : justify === "between" ? "between" : justify === "around" ? "around" : justify === "evenly" ? "evenly" : "center"}`, wrap === true && "flex-wrap", wrap === "wrap" && "flex-wrap", wrap === "nowrap" && "flex-nowrap", wrap === "wrap-reverse" && "flex-wrap-reverse", className),
142
+ style: {
143
+ ...style,
144
+ ...gap && { gap: typeof gap === "number" ? `${gap}px` : gap }
145
+ },
146
+ ...props
147
+ });
148
+ }
149
+ //#endregion
150
+ //#region src/primitives/Grid.tsx
151
+ /**
152
+ * Grid primitive - CSS Grid container component
153
+ */
154
+ function Grid({ cols, rows, gap, className, style, ref, ...props }) {
155
+ const gridStyle = {
156
+ ...style,
157
+ ...cols && { gridTemplateColumns: typeof cols === "number" ? `repeat(${cols}, 1fr)` : cols },
158
+ ...rows && { gridTemplateRows: typeof rows === "number" ? `repeat(${rows}, 1fr)` : rows },
159
+ ...gap && { gap: typeof gap === "number" ? `${gap}px` : gap }
160
+ };
161
+ return /* @__PURE__ */ jsx("div", {
162
+ ref,
163
+ className: cn("grid", className),
164
+ style: gridStyle,
165
+ ...props
166
+ });
167
+ }
168
+ //#endregion
169
+ //#region src/primitives/Heading.tsx
170
+ /**
171
+ * Heading primitive - Heading component
172
+ */
173
+ function Heading({ as, size = "base", className, children, ref, ...props }) {
174
+ return /* @__PURE__ */ jsx(as || "h2", {
175
+ ref,
176
+ className: cn(size === "sm" && "text-sm", size === "base" && "text-base", size === "lg" && "text-lg", size === "xl" && "text-xl", size === "2xl" && "text-2xl", size === "3xl" && "text-3xl", size === "4xl" && "text-4xl", "font-semibold", className),
177
+ ...props,
178
+ children
179
+ });
180
+ }
181
+ //#endregion
182
+ //#region src/primitives/Text.tsx
183
+ /**
184
+ * Text primitive - Typography component
185
+ */
186
+ function Text({ as: Component = "p", size = "base", weight = "normal", color = "default", className, ref, ...props }) {
187
+ return /* @__PURE__ */ jsx(Component, {
188
+ ref,
189
+ className: cn(size === "xs" && "text-xs", size === "sm" && "text-sm", size === "base" && "text-base", size === "lg" && "text-lg", size === "xl" && "text-xl", size === "2xl" && "text-2xl", weight === "normal" && "font-normal", weight === "medium" && "font-medium", weight === "semibold" && "font-semibold", weight === "bold" && "font-bold", color === "muted" && "text-muted-foreground", color === "primary" && "text-primary", color === "secondary" && "text-secondary-foreground", color === "destructive" && "text-destructive", className),
190
+ ...props
191
+ });
192
+ }
193
+ //#endregion
194
+ export { Textarea as a, FormLabel as c, CardContent as d, CardDescription as f, AuthLayout as g, CardTitle as h, Flex as i, Label as l, CardHeader as m, Heading as n, Input as o, CardFooter as p, Grid as r, FormField as s, Text as t, Card as u };
195
+
196
+ //# sourceMappingURL=Text-BWMs9_wn.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Text-BWMs9_wn.js","names":[],"sources":["../src/components/auth-layout.tsx","../src/components/Card.tsx","../src/components/Label.tsx","../src/components/FormLabel.tsx","../src/components/form-field.tsx","../src/components/Input.tsx","../src/components/Textarea.tsx","../src/primitives/Flex.tsx","../src/primitives/Grid.tsx","../src/primitives/Heading.tsx","../src/primitives/Text.tsx"],"sourcesContent":["import type React from 'react';\n\nexport interface AuthLayoutProps {\n children: React.ReactNode;\n /** Optional branding slot rendered above the auth form */\n header?: React.ReactNode;\n /** Optional branding slot rendered below the auth form */\n footer?: React.ReactNode;\n}\n\nexport function AuthLayout({ children, header, footer }: AuthLayoutProps) {\n return (\n <main className=\"flex min-h-dvh flex-col p-2\">\n <div className=\"flex grow flex-col items-center justify-center gap-6 p-6 lg:rounded-lg lg:bg-white lg:p-10 lg:shadow-xs lg:ring-1 lg:ring-zinc-950/5 dark:lg:bg-zinc-900 dark:lg:ring-white/10\">\n {header}\n {children}\n {footer}\n </div>\n </main>\n );\n}\n","import type React from 'react';\nimport { cn } from '../utils/cn.js';\n\nfunction Card({\n className,\n ref,\n ...props\n}: React.HTMLAttributes<HTMLDivElement> & { ref?: React.Ref<HTMLDivElement> }) {\n return (\n <div\n className={cn('rounded-lg border bg-card text-card-foreground shadow-sm', className)}\n ref={ref}\n {...props}\n />\n );\n}\n\nfunction CardHeader({\n className,\n ref,\n ...props\n}: React.HTMLAttributes<HTMLDivElement> & { ref?: React.Ref<HTMLDivElement> }) {\n return <div className={cn('flex flex-col space-y-1.5 p-6', className)} ref={ref} {...props} />;\n}\n\nfunction CardTitle({\n className,\n ref,\n ...props\n}: React.HTMLAttributes<HTMLHeadingElement> & { ref?: React.Ref<HTMLParagraphElement> }) {\n return (\n <h3\n className={cn('text-2xl font-semibold leading-none tracking-tight', className)}\n ref={ref}\n {...props}\n />\n );\n}\n\nfunction CardDescription({\n className,\n ref,\n ...props\n}: React.HTMLAttributes<HTMLParagraphElement> & { ref?: React.Ref<HTMLParagraphElement> }) {\n return <p className={cn('text-sm text-muted-foreground', className)} ref={ref} {...props} />;\n}\n\nfunction CardContent({\n className,\n ref,\n ...props\n}: React.HTMLAttributes<HTMLDivElement> & { ref?: React.Ref<HTMLDivElement> }) {\n return <div className={cn('p-6 pt-0', className)} ref={ref} {...props} />;\n}\n\nfunction CardFooter({\n className,\n ref,\n ...props\n}: React.HTMLAttributes<HTMLDivElement> & { ref?: React.Ref<HTMLDivElement> }) {\n return <div className={cn('flex items-center p-6 pt-0', className)} ref={ref} {...props} />;\n}\n\nexport { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle };\n","import type React from 'react';\nimport { cn } from '../utils/cn.js';\n\nexport type LabelProps = React.LabelHTMLAttributes<HTMLLabelElement> & {\n ref?: React.Ref<HTMLLabelElement>;\n};\n\nfunction Label({ className, ref, ...props }: LabelProps) {\n return (\n // biome-ignore lint/a11y/noLabelWithoutControl: label associations are provided by consumers.\n <label\n ref={ref}\n className={cn(\n 'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70',\n className,\n )}\n {...props}\n />\n );\n}\n\nLabel.displayName = 'Label';\n\nexport { Label };\n","import type React from 'react';\nimport { cn } from '../utils/cn.js';\nimport { Label, type LabelProps } from './Label.js';\n\nexport interface FormLabelProps extends LabelProps {\n required?: boolean;\n ref?: React.Ref<HTMLLabelElement>;\n}\n\nfunction FormLabel({ required, className, children, ref, ...props }: FormLabelProps) {\n return (\n <Label ref={ref} className={cn(className)} {...props}>\n {children}\n {required && <span className=\"text-destructive ml-1\">*</span>}\n </Label>\n );\n}\n\nFormLabel.displayName = 'FormLabel';\n\nexport { FormLabel };\n","import type React from 'react';\nimport { cn } from '../utils/cn.js';\nimport { FormLabel } from './FormLabel.js';\n\nexport interface FormFieldProps {\n /** Unique ID linking label to input — must match the input's `id` prop */\n id: string;\n /** Label text */\n label: string;\n /** Error message — when set, field shows error styling */\n error?: string;\n /** Helper text shown below the input */\n description?: string;\n /** Show required asterisk on label */\n required?: boolean;\n /** Additional class on wrapper */\n className?: string;\n /** The input/select/textarea element */\n children: React.ReactNode;\n}\n\nfunction FormField({\n id,\n label,\n error,\n description,\n required,\n className,\n children,\n}: FormFieldProps) {\n const descriptionId = description ? `${id}-description` : undefined;\n const errorId = error ? `${id}-error` : undefined;\n\n return (\n <div className={cn('space-y-1.5', className)}>\n <FormLabel htmlFor={id} required={required}>\n {label}\n </FormLabel>\n {children}\n {description && !error && (\n <p id={descriptionId} className=\"text-xs text-zinc-500 dark:text-zinc-400\">\n {description}\n </p>\n )}\n {error && (\n <p id={errorId} role=\"alert\" className=\"text-xs text-red-600 dark:text-red-400\">\n {error}\n </p>\n )}\n </div>\n );\n}\n\nFormField.displayName = 'FormField';\n\nexport { FormField };\n","import type React from 'react';\nimport { cn } from '../utils/cn.js';\n\nexport type InputProps = React.InputHTMLAttributes<HTMLInputElement> & {\n ref?: React.Ref<HTMLInputElement>;\n};\n\nfunction Input({ type, className, ref, ...props }: InputProps) {\n return (\n <input\n className={cn(\n 'flex h-10 w-full rounded border border-border bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',\n className,\n )}\n ref={ref}\n type={type}\n {...props}\n />\n );\n}\n\nexport { Input };\n","import type React from 'react';\nimport { cn } from '../utils/cn.js';\n\nexport type TextareaProps = React.TextareaHTMLAttributes<HTMLTextAreaElement> & {\n ref?: React.Ref<HTMLTextAreaElement>;\n};\n\nfunction Textarea({ className, ref, ...props }: TextareaProps) {\n return (\n <textarea\n className={cn(\n 'flex min-h-[80px] w-full rounded border border-border bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',\n className,\n )}\n ref={ref}\n {...props}\n />\n );\n}\n\nexport { Textarea };\n","import type React from 'react';\nimport { cn } from '../utils/cn.js';\n\nexport interface FlexProps extends React.HTMLAttributes<HTMLDivElement> {\n direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';\n align?: 'start' | 'center' | 'end' | 'stretch' | 'baseline';\n justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';\n wrap?: boolean | 'wrap' | 'nowrap' | 'wrap-reverse';\n gap?: number | string;\n ref?: React.Ref<HTMLDivElement>;\n}\n\n/**\n * Flex primitive - Flexbox container component\n */\nfunction Flex({\n direction = 'row',\n align,\n justify,\n wrap,\n gap,\n className,\n style,\n ref,\n ...props\n}: FlexProps) {\n const flexClasses = cn(\n 'flex',\n direction && `flex-${direction}`,\n align && `items-${align === 'start' ? 'start' : align === 'end' ? 'end' : align}`,\n justify &&\n `justify-${justify === 'start' ? 'start' : justify === 'end' ? 'end' : justify === 'between' ? 'between' : justify === 'around' ? 'around' : justify === 'evenly' ? 'evenly' : 'center'}`,\n wrap === true && 'flex-wrap',\n wrap === 'wrap' && 'flex-wrap',\n wrap === 'nowrap' && 'flex-nowrap',\n wrap === 'wrap-reverse' && 'flex-wrap-reverse',\n className,\n );\n\n const flexStyle = {\n ...style,\n ...(gap && { gap: typeof gap === 'number' ? `${gap}px` : gap }),\n };\n\n return <div ref={ref} className={flexClasses} style={flexStyle} {...props} />;\n}\n\nexport { Flex };\n","import type React from 'react';\nimport { cn } from '../utils/cn.js';\n\nexport interface GridProps extends React.HTMLAttributes<HTMLDivElement> {\n cols?: number | string;\n rows?: number | string;\n gap?: number | string;\n ref?: React.Ref<HTMLDivElement>;\n}\n\n/**\n * Grid primitive - CSS Grid container component\n */\nfunction Grid({ cols, rows, gap, className, style, ref, ...props }: GridProps) {\n const gridStyle: React.CSSProperties = {\n ...style,\n ...(cols && {\n gridTemplateColumns: typeof cols === 'number' ? `repeat(${cols}, 1fr)` : cols,\n }),\n ...(rows && {\n gridTemplateRows: typeof rows === 'number' ? `repeat(${rows}, 1fr)` : rows,\n }),\n ...(gap && { gap: typeof gap === 'number' ? `${gap}px` : gap }),\n };\n\n return <div ref={ref} className={cn('grid', className)} style={gridStyle} {...props} />;\n}\n\nexport { Grid };\n","import type React from 'react';\nimport { cn } from '../utils/cn.js';\n\nexport interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement> {\n as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';\n size?: 'sm' | 'base' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl';\n ref?: React.Ref<HTMLHeadingElement>;\n}\n\n/**\n * Heading primitive - Heading component\n */\nfunction Heading({ as, size = 'base', className, children, ref, ...props }: HeadingProps) {\n const Component = as || 'h2';\n\n const headingClasses = cn(\n size === 'sm' && 'text-sm',\n size === 'base' && 'text-base',\n size === 'lg' && 'text-lg',\n size === 'xl' && 'text-xl',\n size === '2xl' && 'text-2xl',\n size === '3xl' && 'text-3xl',\n size === '4xl' && 'text-4xl',\n 'font-semibold',\n className,\n );\n\n return (\n <Component ref={ref} className={headingClasses} {...props}>\n {children}\n </Component>\n );\n}\n\nexport { Heading };\n","import type React from 'react';\nimport { cn } from '../utils/cn.js';\n\nexport interface TextProps extends React.HTMLAttributes<HTMLParagraphElement> {\n as?: 'p' | 'span' | 'div';\n size?: 'xs' | 'sm' | 'base' | 'lg' | 'xl' | '2xl';\n weight?: 'normal' | 'medium' | 'semibold' | 'bold';\n color?: 'default' | 'muted' | 'primary' | 'secondary' | 'destructive';\n ref?: React.Ref<HTMLParagraphElement>;\n}\n\n/**\n * Text primitive - Typography component\n */\nfunction Text({\n as: Component = 'p',\n size = 'base',\n weight = 'normal',\n color = 'default',\n className,\n ref,\n ...props\n}: TextProps) {\n const textClasses = cn(\n size === 'xs' && 'text-xs',\n size === 'sm' && 'text-sm',\n size === 'base' && 'text-base',\n size === 'lg' && 'text-lg',\n size === 'xl' && 'text-xl',\n size === '2xl' && 'text-2xl',\n weight === 'normal' && 'font-normal',\n weight === 'medium' && 'font-medium',\n weight === 'semibold' && 'font-semibold',\n weight === 'bold' && 'font-bold',\n color === 'muted' && 'text-muted-foreground',\n color === 'primary' && 'text-primary',\n color === 'secondary' && 'text-secondary-foreground',\n color === 'destructive' && 'text-destructive',\n className,\n );\n\n return <Component ref={ref} className={textClasses} {...props} />;\n}\n\nexport { Text };\n"],"mappings":"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"}
package/dist/client.js CHANGED
@@ -1,282 +1,102 @@
1
1
  "use client";
2
- import { bk as Link } from "./tooltip-DQYjYWbe.js";
3
- import { A, a, b, c, d, e, f, g, i, B, k, l, C, m, n, o, p, q, s, t, u, v, w, bl, D, x, y, z, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, bm, W, X, bn, Y, Z, $, bo, a0, a1, a2, a3, a6, a7, a8, a9, aa, ab, ac, ad, ae, af, ag, ah, ai, aj, ak, al, am, an, ao, ap, aq, ar, as, at, au, av, aw, ax, ay, az, aA, aB, aC, aD, aE, aF, aG, aH, aI, aJ, aK, aL, aM, aN, aO, aP, aQ, aR, aS, aT, aU, aV, aW, bp, aX, aY, aZ, a_, a$, b0, bg } from "./tooltip-DQYjYWbe.js";
4
- import { jsx, jsxs } from "react/jsx-runtime";
5
- import { l as clsx } from "./Box-DC3F8eRf.js";
6
- import { P as P2, b as b2, c as c2, d as d2, e as e2, f as f2, g as g2, h } from "./Box-DC3F8eRf.js";
2
+ "use client";
3
+ import { a as PricingTable, b as clsx, c as PaginationEllipsis, d as PaginationNext, f as PaginationPrevious, l as PaginationItem, m as Breadcrumb, n as SkeletonCard, o as Pagination, p as EmptyState, r as SkeletonText, s as PaginationContent, t as Skeleton, u as PaginationLink } from "./skeleton-Bb51IWbG.js";
4
+ import { $ as NavbarSpacer, $t as CheckboxGroup, An as Accordion, B as SelectSeparator, Bt as DialogTitle, C as SidebarFooter, Cn as Text, Ct as DropdownHeading, D as SidebarLabel, Dt as DropdownSection, E as SidebarItem, Et as DropdownMenu, F as SelectGroup, Ft as Divider, G as RadioField, Gt as ComboboxDescription, H as SelectValue, Ht as DescriptionList, I as SelectItem, It as Dialog, J as Navbar, K as RadioGroup, Kt as ComboboxLabel, L as SelectLabel, Lt as DialogActions, M as Select, Mt as DrawerBody, N as Select$1, Nt as DrawerFooter, O as SidebarSection, Ot as DropdownShortcut, P as SelectContent, Pt as DrawerHeader, Q as NavbarSection, Qt as CheckboxField, R as SelectScrollDownButton, Rt as DialogBody, S as SidebarDivider, Sn as AlertTitle, St as DropdownHeader, T as SidebarHeading, Tt as DropdownLabel, U as Rating, Ut as DescriptionTerm, V as SelectTrigger, Vt as DescriptionDetails, W as Radio, Wt as Combobox, X as NavbarItem, Xt as CodeBlock, Y as NavbarDivider, Z as NavbarLabel, Zt as Checkbox, _ as StackedLayout, _n as TouchTarget, _t as Legend, a as TimelineItem, at as ListboxLabel, b as Sidebar, bn as AlertBody, bt as DropdownDescription, c as TabList, cn as Callout, ct as KbdShortcut, d as Switch, dn as Badge, dt as Description, f as SwitchField, ft as ErrorMessage, g as StatGroup, gn as Button, gt as Label, h as Stat, ht as Fieldset, i as Timeline, it as ListboxDescription, jn as AccordionItem, jt as Drawer, k as SidebarSpacer, l as TabPanel, ln as Checkbox$1, lt as Input, m as Stepper, mn as Avatar, mt as FieldGroup, n as ToastProvider, o as Textarea, ot as ListboxOption, p as SwitchGroup, pn as AvatarGroup, pt as Field, q as Progress, qt as ComboboxOption, r as useToast, rt as Listbox, s as Tab, st as Kbd, t as Tooltip, u as Tabs, un as CheckboxIndicator, ut as InputGroup, v as Slider, vn as Alert, vt as Dropdown, w as SidebarHeader, wn as Link, wt as DropdownItem, x as SidebarBody, xn as AlertDescription, xt as DropdownDivider, y as SidebarLayout, yn as AlertActions, yt as DropdownButton, z as SelectScrollUpButton, zt as DialogDescription } from "./tooltip-DZGP3hO_.js";
7
5
  import { createContext, use, useState } from "react";
6
+ import { jsx, jsxs } from "react/jsx-runtime";
7
+ //#region src/components/heading.tsx
8
8
  function Heading({ className, level = 1, ...props }) {
9
- const Element = `h${level}`;
10
- return /* @__PURE__ */ jsx(
11
- Element,
12
- {
13
- ...props,
14
- className: clsx(
15
- className,
16
- "text-2xl/8 font-semibold text-zinc-950 sm:text-xl/8 dark:text-white"
17
- )
18
- }
19
- );
9
+ return /* @__PURE__ */ jsx(`h${level}`, {
10
+ ...props,
11
+ className: clsx(className, "text-2xl/8 font-semibold text-zinc-950 sm:text-xl/8 dark:text-white")
12
+ });
20
13
  }
21
- const TableContext = createContext({
22
- bleed: false,
23
- dense: false,
24
- grid: false,
25
- striped: false
14
+ //#endregion
15
+ //#region src/components/table.tsx
16
+ var TableContext = createContext({
17
+ bleed: false,
18
+ dense: false,
19
+ grid: false,
20
+ striped: false
26
21
  });
27
- function Table({
28
- bleed = false,
29
- dense = false,
30
- grid = false,
31
- striped = false,
32
- className,
33
- children,
34
- ...props
35
- }) {
36
- return /* @__PURE__ */ jsx(
37
- TableContext.Provider,
38
- {
39
- value: { bleed, dense, grid, striped },
40
- children: /* @__PURE__ */ jsx("div", { className: "flow-root", children: /* @__PURE__ */ jsx(
41
- "div",
42
- {
43
- ...props,
44
- className: clsx(className, "-mx-(--gutter) overflow-x-auto whitespace-nowrap"),
45
- children: /* @__PURE__ */ jsx(
46
- "div",
47
- {
48
- className: clsx("inline-block min-w-full align-middle", !bleed && "sm:px-(--gutter)"),
49
- children: /* @__PURE__ */ jsx("table", { className: "min-w-full text-left text-sm/6 text-zinc-950 dark:text-white", children })
50
- }
51
- )
52
- }
53
- ) })
54
- }
55
- );
22
+ function Table({ bleed = false, dense = false, grid = false, striped = false, className, children, ...props }) {
23
+ return /* @__PURE__ */ jsx(TableContext.Provider, {
24
+ value: {
25
+ bleed,
26
+ dense,
27
+ grid,
28
+ striped
29
+ },
30
+ children: /* @__PURE__ */ jsx("div", {
31
+ className: "flow-root",
32
+ children: /* @__PURE__ */ jsx("div", {
33
+ ...props,
34
+ className: clsx(className, "-mx-(--gutter) overflow-x-auto whitespace-nowrap"),
35
+ children: /* @__PURE__ */ jsx("div", {
36
+ className: clsx("inline-block min-w-full align-middle", !bleed && "sm:px-(--gutter)"),
37
+ children: /* @__PURE__ */ jsx("table", {
38
+ className: "min-w-full text-left text-sm/6 text-zinc-950 dark:text-white",
39
+ children
40
+ })
41
+ })
42
+ })
43
+ })
44
+ });
56
45
  }
57
46
  function TableHead({ className, ...props }) {
58
- return /* @__PURE__ */ jsx("thead", { ...props, className: clsx(className, "text-zinc-500 dark:text-zinc-400") });
47
+ return /* @__PURE__ */ jsx("thead", {
48
+ ...props,
49
+ className: clsx(className, "text-zinc-500 dark:text-zinc-400")
50
+ });
59
51
  }
60
52
  function TableBody(props) {
61
- return /* @__PURE__ */ jsx("tbody", { ...props });
53
+ return /* @__PURE__ */ jsx("tbody", { ...props });
62
54
  }
63
- const TableRowContext = createContext({
64
- href: void 0,
65
- target: void 0,
66
- title: void 0
55
+ var TableRowContext = createContext({
56
+ href: void 0,
57
+ target: void 0,
58
+ title: void 0
67
59
  });
68
- function TableRow({
69
- href,
70
- target,
71
- title,
72
- className,
73
- ...props
74
- }) {
75
- const { striped } = use(TableContext);
76
- return /* @__PURE__ */ jsx(
77
- TableRowContext.Provider,
78
- {
79
- value: { href, target, title },
80
- children: /* @__PURE__ */ jsx(
81
- "tr",
82
- {
83
- ...props,
84
- className: clsx(
85
- className,
86
- href && "has-[[data-row-link][data-focus]]:outline-2 has-[[data-row-link][data-focus]]:-outline-offset-2 has-[[data-row-link][data-focus]]:outline-blue-500 dark:focus-within:bg-white/2.5",
87
- striped && "even:bg-zinc-950/2.5 dark:even:bg-white/2.5",
88
- href && striped && "hover:bg-zinc-950/5 dark:hover:bg-white/5",
89
- href && !striped && "hover:bg-zinc-950/2.5 dark:hover:bg-white/2.5"
90
- )
91
- }
92
- )
93
- }
94
- );
60
+ function TableRow({ href, target, title, className, ...props }) {
61
+ const { striped } = use(TableContext);
62
+ return /* @__PURE__ */ jsx(TableRowContext.Provider, {
63
+ value: {
64
+ href,
65
+ target,
66
+ title
67
+ },
68
+ children: /* @__PURE__ */ jsx("tr", {
69
+ ...props,
70
+ className: clsx(className, href && "has-[[data-row-link][data-focus]]:outline-2 has-[[data-row-link][data-focus]]:-outline-offset-2 has-[[data-row-link][data-focus]]:outline-blue-500 dark:focus-within:bg-white/2.5", striped && "even:bg-zinc-950/2.5 dark:even:bg-white/2.5", href && striped && "hover:bg-zinc-950/5 dark:hover:bg-white/5", href && !striped && "hover:bg-zinc-950/2.5 dark:hover:bg-white/2.5")
71
+ })
72
+ });
95
73
  }
96
74
  function TableHeader({ className, ...props }) {
97
- const { bleed, grid } = use(TableContext);
98
- return /* @__PURE__ */ jsx(
99
- "th",
100
- {
101
- ...props,
102
- className: clsx(
103
- className,
104
- "border-b border-b-zinc-950/10 px-4 py-2 font-medium first:pl-(--gutter,--spacing(2)) last:pr-(--gutter,--spacing(2)) dark:border-b-white/10",
105
- grid && "border-l border-l-zinc-950/5 first:border-l-0 dark:border-l-white/5",
106
- !bleed && "sm:first:pl-1 sm:last:pr-1"
107
- )
108
- }
109
- );
75
+ const { bleed, grid } = use(TableContext);
76
+ return /* @__PURE__ */ jsx("th", {
77
+ ...props,
78
+ className: clsx(className, "border-b border-b-zinc-950/10 px-4 py-2 font-medium first:pl-(--gutter,--spacing(2)) last:pr-(--gutter,--spacing(2)) dark:border-b-white/10", grid && "border-l border-l-zinc-950/5 first:border-l-0 dark:border-l-white/5", !bleed && "sm:first:pl-1 sm:last:pr-1")
79
+ });
110
80
  }
111
81
  function TableCell({ className, children, ...props }) {
112
- const { bleed, dense, grid, striped } = use(TableContext);
113
- const { href, target, title } = use(TableRowContext);
114
- const [cellRef, setCellRef] = useState(null);
115
- return /* @__PURE__ */ jsxs(
116
- "td",
117
- {
118
- ref: href ? setCellRef : void 0,
119
- ...props,
120
- className: clsx(
121
- className,
122
- "relative px-4 first:pl-(--gutter,--spacing(2)) last:pr-(--gutter,--spacing(2))",
123
- !striped && "border-b border-zinc-950/5 dark:border-white/5",
124
- grid && "border-l border-l-zinc-950/5 first:border-l-0 dark:border-l-white/5",
125
- dense ? "py-2.5" : "py-4",
126
- !bleed && "sm:first:pl-1 sm:last:pr-1"
127
- ),
128
- children: [
129
- href && /* @__PURE__ */ jsx(
130
- Link,
131
- {
132
- "data-row-link": true,
133
- href,
134
- target,
135
- "aria-label": title,
136
- tabIndex: cellRef?.previousElementSibling === null ? 0 : -1,
137
- className: "absolute inset-0 focus:outline-hidden"
138
- }
139
- ),
140
- children
141
- ]
142
- }
143
- );
82
+ const { bleed, dense, grid, striped } = use(TableContext);
83
+ const { href, target, title } = use(TableRowContext);
84
+ const [cellRef, setCellRef] = useState(null);
85
+ return /* @__PURE__ */ jsxs("td", {
86
+ ref: href ? setCellRef : void 0,
87
+ ...props,
88
+ className: clsx(className, "relative px-4 first:pl-(--gutter,--spacing(2)) last:pr-(--gutter,--spacing(2))", !striped && "border-b border-zinc-950/5 dark:border-white/5", grid && "border-l border-l-zinc-950/5 first:border-l-0 dark:border-l-white/5", dense ? "py-2.5" : "py-4", !bleed && "sm:first:pl-1 sm:last:pr-1"),
89
+ children: [href && /* @__PURE__ */ jsx(Link, {
90
+ "data-row-link": true,
91
+ href,
92
+ target,
93
+ "aria-label": title,
94
+ tabIndex: cellRef?.previousElementSibling === null ? 0 : -1,
95
+ className: "absolute inset-0 focus:outline-hidden"
96
+ }), children]
97
+ });
144
98
  }
145
- export {
146
- A as Accordion,
147
- a as AccordionItem,
148
- b as Alert,
149
- c as AlertActions,
150
- d as AlertBody,
151
- e as AlertDescription,
152
- f as AlertTitle,
153
- g as Avatar,
154
- i as AvatarGroup,
155
- B as Badge,
156
- k as Breadcrumb,
157
- l as Button,
158
- C as Callout,
159
- m as Checkbox,
160
- n as CheckboxCVA,
161
- o as CheckboxField,
162
- p as CheckboxGroup,
163
- q as CheckboxIndicator,
164
- s as CodeBlock,
165
- t as Combobox,
166
- u as ComboboxDescription,
167
- v as ComboboxLabel,
168
- w as ComboboxOption,
169
- bl as Description,
170
- D as DescriptionDetails,
171
- x as DescriptionList,
172
- y as DescriptionTerm,
173
- z as Dialog,
174
- E as DialogActions,
175
- F as DialogBody,
176
- G as DialogDescription,
177
- H as DialogTitle,
178
- I as Divider,
179
- J as Drawer,
180
- K as DrawerBody,
181
- L as DrawerFooter,
182
- M as DrawerHeader,
183
- N as Dropdown,
184
- O as DropdownButton,
185
- P as DropdownDescription,
186
- Q as DropdownDivider,
187
- R as DropdownHeader,
188
- S as DropdownHeading,
189
- T as DropdownItem,
190
- U as DropdownLabel,
191
- V as DropdownMenu,
192
- bm as DropdownSection,
193
- W as DropdownShortcut,
194
- X as EmptyState,
195
- bn as ErrorMessage,
196
- Y as Field,
197
- Z as FieldGroup,
198
- $ as Fieldset,
199
- bo as FieldsetLabel,
200
- Heading,
201
- a0 as Input,
202
- a1 as InputGroup,
203
- a2 as Kbd,
204
- a3 as KbdShortcut,
205
- a6 as Legend,
206
- Link,
207
- a7 as Listbox,
208
- a8 as ListboxDescription,
209
- a9 as ListboxLabel,
210
- aa as ListboxOption,
211
- ab as Navbar,
212
- ac as NavbarDivider,
213
- ad as NavbarItem,
214
- ae as NavbarLabel,
215
- af as NavbarSection,
216
- ag as NavbarSpacer,
217
- P2 as Pagination,
218
- b2 as PaginationContent,
219
- c2 as PaginationEllipsis,
220
- d2 as PaginationItem,
221
- e2 as PaginationLink,
222
- f2 as PaginationNext,
223
- g2 as PaginationPrevious,
224
- h as PricingTable,
225
- ah as Progress,
226
- ai as Radio,
227
- aj as RadioField,
228
- ak as RadioGroup,
229
- al as Rating,
230
- am as Select,
231
- an as SelectCVA,
232
- ao as SelectContent,
233
- ap as SelectGroup,
234
- aq as SelectItem,
235
- ar as SelectLabel,
236
- as as SelectScrollDownButton,
237
- at as SelectScrollUpButton,
238
- au as SelectSeparator,
239
- av as SelectTrigger,
240
- aw as SelectValue,
241
- ax as Sidebar,
242
- ay as SidebarBody,
243
- az as SidebarDivider,
244
- aA as SidebarFooter,
245
- aB as SidebarHeader,
246
- aC as SidebarHeading,
247
- aD as SidebarItem,
248
- aE as SidebarLabel,
249
- aF as SidebarLayout,
250
- aG as SidebarSection,
251
- aH as SidebarSpacer,
252
- aI as Skeleton,
253
- aJ as SkeletonCard,
254
- aK as SkeletonText,
255
- aL as Slider,
256
- aM as StackedLayout,
257
- aN as Stat,
258
- aO as StatGroup,
259
- aP as Stepper,
260
- aQ as Switch,
261
- aR as SwitchField,
262
- aS as SwitchGroup,
263
- aT as Tab,
264
- aU as TabList,
265
- aV as TabPanel,
266
- Table,
267
- TableBody,
268
- TableCell,
269
- TableHead,
270
- TableHeader,
271
- TableRow,
272
- aW as Tabs,
273
- bp as Text,
274
- aX as Textarea,
275
- aY as Timeline,
276
- aZ as TimelineItem,
277
- a_ as ToastProvider,
278
- a$ as Tooltip,
279
- b0 as TouchTarget,
280
- bg as useToast
281
- };
282
- //# sourceMappingURL=client.js.map
99
+ //#endregion
100
+ export { Accordion, AccordionItem, Alert, AlertActions, AlertBody, AlertDescription, AlertTitle, Avatar, AvatarGroup, Badge, Breadcrumb, Button, Callout, Checkbox, Checkbox$1 as CheckboxCVA, CheckboxField, CheckboxGroup, CheckboxIndicator, CodeBlock, Combobox, ComboboxDescription, ComboboxLabel, ComboboxOption, Description, DescriptionDetails, DescriptionList, DescriptionTerm, Dialog, DialogActions, DialogBody, DialogDescription, DialogTitle, Divider, Drawer, DrawerBody, DrawerFooter, DrawerHeader, Dropdown, DropdownButton, DropdownDescription, DropdownDivider, DropdownHeader, DropdownHeading, DropdownItem, DropdownLabel, DropdownMenu, DropdownSection, DropdownShortcut, EmptyState, ErrorMessage, Field, FieldGroup, Fieldset, Label as FieldsetLabel, Heading, Input, InputGroup, Kbd, KbdShortcut, Legend, Link, Listbox, ListboxDescription, ListboxLabel, ListboxOption, Navbar, NavbarDivider, NavbarItem, NavbarLabel, NavbarSection, NavbarSpacer, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PricingTable, Progress, Radio, RadioField, RadioGroup, Rating, Select, Select$1 as SelectCVA, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sidebar, SidebarBody, SidebarDivider, SidebarFooter, SidebarHeader, SidebarHeading, SidebarItem, SidebarLabel, SidebarLayout, SidebarSection, SidebarSpacer, Skeleton, SkeletonCard, SkeletonText, Slider, StackedLayout, Stat, StatGroup, Stepper, Switch, SwitchField, SwitchGroup, Tab, TabList, TabPanel, Table, TableBody, TableCell, TableHead, TableHeader, TableRow, Tabs, Text, Textarea, Timeline, TimelineItem, ToastProvider, Tooltip, TouchTarget, useToast };
101
+
102
+ //# sourceMappingURL=client.js.map