@dev-dga/react 0.6.0 → 0.7.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/index.d.cts CHANGED
@@ -2,7 +2,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as class_variance_authority_types from 'class-variance-authority/types';
3
3
  import { ReactNode } from 'react';
4
4
  import { VariantProps } from 'class-variance-authority';
5
- import { Checkbox as Checkbox$1, RadioGroup as RadioGroup$1, Switch as Switch$1, Select as Select$1, Avatar as Avatar$1, Tooltip as Tooltip$1, Dialog, Tabs as Tabs$1, Accordion as Accordion$1, Progress as Progress$1, DropdownMenu as DropdownMenu$1, Slider as Slider$1, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1 } from 'radix-ui';
5
+ import { Checkbox as Checkbox$1, RadioGroup as RadioGroup$1, Switch as Switch$1, Select as Select$1, Avatar as Avatar$1, Tooltip as Tooltip$1, Dialog, Tabs as Tabs$1, Accordion as Accordion$1, Progress as Progress$1, DropdownMenu as DropdownMenu$1, Slider as Slider$1, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1, Popover as Popover$1, ScrollArea as ScrollArea$1, Menubar as Menubar$1 } from 'radix-ui';
6
6
  import { Command } from 'cmdk';
7
7
  import { DgaTheme } from '@dev-dga/tokens';
8
8
  export { DgaTheme, PaletteName, ThemeColor } from '@dev-dga/tokens';
@@ -1125,6 +1125,316 @@ declare function DescriptionItem({ className, ...props }: DescriptionItemProps):
1125
1125
  declare function DescriptionTerm({ className, ...props }: DescriptionTermProps): react_jsx_runtime.JSX.Element;
1126
1126
  declare function DescriptionDetails({ className, ...props }: DescriptionDetailsProps): react_jsx_runtime.JSX.Element;
1127
1127
 
1128
+ declare const emptyStateVariants: (props?: ({
1129
+ variant?: "search" | "error" | "default" | "success" | null | undefined;
1130
+ size?: "sm" | "md" | "lg" | null | undefined;
1131
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1132
+ interface EmptyStateProps extends Omit<React.ComponentProps<'div'>, 'title'>, VariantProps<typeof emptyStateVariants> {
1133
+ /**
1134
+ * Leading media (icon or illustration). Pass `false` to hide the media.
1135
+ * Defaults to a variant-appropriate icon. Ignored when `children` is set.
1136
+ */
1137
+ icon?: ReactNode | false;
1138
+ /** Title. Ignored when `children` is set. */
1139
+ title?: ReactNode;
1140
+ /** Supporting description below the title. Ignored when `children` is set. */
1141
+ description?: ReactNode;
1142
+ /** Primary action, e.g. a `<Button>`. Ignored when `children` is set. */
1143
+ action?: ReactNode;
1144
+ /** Secondary action beside the primary one. Ignored when `children` is set. */
1145
+ secondaryAction?: ReactNode;
1146
+ }
1147
+ type EmptyStateMediaProps = React.ComponentProps<'div'>;
1148
+ interface EmptyStateTitleProps extends React.ComponentProps<'h3'> {
1149
+ /** Override the heading element (e.g. render an `<h2>` on full-page states). */
1150
+ asChild?: boolean;
1151
+ }
1152
+ type EmptyStateDescriptionProps = React.ComponentProps<'p'> & {
1153
+ asChild?: boolean;
1154
+ };
1155
+ type EmptyStateActionsProps = React.ComponentProps<'div'> & {
1156
+ asChild?: boolean;
1157
+ };
1158
+ declare function EmptyState({ variant, size, icon, title, description, action, secondaryAction, className, children, ...props }: EmptyStateProps): react_jsx_runtime.JSX.Element;
1159
+ declare function EmptyStateMedia({ className, ...props }: EmptyStateMediaProps): react_jsx_runtime.JSX.Element;
1160
+ declare function EmptyStateTitle({ asChild, className, ...props }: EmptyStateTitleProps): react_jsx_runtime.JSX.Element;
1161
+ declare function EmptyStateDescription({ asChild, className, ...props }: EmptyStateDescriptionProps): react_jsx_runtime.JSX.Element;
1162
+ declare function EmptyStateActions({ asChild, className, ...props }: EmptyStateActionsProps): react_jsx_runtime.JSX.Element;
1163
+
1164
+ declare const statVariants: (props?: ({
1165
+ variant?: "flat" | "elevated" | "accent" | null | undefined;
1166
+ size?: "sm" | "md" | "lg" | null | undefined;
1167
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1168
+ type Trend = 'up' | 'down' | 'flat';
1169
+ type Sentiment = 'positive' | 'negative' | 'neutral';
1170
+ interface StatProps extends React.ComponentProps<'div'>, VariantProps<typeof statVariants> {
1171
+ /** Small, muted label above the value. */
1172
+ label?: ReactNode;
1173
+ /** The metric, pre-formatted by the consumer (e.g. "3,204", "SAR 1.2M"). */
1174
+ value?: ReactNode;
1175
+ /** Change text — include the sign (e.g. "+12.5%") so AT conveys direction. */
1176
+ change?: ReactNode;
1177
+ /** Muted context beside the change (e.g. "vs last month"). */
1178
+ changeLabel?: ReactNode;
1179
+ /** Arrow direction: up → CaretUp, down → CaretDown, flat → Minus. */
1180
+ trend?: Trend;
1181
+ /** Change color. Omitted → derived from `trend`. Explicit always wins. */
1182
+ sentiment?: Sentiment;
1183
+ /** Optional icon at the inline-end of the label row (decorative). */
1184
+ icon?: ReactNode;
1185
+ }
1186
+ type StatLabelProps = React.ComponentProps<'div'>;
1187
+ type StatValueProps = React.ComponentProps<'div'>;
1188
+ interface StatChangeProps extends React.ComponentProps<'div'> {
1189
+ trend?: Trend;
1190
+ sentiment?: Sentiment;
1191
+ }
1192
+ declare function Stat({ variant, size, label, value, change, changeLabel, trend, sentiment, icon, className, children, ...props }: StatProps): react_jsx_runtime.JSX.Element;
1193
+ declare function StatLabel({ className, ...props }: StatLabelProps): react_jsx_runtime.JSX.Element;
1194
+ declare function StatValue({ className, ...props }: StatValueProps): react_jsx_runtime.JSX.Element;
1195
+ declare function StatChange({ trend, sentiment, className, children, ...props }: StatChangeProps): react_jsx_runtime.JSX.Element;
1196
+
1197
+ declare const statGroupVariants: (props?: ({
1198
+ orientation?: "horizontal" | "vertical" | null | undefined;
1199
+ gap?: "sm" | "md" | "lg" | null | undefined;
1200
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1201
+ interface StatGroupProps extends React.ComponentProps<'div'>, VariantProps<typeof statGroupVariants> {
1202
+ /**
1203
+ * Fixed column count for the horizontal grid (collapses to one column on
1204
+ * narrow screens). Omit for an auto-fit responsive grid.
1205
+ */
1206
+ columns?: number;
1207
+ }
1208
+ declare function StatGroup({ orientation, gap, columns, className, style, ...props }: StatGroupProps): react_jsx_runtime.JSX.Element;
1209
+
1210
+ declare const popoverContentVariants: (props?: ({
1211
+ size?: "sm" | "md" | null | undefined;
1212
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1213
+ type PopoverProps = React.ComponentProps<typeof Popover$1.Root>;
1214
+ type PopoverTriggerProps = React.ComponentProps<typeof Popover$1.Trigger>;
1215
+ type PopoverAnchorProps = React.ComponentProps<typeof Popover$1.Anchor>;
1216
+ interface PopoverContentProps extends Omit<React.ComponentProps<typeof Popover$1.Content>, 'asChild'>, VariantProps<typeof popoverContentVariants> {
1217
+ /** Show a small arrow pointing at the trigger. Defaults to false. */
1218
+ arrow?: boolean;
1219
+ }
1220
+ interface PopoverCloseProps extends React.ComponentProps<typeof Popover$1.Close> {
1221
+ /**
1222
+ * Localized label for the default corner-X button. Only used when no
1223
+ * `children` (and no `asChild`) are provided. Defaults to `"Close"`.
1224
+ */
1225
+ closeLabel?: string;
1226
+ }
1227
+ declare function Popover(props: PopoverProps): react_jsx_runtime.JSX.Element;
1228
+ declare function PopoverTrigger({ className, ...props }: PopoverTriggerProps): react_jsx_runtime.JSX.Element;
1229
+ declare function PopoverAnchor(props: PopoverAnchorProps): react_jsx_runtime.JSX.Element;
1230
+ declare function PopoverContent({ size, arrow, sideOffset, className, children, ...props }: PopoverContentProps): react_jsx_runtime.JSX.Element;
1231
+ declare function PopoverClose({ className, children, closeLabel, asChild, ...props }: PopoverCloseProps): react_jsx_runtime.JSX.Element;
1232
+
1233
+ interface SidebarContextValue {
1234
+ /** Desktop collapse state, derived from `open`. */
1235
+ state: 'expanded' | 'collapsed';
1236
+ /** Desktop expanded (true) / collapsed-to-rail (false). */
1237
+ open: boolean;
1238
+ setOpen: (open: boolean) => void;
1239
+ /** Mobile off-canvas drawer open state. */
1240
+ openMobile: boolean;
1241
+ setOpenMobile: (open: boolean) => void;
1242
+ /** True below the provider's `mobileBreakpoint`. */
1243
+ isMobile: boolean;
1244
+ /** Toggles `openMobile` on mobile, else `open`. */
1245
+ toggleSidebar: () => void;
1246
+ }
1247
+ declare function useSidebar(): SidebarContextValue;
1248
+
1249
+ interface SidebarProviderProps extends React.ComponentProps<'div'> {
1250
+ /** Uncontrolled initial desktop state. Default true (expanded). */
1251
+ defaultOpen?: boolean;
1252
+ /** Controlled desktop open state. */
1253
+ open?: boolean;
1254
+ onOpenChange?: (open: boolean) => void;
1255
+ /** Viewport width (px) below which the mobile Drawer engages. Default 768. */
1256
+ mobileBreakpoint?: number;
1257
+ /** Register Cmd/Ctrl+B to toggle. Default true. */
1258
+ keyboardShortcut?: boolean;
1259
+ }
1260
+ declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange, mobileBreakpoint, keyboardShortcut, className, style, children, ...props }: SidebarProviderProps): react_jsx_runtime.JSX.Element;
1261
+ interface SidebarProps extends React.ComponentProps<'div'> {
1262
+ variant?: 'sidebar' | 'floating' | 'inset';
1263
+ collapsible?: 'icon' | 'offcanvas' | 'none';
1264
+ /** Logical side; flips with dir. Default 'start'. */
1265
+ side?: 'start' | 'end';
1266
+ }
1267
+ declare function Sidebar({ variant, collapsible, side, className, children, 'aria-label': ariaLabel, ...props }: SidebarProps): react_jsx_runtime.JSX.Element;
1268
+ interface SidebarTriggerProps extends React.ComponentProps<'button'> {
1269
+ asChild?: boolean;
1270
+ }
1271
+ declare function SidebarTrigger({ asChild, className, onClick, children, 'aria-label': ariaLabel, ...props }: SidebarTriggerProps): react_jsx_runtime.JSX.Element;
1272
+ declare function SidebarRail({ className, 'aria-label': ariaLabel, ...props }: React.ComponentProps<'button'>): react_jsx_runtime.JSX.Element;
1273
+ interface SidebarInsetProps extends React.ComponentProps<'main'> {
1274
+ asChild?: boolean;
1275
+ }
1276
+ declare function SidebarInset({ asChild, className, ...props }: SidebarInsetProps): react_jsx_runtime.JSX.Element;
1277
+ type SidebarSectionProps = React.ComponentProps<'div'> & {
1278
+ asChild?: boolean;
1279
+ };
1280
+ declare function SidebarHeader({ asChild, className, ...props }: SidebarSectionProps): react_jsx_runtime.JSX.Element;
1281
+ declare function SidebarContent({ asChild, className, ...props }: SidebarSectionProps): react_jsx_runtime.JSX.Element;
1282
+ declare function SidebarFooter({ asChild, className, ...props }: SidebarSectionProps): react_jsx_runtime.JSX.Element;
1283
+ declare function SidebarSeparator({ className, ...props }: React.ComponentProps<'hr'>): react_jsx_runtime.JSX.Element;
1284
+
1285
+ /**
1286
+ * True when the viewport is narrower than `breakpoint`. SSR-safe: returns
1287
+ * `false` until the mount effect runs, so the desktop layout renders first
1288
+ * and the mobile Drawer (a client-only overlay) only engages after hydration.
1289
+ */
1290
+ declare function useIsMobile(breakpoint?: number): boolean;
1291
+
1292
+ type SidebarGroupDivProps = React.ComponentProps<'div'> & {
1293
+ asChild?: boolean;
1294
+ };
1295
+ declare function SidebarGroup({ asChild, className, ...props }: SidebarGroupDivProps): react_jsx_runtime.JSX.Element;
1296
+ declare function SidebarGroupLabel({ asChild, className, ...props }: SidebarGroupDivProps): react_jsx_runtime.JSX.Element;
1297
+ interface SidebarGroupActionProps extends React.ComponentProps<'button'> {
1298
+ asChild?: boolean;
1299
+ }
1300
+ declare function SidebarGroupAction({ asChild, className, ...props }: SidebarGroupActionProps): react_jsx_runtime.JSX.Element;
1301
+ declare function SidebarGroupContent({ asChild, className, ...props }: SidebarGroupDivProps): react_jsx_runtime.JSX.Element;
1302
+
1303
+ declare function SidebarMenu({ className, ...props }: React.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
1304
+ declare function SidebarMenuItem({ className, ...props }: React.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
1305
+ declare const sidebarMenuButtonVariants: (props?: ({
1306
+ size?: "sm" | "md" | "lg" | null | undefined;
1307
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1308
+ interface SidebarMenuButtonProps extends React.ComponentProps<'button'>, VariantProps<typeof sidebarMenuButtonVariants> {
1309
+ asChild?: boolean;
1310
+ isActive?: boolean;
1311
+ /** Tooltip content shown only when the rail is collapsed (desktop). */
1312
+ tooltip?: React.ReactNode;
1313
+ }
1314
+ declare function SidebarMenuButton({ asChild, isActive, size, tooltip, className, ...props }: SidebarMenuButtonProps): react_jsx_runtime.JSX.Element;
1315
+ interface SidebarMenuActionProps extends React.ComponentProps<'button'> {
1316
+ asChild?: boolean;
1317
+ /** Reveal the action only on row hover/focus (CSS-driven). */
1318
+ showOnHover?: boolean;
1319
+ }
1320
+ declare function SidebarMenuAction({ asChild, showOnHover, className, ...props }: SidebarMenuActionProps): react_jsx_runtime.JSX.Element;
1321
+ declare function SidebarMenuBadge({ className, ...props }: React.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
1322
+ interface SidebarMenuSkeletonProps extends React.ComponentProps<'div'> {
1323
+ showIcon?: boolean;
1324
+ }
1325
+ declare function SidebarMenuSkeleton({ showIcon, className, ...props }: SidebarMenuSkeletonProps): react_jsx_runtime.JSX.Element;
1326
+ declare function SidebarMenuSub({ className, ...props }: React.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
1327
+ declare function SidebarMenuSubItem({ className, ...props }: React.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
1328
+ declare const sidebarMenuSubButtonVariants: (props?: ({
1329
+ size?: "sm" | "md" | null | undefined;
1330
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1331
+ interface SidebarMenuSubButtonProps extends React.ComponentProps<'a'>, VariantProps<typeof sidebarMenuSubButtonVariants> {
1332
+ asChild?: boolean;
1333
+ isActive?: boolean;
1334
+ }
1335
+ declare function SidebarMenuSubButton({ asChild, isActive, size, className, ...props }: SidebarMenuSubButtonProps): react_jsx_runtime.JSX.Element;
1336
+
1337
+ declare const scrollAreaVariants: (props?: ({
1338
+ orientation?: "both" | "horizontal" | "vertical" | null | undefined;
1339
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1340
+ type ScrollAreaOrientation = 'vertical' | 'horizontal' | 'both';
1341
+ interface ScrollAreaProps extends Omit<React.ComponentProps<typeof ScrollArea$1.Root>, 'asChild' | 'orientation'>, Omit<VariantProps<typeof scrollAreaVariants>, 'orientation'> {
1342
+ /** Which scrollbar(s) to render. Default `'vertical'`. */
1343
+ orientation?: ScrollAreaOrientation;
1344
+ /** Ref to the scrollable viewport — use for programmatic scrolling. */
1345
+ viewportRef?: React.Ref<HTMLDivElement>;
1346
+ /**
1347
+ * Extra props forwarded to the viewport element (use `viewportRef` for the ref).
1348
+ * To drop the extra tab stop when the scrolled content is itself fully focusable
1349
+ * (e.g. a list of links), pass `viewportProps={{ tabIndex: -1 }}`.
1350
+ */
1351
+ viewportProps?: Omit<React.ComponentProps<'div'>, 'ref'>;
1352
+ /** Names the scroll region. Warns (dev only) if neither this nor `aria-labelledby` is set. */
1353
+ 'aria-label'?: string;
1354
+ 'aria-labelledby'?: string;
1355
+ }
1356
+ /**
1357
+ * Cross-browser, design-system-styled scroll container (wraps Radix ScrollArea).
1358
+ *
1359
+ * Set the bounding size (height / max-height) on the element via `className` /
1360
+ * `style` — without a bounded size nothing scrolls, exactly like native overflow.
1361
+ * The viewport is keyboard-focusable (`tabIndex={0}`) so keyboard users can scroll
1362
+ * with the arrow / Page keys; pass `aria-label` to name the region.
1363
+ *
1364
+ * Does not support `asChild`: it is a structural wrapper composing several Radix
1365
+ * parts, and the meaningful node — the viewport — is exposed via `viewportRef`.
1366
+ */
1367
+ declare function ScrollArea({ className, orientation, type, scrollHideDelay, viewportRef, viewportProps, children, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
1368
+
1369
+ declare const menubarContentVariants: (props?: ({
1370
+ size?: "sm" | "md" | null | undefined;
1371
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1372
+ declare const menubarTriggerVariants: (props?: ({
1373
+ variant?: "outline" | "default" | null | undefined;
1374
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1375
+ type MenubarProps = React.ComponentProps<typeof Menubar$1.Root>;
1376
+ declare function Menubar({ className, ...props }: MenubarProps): react_jsx_runtime.JSX.Element;
1377
+ type MenubarMenuProps = React.ComponentProps<typeof Menubar$1.Menu>;
1378
+ declare function MenubarMenu(props: MenubarMenuProps): react_jsx_runtime.JSX.Element;
1379
+ type MenubarTriggerProps = React.ComponentProps<typeof Menubar$1.Trigger> & VariantProps<typeof menubarTriggerVariants>;
1380
+ declare function MenubarTrigger({ variant, className, ...props }: MenubarTriggerProps): react_jsx_runtime.JSX.Element;
1381
+ type MenubarContentProps = React.ComponentProps<typeof Menubar$1.Content> & VariantProps<typeof menubarContentVariants>;
1382
+ declare function MenubarContent({ size, className, sideOffset, ...props }: MenubarContentProps): react_jsx_runtime.JSX.Element;
1383
+ type MenubarItemProps = React.ComponentProps<typeof Menubar$1.Item> & {
1384
+ /** Style as a destructive action (red text, red hover). */
1385
+ destructive?: boolean;
1386
+ /** Icon rendered before the label. Sized to 1em. */
1387
+ startIcon?: ReactNode;
1388
+ /** Trailing text shown muted, e.g. a keyboard shortcut hint ("⌘K"). */
1389
+ shortcut?: ReactNode;
1390
+ };
1391
+ declare function MenubarItem({ className, destructive, startIcon, shortcut, children, ...props }: MenubarItemProps): react_jsx_runtime.JSX.Element;
1392
+ type MenubarCheckboxItemProps = React.ComponentProps<typeof Menubar$1.CheckboxItem>;
1393
+ declare function MenubarCheckboxItem({ className, children, onSelect, ...props }: MenubarCheckboxItemProps): react_jsx_runtime.JSX.Element;
1394
+ type MenubarRadioGroupProps = React.ComponentProps<typeof Menubar$1.RadioGroup>;
1395
+ declare function MenubarRadioGroup(props: MenubarRadioGroupProps): react_jsx_runtime.JSX.Element;
1396
+ type MenubarRadioItemProps = React.ComponentProps<typeof Menubar$1.RadioItem>;
1397
+ declare function MenubarRadioItem({ className, children, onSelect, ...props }: MenubarRadioItemProps): react_jsx_runtime.JSX.Element;
1398
+ type MenubarLabelProps = React.ComponentProps<typeof Menubar$1.Label>;
1399
+ declare function MenubarLabel({ className, ...props }: MenubarLabelProps): react_jsx_runtime.JSX.Element;
1400
+ type MenubarSeparatorProps = React.ComponentProps<typeof Menubar$1.Separator>;
1401
+ declare function MenubarSeparator({ className, ...props }: MenubarSeparatorProps): react_jsx_runtime.JSX.Element;
1402
+ type MenubarGroupProps = React.ComponentProps<typeof Menubar$1.Group>;
1403
+ declare function MenubarGroup(props: MenubarGroupProps): react_jsx_runtime.JSX.Element;
1404
+ type MenubarSubProps = React.ComponentProps<typeof Menubar$1.Sub>;
1405
+ declare function MenubarSub(props: MenubarSubProps): react_jsx_runtime.JSX.Element;
1406
+ type MenubarSubTriggerProps = React.ComponentProps<typeof Menubar$1.SubTrigger> & {
1407
+ startIcon?: ReactNode;
1408
+ };
1409
+ declare function MenubarSubTrigger({ className, startIcon, children, ...props }: MenubarSubTriggerProps): react_jsx_runtime.JSX.Element;
1410
+ type MenubarSubContentProps = React.ComponentProps<typeof Menubar$1.SubContent> & VariantProps<typeof menubarContentVariants>;
1411
+ declare function MenubarSubContent({ size, className, ...props }: MenubarSubContentProps): react_jsx_runtime.JSX.Element;
1412
+
1413
+ declare const timelineVariants: (props?: ({
1414
+ size?: "sm" | "md" | null | undefined;
1415
+ orientation?: "horizontal" | "vertical" | null | undefined;
1416
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1417
+ type TimelineStatus = 'default' | 'success' | 'error' | 'warning' | 'info';
1418
+ declare const timelineMarkerVariants: (props?: ({
1419
+ status?: "error" | "default" | "success" | "warning" | "info" | null | undefined;
1420
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1421
+ interface TimelineProps extends React.ComponentProps<'ol'>, VariantProps<typeof timelineVariants> {
1422
+ }
1423
+ type TimelineItemProps = React.ComponentProps<'li'>;
1424
+ interface TimelineMarkerProps extends React.ComponentProps<'span'>, VariantProps<typeof timelineMarkerVariants> {
1425
+ }
1426
+ type TimelineContentProps = React.ComponentProps<'div'>;
1427
+ type TimelineTitleProps = React.ComponentProps<'span'>;
1428
+ type TimelineDescriptionProps = React.ComponentProps<'span'>;
1429
+ type TimelineTimeProps = React.ComponentProps<'time'>;
1430
+ declare function Timeline({ size, orientation, className, ...props }: TimelineProps): react_jsx_runtime.JSX.Element;
1431
+ declare function TimelineItem({ className, ...props }: TimelineItemProps): react_jsx_runtime.JSX.Element;
1432
+ declare function TimelineMarker({ status, className, children, ...props }: TimelineMarkerProps): react_jsx_runtime.JSX.Element;
1433
+ declare function TimelineContent({ className, ...props }: TimelineContentProps): react_jsx_runtime.JSX.Element;
1434
+ declare function TimelineTitle({ className, ...props }: TimelineTitleProps): react_jsx_runtime.JSX.Element;
1435
+ declare function TimelineDescription({ className, ...props }: TimelineDescriptionProps): react_jsx_runtime.JSX.Element;
1436
+ declare function TimelineTime({ className, ...props }: TimelineTimeProps): react_jsx_runtime.JSX.Element;
1437
+
1128
1438
  type DgaRootElement = 'div' | 'main' | 'nav' | 'section' | 'article' | 'aside' | 'header' | 'footer';
1129
1439
  interface DgaProviderProps {
1130
1440
  dir?: 'ltr' | 'rtl';
@@ -1236,4 +1546,4 @@ declare function FieldMessage({ id, variant, children }: FieldMessageProps): rea
1236
1546
 
1237
1547
  declare function cn(...inputs: ClassValue[]): string;
1238
1548
 
1239
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, type AlertProps, type AlertSectionProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, Card, CardContent, CardDescription, type CardDescriptionProps, CardFooter, CardHeader, CardImage, type CardImageProps, type CardProps, type CardSectionProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, Combobox, ComboboxGroup, type ComboboxGroupProps, ComboboxItem, type ComboboxItemProps, type ComboboxProps, ComboboxSeparator, type ComboboxSeparatorProps, DatePicker, type DatePickerProps, DescriptionDetails, type DescriptionDetailsProps, DescriptionItem, type DescriptionItemProps, DescriptionList, type DescriptionListProps, DescriptionTerm, type DescriptionTermProps, DgaProvider, type DgaProviderProps, Divider, type DividerProps, Drawer, DrawerBody, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, DrawerHeader, type DrawerProps, type DrawerSectionProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, type FieldA11y, FieldMessage, type FieldMessageProps, type FileRejection, type FileStatus, FileUpload, type FileUploadProps, Input, type InputProps, Modal, ModalClose, type ModalCloseProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalFooter, ModalHeader, type ModalProps, type ModalSectionProps, ModalTitle, type ModalTitleProps, ModalTrigger, type ModalTriggerProps, NumberInput, type NumberInputProps, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Progress, type ProgressProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, type RejectionCode, Select, SelectItem, type SelectItemProps, type SelectProps, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderValue, Spinner, type SpinnerProps, Step, StepDescription, type StepDescriptionProps, StepIndicator, type StepIndicatorProps, type StepProps, type StepState, StepTitle, type StepTitleProps, Steps, type StepsProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, type ToastAction, type ToastData, type ToastOptions, type ToastPosition, type ToastStore, type ToastVariant, Toaster, type ToasterProps, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, type ToggleProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipTrigger, type TooltipTriggerProps, type UploadFile, type UseFieldA11yOptions, accordionVariants, alertVariants, avatarVariants, badgeVariants, breadcrumbVariants, buttonVariants, cardVariants, checkboxVariants, circularProgressVariants, cn, comboboxTriggerVariants, comboboxVariants, createToast, createToastStore, datePickerVariants, descriptionListVariants, dividerVariants, drawerVariants, dropdownMenuVariants, inputVariants, modalContentVariants, numberInputVariants, paginationLinkVariants, paginationVariants, progressVariants, radioGroupVariants, radioVariants, ratingVariants, selectTriggerVariants, skeletonVariants, sliderVariants, spinnerVariants, stepVariants, stepsVariants, switchVariants, tabsListVariants, tabsVariants, textareaVariants, toast, toastStore, toastVariants, toastViewportVariants, toggleGroupVariants, toggleVariants, tooltipContentVariants, useDga, useDir, useFieldA11y };
1549
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, type AlertProps, type AlertSectionProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, Card, CardContent, CardDescription, type CardDescriptionProps, CardFooter, CardHeader, CardImage, type CardImageProps, type CardProps, type CardSectionProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, Combobox, ComboboxGroup, type ComboboxGroupProps, ComboboxItem, type ComboboxItemProps, type ComboboxProps, ComboboxSeparator, type ComboboxSeparatorProps, DatePicker, type DatePickerProps, DescriptionDetails, type DescriptionDetailsProps, DescriptionItem, type DescriptionItemProps, DescriptionList, type DescriptionListProps, DescriptionTerm, type DescriptionTermProps, DgaProvider, type DgaProviderProps, Divider, type DividerProps, Drawer, DrawerBody, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, DrawerHeader, type DrawerProps, type DrawerSectionProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyState, EmptyStateActions, type EmptyStateActionsProps, EmptyStateDescription, type EmptyStateDescriptionProps, EmptyStateMedia, type EmptyStateMediaProps, type EmptyStateProps, EmptyStateTitle, type EmptyStateTitleProps, type FieldA11y, FieldMessage, type FieldMessageProps, type FileRejection, type FileStatus, FileUpload, type FileUploadProps, Input, type InputProps, Menubar, MenubarCheckboxItem, type MenubarCheckboxItemProps, MenubarContent, type MenubarContentProps, MenubarGroup, type MenubarGroupProps, MenubarItem, type MenubarItemProps, MenubarLabel, type MenubarLabelProps, MenubarMenu, type MenubarMenuProps, type MenubarProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, type MenubarRadioItemProps, MenubarSeparator, type MenubarSeparatorProps, MenubarSub, MenubarSubContent, type MenubarSubContentProps, type MenubarSubProps, MenubarSubTrigger, type MenubarSubTriggerProps, MenubarTrigger, type MenubarTriggerProps, Modal, ModalClose, type ModalCloseProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalFooter, ModalHeader, type ModalProps, type ModalSectionProps, ModalTitle, type ModalTitleProps, ModalTrigger, type ModalTriggerProps, NumberInput, type NumberInputProps, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, type RejectionCode, ScrollArea, type ScrollAreaOrientation, type ScrollAreaProps, Select, SelectItem, type SelectItemProps, type SelectProps, Sidebar, SidebarContent, type SidebarContextValue, SidebarFooter, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupDivProps, SidebarGroupLabel, SidebarHeader, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, SidebarMenuButton, type SidebarMenuButtonProps, SidebarMenuItem, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, SidebarMenuSubItem, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, type SidebarSectionProps, SidebarSeparator, SidebarTrigger, type SidebarTriggerProps, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderValue, Spinner, type SpinnerProps, Stat, StatChange, type StatChangeProps, StatGroup, type StatGroupProps, StatLabel, type StatLabelProps, type StatProps, StatValue, type StatValueProps, Step, StepDescription, type StepDescriptionProps, StepIndicator, type StepIndicatorProps, type StepProps, type StepState, StepTitle, type StepTitleProps, Steps, type StepsProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, Timeline, TimelineContent, type TimelineContentProps, TimelineDescription, type TimelineDescriptionProps, TimelineItem, type TimelineItemProps, TimelineMarker, type TimelineMarkerProps, type TimelineProps, type TimelineStatus, TimelineTime, type TimelineTimeProps, TimelineTitle, type TimelineTitleProps, type ToastAction, type ToastData, type ToastOptions, type ToastPosition, type ToastStore, type ToastVariant, Toaster, type ToasterProps, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, type ToggleProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipTrigger, type TooltipTriggerProps, type UploadFile, type UseFieldA11yOptions, accordionVariants, alertVariants, avatarVariants, badgeVariants, breadcrumbVariants, buttonVariants, cardVariants, checkboxVariants, circularProgressVariants, cn, comboboxTriggerVariants, comboboxVariants, createToast, createToastStore, datePickerVariants, descriptionListVariants, dividerVariants, drawerVariants, dropdownMenuVariants, emptyStateVariants, inputVariants, menubarContentVariants, menubarTriggerVariants, modalContentVariants, numberInputVariants, paginationLinkVariants, paginationVariants, popoverContentVariants, progressVariants, radioGroupVariants, radioVariants, ratingVariants, scrollAreaVariants, selectTriggerVariants, sidebarMenuButtonVariants, sidebarMenuSubButtonVariants, skeletonVariants, sliderVariants, spinnerVariants, statGroupVariants, statVariants, stepVariants, stepsVariants, switchVariants, tabsListVariants, tabsVariants, textareaVariants, timelineMarkerVariants, timelineVariants, toast, toastStore, toastVariants, toastViewportVariants, toggleGroupVariants, toggleVariants, tooltipContentVariants, useDga, useDir, useFieldA11y, useIsMobile, useSidebar };