@medway-ui/core 1.9.4 → 1.10.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.mts CHANGED
@@ -1,13 +1,16 @@
1
- import * as class_variance_authority_types from 'class-variance-authority/types';
2
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import * as class_variance_authority_types from 'class-variance-authority/types';
3
3
  import * as React from 'react';
4
4
  import { VariantProps } from 'class-variance-authority';
5
- import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Progress as Progress$1, Collapsible as Collapsible$1, Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Tabs as Tabs$1, Separator as Separator$1, Tooltip as Tooltip$1 } from 'radix-ui';
5
+ import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Progress as Progress$1, Checkbox as Checkbox$1, Collapsible as Collapsible$1, Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Tabs as Tabs$1, Separator as Separator$1, Tooltip as Tooltip$1, Switch as Switch$1 } from 'radix-ui';
6
6
 
7
7
  interface AlertProps extends React.ComponentProps<"div"> {
8
8
  variant?: "regular" | "emphasis" | "success" | "warning" | "error";
9
9
  onClose?: () => void;
10
10
  }
11
+ declare const alertVariants: (props?: ({
12
+ variant?: "regular" | "emphasis" | "success" | "warning" | "error" | null | undefined;
13
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
11
14
  declare function Alert({ className, variant, onClose, children, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
12
15
  declare function AlertContainer({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
13
16
  declare function AlertContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
@@ -54,19 +57,22 @@ declare const badgeVariants: (props?: ({
54
57
  variant?: "regular" | "freemium" | null | undefined;
55
58
  size?: "sm" | "md" | "lg" | "xl" | null | undefined;
56
59
  } & class_variance_authority_types.ClassProp) | undefined) => string;
57
- declare function Badge({ className, variant, size, icon, asChild, ...props }: React.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
60
+ interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
58
61
  asChild?: boolean;
59
62
  icon?: React.ReactNode;
60
- }): react_jsx_runtime.JSX.Element;
63
+ }
64
+ declare function Badge({ className, variant, size, icon, asChild, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
61
65
 
62
66
  declare function Breadcrumb({ ...props }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
63
67
  declare function BreadcrumbList({ className, ...props }: React.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
64
- declare function BreadcrumbItem({ className, icon, children, ...props }: React.ComponentProps<"li"> & {
68
+ interface BreadcrumbItemProps extends React.ComponentProps<"li"> {
65
69
  icon?: React.ReactNode;
66
- }): react_jsx_runtime.JSX.Element;
67
- declare function BreadcrumbLink({ asChild, className, ...props }: React.ComponentProps<"a"> & {
70
+ }
71
+ declare function BreadcrumbItem({ className, icon, children, ...props }: BreadcrumbItemProps): react_jsx_runtime.JSX.Element;
72
+ interface BreadcrumbLinkProps extends React.ComponentProps<"a"> {
68
73
  asChild?: boolean;
69
- }): react_jsx_runtime.JSX.Element;
74
+ }
75
+ declare function BreadcrumbLink({ asChild, className, ...props }: BreadcrumbLinkProps): react_jsx_runtime.JSX.Element;
70
76
  declare function BreadcrumbPage({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
71
77
  declare function BreadcrumbSeparator({ children, className, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
72
78
  declare function BreadcrumbEllipsis({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
@@ -131,6 +137,15 @@ declare function CardWeekText({ className, children, isTime, ...props }: CardWee
131
137
  declare function CardWeekStatus({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
132
138
  declare function CardWeekActions({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
133
139
 
140
+ declare const checkboxVariants: (props?: ({
141
+ variant?: "regular" | null | undefined;
142
+ size?: "sm" | "md" | "lg" | null | undefined;
143
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
144
+ interface CheckboxProps extends React.ComponentProps<typeof Checkbox$1.Root>, VariantProps<typeof checkboxVariants> {
145
+ uncheckIcon?: boolean;
146
+ }
147
+ declare function Checkbox({ className, size, variant, uncheckIcon, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
148
+
134
149
  type AnimationType = "accordion" | "fade";
135
150
  interface CollapsibleContentProps extends React.ComponentProps<typeof Collapsible$1.Content> {
136
151
  className?: string;
@@ -147,24 +162,28 @@ declare function DialogTrigger({ ...props }: React.ComponentProps<typeof Dialog$
147
162
  declare function DialogPortal({ ...props }: React.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
148
163
  declare function DialogClose({ ...props }: React.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
149
164
  declare function DialogOverlay({ className, ...props }: React.ComponentProps<typeof Dialog$1.Overlay>): react_jsx_runtime.JSX.Element;
150
- declare function DialogContainer({ className, overlayClassName, children, showCloseButton, ...props }: React.ComponentProps<typeof Dialog$1.Content> & {
165
+ interface DialogContainerProps extends React.ComponentProps<typeof Dialog$1.Content> {
151
166
  showCloseButton?: boolean;
152
167
  overlayClassName?: string;
153
- }): react_jsx_runtime.JSX.Element;
168
+ }
169
+ declare function DialogContainer({ className, overlayClassName, children, showCloseButton, ...props }: DialogContainerProps): react_jsx_runtime.JSX.Element;
154
170
  declare function DialogContent({ className, children, }: {
155
171
  className?: string;
156
172
  children: React.ReactNode;
157
173
  }): react_jsx_runtime.JSX.Element;
158
- declare function DialogHeader({ className, separator, ...props }: React.ComponentProps<"div"> & {
174
+ interface DialogHeaderProps extends React.ComponentProps<"div"> {
159
175
  separator?: boolean;
160
- }): react_jsx_runtime.JSX.Element;
161
- declare function DialogFooter({ className, separator, ...props }: React.ComponentProps<"div"> & {
176
+ }
177
+ declare function DialogHeader({ className, separator, ...props }: DialogHeaderProps): react_jsx_runtime.JSX.Element;
178
+ interface DialogFooterProps extends React.ComponentProps<"div"> {
162
179
  separator?: boolean;
163
- }): react_jsx_runtime.JSX.Element;
164
- declare function DialogTitle({ className, iconLeft, iconRight, children, ...props }: React.ComponentProps<typeof Dialog$1.Title> & {
180
+ }
181
+ declare function DialogFooter({ className, separator, ...props }: DialogFooterProps): react_jsx_runtime.JSX.Element;
182
+ interface DialogTitleProps extends React.ComponentProps<typeof Dialog$1.Title> {
165
183
  iconLeft?: React.ReactNode;
166
184
  iconRight?: React.ReactNode;
167
- }): react_jsx_runtime.JSX.Element;
185
+ }
186
+ declare function DialogTitle({ className, iconLeft, iconRight, children, ...props }: DialogTitleProps): react_jsx_runtime.JSX.Element;
168
187
  declare function DialogDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
169
188
 
170
189
  declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime.JSX.Element;
@@ -179,9 +198,10 @@ declare function DropdownMenuItem({ className, inset, variant, ...props }: React
179
198
  declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof DropdownMenu$1.CheckboxItem>): react_jsx_runtime.JSX.Element;
180
199
  declare function DropdownMenuRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenu$1.RadioGroup>): react_jsx_runtime.JSX.Element;
181
200
  declare function DropdownMenuRadioItem({ className, children, ...props }: React.ComponentProps<typeof DropdownMenu$1.RadioItem>): react_jsx_runtime.JSX.Element;
182
- declare function DropdownMenuLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenu$1.Label> & {
201
+ interface DropdownMenuLabelProps extends React.ComponentProps<typeof DropdownMenu$1.Label> {
183
202
  inset?: boolean;
184
- }): react_jsx_runtime.JSX.Element;
203
+ }
204
+ declare function DropdownMenuLabel({ className, inset, ...props }: DropdownMenuLabelProps): react_jsx_runtime.JSX.Element;
185
205
  declare function DropdownMenuSeparator({ className, ...props }: React.ComponentProps<typeof DropdownMenu$1.Separator>): react_jsx_runtime.JSX.Element;
186
206
  declare function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
187
207
  declare function DropdownMenuSub({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Sub>): react_jsx_runtime.JSX.Element;
@@ -250,6 +270,7 @@ declare function PaginationNext({ className, size, variant, ...props }: React.Co
250
270
  declare function PaginationEllipsis({ className, size, ...props }: React.ComponentProps<"span"> & {
251
271
  size?: "sm" | "md" | "lg";
252
272
  }): react_jsx_runtime.JSX.Element;
273
+ declare function calculatePageNumbers(currentPage: number, totalPages: number, maxVisible?: number): number[];
253
274
  declare function Pagination({ currentPage, totalPages, maxVisibleItems, onPageChange, itemsPerPage, totalItems, className, responsive, size, }: PaginationProps): react_jsx_runtime.JSX.Element;
254
275
 
255
276
  declare const radioGroupVariants: (props?: ({
@@ -340,12 +361,25 @@ interface SegmentControlTriggerProps extends React.ComponentProps<typeof Tabs$1.
340
361
  icon?: React.ReactNode;
341
362
  badge?: number | string;
342
363
  }
364
+ declare const segmentControlTriggerVariants: (props?: ({
365
+ size?: "sm" | "md" | "lg" | null | undefined;
366
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
343
367
  declare function SegmentControlTrigger({ className, icon, badge, children, ...props }: SegmentControlTriggerProps): react_jsx_runtime.JSX.Element;
344
368
  declare function SegmentControlContent({ className, ...props }: React.ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
345
369
 
346
370
  declare function Separator({ className, orientation, decorative, ...props }: React.ComponentProps<typeof Separator$1.Root>): react_jsx_runtime.JSX.Element;
347
371
 
348
372
  declare function Sheet({ ...props }: React.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
373
+ declare function SheetTrigger({ ...props }: React.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
374
+ declare function SheetClose({ ...props }: React.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
375
+ interface SheetContentProps extends React.ComponentProps<typeof Dialog$1.Content> {
376
+ side?: "top" | "right" | "bottom" | "left";
377
+ }
378
+ declare function SheetContent({ className, children, side, ...props }: SheetContentProps): react_jsx_runtime.JSX.Element;
379
+ declare function SheetHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
380
+ declare function SheetFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
381
+ declare function SheetTitle({ className, ...props }: React.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
382
+ declare function SheetDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
349
383
 
350
384
  declare function TooltipProvider({ delayDuration, ...props }: React.ComponentProps<typeof Tooltip$1.Provider>): react_jsx_runtime.JSX.Element;
351
385
  declare function Tooltip({ ...props }: React.ComponentProps<typeof Tooltip$1.Root>): react_jsx_runtime.JSX.Element;
@@ -434,6 +468,15 @@ declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...p
434
468
 
435
469
  declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
436
470
 
471
+ declare const switchVariants: (props?: ({
472
+ size?: "sm" | "md" | "lg" | null | undefined;
473
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
474
+ interface SwitchProps extends React.ComponentProps<typeof Switch$1.Root>, VariantProps<typeof switchVariants> {
475
+ checkedIcon?: React.ReactNode;
476
+ uncheckedIcon?: React.ReactNode;
477
+ }
478
+ declare function Switch({ className, size, checkedIcon, uncheckedIcon, checked, defaultChecked, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
479
+
437
480
  interface SwitcherProps {
438
481
  children: React.ReactNode;
439
482
  value?: string;
@@ -509,6 +552,10 @@ declare const tabsTriggerVariants: (props?: ({
509
552
  variant?: "header" | "standalone" | null | undefined;
510
553
  size?: "md" | "lg" | null | undefined;
511
554
  } & class_variance_authority_types.ClassProp) | undefined) => string;
555
+ declare const tabsContentVariants: (props?: ({
556
+ variant?: "header" | "standalone" | null | undefined;
557
+ size?: "md" | "lg" | null | undefined;
558
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
512
559
  declare function Tabs({ className, variant, size, responsive, children, ...props }: TabsProps): react_jsx_runtime.JSX.Element;
513
560
  declare function TabsList({ className, children, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
514
561
  declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
@@ -526,11 +573,12 @@ declare function Tag({ className, variant, asChild, icon, children, ...props }:
526
573
  declare const tileVariants: (props?: ({
527
574
  variant?: "regular" | "go" | "cm" | "cir" | "ped" | "prev" | null | undefined;
528
575
  } & class_variance_authority_types.ClassProp) | undefined) => string;
529
- declare function Tile({ className, variant, asChild, disabled, inactive, ...props }: React.ComponentProps<"div"> & React.ComponentProps<"div"> & VariantProps<typeof tileVariants> & {
576
+ interface TileProps extends React.ComponentProps<"div">, VariantProps<typeof tileVariants> {
530
577
  asChild?: boolean;
531
578
  disabled?: boolean;
532
579
  inactive?: boolean;
533
- }): react_jsx_runtime.JSX.Element;
580
+ }
581
+ declare function Tile({ className, variant, asChild, disabled, inactive, ...props }: TileProps): react_jsx_runtime.JSX.Element;
534
582
  declare function TileIcon({ className, icon, ...props }: React.ComponentProps<"div"> & {
535
583
  icon?: React.ReactNode;
536
584
  }): react_jsx_runtime.JSX.Element;
@@ -539,4 +587,4 @@ declare function TileDescription({ className, ...props }: React.ComponentProps<"
539
587
 
540
588
  declare function useIsMobile(): boolean;
541
589
 
542
- export { Alert, AlertActions, AlertButton, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, CardWeek, CardWeekActions, CardWeekBreadcrumb, CardWeekContainer, CardWeekContent, CardWeekDescription, CardWeekFooter, CardWeekHeader, CardWeekProgress, CardWeekProgressCircle, CardWeekStatus, CardWeekTags, CardWeekText, CardWeekTitle, Collapsible, CollapsibleContent, CollapsibleTrigger, Dialog, DialogClose, DialogContainer, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, Label, Loading, Logo, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaginationRoot, Progress, ProgressCircle, RadioGroup, RadioGroupItem, Ranking, RankingAssigneeGroup, RankingAssigneeItem, RankingAssigneeLabel, RankingAssigneesColumn, RankingButton, RankingItem, RankingNumber, RankingPercentage, RankingPriority, RankingSpecialty, RankingSuperFocus, RankingTopic, RankingTopicColumn, RankingTopicContent, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, SegmentControlTrigger, Separator, Sheet, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switcher, SwitcherContent, SwitcherFooter, SwitcherGroup, SwitcherItem, SwitcherSeparator, SwitcherTrigger, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Tile, TileDescription, TileIcon, TileTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, tabsListVariants, tabsTriggerVariants, tagVariants, useIsMobile, useSidebar, useTabsContext };
590
+ export { Alert, AlertActions, AlertButton, type AlertButtonProps, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, type AlertProps, AlertTitle, type AnimationType, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CardWeek, CardWeekActions, CardWeekBreadcrumb, type CardWeekBreadcrumbProps, CardWeekContainer, CardWeekContent, CardWeekDescription, CardWeekFooter, CardWeekHeader, CardWeekProgress, CardWeekProgressCircle, type CardWeekProps, CardWeekStatus, CardWeekTags, CardWeekText, type CardWeekTextProps, CardWeekTitle, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, Dialog, DialogClose, DialogContainer, type DialogContainerProps, DialogContent, DialogDescription, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, Label, type LabelProps, Loading, type LoadingProps, Logo, type LogoProps, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationProps, PaginationRoot, Progress, ProgressCircle, type ProgressCircleProps, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Ranking, RankingAssigneeGroup, type RankingAssigneeGroupProps, RankingAssigneeItem, type RankingAssigneeItemProps, RankingAssigneeLabel, type RankingAssigneeLabelProps, RankingAssigneesColumn, type RankingAssigneesColumnProps, RankingButton, type RankingButtonProps, RankingItem, type RankingItemProps, RankingNumber, type RankingNumberProps, RankingPercentage, type RankingPercentageProps, RankingPriority, type RankingPriorityProps, type RankingProps, RankingSpecialty, type RankingSpecialtyProps, RankingSuperFocus, type RankingSuperFocusProps, RankingTopic, RankingTopicColumn, type RankingTopicColumnProps, RankingTopicContent, type RankingTopicContentProps, type RankingTopicProps, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, type SegmentControlListProps, SegmentControlTrigger, type SegmentControlTriggerProps, Separator, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switch, type SwitchProps, Switcher, SwitcherContent, type SwitcherContentProps, SwitcherFooter, type SwitcherFooterProps, SwitcherGroup, type SwitcherGroupProps, SwitcherItem, type SwitcherItemProps, type SwitcherProps, SwitcherSeparator, SwitcherTrigger, type SwitcherTriggerProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagProps, Tile, TileDescription, TileIcon, type TileProps, TileTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertButtonVariants, alertVariants, avatarVariants, badgeVariants, buttonVariants, calculatePageNumbers, checkboxVariants, labelVariants, radioGroupVariants, segmentControlTriggerVariants, switchVariants, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tagVariants, tileVariants, useIsMobile, useSidebar, useTabsContext };
package/dist/index.d.ts CHANGED
@@ -1,13 +1,16 @@
1
- import * as class_variance_authority_types from 'class-variance-authority/types';
2
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import * as class_variance_authority_types from 'class-variance-authority/types';
3
3
  import * as React from 'react';
4
4
  import { VariantProps } from 'class-variance-authority';
5
- import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Progress as Progress$1, Collapsible as Collapsible$1, Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Tabs as Tabs$1, Separator as Separator$1, Tooltip as Tooltip$1 } from 'radix-ui';
5
+ import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Progress as Progress$1, Checkbox as Checkbox$1, Collapsible as Collapsible$1, Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Tabs as Tabs$1, Separator as Separator$1, Tooltip as Tooltip$1, Switch as Switch$1 } from 'radix-ui';
6
6
 
7
7
  interface AlertProps extends React.ComponentProps<"div"> {
8
8
  variant?: "regular" | "emphasis" | "success" | "warning" | "error";
9
9
  onClose?: () => void;
10
10
  }
11
+ declare const alertVariants: (props?: ({
12
+ variant?: "regular" | "emphasis" | "success" | "warning" | "error" | null | undefined;
13
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
11
14
  declare function Alert({ className, variant, onClose, children, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
12
15
  declare function AlertContainer({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
13
16
  declare function AlertContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
@@ -54,19 +57,22 @@ declare const badgeVariants: (props?: ({
54
57
  variant?: "regular" | "freemium" | null | undefined;
55
58
  size?: "sm" | "md" | "lg" | "xl" | null | undefined;
56
59
  } & class_variance_authority_types.ClassProp) | undefined) => string;
57
- declare function Badge({ className, variant, size, icon, asChild, ...props }: React.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
60
+ interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
58
61
  asChild?: boolean;
59
62
  icon?: React.ReactNode;
60
- }): react_jsx_runtime.JSX.Element;
63
+ }
64
+ declare function Badge({ className, variant, size, icon, asChild, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
61
65
 
62
66
  declare function Breadcrumb({ ...props }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
63
67
  declare function BreadcrumbList({ className, ...props }: React.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
64
- declare function BreadcrumbItem({ className, icon, children, ...props }: React.ComponentProps<"li"> & {
68
+ interface BreadcrumbItemProps extends React.ComponentProps<"li"> {
65
69
  icon?: React.ReactNode;
66
- }): react_jsx_runtime.JSX.Element;
67
- declare function BreadcrumbLink({ asChild, className, ...props }: React.ComponentProps<"a"> & {
70
+ }
71
+ declare function BreadcrumbItem({ className, icon, children, ...props }: BreadcrumbItemProps): react_jsx_runtime.JSX.Element;
72
+ interface BreadcrumbLinkProps extends React.ComponentProps<"a"> {
68
73
  asChild?: boolean;
69
- }): react_jsx_runtime.JSX.Element;
74
+ }
75
+ declare function BreadcrumbLink({ asChild, className, ...props }: BreadcrumbLinkProps): react_jsx_runtime.JSX.Element;
70
76
  declare function BreadcrumbPage({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
71
77
  declare function BreadcrumbSeparator({ children, className, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
72
78
  declare function BreadcrumbEllipsis({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
@@ -131,6 +137,15 @@ declare function CardWeekText({ className, children, isTime, ...props }: CardWee
131
137
  declare function CardWeekStatus({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
132
138
  declare function CardWeekActions({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
133
139
 
140
+ declare const checkboxVariants: (props?: ({
141
+ variant?: "regular" | null | undefined;
142
+ size?: "sm" | "md" | "lg" | null | undefined;
143
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
144
+ interface CheckboxProps extends React.ComponentProps<typeof Checkbox$1.Root>, VariantProps<typeof checkboxVariants> {
145
+ uncheckIcon?: boolean;
146
+ }
147
+ declare function Checkbox({ className, size, variant, uncheckIcon, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
148
+
134
149
  type AnimationType = "accordion" | "fade";
135
150
  interface CollapsibleContentProps extends React.ComponentProps<typeof Collapsible$1.Content> {
136
151
  className?: string;
@@ -147,24 +162,28 @@ declare function DialogTrigger({ ...props }: React.ComponentProps<typeof Dialog$
147
162
  declare function DialogPortal({ ...props }: React.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
148
163
  declare function DialogClose({ ...props }: React.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
149
164
  declare function DialogOverlay({ className, ...props }: React.ComponentProps<typeof Dialog$1.Overlay>): react_jsx_runtime.JSX.Element;
150
- declare function DialogContainer({ className, overlayClassName, children, showCloseButton, ...props }: React.ComponentProps<typeof Dialog$1.Content> & {
165
+ interface DialogContainerProps extends React.ComponentProps<typeof Dialog$1.Content> {
151
166
  showCloseButton?: boolean;
152
167
  overlayClassName?: string;
153
- }): react_jsx_runtime.JSX.Element;
168
+ }
169
+ declare function DialogContainer({ className, overlayClassName, children, showCloseButton, ...props }: DialogContainerProps): react_jsx_runtime.JSX.Element;
154
170
  declare function DialogContent({ className, children, }: {
155
171
  className?: string;
156
172
  children: React.ReactNode;
157
173
  }): react_jsx_runtime.JSX.Element;
158
- declare function DialogHeader({ className, separator, ...props }: React.ComponentProps<"div"> & {
174
+ interface DialogHeaderProps extends React.ComponentProps<"div"> {
159
175
  separator?: boolean;
160
- }): react_jsx_runtime.JSX.Element;
161
- declare function DialogFooter({ className, separator, ...props }: React.ComponentProps<"div"> & {
176
+ }
177
+ declare function DialogHeader({ className, separator, ...props }: DialogHeaderProps): react_jsx_runtime.JSX.Element;
178
+ interface DialogFooterProps extends React.ComponentProps<"div"> {
162
179
  separator?: boolean;
163
- }): react_jsx_runtime.JSX.Element;
164
- declare function DialogTitle({ className, iconLeft, iconRight, children, ...props }: React.ComponentProps<typeof Dialog$1.Title> & {
180
+ }
181
+ declare function DialogFooter({ className, separator, ...props }: DialogFooterProps): react_jsx_runtime.JSX.Element;
182
+ interface DialogTitleProps extends React.ComponentProps<typeof Dialog$1.Title> {
165
183
  iconLeft?: React.ReactNode;
166
184
  iconRight?: React.ReactNode;
167
- }): react_jsx_runtime.JSX.Element;
185
+ }
186
+ declare function DialogTitle({ className, iconLeft, iconRight, children, ...props }: DialogTitleProps): react_jsx_runtime.JSX.Element;
168
187
  declare function DialogDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
169
188
 
170
189
  declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime.JSX.Element;
@@ -179,9 +198,10 @@ declare function DropdownMenuItem({ className, inset, variant, ...props }: React
179
198
  declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof DropdownMenu$1.CheckboxItem>): react_jsx_runtime.JSX.Element;
180
199
  declare function DropdownMenuRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenu$1.RadioGroup>): react_jsx_runtime.JSX.Element;
181
200
  declare function DropdownMenuRadioItem({ className, children, ...props }: React.ComponentProps<typeof DropdownMenu$1.RadioItem>): react_jsx_runtime.JSX.Element;
182
- declare function DropdownMenuLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenu$1.Label> & {
201
+ interface DropdownMenuLabelProps extends React.ComponentProps<typeof DropdownMenu$1.Label> {
183
202
  inset?: boolean;
184
- }): react_jsx_runtime.JSX.Element;
203
+ }
204
+ declare function DropdownMenuLabel({ className, inset, ...props }: DropdownMenuLabelProps): react_jsx_runtime.JSX.Element;
185
205
  declare function DropdownMenuSeparator({ className, ...props }: React.ComponentProps<typeof DropdownMenu$1.Separator>): react_jsx_runtime.JSX.Element;
186
206
  declare function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
187
207
  declare function DropdownMenuSub({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Sub>): react_jsx_runtime.JSX.Element;
@@ -250,6 +270,7 @@ declare function PaginationNext({ className, size, variant, ...props }: React.Co
250
270
  declare function PaginationEllipsis({ className, size, ...props }: React.ComponentProps<"span"> & {
251
271
  size?: "sm" | "md" | "lg";
252
272
  }): react_jsx_runtime.JSX.Element;
273
+ declare function calculatePageNumbers(currentPage: number, totalPages: number, maxVisible?: number): number[];
253
274
  declare function Pagination({ currentPage, totalPages, maxVisibleItems, onPageChange, itemsPerPage, totalItems, className, responsive, size, }: PaginationProps): react_jsx_runtime.JSX.Element;
254
275
 
255
276
  declare const radioGroupVariants: (props?: ({
@@ -340,12 +361,25 @@ interface SegmentControlTriggerProps extends React.ComponentProps<typeof Tabs$1.
340
361
  icon?: React.ReactNode;
341
362
  badge?: number | string;
342
363
  }
364
+ declare const segmentControlTriggerVariants: (props?: ({
365
+ size?: "sm" | "md" | "lg" | null | undefined;
366
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
343
367
  declare function SegmentControlTrigger({ className, icon, badge, children, ...props }: SegmentControlTriggerProps): react_jsx_runtime.JSX.Element;
344
368
  declare function SegmentControlContent({ className, ...props }: React.ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
345
369
 
346
370
  declare function Separator({ className, orientation, decorative, ...props }: React.ComponentProps<typeof Separator$1.Root>): react_jsx_runtime.JSX.Element;
347
371
 
348
372
  declare function Sheet({ ...props }: React.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
373
+ declare function SheetTrigger({ ...props }: React.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
374
+ declare function SheetClose({ ...props }: React.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
375
+ interface SheetContentProps extends React.ComponentProps<typeof Dialog$1.Content> {
376
+ side?: "top" | "right" | "bottom" | "left";
377
+ }
378
+ declare function SheetContent({ className, children, side, ...props }: SheetContentProps): react_jsx_runtime.JSX.Element;
379
+ declare function SheetHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
380
+ declare function SheetFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
381
+ declare function SheetTitle({ className, ...props }: React.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
382
+ declare function SheetDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
349
383
 
350
384
  declare function TooltipProvider({ delayDuration, ...props }: React.ComponentProps<typeof Tooltip$1.Provider>): react_jsx_runtime.JSX.Element;
351
385
  declare function Tooltip({ ...props }: React.ComponentProps<typeof Tooltip$1.Root>): react_jsx_runtime.JSX.Element;
@@ -434,6 +468,15 @@ declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...p
434
468
 
435
469
  declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
436
470
 
471
+ declare const switchVariants: (props?: ({
472
+ size?: "sm" | "md" | "lg" | null | undefined;
473
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
474
+ interface SwitchProps extends React.ComponentProps<typeof Switch$1.Root>, VariantProps<typeof switchVariants> {
475
+ checkedIcon?: React.ReactNode;
476
+ uncheckedIcon?: React.ReactNode;
477
+ }
478
+ declare function Switch({ className, size, checkedIcon, uncheckedIcon, checked, defaultChecked, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
479
+
437
480
  interface SwitcherProps {
438
481
  children: React.ReactNode;
439
482
  value?: string;
@@ -509,6 +552,10 @@ declare const tabsTriggerVariants: (props?: ({
509
552
  variant?: "header" | "standalone" | null | undefined;
510
553
  size?: "md" | "lg" | null | undefined;
511
554
  } & class_variance_authority_types.ClassProp) | undefined) => string;
555
+ declare const tabsContentVariants: (props?: ({
556
+ variant?: "header" | "standalone" | null | undefined;
557
+ size?: "md" | "lg" | null | undefined;
558
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
512
559
  declare function Tabs({ className, variant, size, responsive, children, ...props }: TabsProps): react_jsx_runtime.JSX.Element;
513
560
  declare function TabsList({ className, children, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
514
561
  declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
@@ -526,11 +573,12 @@ declare function Tag({ className, variant, asChild, icon, children, ...props }:
526
573
  declare const tileVariants: (props?: ({
527
574
  variant?: "regular" | "go" | "cm" | "cir" | "ped" | "prev" | null | undefined;
528
575
  } & class_variance_authority_types.ClassProp) | undefined) => string;
529
- declare function Tile({ className, variant, asChild, disabled, inactive, ...props }: React.ComponentProps<"div"> & React.ComponentProps<"div"> & VariantProps<typeof tileVariants> & {
576
+ interface TileProps extends React.ComponentProps<"div">, VariantProps<typeof tileVariants> {
530
577
  asChild?: boolean;
531
578
  disabled?: boolean;
532
579
  inactive?: boolean;
533
- }): react_jsx_runtime.JSX.Element;
580
+ }
581
+ declare function Tile({ className, variant, asChild, disabled, inactive, ...props }: TileProps): react_jsx_runtime.JSX.Element;
534
582
  declare function TileIcon({ className, icon, ...props }: React.ComponentProps<"div"> & {
535
583
  icon?: React.ReactNode;
536
584
  }): react_jsx_runtime.JSX.Element;
@@ -539,4 +587,4 @@ declare function TileDescription({ className, ...props }: React.ComponentProps<"
539
587
 
540
588
  declare function useIsMobile(): boolean;
541
589
 
542
- export { Alert, AlertActions, AlertButton, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, CardWeek, CardWeekActions, CardWeekBreadcrumb, CardWeekContainer, CardWeekContent, CardWeekDescription, CardWeekFooter, CardWeekHeader, CardWeekProgress, CardWeekProgressCircle, CardWeekStatus, CardWeekTags, CardWeekText, CardWeekTitle, Collapsible, CollapsibleContent, CollapsibleTrigger, Dialog, DialogClose, DialogContainer, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, Label, Loading, Logo, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaginationRoot, Progress, ProgressCircle, RadioGroup, RadioGroupItem, Ranking, RankingAssigneeGroup, RankingAssigneeItem, RankingAssigneeLabel, RankingAssigneesColumn, RankingButton, RankingItem, RankingNumber, RankingPercentage, RankingPriority, RankingSpecialty, RankingSuperFocus, RankingTopic, RankingTopicColumn, RankingTopicContent, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, SegmentControlTrigger, Separator, Sheet, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switcher, SwitcherContent, SwitcherFooter, SwitcherGroup, SwitcherItem, SwitcherSeparator, SwitcherTrigger, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Tile, TileDescription, TileIcon, TileTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, tabsListVariants, tabsTriggerVariants, tagVariants, useIsMobile, useSidebar, useTabsContext };
590
+ export { Alert, AlertActions, AlertButton, type AlertButtonProps, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, type AlertProps, AlertTitle, type AnimationType, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CardWeek, CardWeekActions, CardWeekBreadcrumb, type CardWeekBreadcrumbProps, CardWeekContainer, CardWeekContent, CardWeekDescription, CardWeekFooter, CardWeekHeader, CardWeekProgress, CardWeekProgressCircle, type CardWeekProps, CardWeekStatus, CardWeekTags, CardWeekText, type CardWeekTextProps, CardWeekTitle, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, Dialog, DialogClose, DialogContainer, type DialogContainerProps, DialogContent, DialogDescription, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, Label, type LabelProps, Loading, type LoadingProps, Logo, type LogoProps, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationProps, PaginationRoot, Progress, ProgressCircle, type ProgressCircleProps, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Ranking, RankingAssigneeGroup, type RankingAssigneeGroupProps, RankingAssigneeItem, type RankingAssigneeItemProps, RankingAssigneeLabel, type RankingAssigneeLabelProps, RankingAssigneesColumn, type RankingAssigneesColumnProps, RankingButton, type RankingButtonProps, RankingItem, type RankingItemProps, RankingNumber, type RankingNumberProps, RankingPercentage, type RankingPercentageProps, RankingPriority, type RankingPriorityProps, type RankingProps, RankingSpecialty, type RankingSpecialtyProps, RankingSuperFocus, type RankingSuperFocusProps, RankingTopic, RankingTopicColumn, type RankingTopicColumnProps, RankingTopicContent, type RankingTopicContentProps, type RankingTopicProps, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, type SegmentControlListProps, SegmentControlTrigger, type SegmentControlTriggerProps, Separator, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switch, type SwitchProps, Switcher, SwitcherContent, type SwitcherContentProps, SwitcherFooter, type SwitcherFooterProps, SwitcherGroup, type SwitcherGroupProps, SwitcherItem, type SwitcherItemProps, type SwitcherProps, SwitcherSeparator, SwitcherTrigger, type SwitcherTriggerProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagProps, Tile, TileDescription, TileIcon, type TileProps, TileTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertButtonVariants, alertVariants, avatarVariants, badgeVariants, buttonVariants, calculatePageNumbers, checkboxVariants, labelVariants, radioGroupVariants, segmentControlTriggerVariants, switchVariants, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tagVariants, tileVariants, useIsMobile, useSidebar, useTabsContext };