@superdangerous/app-framework 4.16.35 → 4.16.36

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.
@@ -20,6 +20,7 @@ import { LucideIcon } from 'lucide-react';
20
20
  export { Activity, AlertCircle, AlertTriangle, Archive, ArrowLeft, ArrowRight, BarChart, Bot, Brain, Building2, Calendar, CheckCircle, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Circle, Clock, Coffee, Copy, Cpu, Database, Download, Edit, Eye, EyeOff, File, FileCode, FileText, Filter, Folder, FolderOpen, Gauge, GitBranch, Globe, Grid3x3, HardDrive, HelpCircle, Home, Info, Key, Keyboard, Layers, LayoutDashboard, Lightbulb, LineChart, Loader2, Lock, LogOut, LucideIcon, Menu, MessageSquare, Monitor, Moon, MoreHorizontal, MoreVertical, Package, Palette, Paperclip, Pause, PieChart, Play, PlayCircle, Plus, RefreshCw, Save, Search, Send, Server, Settings, Shield, SkipForward, Smartphone, Sparkles, Square, StopCircle, Sun, Tag, Target, Terminal, Trash2, TrendingDown, TrendingUp, Trophy, Undo, Unlock, Upload, User, UserCheck, UserPlus, Users, Volume2, Wifi, WifiOff, X, XCircle, Zap } from 'lucide-react';
21
21
  import { ManagerOptions, SocketOptions, Socket } from 'socket.io-client';
22
22
  import { ClassValue } from 'clsx';
23
+ export { BatchActionsBar, BatchActionsBarProps, CellProps, ColumnConfig, ColumnConfigCompat, ColumnDef, ColumnOrderConfig, ColumnSizeConfig, ColumnVisibility, ColumnVisibilityConfig, ColumnVisibilityState, ColumnWidth, DataTable, DataTablePage, DataTablePageProps, DataTableProps, DragState, ExternalPaginationState, FilterOption, HeaderCellProps, MultiSelectFilter, MultiSelectFilterProps, MultiSelectOption, Pagination, PaginationControls, PaginationControlsProps, ResizableColumnResult, TableFilterOption, TableFilters, TableFiltersProps, useColumnDragDrop, useColumnOrder, useColumnVisibility, usePagination, useResizableColumns } from './data-table.mjs';
23
24
 
24
25
  declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
25
26
  variant?: "default" | "destructive" | null | undefined;
@@ -1663,457 +1664,4 @@ declare const statusStyles: {
1663
1664
  };
1664
1665
  };
1665
1666
 
1666
- interface UsePaginationOptions<T> {
1667
- data: T[];
1668
- pageSize?: number;
1669
- storageKey?: string;
1670
- }
1671
- interface UsePaginationResult<T> {
1672
- paginatedData: T[];
1673
- page: number;
1674
- pageSize: number;
1675
- totalPages: number;
1676
- totalItems: number;
1677
- setPage: (page: number) => void;
1678
- setPageSize: (size: number) => void;
1679
- nextPage: () => void;
1680
- prevPage: () => void;
1681
- firstPage: () => void;
1682
- lastPage: () => void;
1683
- startIndex: number;
1684
- endIndex: number;
1685
- canGoNext: boolean;
1686
- canGoPrev: boolean;
1687
- pageSizeOptions: number[];
1688
- }
1689
- declare function usePagination<T>({ data, pageSize: initialPageSize, storageKey, }: UsePaginationOptions<T>): UsePaginationResult<T>;
1690
-
1691
- interface ColumnConfig$1 {
1692
- id: string;
1693
- label: string;
1694
- defaultVisible?: boolean;
1695
- locked?: boolean;
1696
- }
1697
- interface ColumnVisibilityState {
1698
- [key: string]: boolean;
1699
- }
1700
- interface UseColumnVisibilityOptions {
1701
- columns: ColumnConfig$1[];
1702
- storageKey: string;
1703
- }
1704
- interface UseColumnVisibilityReturn {
1705
- visibleColumns: ColumnVisibilityState;
1706
- isColumnVisible: (columnId: string) => boolean;
1707
- toggleColumn: (columnId: string) => void;
1708
- showAllColumns: () => void;
1709
- hideAllColumns: () => void;
1710
- columns: ColumnConfig$1[];
1711
- }
1712
- declare function useColumnVisibility({ columns, storageKey, }: UseColumnVisibilityOptions): UseColumnVisibilityReturn;
1713
-
1714
- interface ColumnConfig {
1715
- key: string;
1716
- minWidth?: number;
1717
- maxWidth?: number;
1718
- defaultWidth?: number;
1719
- }
1720
- interface UseResizableColumnsOptions {
1721
- tableId: string;
1722
- columns: ColumnConfig[];
1723
- storageKey?: string;
1724
- }
1725
- interface ResizableColumnResult {
1726
- widths: Record<string, number>;
1727
- isResizing: boolean;
1728
- totalWidth: number;
1729
- getResizeHandleProps: (columnKey: string) => {
1730
- onPointerDown: (e: React.PointerEvent) => void;
1731
- onMouseDown: (e: React.MouseEvent) => void;
1732
- draggable: boolean;
1733
- onDragStart: (e: React.DragEvent) => void;
1734
- className: string;
1735
- 'data-resizing': boolean;
1736
- };
1737
- getColumnStyle: (columnKey: string) => React.CSSProperties;
1738
- getTableStyle: () => React.CSSProperties;
1739
- resetToDefaults: () => void;
1740
- }
1741
- declare function useResizableColumns({ tableId, columns, storageKey, }: UseResizableColumnsOptions): ResizableColumnResult;
1742
-
1743
- interface ColumnOrderConfig {
1744
- id: string;
1745
- label: string;
1746
- locked?: boolean;
1747
- }
1748
- interface UseColumnOrderOptions {
1749
- storageKey: string;
1750
- defaultOrder: string[];
1751
- }
1752
- interface UseColumnOrderReturn {
1753
- columnOrder: string[];
1754
- moveColumn: (fromIndex: number, toIndex: number) => void;
1755
- moveColumnById: (columnId: string, direction: 'left' | 'right') => void;
1756
- resetOrder: () => void;
1757
- getOrderedColumns: <T extends {
1758
- id: string;
1759
- }>(columns: T[]) => T[];
1760
- }
1761
- /**
1762
- * Hook for managing column order with localStorage persistence
1763
- */
1764
- declare function useColumnOrder({ storageKey, defaultOrder, }: UseColumnOrderOptions): UseColumnOrderReturn;
1765
- /**
1766
- * Drag and drop helpers for column reordering
1767
- */
1768
- interface DragState {
1769
- isDragging: boolean;
1770
- draggedId: string | null;
1771
- dropIndex: number | null;
1772
- }
1773
- declare function useColumnDragDrop(columnOrder: string[], moveColumn: (from: number, to: number) => void, lockedColumns?: string[]): {
1774
- dragState: DragState;
1775
- getDragHandleProps: (columnId: string) => {
1776
- draggable: boolean;
1777
- onDragStart: (e: React.DragEvent) => void;
1778
- onDragOver: (e: React.DragEvent) => void;
1779
- onDrop: (e: React.DragEvent) => void;
1780
- onDragEnd: () => void;
1781
- };
1782
- showDropIndicator: (columnId: string) => boolean;
1783
- };
1784
-
1785
- /**
1786
- * Column width configuration
1787
- */
1788
- interface ColumnWidth {
1789
- default: number;
1790
- min: number;
1791
- max?: number;
1792
- }
1793
- /**
1794
- * Column visibility configuration
1795
- */
1796
- interface ColumnVisibility$1 {
1797
- default: boolean;
1798
- locked?: boolean;
1799
- }
1800
- /**
1801
- * Props passed to header cell render function
1802
- */
1803
- interface HeaderCellProps {
1804
- columnId: string;
1805
- isSorted: boolean;
1806
- sortDirection?: 'asc' | 'desc';
1807
- }
1808
- /**
1809
- * Props passed to cell render function
1810
- */
1811
- interface CellProps {
1812
- columnId: string;
1813
- isDragging: boolean;
1814
- }
1815
- /**
1816
- * Column definition for DataTable
1817
- */
1818
- interface ColumnDef<T> {
1819
- /** Unique column identifier */
1820
- id: string;
1821
- /** Header content - string or render function */
1822
- header: string | ((props: HeaderCellProps) => ReactNode);
1823
- /** Cell content render function */
1824
- cell: (item: T, props: CellProps) => ReactNode;
1825
- /** Key to use for sorting (if sortable) */
1826
- sortKey?: string;
1827
- /** Width configuration */
1828
- width?: ColumnWidth;
1829
- /** Visibility configuration */
1830
- visibility?: ColumnVisibility$1;
1831
- /** Additional CSS class for cells */
1832
- className?: string;
1833
- /** Whether this column should use column style from resize hook */
1834
- resizable?: boolean;
1835
- }
1836
- /**
1837
- * External pagination state (from usePagination hook)
1838
- */
1839
- interface ExternalPaginationState<T> {
1840
- paginatedData: T[];
1841
- page: number;
1842
- pageSize: number;
1843
- totalPages: number;
1844
- totalItems: number;
1845
- startIndex: number;
1846
- endIndex: number;
1847
- canGoNext: boolean;
1848
- canGoPrev: boolean;
1849
- pageSizeOptions: number[];
1850
- setPage: (page: number) => void;
1851
- setPageSize: (size: number) => void;
1852
- nextPage: () => void;
1853
- prevPage: () => void;
1854
- }
1855
- /**
1856
- * DataTable props
1857
- */
1858
- interface DataTableProps<T> {
1859
- /** Data array to display */
1860
- data: T[];
1861
- /** Column definitions */
1862
- columns: ColumnDef<T>[];
1863
- /** Storage key for persisting table state (column widths, order, visibility) */
1864
- storageKey: string;
1865
- /** Function to get unique ID from item */
1866
- getRowId: (item: T) => string;
1867
- /** Enable row selection with checkboxes */
1868
- selectable?: boolean;
1869
- /** Set of selected row IDs */
1870
- selectedIds?: Set<string>;
1871
- /** Callback when selection changes */
1872
- onSelectionChange?: (ids: Set<string>) => void;
1873
- /** Callback when row is clicked */
1874
- onRowClick?: (item: T) => void;
1875
- /** Callback when row is right-clicked (for context menu) */
1876
- onRowContextMenu?: (item: T, position: {
1877
- x: number;
1878
- y: number;
1879
- }) => void;
1880
- /** Current sort field */
1881
- sortField?: string;
1882
- /** Current sort order */
1883
- sortOrder?: 'asc' | 'desc';
1884
- /** Callback when sort changes */
1885
- onSort?: (field: string) => void;
1886
- /** Render function for actions column (always last, sticky) */
1887
- actionsColumn?: (item: T) => ReactNode;
1888
- /** Width for actions column */
1889
- actionsColumnWidth?: number;
1890
- /** Page size for pagination (used when no external pagination provided) */
1891
- pageSize?: number;
1892
- /** External pagination state from usePagination hook (overrides internal pagination) */
1893
- pagination?: ExternalPaginationState<T>;
1894
- /** Hide the built-in pagination controls (use when pagination is shown elsewhere) */
1895
- hidePagination?: boolean;
1896
- /** Additional CSS class for table container */
1897
- className?: string;
1898
- /** Function to compute row CSS class */
1899
- rowClassName?: (item: T) => string;
1900
- /** Enable header right-click for column visibility menu */
1901
- enableHeaderContextMenu?: boolean;
1902
- /** Columns that cannot be reordered */
1903
- lockedColumns?: string[];
1904
- /** Default column order (if not persisted) */
1905
- defaultColumnOrder?: string[];
1906
- /** Show loading indicator */
1907
- loading?: boolean;
1908
- /** Content to show when no data */
1909
- emptyState?: ReactNode;
1910
- }
1911
- /**
1912
- * Column config for visibility hook (for compatibility)
1913
- */
1914
- interface ColumnConfigCompat {
1915
- id: string;
1916
- label: string;
1917
- defaultVisible?: boolean;
1918
- locked?: boolean;
1919
- }
1920
- /**
1921
- * Column config for resize hook (for compatibility)
1922
- */
1923
- interface ColumnSizeConfig {
1924
- key: string;
1925
- defaultWidth: number;
1926
- minWidth: number;
1927
- maxWidth?: number;
1928
- }
1929
-
1930
- /**
1931
- * DataTable - Generic data table with full feature set
1932
- *
1933
- * Features:
1934
- * - Column resizing (drag handles)
1935
- * - Column reordering (drag-drop)
1936
- * - Column visibility toggle
1937
- * - Row selection with checkboxes
1938
- * - Sorting
1939
- * - Pagination
1940
- * - Sticky actions column
1941
- * - Context menu support
1942
- * - Header context menu for column visibility
1943
- */
1944
- declare function DataTable<T>({ data, columns, storageKey, getRowId, selectable, selectedIds, onSelectionChange, onRowClick, onRowContextMenu, sortField, sortOrder, onSort, actionsColumn, actionsColumnWidth, pageSize, pagination: externalPagination, hidePagination, className, rowClassName, enableHeaderContextMenu, lockedColumns, defaultColumnOrder, loading, emptyState, }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
1945
-
1946
- /**
1947
- * PaginationControls - Compact inline pagination for table headers
1948
- *
1949
- * A condensed version of pagination controls designed to sit alongside
1950
- * search/filter controls in a table header bar.
1951
- */
1952
- interface PaginationControlsProps {
1953
- page: number;
1954
- pageSize: number;
1955
- totalPages: number;
1956
- totalItems: number;
1957
- startIndex: number;
1958
- endIndex: number;
1959
- canGoNext: boolean;
1960
- canGoPrev: boolean;
1961
- pageSizeOptions: number[];
1962
- setPage: (page: number) => void;
1963
- setPageSize: (size: number) => void;
1964
- nextPage: () => void;
1965
- prevPage: () => void;
1966
- className?: string;
1967
- }
1968
- declare function PaginationControls({ page, pageSize, totalPages, totalItems, startIndex, endIndex, canGoNext, canGoPrev, pageSizeOptions, setPage: _setPage, setPageSize, nextPage, prevPage, className, }: PaginationControlsProps): react_jsx_runtime.JSX.Element | null;
1969
-
1970
- interface FilterOption$1 {
1971
- id: string;
1972
- label: string;
1973
- render: () => React__default.ReactNode;
1974
- }
1975
- interface DataTablePageProps {
1976
- /** Page title */
1977
- title: string;
1978
- /** Page description */
1979
- description?: string;
1980
- /** Search term */
1981
- search?: string;
1982
- /** Search change handler */
1983
- onSearchChange?: (value: string) => void;
1984
- /** Search placeholder text */
1985
- searchPlaceholder?: string;
1986
- /** Filter options for popover */
1987
- filters?: FilterOption$1[];
1988
- /** Number of active filters */
1989
- activeFilterCount?: number;
1990
- /** Clear all filters handler */
1991
- onClearFilters?: () => void;
1992
- /** Pagination props from usePagination hook */
1993
- pagination?: PaginationControlsProps;
1994
- /** Extra content to render next to the title (e.g. HelpTooltip) */
1995
- titleExtra?: React__default.ReactNode;
1996
- /** Action buttons to show in the header */
1997
- actions?: React__default.ReactNode;
1998
- /** Content before the table (e.g., BatchActionsBar) */
1999
- beforeTable?: React__default.ReactNode;
2000
- /** The DataTable component */
2001
- children: React__default.ReactNode;
2002
- /** Additional class for the container */
2003
- className?: string;
2004
- /** Whether to show a loading state */
2005
- loading?: boolean;
2006
- /** Loading component to show */
2007
- loadingComponent?: React__default.ReactNode;
2008
- }
2009
- declare function DataTablePage({ title, description, titleExtra, search, onSearchChange, searchPlaceholder, filters, activeFilterCount, onClearFilters, pagination, actions, beforeTable, children, className, loading, loadingComponent, }: DataTablePageProps): react_jsx_runtime.JSX.Element;
2010
-
2011
- interface PaginationProps {
2012
- page: number;
2013
- pageSize: number;
2014
- totalPages: number;
2015
- totalItems: number;
2016
- startIndex: number;
2017
- endIndex: number;
2018
- canGoNext: boolean;
2019
- canGoPrev: boolean;
2020
- pageSizeOptions: number[];
2021
- onPageChange: (page: number) => void;
2022
- onPageSizeChange: (size: number) => void;
2023
- onNextPage: () => void;
2024
- onPrevPage: () => void;
2025
- onFirstPage: () => void;
2026
- onLastPage: () => void;
2027
- className?: string;
2028
- }
2029
- declare function Pagination({ page, pageSize, totalPages, totalItems, startIndex, endIndex, canGoNext, canGoPrev, pageSizeOptions, onPageChange, onPageSizeChange, onNextPage, onPrevPage, onFirstPage, onLastPage, className, }: PaginationProps): react_jsx_runtime.JSX.Element | null;
2030
-
2031
- interface BatchActionsBarProps {
2032
- /** Number of selected items */
2033
- selectedCount: number;
2034
- /** Callback to clear selection */
2035
- onClear: () => void;
2036
- /** Action buttons to display on the right side */
2037
- children: ReactNode;
2038
- /** Label for the selected items (default: "item"/"items") */
2039
- itemLabel?: string;
2040
- /** Additional CSS classes */
2041
- className?: string;
2042
- }
2043
- /**
2044
- * A horizontal bar that appears when items are selected,
2045
- * showing the count and providing batch action buttons.
2046
- */
2047
- declare function BatchActionsBar({ selectedCount, onClear, children, itemLabel, className, }: BatchActionsBarProps): react_jsx_runtime.JSX.Element | null;
2048
-
2049
- interface ColumnVisibilityProps {
2050
- columns: ColumnConfig$1[];
2051
- isColumnVisible: (columnId: string) => boolean;
2052
- toggleColumn: (columnId: string) => void;
2053
- showAllColumns: () => void;
2054
- hideAllColumns: () => void;
2055
- }
2056
- declare function ColumnVisibility({ columns, isColumnVisible, toggleColumn, showAllColumns, hideAllColumns, }: ColumnVisibilityProps): react_jsx_runtime.JSX.Element;
2057
-
2058
- interface FilterOption {
2059
- id: string;
2060
- label: string;
2061
- render: () => React__default.ReactNode;
2062
- /** Filter type - 'multi' filters get more horizontal space */
2063
- type?: 'single' | 'multi';
2064
- }
2065
- interface TableFiltersProps {
2066
- search?: string;
2067
- onSearchChange?: (value: string) => void;
2068
- searchPlaceholder?: string;
2069
- filters?: FilterOption[];
2070
- activeFilterCount?: number;
2071
- onClearFilters?: () => void;
2072
- className?: string;
2073
- children?: React__default.ReactNode;
2074
- }
2075
- /**
2076
- * TableFilters - Compact filter controls for data tables
2077
- *
2078
- * Features:
2079
- * - Search input
2080
- * - Popover filter menu with badge showing active count
2081
- * - Clear all filters button
2082
- * - Custom filter components via render prop
2083
- * - Children slot for additional action buttons
2084
- */
2085
- declare function TableFilters({ search, onSearchChange, searchPlaceholder, filters, activeFilterCount, onClearFilters, className, children, }: TableFiltersProps): react_jsx_runtime.JSX.Element;
2086
-
2087
- interface MultiSelectOption<T extends string = string> {
2088
- /** Unique value for this option */
2089
- value: T;
2090
- /** Display label */
2091
- label: string;
2092
- /** Optional custom render for the label (e.g., with icon/flag) */
2093
- render?: () => React__default.ReactNode;
2094
- }
2095
- interface MultiSelectFilterProps<T extends string = string> {
2096
- /** Available options to select from */
2097
- options: MultiSelectOption<T>[];
2098
- /** Currently selected values */
2099
- selected: Set<T>;
2100
- /** Called when selection changes */
2101
- onChange: (selected: Set<T>) => void;
2102
- /** Maximum height before scrolling (default: 200px) */
2103
- maxHeight?: number;
2104
- /** Number of columns for grid layout (default: 2) */
2105
- columns?: 1 | 2 | 3;
2106
- /** Show select all / clear buttons */
2107
- showBulkActions?: boolean;
2108
- /** Optional className for the container */
2109
- className?: string;
2110
- }
2111
- /**
2112
- * MultiSelectFilter - A checkbox-based multi-select filter component
2113
- *
2114
- * Designed to work with the TableFilters popover for filtering data tables.
2115
- * Supports custom rendering per option (for flags, badges, icons, etc.)
2116
- */
2117
- declare function MultiSelectFilter<T extends string = string>({ options, selected, onChange, maxHeight, columns, showBulkActions, className, }: MultiSelectFilterProps<T>): react_jsx_runtime.JSX.Element;
2118
-
2119
- export { ActivityLED, type ActivityLEDProps, Alert, AlertDescription, AlertTitle, type ApiReadinessOptions, type ApiReadinessResult, AppLayout, type AppLayoutProps, Badge, type BadgeProps, BatchActionsBar, type BatchActionsBarProps, Button, type ButtonProps, Card, CardContent, CardHeader, type CardProps, CardSkeleton, CardTitle, type CellProps, Checkbox, CodeSnippet, CodeViewer, type CodeViewerProps, ColorPalette, type ColumnConfig$1 as ColumnConfig, type ColumnConfigCompat, type ColumnDef, type ColumnOrderConfig, type ColumnSizeConfig, ColumnVisibility, type ColumnVisibility$1 as ColumnVisibilityConfig, type ColumnVisibilityState, type ColumnWidth, 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, DataTable, DataTablePage, type DataTablePageProps, type DataTableProps, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DogEarBadge, type DragState, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EmptyStates, type ExternalPaginationState, type FilterOption$1 as FilterOption, type FormState, type HeaderCellProps, 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, MultiSelectFilter, type MultiSelectFilterProps, type MultiSelectOption, type NavItem, NetworkInterfaceSelect, NoSearchResults, NoSimulatorsRunning, NoTemplatesFound, Pagination, PaginationControls, type PaginationControlsProps, Popover, PopoverContent, PopoverTrigger, Progress, ProtectedRoute, RealtimeDataTable, type RealtimeDataTableProps, type ResizableColumnResult, 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, type FilterOption as TableFilterOption, TableFilters, type TableFiltersProps, 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, useColumnDragDrop, useColumnOrder, useColumnVisibility, useConfirmDialog, useConnectionStatus, useDebounce, useFormState, usePagination, useResizableColumns, useSidebar, useSocketIO, useTheme, waitForApiReady };
1667
+ 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, 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 };