Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/dashboard/src/components/CommandPalette.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,4 @@ export function CommandPalette({ open, onClose }: CommandPaletteProps) {
</div>
);
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ErrorBoundary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ export class ErrorBoundary extends Component<Props, State> {
return this.props.children;
}
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/LiveLogStream.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,3 +164,4 @@ export function LiveLogStream({ projectId, maxRows = 200, autoScroll = true }: L
</div>
);
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/auth/AuthGuard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ export function AuthGuard({ children }: { children: React.ReactNode }) {
if (!getToken()) return null;
return <>{children}</>;
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/auth/SetupGuard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ export function SetupGuard({ children }: { children: React.ReactNode }) {
if (checking) return null;
return <>{children}</>;
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ export function Avatar({ email, size = 32 }: AvatarProps) {
</div>
);
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/ConfirmDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,4 @@ export function ConfirmDialog({
</AlertDialog>
);
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/EmptyState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ export function EmptyState({ icon: Icon, title, description, action }: EmptyStat
</div>
);
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/PageHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ export function PageHeader({ title, description, action }: PageHeaderProps) {
</div>
);
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/PageSkeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ export function PageSkeleton() {
</div>
);
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/StatCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,4 @@ export function StatCard({ label, value, icon: Icon, trend, color = "default" }:
</div>
);
}

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/alert-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,4 @@ export {
AlertDialogAction,
AlertDialogCancel,
};

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ function Badge({ className, variant, ...props }: BadgeProps) {
}

export { Badge, badgeVariants };

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
Button.displayName = "Button";

export { Button, buttonVariants };

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,4 @@ const CardFooter = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDiv
CardFooter.displayName = "CardFooter";

export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent };

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/collapsible.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ const CollapsibleContent = React.forwardRef<
CollapsibleContent.displayName = CollapsiblePrimitive.Content.displayName;

export { Collapsible, CollapsibleTrigger, CollapsibleContent };

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,4 @@ export {
DialogTitle,
DialogDescription,
};

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/dropdown-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,3 +176,4 @@ export {
DropdownMenuSubTrigger,
DropdownMenuRadioGroup,
};

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
Input.displayName = "Input";

export { Input };

2 changes: 2 additions & 0 deletions apps/dashboard/src/components/ui/label.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ const Label = React.forwardRef<HTMLLabelElement, LabelProps>(({ className, ...pr
Label.displayName = "Label";

export { Label };


2 changes: 2 additions & 0 deletions apps/dashboard/src/components/ui/popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ const PopoverContent = React.forwardRef<
PopoverContent.displayName = PopoverPrimitive.Content.displayName;

export { Popover, PopoverTrigger, PopoverContent };


1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/progress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ const Progress = React.forwardRef<
Progress.displayName = ProgressPrimitive.Root.displayName;

export { Progress };

2 changes: 2 additions & 0 deletions apps/dashboard/src/components/ui/scroll-area.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,5 @@ const ScrollBar = React.forwardRef<
ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;

export { ScrollArea, ScrollBar };


2 changes: 2 additions & 0 deletions apps/dashboard/src/components/ui/select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,5 @@ export {
SelectScrollUpButton,
SelectScrollDownButton,
};


2 changes: 2 additions & 0 deletions apps/dashboard/src/components/ui/separator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ const Separator = React.forwardRef<
Separator.displayName = SeparatorPrimitive.Root.displayName;

export { Separator };


1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/sheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,4 @@ export {
SheetTitle,
SheetDescription,
};

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/skeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>)
}

export { Skeleton };

2 changes: 2 additions & 0 deletions apps/dashboard/src/components/ui/switch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ const Switch = React.forwardRef<
Switch.displayName = SwitchPrimitives.Root.displayName;

export { Switch };


1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,4 @@ const TableCaption = React.forwardRef<
TableCaption.displayName = "TableCaption";

export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption };

1 change: 1 addition & 0 deletions apps/dashboard/src/components/ui/tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ const TabsContent = React.forwardRef<
TabsContent.displayName = TabsPrimitive.Content.displayName;

export { Tabs, TabsList, TabsTrigger, TabsContent };

2 changes: 2 additions & 0 deletions apps/dashboard/src/components/ui/textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
Textarea.displayName = "Textarea";

export { Textarea };


2 changes: 2 additions & 0 deletions apps/dashboard/src/components/ui/tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ const TooltipContent = React.forwardRef<
TooltipContent.displayName = TooltipPrimitive.Content.displayName;

export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider };


Loading