teodor-new-chat-ui 4.3.467 → 4.3.469
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/features/messaging/components/chat/NewChatButton.d.ts +1 -1
- package/dist/features/ui/hooks/use-toast.d.ts +1 -1
- package/dist/features/ui/index.d.ts +17 -17
- package/dist/index.esm.js +1449 -1449
- package/dist/index.umd.js +19 -19
- package/package.json +1 -1
- /package/dist/features/ui/components/{ui/accordion.d.ts → accordion.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/alert-dialog.d.ts → alert-dialog.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/alert.d.ts → alert.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/aspect-ratio.d.ts → aspect-ratio.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/avatar.d.ts → avatar.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/badge.d.ts → badge.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/breadcrumb.d.ts → breadcrumb.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/button.d.ts → button.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/calendar.d.ts → calendar.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/card.d.ts → card.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/carousel.d.ts → carousel.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/chart.d.ts → chart.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/checkbox.d.ts → checkbox.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/collapsible.d.ts → collapsible.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/command.d.ts → command.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/context-menu.d.ts → context-menu.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/dialog.d.ts → dialog.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/drawer.d.ts → drawer.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/dropdown-menu.d.ts → dropdown-menu.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/form.d.ts → form.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/hover-card.d.ts → hover-card.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/input-otp.d.ts → input-otp.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/input.d.ts → input.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/label.d.ts → label.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/menubar.d.ts → menubar.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/navigation-menu.d.ts → navigation-menu.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/pagination.d.ts → pagination.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/popover.d.ts → popover.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/progress.d.ts → progress.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/radio-group.d.ts → radio-group.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/resizable.d.ts → resizable.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/scroll-area.d.ts → scroll-area.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/select.d.ts → select.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/separator.d.ts → separator.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/sheet.d.ts → sheet.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/sidebar.d.ts → sidebar.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/skeleton.d.ts → skeleton.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/slider.d.ts → slider.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/sonner.d.ts → sonner.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/switch.d.ts → switch.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/table.d.ts → table.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/tabs.d.ts → tabs.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/textarea.d.ts → textarea.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/toast.d.ts → toast.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/toaster.d.ts → toaster.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/toggle-group.d.ts → toggle-group.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/toggle.d.ts → toggle.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/tooltip.d.ts → tooltip.d.ts} +0 -0
- /package/dist/features/ui/components/{ui/use-toast.d.ts → use-toast.d.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ButtonProps } from "@/features/ui/components/
|
|
1
|
+
import { type ButtonProps } from "@/features/ui/components/button";
|
|
2
2
|
export interface NewChatButtonProps extends ButtonProps {
|
|
3
3
|
/**
|
|
4
4
|
* Optional text label to display next to the icon. Defaults to "New chat".
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { type ToastActionElement, type ToastProps } from "../components/
|
|
2
|
+
import { type ToastActionElement, type ToastProps } from "../components/toast";
|
|
3
3
|
type ToasterToast = ToastProps & {
|
|
4
4
|
id: string;
|
|
5
5
|
title?: React.ReactNode;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export { Button } from "./components/
|
|
2
|
-
export { Badge } from "./components/
|
|
3
|
-
export { Card, CardContent, CardDescription, CardHeader, CardTitle } from "./components/
|
|
4
|
-
export { Dialog, DialogContent, DialogHeader, DialogTitle } from "./components/
|
|
5
|
-
export { Input } from "./components/
|
|
6
|
-
export { Textarea } from "./components/
|
|
7
|
-
export { Label } from "./components/
|
|
8
|
-
export { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "./components/
|
|
9
|
-
export { Separator } from "./components/
|
|
10
|
-
export { Switch } from "./components/
|
|
11
|
-
export { Sheet, SheetContent, SheetDescription, SheetHeader, SheetTitle, SheetTrigger } from "./components/
|
|
12
|
-
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "./components/
|
|
13
|
-
export { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "./components/
|
|
14
|
-
export { ScrollArea } from "./components/
|
|
15
|
-
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from "./components/
|
|
16
|
-
export { Toaster } from "./components/
|
|
17
|
-
export { Toaster as Sonner } from "./components/
|
|
1
|
+
export { Button } from "./components/button";
|
|
2
|
+
export { Badge } from "./components/badge";
|
|
3
|
+
export { Card, CardContent, CardDescription, CardHeader, CardTitle } from "./components/card";
|
|
4
|
+
export { Dialog, DialogContent, DialogHeader, DialogTitle } from "./components/dialog";
|
|
5
|
+
export { Input } from "./components/input";
|
|
6
|
+
export { Textarea } from "./components/textarea";
|
|
7
|
+
export { Label } from "./components/label";
|
|
8
|
+
export { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "./components/select";
|
|
9
|
+
export { Separator } from "./components/separator";
|
|
10
|
+
export { Switch } from "./components/switch";
|
|
11
|
+
export { Sheet, SheetContent, SheetDescription, SheetHeader, SheetTitle, SheetTrigger } from "./components/sheet";
|
|
12
|
+
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "./components/tooltip";
|
|
13
|
+
export { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "./components/dropdown-menu";
|
|
14
|
+
export { ScrollArea } from "./components/scroll-area";
|
|
15
|
+
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from "./components/command";
|
|
16
|
+
export { Toaster } from "./components/toaster";
|
|
17
|
+
export { Toaster as Sonner } from "./components/sonner";
|