@superdangerous/app-framework 4.17.10 → 4.17.12
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 +1 -1
- package/ui/dist/index.d.mts +32 -12
- package/ui/dist/index.d.ts +32 -12
- package/ui/dist/index.js +33 -33
- package/ui/dist/index.js.map +1 -1
- package/ui/dist/index.mjs +33 -33
- package/ui/dist/index.mjs.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superdangerous/app-framework",
|
|
3
|
-
"version": "4.17.
|
|
3
|
+
"version": "4.17.12",
|
|
4
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",
|
package/ui/dist/index.d.mts
CHANGED
|
@@ -197,22 +197,27 @@ interface ProtectedRouteProps {
|
|
|
197
197
|
*/
|
|
198
198
|
declare function ProtectedRoute({ children, loginPath, authEndpoint, loadingComponent }: ProtectedRouteProps): string | number | true | react_jsx_runtime.JSX.Element | Iterable<React__default.ReactNode>;
|
|
199
199
|
|
|
200
|
+
interface LogsPageStats {
|
|
201
|
+
totalSize: number;
|
|
202
|
+
totalSizeFormatted?: string;
|
|
203
|
+
fileCount: number;
|
|
204
|
+
}
|
|
200
205
|
interface LogsPageProps {
|
|
201
206
|
apiUrl?: string;
|
|
207
|
+
eyebrow?: string;
|
|
208
|
+
title?: string;
|
|
209
|
+
description?: string;
|
|
210
|
+
compactAfterDays?: number;
|
|
211
|
+
autoRefreshMs?: number;
|
|
212
|
+
className?: string;
|
|
213
|
+
viewerClassName?: string;
|
|
202
214
|
}
|
|
203
215
|
/**
|
|
204
|
-
*
|
|
205
|
-
*
|
|
206
|
-
*
|
|
207
|
-
* ```tsx
|
|
208
|
-
* import { LogsPage } from '@superdangerous/app-framework/ui';
|
|
209
|
-
*
|
|
210
|
-
* function App() {
|
|
211
|
-
* return <LogsPage apiUrl="/api/logs" />;
|
|
212
|
-
* }
|
|
213
|
-
* ```
|
|
216
|
+
* Opinionated logs page for active apps.
|
|
217
|
+
* Uses the shared logs router contract and wraps LogViewer with support stats
|
|
218
|
+
* and maintenance actions rather than leaving each app to rebuild the shell.
|
|
214
219
|
*/
|
|
215
|
-
declare function LogsPage({ apiUrl }: LogsPageProps): react_jsx_runtime.JSX.Element;
|
|
220
|
+
declare function LogsPage({ apiUrl, eyebrow, title, description, compactAfterDays, autoRefreshMs, className, viewerClassName, }: LogsPageProps): react_jsx_runtime.JSX.Element;
|
|
216
221
|
|
|
217
222
|
interface SettingDefinition$1 {
|
|
218
223
|
key: string;
|
|
@@ -1334,8 +1339,23 @@ interface SettingsDetailListProps {
|
|
|
1334
1339
|
className?: string;
|
|
1335
1340
|
itemClassName?: string;
|
|
1336
1341
|
}
|
|
1342
|
+
type SettingsNoticeTone = 'neutral' | 'info' | 'warning' | 'danger' | 'success';
|
|
1343
|
+
interface SettingsNoticePanelProps extends SettingsPanelProps {
|
|
1344
|
+
tone?: SettingsNoticeTone;
|
|
1345
|
+
}
|
|
1346
|
+
interface SettingsActionPanelProps extends Omit<SettingsPanelProps, 'actions'> {
|
|
1347
|
+
action?: ReactNode;
|
|
1348
|
+
actionLabel?: ReactNode;
|
|
1349
|
+
onAction?: ButtonProps['onClick'];
|
|
1350
|
+
actionIcon?: ReactNode;
|
|
1351
|
+
actionVariant?: ButtonProps['variant'];
|
|
1352
|
+
actionDisabled?: boolean;
|
|
1353
|
+
actionButtonProps?: Omit<ButtonProps, 'children' | 'variant' | 'onClick'>;
|
|
1354
|
+
}
|
|
1337
1355
|
declare function SettingsPanel({ title, description, icon, meta, actions, children, className, headerClassName, bodyClassName, }: SettingsPanelProps): react_jsx_runtime.JSX.Element;
|
|
1338
1356
|
declare function SettingsDetailList({ items, className, itemClassName }: SettingsDetailListProps): react_jsx_runtime.JSX.Element;
|
|
1357
|
+
declare function SettingsNoticePanel({ tone, className, ...props }: SettingsNoticePanelProps): react_jsx_runtime.JSX.Element;
|
|
1358
|
+
declare function SettingsActionPanel({ action, actionLabel, onAction, actionIcon, actionVariant, actionDisabled, actionButtonProps, ...props }: SettingsActionPanelProps): react_jsx_runtime.JSX.Element;
|
|
1339
1359
|
|
|
1340
1360
|
/**
|
|
1341
1361
|
* Theme Toggle Component
|
|
@@ -1793,4 +1813,4 @@ declare const statusStyles: {
|
|
|
1793
1813
|
};
|
|
1794
1814
|
};
|
|
1795
1815
|
|
|
1796
|
-
export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, AppCommandPalette, type AppCommandPaletteItem, type AppCommandPaletteProps, AppCrashFallback, type AppCrashFallbackProps, AppFooter, type AppFooterProps, type AppFooterStatusTone, AppLayout, type AppLayoutProps, Badge, type BadgeProps, type BrowserLogEntry, type BrowserLogLevel, type BrowserLogger, type BrowserLoggerOptions, 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, SettingsDetailList, type SettingsDetailListItem, type SettingsDetailListProps, SettingsFramework, type SettingsFrameworkProps, SettingsPage, type SettingsPageProps, SettingsPanel, type SettingsPanelProps, 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, browserLogLevels, browserLogger, buttonStyles, buttonVariants, cardStyles, checkApiReadiness, cn, createBrowserLogger, createScopedBrowserLogger, 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 };
|
|
1816
|
+
export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, AppCommandPalette, type AppCommandPaletteItem, type AppCommandPaletteProps, AppCrashFallback, type AppCrashFallbackProps, AppFooter, type AppFooterProps, type AppFooterStatusTone, AppLayout, type AppLayoutProps, Badge, type BadgeProps, type BrowserLogEntry, type BrowserLogLevel, type BrowserLogger, type BrowserLoggerOptions, 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, type LogsPageStats, 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, SettingsActionPanel, type SettingsActionPanelProps, type SettingsCategory, type SettingsCategoryComponentProps, SettingsDetailList, type SettingsDetailListItem, type SettingsDetailListProps, SettingsFramework, type SettingsFrameworkProps, SettingsNoticePanel, type SettingsNoticePanelProps, type SettingsNoticeTone, SettingsPage, type SettingsPageProps, SettingsPanel, type SettingsPanelProps, 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, browserLogLevels, browserLogger, buttonStyles, buttonVariants, cardStyles, checkApiReadiness, cn, createBrowserLogger, createScopedBrowserLogger, 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
|
@@ -197,22 +197,27 @@ interface ProtectedRouteProps {
|
|
|
197
197
|
*/
|
|
198
198
|
declare function ProtectedRoute({ children, loginPath, authEndpoint, loadingComponent }: ProtectedRouteProps): string | number | true | react_jsx_runtime.JSX.Element | Iterable<React__default.ReactNode>;
|
|
199
199
|
|
|
200
|
+
interface LogsPageStats {
|
|
201
|
+
totalSize: number;
|
|
202
|
+
totalSizeFormatted?: string;
|
|
203
|
+
fileCount: number;
|
|
204
|
+
}
|
|
200
205
|
interface LogsPageProps {
|
|
201
206
|
apiUrl?: string;
|
|
207
|
+
eyebrow?: string;
|
|
208
|
+
title?: string;
|
|
209
|
+
description?: string;
|
|
210
|
+
compactAfterDays?: number;
|
|
211
|
+
autoRefreshMs?: number;
|
|
212
|
+
className?: string;
|
|
213
|
+
viewerClassName?: string;
|
|
202
214
|
}
|
|
203
215
|
/**
|
|
204
|
-
*
|
|
205
|
-
*
|
|
206
|
-
*
|
|
207
|
-
* ```tsx
|
|
208
|
-
* import { LogsPage } from '@superdangerous/app-framework/ui';
|
|
209
|
-
*
|
|
210
|
-
* function App() {
|
|
211
|
-
* return <LogsPage apiUrl="/api/logs" />;
|
|
212
|
-
* }
|
|
213
|
-
* ```
|
|
216
|
+
* Opinionated logs page for active apps.
|
|
217
|
+
* Uses the shared logs router contract and wraps LogViewer with support stats
|
|
218
|
+
* and maintenance actions rather than leaving each app to rebuild the shell.
|
|
214
219
|
*/
|
|
215
|
-
declare function LogsPage({ apiUrl }: LogsPageProps): react_jsx_runtime.JSX.Element;
|
|
220
|
+
declare function LogsPage({ apiUrl, eyebrow, title, description, compactAfterDays, autoRefreshMs, className, viewerClassName, }: LogsPageProps): react_jsx_runtime.JSX.Element;
|
|
216
221
|
|
|
217
222
|
interface SettingDefinition$1 {
|
|
218
223
|
key: string;
|
|
@@ -1334,8 +1339,23 @@ interface SettingsDetailListProps {
|
|
|
1334
1339
|
className?: string;
|
|
1335
1340
|
itemClassName?: string;
|
|
1336
1341
|
}
|
|
1342
|
+
type SettingsNoticeTone = 'neutral' | 'info' | 'warning' | 'danger' | 'success';
|
|
1343
|
+
interface SettingsNoticePanelProps extends SettingsPanelProps {
|
|
1344
|
+
tone?: SettingsNoticeTone;
|
|
1345
|
+
}
|
|
1346
|
+
interface SettingsActionPanelProps extends Omit<SettingsPanelProps, 'actions'> {
|
|
1347
|
+
action?: ReactNode;
|
|
1348
|
+
actionLabel?: ReactNode;
|
|
1349
|
+
onAction?: ButtonProps['onClick'];
|
|
1350
|
+
actionIcon?: ReactNode;
|
|
1351
|
+
actionVariant?: ButtonProps['variant'];
|
|
1352
|
+
actionDisabled?: boolean;
|
|
1353
|
+
actionButtonProps?: Omit<ButtonProps, 'children' | 'variant' | 'onClick'>;
|
|
1354
|
+
}
|
|
1337
1355
|
declare function SettingsPanel({ title, description, icon, meta, actions, children, className, headerClassName, bodyClassName, }: SettingsPanelProps): react_jsx_runtime.JSX.Element;
|
|
1338
1356
|
declare function SettingsDetailList({ items, className, itemClassName }: SettingsDetailListProps): react_jsx_runtime.JSX.Element;
|
|
1357
|
+
declare function SettingsNoticePanel({ tone, className, ...props }: SettingsNoticePanelProps): react_jsx_runtime.JSX.Element;
|
|
1358
|
+
declare function SettingsActionPanel({ action, actionLabel, onAction, actionIcon, actionVariant, actionDisabled, actionButtonProps, ...props }: SettingsActionPanelProps): react_jsx_runtime.JSX.Element;
|
|
1339
1359
|
|
|
1340
1360
|
/**
|
|
1341
1361
|
* Theme Toggle Component
|
|
@@ -1793,4 +1813,4 @@ declare const statusStyles: {
|
|
|
1793
1813
|
};
|
|
1794
1814
|
};
|
|
1795
1815
|
|
|
1796
|
-
export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, AppCommandPalette, type AppCommandPaletteItem, type AppCommandPaletteProps, AppCrashFallback, type AppCrashFallbackProps, AppFooter, type AppFooterProps, type AppFooterStatusTone, AppLayout, type AppLayoutProps, Badge, type BadgeProps, type BrowserLogEntry, type BrowserLogLevel, type BrowserLogger, type BrowserLoggerOptions, 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, SettingsDetailList, type SettingsDetailListItem, type SettingsDetailListProps, SettingsFramework, type SettingsFrameworkProps, SettingsPage, type SettingsPageProps, SettingsPanel, type SettingsPanelProps, 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, browserLogLevels, browserLogger, buttonStyles, buttonVariants, cardStyles, checkApiReadiness, cn, createBrowserLogger, createScopedBrowserLogger, 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 };
|
|
1816
|
+
export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, AppCommandPalette, type AppCommandPaletteItem, type AppCommandPaletteProps, AppCrashFallback, type AppCrashFallbackProps, AppFooter, type AppFooterProps, type AppFooterStatusTone, AppLayout, type AppLayoutProps, Badge, type BadgeProps, type BrowserLogEntry, type BrowserLogLevel, type BrowserLogger, type BrowserLoggerOptions, 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, type LogsPageStats, 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, SettingsActionPanel, type SettingsActionPanelProps, type SettingsCategory, type SettingsCategoryComponentProps, SettingsDetailList, type SettingsDetailListItem, type SettingsDetailListProps, SettingsFramework, type SettingsFrameworkProps, SettingsNoticePanel, type SettingsNoticePanelProps, type SettingsNoticeTone, SettingsPage, type SettingsPageProps, SettingsPanel, type SettingsPanelProps, 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, browserLogLevels, browserLogger, buttonStyles, buttonVariants, cardStyles, checkApiReadiness, cn, createBrowserLogger, createScopedBrowserLogger, 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 };
|