@holaboss/ui 0.1.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.
@@ -0,0 +1,643 @@
1
+ import * as React from "react";
2
+ import { ComponentProps, ReactNode } from "react";
3
+ import { VariantProps } from "class-variance-authority";
4
+ import { ClassValue } from "clsx";
5
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
6
+ import { useRender } from "@base-ui/react/use-render";
7
+ import { Button as Button$1 } from "@base-ui/react/button";
8
+ import { Menu } from "@base-ui/react/menu";
9
+ import { LucideIcon } from "lucide-react";
10
+ import { Popover as Popover$1 } from "@base-ui/react/popover";
11
+ import { Select as Select$1 } from "@base-ui/react/select";
12
+ import { Switch as Switch$1 } from "@base-ui/react/switch";
13
+ import { Tabs as Tabs$1 } from "@base-ui/react/tabs";
14
+ import { Tooltip as Tooltip$1 } from "@base-ui/react/tooltip";
15
+ import * as _$class_variance_authority_types0 from "class-variance-authority/types";
16
+
17
+ //#region src/primitives/alert.d.ts
18
+ declare const alertVariants: (props?: ({
19
+ variant?: "default" | "destructive" | null | undefined;
20
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
21
+ declare function Alert({
22
+ className,
23
+ variant,
24
+ ...props
25
+ }: React.ComponentProps<"div"> & VariantProps<typeof alertVariants>): _$react_jsx_runtime0.JSX.Element;
26
+ declare function AlertTitle({
27
+ className,
28
+ ...props
29
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
30
+ declare function AlertDescription({
31
+ className,
32
+ ...props
33
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
34
+ declare function AlertAction({
35
+ className,
36
+ ...props
37
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
38
+ //#endregion
39
+ //#region src/primitives/badge.d.ts
40
+ declare const badgeVariants: (props?: ({
41
+ variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | "link" | null | undefined;
42
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
43
+ declare function Badge({
44
+ className,
45
+ variant,
46
+ render,
47
+ ...props
48
+ }: useRender.ComponentProps<"span"> & VariantProps<typeof badgeVariants>): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
49
+ //#endregion
50
+ //#region src/primitives/button.d.ts
51
+ declare const buttonVariants: (props?: ({
52
+ variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | "link" | "bordered" | null | undefined;
53
+ size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
54
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
55
+ declare function Button({
56
+ className,
57
+ variant,
58
+ size,
59
+ ...props
60
+ }: Button$1.Props & VariantProps<typeof buttonVariants>): _$react_jsx_runtime0.JSX.Element;
61
+ //#endregion
62
+ //#region src/primitives/card.d.ts
63
+ declare function Card({
64
+ className,
65
+ size,
66
+ ...props
67
+ }: React.ComponentProps<"div"> & {
68
+ size?: "default" | "sm";
69
+ }): _$react_jsx_runtime0.JSX.Element;
70
+ declare function CardHeader({
71
+ className,
72
+ ...props
73
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
74
+ declare function CardTitle({
75
+ className,
76
+ ...props
77
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
78
+ declare function CardDescription({
79
+ className,
80
+ ...props
81
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
82
+ declare function CardAction({
83
+ className,
84
+ ...props
85
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
86
+ declare function CardContent({
87
+ className,
88
+ ...props
89
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
90
+ declare function CardFooter({
91
+ className,
92
+ ...props
93
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
94
+ //#endregion
95
+ //#region src/primitives/dropdown-menu.d.ts
96
+ declare function DropdownMenu({
97
+ ...props
98
+ }: Menu.Root.Props): _$react_jsx_runtime0.JSX.Element;
99
+ declare function DropdownMenuPortal({
100
+ ...props
101
+ }: Menu.Portal.Props): _$react_jsx_runtime0.JSX.Element;
102
+ declare function DropdownMenuTrigger({
103
+ ...props
104
+ }: Menu.Trigger.Props): _$react_jsx_runtime0.JSX.Element;
105
+ declare function DropdownMenuContent({
106
+ align,
107
+ alignOffset,
108
+ side,
109
+ sideOffset,
110
+ className,
111
+ ...props
112
+ }: Menu.Popup.Props & Pick<Menu.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): _$react_jsx_runtime0.JSX.Element;
113
+ declare function DropdownMenuGroup({
114
+ ...props
115
+ }: Menu.Group.Props): _$react_jsx_runtime0.JSX.Element;
116
+ declare function DropdownMenuLabel({
117
+ className,
118
+ inset,
119
+ ...props
120
+ }: Menu.GroupLabel.Props & {
121
+ inset?: boolean;
122
+ }): _$react_jsx_runtime0.JSX.Element;
123
+ declare function DropdownMenuItem({
124
+ className,
125
+ inset,
126
+ variant,
127
+ ...props
128
+ }: Menu.Item.Props & {
129
+ inset?: boolean;
130
+ variant?: "default" | "destructive";
131
+ }): _$react_jsx_runtime0.JSX.Element;
132
+ declare function DropdownMenuSub({
133
+ ...props
134
+ }: Menu.SubmenuRoot.Props): _$react_jsx_runtime0.JSX.Element;
135
+ declare function DropdownMenuSubTrigger({
136
+ className,
137
+ inset,
138
+ children,
139
+ ...props
140
+ }: Menu.SubmenuTrigger.Props & {
141
+ inset?: boolean;
142
+ }): _$react_jsx_runtime0.JSX.Element;
143
+ declare function DropdownMenuSubContent({
144
+ align,
145
+ alignOffset,
146
+ side,
147
+ sideOffset,
148
+ className,
149
+ ...props
150
+ }: React.ComponentProps<typeof DropdownMenuContent>): _$react_jsx_runtime0.JSX.Element;
151
+ declare function DropdownMenuCheckboxItem({
152
+ className,
153
+ children,
154
+ checked,
155
+ inset,
156
+ ...props
157
+ }: Menu.CheckboxItem.Props & {
158
+ inset?: boolean;
159
+ }): _$react_jsx_runtime0.JSX.Element;
160
+ declare function DropdownMenuRadioGroup({
161
+ ...props
162
+ }: Menu.RadioGroup.Props): _$react_jsx_runtime0.JSX.Element;
163
+ declare function DropdownMenuRadioItem({
164
+ className,
165
+ children,
166
+ inset,
167
+ ...props
168
+ }: Menu.RadioItem.Props & {
169
+ inset?: boolean;
170
+ }): _$react_jsx_runtime0.JSX.Element;
171
+ declare function DropdownMenuSeparator({
172
+ className,
173
+ ...props
174
+ }: Menu.Separator.Props): _$react_jsx_runtime0.JSX.Element;
175
+ declare function DropdownMenuShortcut({
176
+ className,
177
+ ...props
178
+ }: React.ComponentProps<"span">): _$react_jsx_runtime0.JSX.Element;
179
+ //#endregion
180
+ //#region src/primitives/empty-state.d.ts
181
+ /**
182
+ * EmptyState — centered icon + title + optional description + optional
183
+ * action. Replaces the multiple hand-rolled placeholder variants
184
+ * scattered across panes (sidebar empties, dashboard "no rows",
185
+ * automations "no schedules", etc.).
186
+ *
187
+ * Two visual presentations driven by `size`:
188
+ *
189
+ * - `sm` (compact, default in dashboard panels) — small unframed icon
190
+ * at low opacity, `text-xs` copy. Good when the empty state shares
191
+ * a tight pane with chrome; was the original dashboard EmptyState.
192
+ *
193
+ * - `md` (roomier, default for sidebar / list empties) — icon wrapped
194
+ * in a chip background, `text-sm` title + `text-xs` description.
195
+ * More presence for full-pane empties.
196
+ *
197
+ * Pass `action` to surface a CTA below the description.
198
+ *
199
+ * `minHeight` forces a min-height (used by chart panels so the panel
200
+ * doesn't collapse when there's no data).
201
+ */
202
+ interface EmptyStateProps {
203
+ icon?: LucideIcon;
204
+ title: string;
205
+ description?: ReactNode;
206
+ action?: ReactNode;
207
+ size?: "sm" | "md";
208
+ /** Force min-height (px). Useful for chart cells that shouldn't collapse. */
209
+ minHeight?: number;
210
+ /**
211
+ * Wrap the icon in a card-on-card chip framed by an Attio-style wide
212
+ * hairline grid backdrop that fades to transparent at the outer
213
+ * edges. Use for full-pane empties that need real presence
214
+ * (Automations, primary list views). Default off so compact in-card
215
+ * empties stay flat. Only applies when `size="md"`.
216
+ */
217
+ decorated?: boolean;
218
+ /** Extra classes on the outer wrapper. */
219
+ className?: string;
220
+ }
221
+ declare function EmptyState({
222
+ icon: Icon,
223
+ title,
224
+ description,
225
+ action,
226
+ size,
227
+ minHeight,
228
+ decorated,
229
+ className
230
+ }: EmptyStateProps): _$react_jsx_runtime0.JSX.Element;
231
+ //#endregion
232
+ //#region src/primitives/input.d.ts
233
+ declare function Input({
234
+ className,
235
+ type,
236
+ ...props
237
+ }: React.ComponentProps<"input">): _$react_jsx_runtime0.JSX.Element;
238
+ //#endregion
239
+ //#region src/primitives/kbd.d.ts
240
+ /**
241
+ * Kbd — keyboard shortcut hint. Inline `<kbd>` styled as a tiny pill.
242
+ * Use in tooltip footers, menu trailing slots, and help text to teach
243
+ * keyboard grammar continuously.
244
+ *
245
+ * Single-key glyphs (⌘, ⇧, ↑, K) auto-center via the square sizing.
246
+ * For multi-key sequences, render multiple <Kbd> with a separator:
247
+ * <Kbd>⌘</Kbd><Kbd>K</Kbd>
248
+ */
249
+ declare const kbdVariants: (props?: ({
250
+ size?: "sm" | "md" | null | undefined;
251
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
252
+ type KbdProps = ComponentProps<"kbd"> & VariantProps<typeof kbdVariants>;
253
+ declare function Kbd({
254
+ className,
255
+ size,
256
+ ...props
257
+ }: KbdProps): _$react_jsx_runtime0.JSX.Element;
258
+ //#endregion
259
+ //#region src/primitives/label.d.ts
260
+ declare function Label({
261
+ className,
262
+ ...props
263
+ }: React.ComponentProps<"label">): _$react_jsx_runtime0.JSX.Element;
264
+ //#endregion
265
+ //#region src/primitives/popover.d.ts
266
+ declare function Popover({
267
+ ...props
268
+ }: Popover$1.Root.Props): _$react_jsx_runtime0.JSX.Element;
269
+ declare function PopoverTrigger({
270
+ ...props
271
+ }: Popover$1.Trigger.Props): _$react_jsx_runtime0.JSX.Element;
272
+ declare function PopoverContent({
273
+ className,
274
+ positionerClassName,
275
+ align,
276
+ alignOffset,
277
+ side,
278
+ sideOffset,
279
+ ...props
280
+ }: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset"> & {
281
+ /** Override classes on the Positioner — needed when stacking above
282
+ portals that already sit at high z-index (e.g. the workspace
283
+ switcher pop-out at z-[80]). */
284
+ positionerClassName?: string;
285
+ }): _$react_jsx_runtime0.JSX.Element;
286
+ declare function PopoverHeader({
287
+ className,
288
+ ...props
289
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
290
+ declare function PopoverTitle({
291
+ className,
292
+ ...props
293
+ }: Popover$1.Title.Props): _$react_jsx_runtime0.JSX.Element;
294
+ declare function PopoverDescription({
295
+ className,
296
+ ...props
297
+ }: Popover$1.Description.Props): _$react_jsx_runtime0.JSX.Element;
298
+ //#endregion
299
+ //#region src/primitives/select.d.ts
300
+ declare const Select: typeof Select$1.Root;
301
+ declare function SelectGroup({
302
+ className,
303
+ ...props
304
+ }: Select$1.Group.Props): _$react_jsx_runtime0.JSX.Element;
305
+ declare function SelectValue({
306
+ className,
307
+ ...props
308
+ }: Select$1.Value.Props): _$react_jsx_runtime0.JSX.Element;
309
+ declare function SelectTrigger({
310
+ className,
311
+ size,
312
+ children,
313
+ ...props
314
+ }: Select$1.Trigger.Props & {
315
+ size?: "sm" | "default";
316
+ }): _$react_jsx_runtime0.JSX.Element;
317
+ declare function SelectContent({
318
+ className,
319
+ children,
320
+ side,
321
+ sideOffset,
322
+ align,
323
+ alignOffset,
324
+ alignItemWithTrigger,
325
+ ...props
326
+ }: Select$1.Popup.Props & Pick<Select$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset" | "alignItemWithTrigger">): _$react_jsx_runtime0.JSX.Element;
327
+ declare function SelectLabel({
328
+ className,
329
+ ...props
330
+ }: Select$1.GroupLabel.Props): _$react_jsx_runtime0.JSX.Element;
331
+ declare function SelectItem({
332
+ className,
333
+ children,
334
+ ...props
335
+ }: Select$1.Item.Props): _$react_jsx_runtime0.JSX.Element;
336
+ declare function SelectSeparator({
337
+ className,
338
+ ...props
339
+ }: Select$1.Separator.Props): _$react_jsx_runtime0.JSX.Element;
340
+ declare function SelectScrollUpButton({
341
+ className,
342
+ ...props
343
+ }: React.ComponentProps<typeof Select$1.ScrollUpArrow>): _$react_jsx_runtime0.JSX.Element;
344
+ declare function SelectScrollDownButton({
345
+ className,
346
+ ...props
347
+ }: React.ComponentProps<typeof Select$1.ScrollDownArrow>): _$react_jsx_runtime0.JSX.Element;
348
+ //#endregion
349
+ //#region src/primitives/status-dot.d.ts
350
+ /**
351
+ * StatusDot — small colored dot signalling a state (running, error,
352
+ * working, idle, etc.). Replaces ~18 hand-rolled
353
+ * `<span className="size-X rounded-full bg-X" />` instances across the
354
+ * shell so a single change here propagates everywhere.
355
+ *
356
+ * Default size = `sm` (6px) which matches the dominant existing usage
357
+ * (status pip alongside text). Use `md` (8px) for slightly more
358
+ * presence (sidebar entry status), `lg` (10px) for stand-alone
359
+ * notification-style indicators.
360
+ *
361
+ * `withRing` adds a card-colored ring — used for badge dots that sit on
362
+ * top of an icon and need to read against the underlying surface.
363
+ */
364
+ declare const statusDotVariants: (props?: ({
365
+ variant?: "destructive" | "success" | "warning" | "info" | "primary" | "muted" | "neutral" | null | undefined;
366
+ size?: "sm" | "lg" | "md" | null | undefined;
367
+ withRing?: boolean | null | undefined;
368
+ pulse?: boolean | null | undefined;
369
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
370
+ type StatusDotProps = useRender.ComponentProps<"span"> & VariantProps<typeof statusDotVariants>;
371
+ declare function StatusDot({
372
+ className,
373
+ variant,
374
+ size,
375
+ withRing,
376
+ pulse,
377
+ render,
378
+ ...props
379
+ }: StatusDotProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
380
+ //#endregion
381
+ //#region src/primitives/switch.d.ts
382
+ declare function Switch({
383
+ className,
384
+ ...props
385
+ }: Switch$1.Root.Props): _$react_jsx_runtime0.JSX.Element;
386
+ //#endregion
387
+ //#region src/primitives/tabs.d.ts
388
+ declare function Tabs({
389
+ className,
390
+ orientation,
391
+ ...props
392
+ }: Tabs$1.Root.Props): _$react_jsx_runtime0.JSX.Element;
393
+ declare const tabsListVariants: (props?: ({
394
+ variant?: "default" | "line" | null | undefined;
395
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
396
+ declare function TabsList({
397
+ className,
398
+ variant,
399
+ ...props
400
+ }: Tabs$1.List.Props & VariantProps<typeof tabsListVariants>): _$react_jsx_runtime0.JSX.Element;
401
+ declare function TabsTrigger({
402
+ className,
403
+ ...props
404
+ }: Tabs$1.Tab.Props): _$react_jsx_runtime0.JSX.Element;
405
+ declare function TabsContent({
406
+ className,
407
+ ...props
408
+ }: Tabs$1.Panel.Props): _$react_jsx_runtime0.JSX.Element;
409
+ //#endregion
410
+ //#region src/primitives/tooltip.d.ts
411
+ declare function TooltipProvider({
412
+ delay,
413
+ ...props
414
+ }: Tooltip$1.Provider.Props): _$react_jsx_runtime0.JSX.Element;
415
+ declare function Tooltip({
416
+ ...props
417
+ }: Tooltip$1.Root.Props): _$react_jsx_runtime0.JSX.Element;
418
+ declare function TooltipTrigger({
419
+ ...props
420
+ }: Tooltip$1.Trigger.Props): _$react_jsx_runtime0.JSX.Element;
421
+ declare function TooltipContent({
422
+ className,
423
+ side,
424
+ sideOffset,
425
+ align,
426
+ alignOffset,
427
+ children,
428
+ ...props
429
+ }: Tooltip$1.Popup.Props & Pick<Tooltip$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): _$react_jsx_runtime0.JSX.Element;
430
+ //#endregion
431
+ //#region src/layouts/dashboard-shell.d.ts
432
+ /**
433
+ * Canonical chrome for a workspace-pane dashboard. Two slots: a top bar
434
+ * (header, actions) and a scrollable content region underneath. Apps
435
+ * should wrap their dashboard root with this so density, padding, and
436
+ * scroll behavior stay consistent across the workspace.
437
+ *
438
+ * The shell does not manage its own width; it fills its parent (the
439
+ * pane). Vertical scroll lives on `content` so the header stays pinned.
440
+ */
441
+ interface DashboardShellProps {
442
+ /** Sticky top region. Typically a `<PageHeader>`. */
443
+ header?: ReactNode;
444
+ /** Main scrollable content. */
445
+ children: ReactNode;
446
+ /** Extra class on the outer flex container. */
447
+ className?: string;
448
+ /** Extra class on the scrollable content region. */
449
+ contentClassName?: string;
450
+ }
451
+ declare function DashboardShell({
452
+ header,
453
+ children,
454
+ className,
455
+ contentClassName
456
+ }: DashboardShellProps): _$react_jsx_runtime0.JSX.Element;
457
+ //#endregion
458
+ //#region src/layouts/data-table.d.ts
459
+ interface DataTableColumn<Row> {
460
+ /** Column key — must be unique within a table. */
461
+ id: string;
462
+ /** Header label. */
463
+ header: ReactNode;
464
+ /** Cell content; receives the full row. */
465
+ cell: (row: Row) => ReactNode;
466
+ /**
467
+ * Cell alignment. `right` for numeric / monetary columns; `center`
468
+ * for icons / status badges.
469
+ */
470
+ align?: "left" | "right" | "center";
471
+ /** Hide on small viewports (< sm). */
472
+ hideOnSmall?: boolean;
473
+ /** Width hint in CSS units (e.g. `120px`, `20%`). */
474
+ width?: string;
475
+ }
476
+ interface DataTableProps<Row> {
477
+ columns: DataTableColumn<Row>[];
478
+ rows: Row[];
479
+ /** Stable key per row. */
480
+ rowKey: (row: Row) => string;
481
+ /** Per-row click handler. Renders rows with hover affordance. */
482
+ onRowClick?: (row: Row) => void;
483
+ /** When true, body is replaced with a <LoadingState>. */
484
+ isLoading?: boolean;
485
+ /** Empty-state title (shown when not loading and rows is empty). */
486
+ emptyTitle?: string;
487
+ emptyDescription?: ReactNode;
488
+ className?: string;
489
+ }
490
+ declare function DataTable<Row>({
491
+ columns,
492
+ rows,
493
+ rowKey,
494
+ onRowClick,
495
+ isLoading,
496
+ emptyTitle,
497
+ emptyDescription,
498
+ className
499
+ }: DataTableProps<Row>): _$react_jsx_runtime0.JSX.Element;
500
+ //#endregion
501
+ //#region src/layouts/error-state.d.ts
502
+ /**
503
+ * Centered error display with an optional retry action. Use for the
504
+ * body of a pane when data fetch / mutation fails. Title is short, the
505
+ * `detail` is the developer-relevant message (truncate-friendly).
506
+ */
507
+ interface ErrorStateProps {
508
+ title?: string;
509
+ /** Concrete error description — the API error text, etc. */
510
+ detail?: ReactNode;
511
+ /** Click handler for the retry button. Omit to skip the button. */
512
+ onRetry?: () => void;
513
+ retryLabel?: string;
514
+ className?: string;
515
+ }
516
+ declare function ErrorState({
517
+ title,
518
+ detail,
519
+ onRetry,
520
+ retryLabel,
521
+ className
522
+ }: ErrorStateProps): _$react_jsx_runtime0.JSX.Element;
523
+ //#endregion
524
+ //#region src/layouts/filter-bar.d.ts
525
+ /**
526
+ * Search input + filter chip slot + right-aligned actions. Sits at the
527
+ * top of a list / table to provide a consistent control row across
528
+ * apps.
529
+ */
530
+ interface FilterBarProps {
531
+ /** Search input value (controlled). */
532
+ search?: string;
533
+ onSearchChange?: (value: string) => void;
534
+ searchPlaceholder?: string;
535
+ /** Filter chips / selects / segmented controls. */
536
+ filters?: ReactNode;
537
+ /** Right-aligned actions (e.g. "New", "Refresh"). */
538
+ actions?: ReactNode;
539
+ className?: string;
540
+ }
541
+ declare function FilterBar({
542
+ search,
543
+ onSearchChange,
544
+ searchPlaceholder,
545
+ filters,
546
+ actions,
547
+ className
548
+ }: FilterBarProps): _$react_jsx_runtime0.JSX.Element;
549
+ //#endregion
550
+ //#region src/layouts/loading-state.d.ts
551
+ /**
552
+ * Skeleton-style loading placeholder. Use for the body of a pane while
553
+ * data is fetching. The default presentation is a vertical stack of
554
+ * pulsing bars; `variant="list"` mimics a row list and `variant="card"`
555
+ * mimics card-grid loading.
556
+ *
557
+ * Solid backgrounds + subtle pulse only. No shimmer gradients.
558
+ */
559
+ interface LoadingStateProps {
560
+ variant?: "rows" | "list" | "card";
561
+ /** How many placeholder elements to render. Default 4. */
562
+ count?: number;
563
+ className?: string;
564
+ }
565
+ declare function LoadingState({
566
+ variant,
567
+ count,
568
+ className
569
+ }: LoadingStateProps): _$react_jsx_runtime0.JSX.Element;
570
+ //#endregion
571
+ //#region src/layouts/page-header.d.ts
572
+ /**
573
+ * Title + optional subtitle + optional right-aligned actions. The
574
+ * canonical first child of `<DashboardShell header={...}>`. Density and
575
+ * weight stay consistent regardless of which app drops it in.
576
+ */
577
+ interface PageHeaderProps {
578
+ title: ReactNode;
579
+ description?: ReactNode;
580
+ /** Right-aligned action slot (typically buttons). */
581
+ actions?: ReactNode;
582
+ className?: string;
583
+ }
584
+ declare function PageHeader({
585
+ title,
586
+ description,
587
+ actions,
588
+ className
589
+ }: PageHeaderProps): _$react_jsx_runtime0.JSX.Element;
590
+ //#endregion
591
+ //#region src/layouts/section.d.ts
592
+ /**
593
+ * Title + optional description over a content block. Use to group
594
+ * related controls or stats inside a pane.
595
+ */
596
+ interface SectionProps {
597
+ title?: ReactNode;
598
+ description?: ReactNode;
599
+ /** Right-aligned action slot next to the title. */
600
+ actions?: ReactNode;
601
+ children: ReactNode;
602
+ className?: string;
603
+ contentClassName?: string;
604
+ }
605
+ declare function Section({
606
+ title,
607
+ description,
608
+ actions,
609
+ children,
610
+ className,
611
+ contentClassName
612
+ }: SectionProps): _$react_jsx_runtime0.JSX.Element;
613
+ //#endregion
614
+ //#region src/layouts/stat-pill.d.ts
615
+ /**
616
+ * Small metric display — label on top, value below, optional icon and
617
+ * trend chip. Use in a grid at the top of a dashboard. Stays tight; no
618
+ * shadows or gradients.
619
+ */
620
+ interface StatPillProps {
621
+ label: ReactNode;
622
+ value: ReactNode;
623
+ icon?: LucideIcon;
624
+ /** Optional trend / hint chip rendered next to the value. */
625
+ trend?: ReactNode;
626
+ /** Visual tone for the value. Default `neutral` (foreground). */
627
+ tone?: "neutral" | "positive" | "negative";
628
+ className?: string;
629
+ }
630
+ declare function StatPill({
631
+ label,
632
+ value,
633
+ icon: Icon,
634
+ trend,
635
+ tone,
636
+ className
637
+ }: StatPillProps): _$react_jsx_runtime0.JSX.Element;
638
+ //#endregion
639
+ //#region src/lib/utils.d.ts
640
+ declare function cn(...inputs: ClassValue[]): string;
641
+ //#endregion
642
+ export { Alert, AlertAction, AlertDescription, AlertTitle, Badge, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, DashboardShell, type DashboardShellProps, DataTable, type DataTableColumn, type DataTableProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, ErrorState, type ErrorStateProps, FilterBar, type FilterBarProps, Input, Kbd, Label, LoadingState, type LoadingStateProps, PageHeader, type PageHeaderProps, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Section, type SectionProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, StatPill, type StatPillProps, StatusDot, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, tabsListVariants };
643
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../src/primitives/alert.tsx","../src/primitives/badge.tsx","../src/primitives/button.tsx","../src/primitives/card.tsx","../src/primitives/dropdown-menu.tsx","../src/primitives/empty-state.tsx","../src/primitives/input.tsx","../src/primitives/kbd.tsx","../src/primitives/label.tsx","../src/primitives/popover.tsx","../src/primitives/select.tsx","../src/primitives/status-dot.tsx","../src/primitives/switch.tsx","../src/primitives/tabs.tsx","../src/primitives/tooltip.tsx","../src/layouts/dashboard-shell.tsx","../src/layouts/data-table.tsx","../src/layouts/error-state.tsx","../src/layouts/filter-bar.tsx","../src/layouts/loading-state.tsx","../src/layouts/page-header.tsx","../src/layouts/section.tsx","../src/layouts/stat-pill.tsx","../src/lib/utils.ts"],"mappings":"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"}