@superdangerous/app-framework 4.17.5 → 4.17.7
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/package.json +3 -2
- package/ui/dist/index.d.mts +34 -2
- package/ui/dist/index.d.ts +34 -2
- package/ui/dist/index.js +32 -32
- package/ui/dist/index.js.map +1 -1
- package/ui/dist/index.mjs +32 -32
- package/ui/dist/index.mjs.map +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superdangerous/app-framework",
|
|
3
|
-
"version": "4.17.
|
|
4
|
-
"description": "Opinionated TypeScript framework for
|
|
3
|
+
"version": "4.17.7",
|
|
4
|
+
"description": "Opinionated TypeScript framework for vibecoding enterprise web and desktop apps — 20+ UI components, WebSocket, Electron, and production services pre-wired",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -97,6 +97,7 @@
|
|
|
97
97
|
"dependencies": {
|
|
98
98
|
"boxen": "^8.0.1",
|
|
99
99
|
"chalk": "^5.5.0",
|
|
100
|
+
"cmdk": "^1.1.1",
|
|
100
101
|
"commander": "^12.1.0",
|
|
101
102
|
"cors": "^2.8.5",
|
|
102
103
|
"dotenv": "^17.2.1",
|
package/ui/dist/index.d.mts
CHANGED
|
@@ -603,6 +603,35 @@ declare function CodeSnippet({ code, language, filename, className, }: {
|
|
|
603
603
|
className?: string;
|
|
604
604
|
}): react_jsx_runtime.JSX.Element;
|
|
605
605
|
|
|
606
|
+
interface AppCommandPaletteItem {
|
|
607
|
+
id: string;
|
|
608
|
+
title: string;
|
|
609
|
+
action: () => Promise<void> | void;
|
|
610
|
+
group?: string;
|
|
611
|
+
description?: string;
|
|
612
|
+
icon?: ReactNode;
|
|
613
|
+
keywords?: string[];
|
|
614
|
+
badge?: ReactNode;
|
|
615
|
+
disabled?: boolean;
|
|
616
|
+
}
|
|
617
|
+
interface AppCommandPaletteProps {
|
|
618
|
+
open: boolean;
|
|
619
|
+
onOpenChange: (open: boolean) => void;
|
|
620
|
+
items: AppCommandPaletteItem[];
|
|
621
|
+
pendingId?: string | null;
|
|
622
|
+
onRunAction?: (item: AppCommandPaletteItem) => Promise<void> | void;
|
|
623
|
+
title?: string;
|
|
624
|
+
description?: string;
|
|
625
|
+
placeholder?: string;
|
|
626
|
+
emptyLabel?: string;
|
|
627
|
+
closeLabel?: string;
|
|
628
|
+
dialogTestId?: string;
|
|
629
|
+
maxWidthClassName?: string;
|
|
630
|
+
groupOrder?: string[];
|
|
631
|
+
footerHint?: ReactNode;
|
|
632
|
+
}
|
|
633
|
+
declare function AppCommandPalette({ open, onOpenChange, items, pendingId, onRunAction, title, description, placeholder, emptyLabel, closeLabel, dialogTestId, maxWidthClassName, groupOrder, footerHint, }: AppCommandPaletteProps): react_jsx_runtime.JSX.Element;
|
|
634
|
+
|
|
606
635
|
/**
|
|
607
636
|
* Date formatting utilities for displaying relative time
|
|
608
637
|
*/
|
|
@@ -748,6 +777,7 @@ interface AppLayoutProps {
|
|
|
748
777
|
appVersion?: string;
|
|
749
778
|
navigation: NavItem[];
|
|
750
779
|
children: React__default.ReactNode;
|
|
780
|
+
headerActions?: React__default.ReactNode;
|
|
751
781
|
logoSrc?: string;
|
|
752
782
|
/** Custom CSS class for logo (default: "h-8 w-auto") */
|
|
753
783
|
logoClassName?: string;
|
|
@@ -772,12 +802,14 @@ interface AppLayoutProps {
|
|
|
772
802
|
headerClassName?: string;
|
|
773
803
|
/** Custom class for the <nav> element (replaces default 'bg-[#444444]'); unused in inline mode */
|
|
774
804
|
navClassName?: string;
|
|
805
|
+
/** Custom class for the header actions slot */
|
|
806
|
+
headerActionsClassName?: string;
|
|
775
807
|
}
|
|
776
808
|
/**
|
|
777
809
|
* Standardized application layout for web apps
|
|
778
810
|
* Provides consistent header, navigation, and connection status
|
|
779
811
|
*/
|
|
780
|
-
declare function AppLayout({ appName, appVersion, navigation, children, logoSrc, logoClassName, logoOffset, headerHeight, showLogout, onLogout, authenticated, connectionStatusUrl, className, primaryColor, navLayout, navActiveStyle, headerClassName, navClassName }: AppLayoutProps): react_jsx_runtime.JSX.Element;
|
|
812
|
+
declare function AppLayout({ appName, appVersion, navigation, children, headerActions, logoSrc, logoClassName, logoOffset, headerHeight, showLogout, onLogout, authenticated, connectionStatusUrl, className, primaryColor, navLayout, navActiveStyle, headerClassName, navClassName, headerActionsClassName, }: AppLayoutProps): react_jsx_runtime.JSX.Element;
|
|
781
813
|
/**
|
|
782
814
|
* Layout with sidebar navigation (alternative layout style)
|
|
783
815
|
*/
|
|
@@ -1696,4 +1728,4 @@ declare const statusStyles: {
|
|
|
1696
1728
|
};
|
|
1697
1729
|
};
|
|
1698
1730
|
|
|
1699
|
-
export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, AppFooter, type AppFooterProps, type AppFooterStatusTone, AppLayout, type AppLayoutProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, CardHeader, type CardProps, CardSkeleton, CardTitle, Checkbox, CodeSnippet, CodeViewer, type CodeViewerProps, ColorPalette, CompactStat, type CompactStatProps, CompactThemeToggle, ConfirmDialog, type ConfirmDialogVariant, ConnectionIndicator, ConnectionLostOverlay, ConnectionOverlay, ConnectionStatus$1 as ConnectionStatus, ConnectionStatusBanner, ContextMenu, ContextMenuItem, type ContextMenuItemProps, type ContextMenuPosition, type ContextMenuProps, ContextMenuSeparator, ContextMenuSubmenu, type ContextMenuSubmenuProps, type CustomFieldProps, DashboardStats, type DashboardStatsProps, type DataColumn, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DogEarBadge, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EmptyStates, type FormState, HelpTooltip, Input, type InputProps, Label, LiveLogsSettings, type LiveLogsSettingsProps, LoadingState, LogArchivesSettings, type LogArchivesSettingsProps, type LogEntry, type LogFile, LogStats, type LogStatsProps, LogViewer, type LogViewerProps, LoginPage, LogsPage, type LogsPageProps, LogsSettings, type LogsSettingsProps, MarkdownCard, MarkdownScrollArea, MarkdownViewer, type NavItem, NetworkInterfaceSelect, NoSearchResults, NoSimulatorsRunning, NoTemplatesFound, PathTypeahead, type PathTypeaheadProps, Popover, PopoverContent, PopoverTrigger, Progress, ProtectedRoute, RealtimeDataTable, type RealtimeDataTableProps, ResizableDialog, RestartBanner, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SettingDefinition, type SettingsCategory, type SettingsCategoryComponentProps, SettingsFramework, type SettingsFrameworkProps, SettingsPage, type SettingsPageProps, Sidebar, SidebarAppLayout, type SidebarAppLayoutProps, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarLayout, type SidebarLayoutProps, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, type SidebarNavGroup, type SidebarNavItem, SidebarProvider, SidebarRail, SidebarSection, SidebarSeparator, SidebarTrigger, Slider, type SocketIOActions, type SocketIOConfig, type SocketIOState, Sparkline, type SparklineProps, type StatCard, Switch, TAG_COLORS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsList, TabsTrigger, TestModeIndicator, Textarea, type TextareaProps, type Theme, type ThemeConfig, type ThemeMode, ThemeProvider, type ThemeProviderProps, ThemeToggle, type ThemeToggleProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TruncatedText, UpdateNotification, type UseFormStateOptions, activityStyles, apiRequest, authHandler, badgeVariants, buttonStyles, buttonVariants, cardStyles, checkApiReadiness, cn, createSettingsCategory, defaultSettingsCategories, emptyStateStyles, formatBytes, formatDateTime, formatDuration, formatDurationMs, formatNumber, formatRelativeTime, formatShortRelativeTime, formatTimeAgo, getCSSVariables, getNextAvailableColor, getNextTagColor, getRandomTagColor, getTagClassName, getTagColor, socketManager, statusStyles, theme, timeAgo, useApiReadiness, useConfirmDialog, useConnectionStatus, useDebounce, useFormState, useSidebar, useSocketIO, useTheme, waitForApiReady };
|
|
1731
|
+
export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, AppCommandPalette, type AppCommandPaletteItem, type AppCommandPaletteProps, AppFooter, type AppFooterProps, type AppFooterStatusTone, AppLayout, type AppLayoutProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, CardHeader, type CardProps, CardSkeleton, CardTitle, Checkbox, CodeSnippet, CodeViewer, type CodeViewerProps, ColorPalette, CompactStat, type CompactStatProps, CompactThemeToggle, ConfirmDialog, type ConfirmDialogVariant, ConnectionIndicator, ConnectionLostOverlay, ConnectionOverlay, ConnectionStatus$1 as ConnectionStatus, ConnectionStatusBanner, ContextMenu, ContextMenuItem, type ContextMenuItemProps, type ContextMenuPosition, type ContextMenuProps, ContextMenuSeparator, ContextMenuSubmenu, type ContextMenuSubmenuProps, type CustomFieldProps, DashboardStats, type DashboardStatsProps, type DataColumn, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DogEarBadge, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EmptyStates, type FormState, HelpTooltip, Input, type InputProps, Label, LiveLogsSettings, type LiveLogsSettingsProps, LoadingState, LogArchivesSettings, type LogArchivesSettingsProps, type LogEntry, type LogFile, LogStats, type LogStatsProps, LogViewer, type LogViewerProps, LoginPage, LogsPage, type LogsPageProps, LogsSettings, type LogsSettingsProps, MarkdownCard, MarkdownScrollArea, MarkdownViewer, type NavItem, NetworkInterfaceSelect, NoSearchResults, NoSimulatorsRunning, NoTemplatesFound, PathTypeahead, type PathTypeaheadProps, Popover, PopoverContent, PopoverTrigger, Progress, ProtectedRoute, RealtimeDataTable, type RealtimeDataTableProps, ResizableDialog, RestartBanner, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SettingDefinition, type SettingsCategory, type SettingsCategoryComponentProps, SettingsFramework, type SettingsFrameworkProps, SettingsPage, type SettingsPageProps, Sidebar, SidebarAppLayout, type SidebarAppLayoutProps, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarLayout, type SidebarLayoutProps, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, type SidebarNavGroup, type SidebarNavItem, SidebarProvider, SidebarRail, SidebarSection, SidebarSeparator, SidebarTrigger, Slider, type SocketIOActions, type SocketIOConfig, type SocketIOState, Sparkline, type SparklineProps, type StatCard, Switch, TAG_COLORS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsList, TabsTrigger, TestModeIndicator, Textarea, type TextareaProps, type Theme, type ThemeConfig, type ThemeMode, ThemeProvider, type ThemeProviderProps, ThemeToggle, type ThemeToggleProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TruncatedText, UpdateNotification, type UseFormStateOptions, activityStyles, apiRequest, authHandler, badgeVariants, buttonStyles, buttonVariants, cardStyles, checkApiReadiness, cn, createSettingsCategory, defaultSettingsCategories, emptyStateStyles, formatBytes, formatDateTime, formatDuration, formatDurationMs, formatNumber, formatRelativeTime, formatShortRelativeTime, formatTimeAgo, getCSSVariables, getNextAvailableColor, getNextTagColor, getRandomTagColor, getTagClassName, getTagColor, socketManager, statusStyles, theme, timeAgo, useApiReadiness, useConfirmDialog, useConnectionStatus, useDebounce, useFormState, useSidebar, useSocketIO, useTheme, waitForApiReady };
|
package/ui/dist/index.d.ts
CHANGED
|
@@ -603,6 +603,35 @@ declare function CodeSnippet({ code, language, filename, className, }: {
|
|
|
603
603
|
className?: string;
|
|
604
604
|
}): react_jsx_runtime.JSX.Element;
|
|
605
605
|
|
|
606
|
+
interface AppCommandPaletteItem {
|
|
607
|
+
id: string;
|
|
608
|
+
title: string;
|
|
609
|
+
action: () => Promise<void> | void;
|
|
610
|
+
group?: string;
|
|
611
|
+
description?: string;
|
|
612
|
+
icon?: ReactNode;
|
|
613
|
+
keywords?: string[];
|
|
614
|
+
badge?: ReactNode;
|
|
615
|
+
disabled?: boolean;
|
|
616
|
+
}
|
|
617
|
+
interface AppCommandPaletteProps {
|
|
618
|
+
open: boolean;
|
|
619
|
+
onOpenChange: (open: boolean) => void;
|
|
620
|
+
items: AppCommandPaletteItem[];
|
|
621
|
+
pendingId?: string | null;
|
|
622
|
+
onRunAction?: (item: AppCommandPaletteItem) => Promise<void> | void;
|
|
623
|
+
title?: string;
|
|
624
|
+
description?: string;
|
|
625
|
+
placeholder?: string;
|
|
626
|
+
emptyLabel?: string;
|
|
627
|
+
closeLabel?: string;
|
|
628
|
+
dialogTestId?: string;
|
|
629
|
+
maxWidthClassName?: string;
|
|
630
|
+
groupOrder?: string[];
|
|
631
|
+
footerHint?: ReactNode;
|
|
632
|
+
}
|
|
633
|
+
declare function AppCommandPalette({ open, onOpenChange, items, pendingId, onRunAction, title, description, placeholder, emptyLabel, closeLabel, dialogTestId, maxWidthClassName, groupOrder, footerHint, }: AppCommandPaletteProps): react_jsx_runtime.JSX.Element;
|
|
634
|
+
|
|
606
635
|
/**
|
|
607
636
|
* Date formatting utilities for displaying relative time
|
|
608
637
|
*/
|
|
@@ -748,6 +777,7 @@ interface AppLayoutProps {
|
|
|
748
777
|
appVersion?: string;
|
|
749
778
|
navigation: NavItem[];
|
|
750
779
|
children: React__default.ReactNode;
|
|
780
|
+
headerActions?: React__default.ReactNode;
|
|
751
781
|
logoSrc?: string;
|
|
752
782
|
/** Custom CSS class for logo (default: "h-8 w-auto") */
|
|
753
783
|
logoClassName?: string;
|
|
@@ -772,12 +802,14 @@ interface AppLayoutProps {
|
|
|
772
802
|
headerClassName?: string;
|
|
773
803
|
/** Custom class for the <nav> element (replaces default 'bg-[#444444]'); unused in inline mode */
|
|
774
804
|
navClassName?: string;
|
|
805
|
+
/** Custom class for the header actions slot */
|
|
806
|
+
headerActionsClassName?: string;
|
|
775
807
|
}
|
|
776
808
|
/**
|
|
777
809
|
* Standardized application layout for web apps
|
|
778
810
|
* Provides consistent header, navigation, and connection status
|
|
779
811
|
*/
|
|
780
|
-
declare function AppLayout({ appName, appVersion, navigation, children, logoSrc, logoClassName, logoOffset, headerHeight, showLogout, onLogout, authenticated, connectionStatusUrl, className, primaryColor, navLayout, navActiveStyle, headerClassName, navClassName }: AppLayoutProps): react_jsx_runtime.JSX.Element;
|
|
812
|
+
declare function AppLayout({ appName, appVersion, navigation, children, headerActions, logoSrc, logoClassName, logoOffset, headerHeight, showLogout, onLogout, authenticated, connectionStatusUrl, className, primaryColor, navLayout, navActiveStyle, headerClassName, navClassName, headerActionsClassName, }: AppLayoutProps): react_jsx_runtime.JSX.Element;
|
|
781
813
|
/**
|
|
782
814
|
* Layout with sidebar navigation (alternative layout style)
|
|
783
815
|
*/
|
|
@@ -1696,4 +1728,4 @@ declare const statusStyles: {
|
|
|
1696
1728
|
};
|
|
1697
1729
|
};
|
|
1698
1730
|
|
|
1699
|
-
export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, AppFooter, type AppFooterProps, type AppFooterStatusTone, AppLayout, type AppLayoutProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, CardHeader, type CardProps, CardSkeleton, CardTitle, Checkbox, CodeSnippet, CodeViewer, type CodeViewerProps, ColorPalette, CompactStat, type CompactStatProps, CompactThemeToggle, ConfirmDialog, type ConfirmDialogVariant, ConnectionIndicator, ConnectionLostOverlay, ConnectionOverlay, ConnectionStatus$1 as ConnectionStatus, ConnectionStatusBanner, ContextMenu, ContextMenuItem, type ContextMenuItemProps, type ContextMenuPosition, type ContextMenuProps, ContextMenuSeparator, ContextMenuSubmenu, type ContextMenuSubmenuProps, type CustomFieldProps, DashboardStats, type DashboardStatsProps, type DataColumn, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DogEarBadge, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EmptyStates, type FormState, HelpTooltip, Input, type InputProps, Label, LiveLogsSettings, type LiveLogsSettingsProps, LoadingState, LogArchivesSettings, type LogArchivesSettingsProps, type LogEntry, type LogFile, LogStats, type LogStatsProps, LogViewer, type LogViewerProps, LoginPage, LogsPage, type LogsPageProps, LogsSettings, type LogsSettingsProps, MarkdownCard, MarkdownScrollArea, MarkdownViewer, type NavItem, NetworkInterfaceSelect, NoSearchResults, NoSimulatorsRunning, NoTemplatesFound, PathTypeahead, type PathTypeaheadProps, Popover, PopoverContent, PopoverTrigger, Progress, ProtectedRoute, RealtimeDataTable, type RealtimeDataTableProps, ResizableDialog, RestartBanner, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SettingDefinition, type SettingsCategory, type SettingsCategoryComponentProps, SettingsFramework, type SettingsFrameworkProps, SettingsPage, type SettingsPageProps, Sidebar, SidebarAppLayout, type SidebarAppLayoutProps, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarLayout, type SidebarLayoutProps, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, type SidebarNavGroup, type SidebarNavItem, SidebarProvider, SidebarRail, SidebarSection, SidebarSeparator, SidebarTrigger, Slider, type SocketIOActions, type SocketIOConfig, type SocketIOState, Sparkline, type SparklineProps, type StatCard, Switch, TAG_COLORS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsList, TabsTrigger, TestModeIndicator, Textarea, type TextareaProps, type Theme, type ThemeConfig, type ThemeMode, ThemeProvider, type ThemeProviderProps, ThemeToggle, type ThemeToggleProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TruncatedText, UpdateNotification, type UseFormStateOptions, activityStyles, apiRequest, authHandler, badgeVariants, buttonStyles, buttonVariants, cardStyles, checkApiReadiness, cn, createSettingsCategory, defaultSettingsCategories, emptyStateStyles, formatBytes, formatDateTime, formatDuration, formatDurationMs, formatNumber, formatRelativeTime, formatShortRelativeTime, formatTimeAgo, getCSSVariables, getNextAvailableColor, getNextTagColor, getRandomTagColor, getTagClassName, getTagColor, socketManager, statusStyles, theme, timeAgo, useApiReadiness, useConfirmDialog, useConnectionStatus, useDebounce, useFormState, useSidebar, useSocketIO, useTheme, waitForApiReady };
|
|
1731
|
+
export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, AppCommandPalette, type AppCommandPaletteItem, type AppCommandPaletteProps, AppFooter, type AppFooterProps, type AppFooterStatusTone, AppLayout, type AppLayoutProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, CardHeader, type CardProps, CardSkeleton, CardTitle, Checkbox, CodeSnippet, CodeViewer, type CodeViewerProps, ColorPalette, CompactStat, type CompactStatProps, CompactThemeToggle, ConfirmDialog, type ConfirmDialogVariant, ConnectionIndicator, ConnectionLostOverlay, ConnectionOverlay, ConnectionStatus$1 as ConnectionStatus, ConnectionStatusBanner, ContextMenu, ContextMenuItem, type ContextMenuItemProps, type ContextMenuPosition, type ContextMenuProps, ContextMenuSeparator, ContextMenuSubmenu, type ContextMenuSubmenuProps, type CustomFieldProps, DashboardStats, type DashboardStatsProps, type DataColumn, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DogEarBadge, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EmptyStates, type FormState, HelpTooltip, Input, type InputProps, Label, LiveLogsSettings, type LiveLogsSettingsProps, LoadingState, LogArchivesSettings, type LogArchivesSettingsProps, type LogEntry, type LogFile, LogStats, type LogStatsProps, LogViewer, type LogViewerProps, LoginPage, LogsPage, type LogsPageProps, LogsSettings, type LogsSettingsProps, MarkdownCard, MarkdownScrollArea, MarkdownViewer, type NavItem, NetworkInterfaceSelect, NoSearchResults, NoSimulatorsRunning, NoTemplatesFound, PathTypeahead, type PathTypeaheadProps, Popover, PopoverContent, PopoverTrigger, Progress, ProtectedRoute, RealtimeDataTable, type RealtimeDataTableProps, ResizableDialog, RestartBanner, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SettingDefinition, type SettingsCategory, type SettingsCategoryComponentProps, SettingsFramework, type SettingsFrameworkProps, SettingsPage, type SettingsPageProps, Sidebar, SidebarAppLayout, type SidebarAppLayoutProps, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarLayout, type SidebarLayoutProps, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, type SidebarNavGroup, type SidebarNavItem, SidebarProvider, SidebarRail, SidebarSection, SidebarSeparator, SidebarTrigger, Slider, type SocketIOActions, type SocketIOConfig, type SocketIOState, Sparkline, type SparklineProps, type StatCard, Switch, TAG_COLORS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsList, TabsTrigger, TestModeIndicator, Textarea, type TextareaProps, type Theme, type ThemeConfig, type ThemeMode, ThemeProvider, type ThemeProviderProps, ThemeToggle, type ThemeToggleProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TruncatedText, UpdateNotification, type UseFormStateOptions, activityStyles, apiRequest, authHandler, badgeVariants, buttonStyles, buttonVariants, cardStyles, checkApiReadiness, cn, createSettingsCategory, defaultSettingsCategories, emptyStateStyles, formatBytes, formatDateTime, formatDuration, formatDurationMs, formatNumber, formatRelativeTime, formatShortRelativeTime, formatTimeAgo, getCSSVariables, getNextAvailableColor, getNextTagColor, getRandomTagColor, getTagClassName, getTagColor, socketManager, statusStyles, theme, timeAgo, useApiReadiness, useConfirmDialog, useConnectionStatus, useDebounce, useFormState, useSidebar, useSocketIO, useTheme, waitForApiReady };
|