From f5e068346c10cccaa0efa0f34072d390068d6a75 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Sat, 14 Mar 2026 12:47:02 +0400 Subject: [PATCH] chore: formatting --- src/components/ui/alert.tsx | 2 +- src/components/ui/card.tsx | 8 ++++---- src/components/ui/chart.tsx | 4 ++-- src/components/ui/command.tsx | 6 +++--- src/components/ui/dropdown-menu.tsx | 10 +++++----- src/components/ui/highlight.tsx | 4 ++-- src/components/ui/popover.tsx | 2 +- src/components/ui/table.tsx | 6 +++--- src/components/ui/tabs.tsx | 16 ++++++++-------- src/components/ui/tooltip.tsx | 2 +- src/lib/slot.tsx | 4 ++-- 11 files changed, 32 insertions(+), 32 deletions(-) diff --git a/src/components/ui/alert.tsx b/src/components/ui/alert.tsx index ef36696..fd125a5 100644 --- a/src/components/ui/alert.tsx +++ b/src/components/ui/alert.tsx @@ -63,4 +63,4 @@ function AlertDescription({ ); } -export { Alert, AlertTitle, AlertDescription }; +export { Alert, AlertDescription, AlertTitle }; diff --git a/src/components/ui/card.tsx b/src/components/ui/card.tsx index 6a9962e..9a3c965 100644 --- a/src/components/ui/card.tsx +++ b/src/components/ui/card.tsx @@ -81,10 +81,10 @@ function CardFooter({ className, ...props }: React.ComponentProps<"div">) { export { Card, - CardHeader, - CardFooter, - CardTitle, CardAction, - CardDescription, CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, }; diff --git a/src/components/ui/chart.tsx b/src/components/ui/chart.tsx index 0f50bcd..326d489 100644 --- a/src/components/ui/chart.tsx +++ b/src/components/ui/chart.tsx @@ -373,9 +373,9 @@ function getPayloadConfigFromPayload( export { ChartContainer, - ChartTooltip, - ChartTooltipContent, ChartLegend, ChartLegendContent, ChartStyle, + ChartTooltip, + ChartTooltipContent, }; diff --git a/src/components/ui/command.tsx b/src/components/ui/command.tsx index b4f9c26..7c18248 100644 --- a/src/components/ui/command.tsx +++ b/src/components/ui/command.tsx @@ -167,11 +167,11 @@ function CommandShortcut({ export { Command, CommandDialog, - CommandInput, - CommandList, CommandEmpty, CommandGroup, + CommandInput, CommandItem, - CommandShortcut, + CommandList, CommandSeparator, + CommandShortcut, }; diff --git a/src/components/ui/dropdown-menu.tsx b/src/components/ui/dropdown-menu.tsx index ad16229..76418d8 100644 --- a/src/components/ui/dropdown-menu.tsx +++ b/src/components/ui/dropdown-menu.tsx @@ -240,18 +240,18 @@ function DropdownMenuSubContent({ export { DropdownMenu, - DropdownMenuPortal, - DropdownMenuTrigger, + DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, - DropdownMenuLabel, DropdownMenuItem, - DropdownMenuCheckboxItem, + DropdownMenuLabel, + DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, - DropdownMenuSubTrigger, DropdownMenuSubContent, + DropdownMenuSubTrigger, + DropdownMenuTrigger, }; diff --git a/src/components/ui/highlight.tsx b/src/components/ui/highlight.tsx index bd19448..fe1d202 100644 --- a/src/components/ui/highlight.tsx +++ b/src/components/ui/highlight.tsx @@ -634,7 +634,7 @@ function HighlightItem({ export { Highlight, HighlightItem, - useHighlight, - type HighlightProps, type HighlightItemProps, + type HighlightProps, + useHighlight, }; diff --git a/src/components/ui/popover.tsx b/src/components/ui/popover.tsx index 3c3cb96..f579af8 100644 --- a/src/components/ui/popover.tsx +++ b/src/components/ui/popover.tsx @@ -45,4 +45,4 @@ function PopoverAnchor({ return ; } -export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor }; +export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger }; diff --git a/src/components/ui/table.tsx b/src/components/ui/table.tsx index 3f570d8..c9d2f93 100644 --- a/src/components/ui/table.tsx +++ b/src/components/ui/table.tsx @@ -100,11 +100,11 @@ function TableCaption({ export { Table, - TableHeader, TableBody, + TableCaption, + TableCell, TableFooter, TableHead, + TableHeader, TableRow, - TableCell, - TableCaption, }; diff --git a/src/components/ui/tabs.tsx b/src/components/ui/tabs.tsx index dc56ffb..d8a8f53 100644 --- a/src/components/ui/tabs.tsx +++ b/src/components/ui/tabs.tsx @@ -200,17 +200,17 @@ function TabsContents(props: TabsContentsProps) { export { Tabs, + TabsContent, + type TabsContentProps, + TabsContents, + type TabsContentsProps, TabsHighlight, TabsHighlightItem, - TabsList, - TabsTrigger, - TabsContent, - TabsContents, - type TabsProps, - type TabsHighlightProps, type TabsHighlightItemProps, + type TabsHighlightProps, + TabsList, type TabsListProps, + type TabsProps, + TabsTrigger, type TabsTriggerProps, - type TabsContentProps, - type TabsContentsProps, }; diff --git a/src/components/ui/tooltip.tsx b/src/components/ui/tooltip.tsx index 52f9ac3..b25a378 100644 --- a/src/components/ui/tooltip.tsx +++ b/src/components/ui/tooltip.tsx @@ -70,4 +70,4 @@ function TooltipContent({ ); } -export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }; +export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger }; diff --git a/src/lib/slot.tsx b/src/lib/slot.tsx index 05c6b7f..0be9550 100644 --- a/src/lib/slot.tsx +++ b/src/lib/slot.tsx @@ -90,9 +90,9 @@ function Slot({ } export { + type AnyProps, + type DOMMotionProps, Slot, type SlotProps, type WithAsChild, - type DOMMotionProps, - type AnyProps, };