Skip to content

Commit 1a0c2aa

Browse files
committedMar 18, 2025·
small fix
1 parent 93c1b73 commit 1a0c2aa

File tree

1 file changed

+32
-20
lines changed

1 file changed

+32
-20
lines changed
 

‎src/main.ts

+32-20
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,38 @@
1-
export { Tooltip } from '@/ui/tooltip/Tooltip';
2-
export { Alert } from '@/ui/Alert';
3-
export { AlertDialog } from '@/ui/AlertDialog';
4-
export { Badge } from '@/ui/Badge';
5-
export { Button, ButtonLink } from '@/ui/Button';
6-
export { Card } from '@/ui/Card';
1+
export { Tooltip } from "@/ui/tooltip/Tooltip"
2+
export { Alert } from "@/ui/Alert"
3+
export {
4+
AlertDialog,
5+
AlertDialogPortal,
6+
AlertDialogOverlay,
7+
AlertDialogTrigger,
8+
AlertDialogContent,
9+
AlertDialogHeader,
10+
AlertDialogFooter,
11+
AlertDialogTitle,
12+
AlertDialogDescription,
13+
AlertDialogAction,
14+
AlertDialogCancel,
15+
} from "@/ui/AlertDialog"
16+
export { Badge } from "@/ui/Badge"
17+
export { Button, ButtonLink } from "@/ui/Button"
18+
export { Card } from "@/ui/Card"
719
export {
820
Carousel,
921
CarouselPagination,
1022
CarouselProvider,
1123
CarouselContext,
1224
useCarousel,
13-
} from '@/ui/Carousel';
14-
export { Checkbox } from '@/ui/Checkbox';
15-
export { default as Column } from '@/ui/Column';
16-
export { Dialog } from '@/ui/Dialog';
17-
export { Dropdown } from '@/ui/Dropdown';
18-
export { Input } from '@/ui/Input';
19-
export { Label } from '@/ui/Label';
20-
export { RadioGroup } from '@/ui/RadioGroup';
21-
export { default as Row } from '@/ui/Row';
22-
export { Select } from '@/ui/Select';
23-
export { Switch } from '@/ui/Switch';
24-
export { Table } from '@/ui/Table';
25-
export { Tabs } from '@/ui/Tabs';
26-
export { TextArea } from '@/ui/TextArea';
25+
} from "@/ui/Carousel"
26+
export { Checkbox } from "@/ui/Checkbox"
27+
export { default as Column } from "@/ui/Column"
28+
export { Dialog } from "@/ui/Dialog"
29+
export { Dropdown } from "@/ui/Dropdown"
30+
export { Input } from "@/ui/Input"
31+
export { Label } from "@/ui/Label"
32+
export { RadioGroup } from "@/ui/RadioGroup"
33+
export { default as Row } from "@/ui/Row"
34+
export { Select } from "@/ui/Select"
35+
export { Switch } from "@/ui/Switch"
36+
export { Table } from "@/ui/Table"
37+
export { Tabs } from "@/ui/Tabs"
38+
export { TextArea } from "@/ui/TextArea"

0 commit comments

Comments
 (0)
Please sign in to comment.