@superdangerous/app-framework 4.17.4 → 4.17.6
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 +2 -2
- package/ui/dist/index.d.mts +54 -5
- package/ui/dist/index.d.ts +54 -5
- 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.6",
|
|
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",
|
package/ui/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import React__default, { ReactNode, MouseEvent } from 'react';
|
|
3
|
+
import React__default, { ReactNode, MouseEvent, HTMLAttributes } from 'react';
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
@@ -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;
|
|
@@ -764,20 +794,22 @@ interface AppLayoutProps {
|
|
|
764
794
|
connectionStatusUrl?: string;
|
|
765
795
|
className?: string;
|
|
766
796
|
primaryColor?: string;
|
|
767
|
-
/** '
|
|
797
|
+
/** 'inline' is the framework default; 'stacked' remains for legacy layouts */
|
|
768
798
|
navLayout?: 'stacked' | 'inline';
|
|
769
|
-
/** '
|
|
799
|
+
/** 'pill' is the framework default; 'bar' remains for legacy layouts */
|
|
770
800
|
navActiveStyle?: 'bar' | 'pill';
|
|
771
801
|
/** Custom class for the <header> element (replaces default 'bg-black') */
|
|
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
|
*/
|
|
@@ -786,6 +818,23 @@ interface SidebarLayoutProps extends Omit<AppLayoutProps, 'primaryColor'> {
|
|
|
786
818
|
}
|
|
787
819
|
declare function SidebarLayout({ appName, appVersion, navigation, children, logoSrc, logoClassName, logoOffset, headerHeight, showLogout, onLogout, authenticated, connectionStatusUrl, sidebarWidth, className }: SidebarLayoutProps): react_jsx_runtime.JSX.Element;
|
|
788
820
|
|
|
821
|
+
type AppFooterStatusTone = 'neutral' | 'info' | 'success' | 'warning' | 'error';
|
|
822
|
+
interface AppFooterProps extends HTMLAttributes<HTMLElement> {
|
|
823
|
+
leading?: ReactNode;
|
|
824
|
+
center?: ReactNode;
|
|
825
|
+
trailing?: ReactNode;
|
|
826
|
+
statusLabel: string;
|
|
827
|
+
statusTone?: AppFooterStatusTone;
|
|
828
|
+
statusPulse?: boolean;
|
|
829
|
+
fixed?: boolean;
|
|
830
|
+
leadingClassName?: string;
|
|
831
|
+
centerClassName?: string;
|
|
832
|
+
trailingClassName?: string;
|
|
833
|
+
statusClassName?: string;
|
|
834
|
+
statusWidthClassName?: string;
|
|
835
|
+
}
|
|
836
|
+
declare function AppFooter({ leading, center, trailing, statusLabel, statusTone, statusPulse, fixed, className, leadingClassName, centerClassName, trailingClassName, statusClassName, statusWidthClassName, ...props }: AppFooterProps): react_jsx_runtime.JSX.Element;
|
|
837
|
+
|
|
789
838
|
interface SidebarNavItem {
|
|
790
839
|
name: string;
|
|
791
840
|
href: string;
|
|
@@ -1679,4 +1728,4 @@ declare const statusStyles: {
|
|
|
1679
1728
|
};
|
|
1680
1729
|
};
|
|
1681
1730
|
|
|
1682
|
-
export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import React__default, { ReactNode, MouseEvent } from 'react';
|
|
3
|
+
import React__default, { ReactNode, MouseEvent, HTMLAttributes } from 'react';
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
@@ -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;
|
|
@@ -764,20 +794,22 @@ interface AppLayoutProps {
|
|
|
764
794
|
connectionStatusUrl?: string;
|
|
765
795
|
className?: string;
|
|
766
796
|
primaryColor?: string;
|
|
767
|
-
/** '
|
|
797
|
+
/** 'inline' is the framework default; 'stacked' remains for legacy layouts */
|
|
768
798
|
navLayout?: 'stacked' | 'inline';
|
|
769
|
-
/** '
|
|
799
|
+
/** 'pill' is the framework default; 'bar' remains for legacy layouts */
|
|
770
800
|
navActiveStyle?: 'bar' | 'pill';
|
|
771
801
|
/** Custom class for the <header> element (replaces default 'bg-black') */
|
|
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
|
*/
|
|
@@ -786,6 +818,23 @@ interface SidebarLayoutProps extends Omit<AppLayoutProps, 'primaryColor'> {
|
|
|
786
818
|
}
|
|
787
819
|
declare function SidebarLayout({ appName, appVersion, navigation, children, logoSrc, logoClassName, logoOffset, headerHeight, showLogout, onLogout, authenticated, connectionStatusUrl, sidebarWidth, className }: SidebarLayoutProps): react_jsx_runtime.JSX.Element;
|
|
788
820
|
|
|
821
|
+
type AppFooterStatusTone = 'neutral' | 'info' | 'success' | 'warning' | 'error';
|
|
822
|
+
interface AppFooterProps extends HTMLAttributes<HTMLElement> {
|
|
823
|
+
leading?: ReactNode;
|
|
824
|
+
center?: ReactNode;
|
|
825
|
+
trailing?: ReactNode;
|
|
826
|
+
statusLabel: string;
|
|
827
|
+
statusTone?: AppFooterStatusTone;
|
|
828
|
+
statusPulse?: boolean;
|
|
829
|
+
fixed?: boolean;
|
|
830
|
+
leadingClassName?: string;
|
|
831
|
+
centerClassName?: string;
|
|
832
|
+
trailingClassName?: string;
|
|
833
|
+
statusClassName?: string;
|
|
834
|
+
statusWidthClassName?: string;
|
|
835
|
+
}
|
|
836
|
+
declare function AppFooter({ leading, center, trailing, statusLabel, statusTone, statusPulse, fixed, className, leadingClassName, centerClassName, trailingClassName, statusClassName, statusWidthClassName, ...props }: AppFooterProps): react_jsx_runtime.JSX.Element;
|
|
837
|
+
|
|
789
838
|
interface SidebarNavItem {
|
|
790
839
|
name: string;
|
|
791
840
|
href: string;
|
|
@@ -1679,4 +1728,4 @@ declare const statusStyles: {
|
|
|
1679
1728
|
};
|
|
1680
1729
|
};
|
|
1681
1730
|
|
|
1682
|
-
export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, 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 };
|