@superdangerous/app-framework 4.17.11 → 4.17.13
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/README.md +1 -1
- package/dist/core/StandardServer.d.ts.map +1 -1
- package/dist/core/StandardServer.js +6 -9
- package/dist/core/StandardServer.js.map +1 -1
- package/dist/services/aiService.d.ts.map +1 -1
- package/dist/services/aiService.js +9 -5
- package/dist/services/aiService.js.map +1 -1
- package/dist/services/settingsService.d.ts +22 -0
- package/dist/services/settingsService.d.ts.map +1 -1
- package/dist/services/settingsService.js +11 -2
- package/dist/services/settingsService.js.map +1 -1
- package/package.json +1 -1
- package/src/core/StandardServer.ts +6 -8
- package/src/services/aiService.ts +13 -5
- package/src/services/settingsService.ts +31 -2
- package/ui/dist/data-table.js +1 -1
- package/ui/dist/data-table.js.map +1 -1
- package/ui/dist/data-table.mjs +1 -1
- package/ui/dist/data-table.mjs.map +1 -1
- package/ui/dist/index.d.mts +19 -14
- package/ui/dist/index.d.ts +19 -14
- 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/ui/src/styles/index.ts +1 -1
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;
|
|
@@ -1574,7 +1579,7 @@ declare const authHandler: AuthHandler;
|
|
|
1574
1579
|
/**
|
|
1575
1580
|
* SuperDangerous UI Framework - Centralized Theme Configuration
|
|
1576
1581
|
*
|
|
1577
|
-
* @module @superdangerous/
|
|
1582
|
+
* @module @superdangerous/app-framework/ui
|
|
1578
1583
|
*/
|
|
1579
1584
|
declare const theme: {
|
|
1580
1585
|
colors: {
|
|
@@ -1771,7 +1776,7 @@ declare function useTheme(): ThemeContextValue;
|
|
|
1771
1776
|
* SuperDangerous UI Framework - Shared Style Constants
|
|
1772
1777
|
* Reusable Tailwind class combinations for consistency
|
|
1773
1778
|
*
|
|
1774
|
-
* @module @superdangerous/
|
|
1779
|
+
* @module @superdangerous/app-framework/ui
|
|
1775
1780
|
*/
|
|
1776
1781
|
declare const cardStyles: {
|
|
1777
1782
|
readonly base: "transition-all duration-200";
|
|
@@ -1808,4 +1813,4 @@ declare const statusStyles: {
|
|
|
1808
1813
|
};
|
|
1809
1814
|
};
|
|
1810
1815
|
|
|
1811
|
-
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, 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 };
|
|
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;
|
|
@@ -1574,7 +1579,7 @@ declare const authHandler: AuthHandler;
|
|
|
1574
1579
|
/**
|
|
1575
1580
|
* SuperDangerous UI Framework - Centralized Theme Configuration
|
|
1576
1581
|
*
|
|
1577
|
-
* @module @superdangerous/
|
|
1582
|
+
* @module @superdangerous/app-framework/ui
|
|
1578
1583
|
*/
|
|
1579
1584
|
declare const theme: {
|
|
1580
1585
|
colors: {
|
|
@@ -1771,7 +1776,7 @@ declare function useTheme(): ThemeContextValue;
|
|
|
1771
1776
|
* SuperDangerous UI Framework - Shared Style Constants
|
|
1772
1777
|
* Reusable Tailwind class combinations for consistency
|
|
1773
1778
|
*
|
|
1774
|
-
* @module @superdangerous/
|
|
1779
|
+
* @module @superdangerous/app-framework/ui
|
|
1775
1780
|
*/
|
|
1776
1781
|
declare const cardStyles: {
|
|
1777
1782
|
readonly base: "transition-all duration-200";
|
|
@@ -1808,4 +1813,4 @@ declare const statusStyles: {
|
|
|
1808
1813
|
};
|
|
1809
1814
|
};
|
|
1810
1815
|
|
|
1811
|
-
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, 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 };
|
|
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 };
|