@nextlyhq/ui 0.0.2-alpha.34 → 0.0.2-alpha.35

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/dist/index.d.cts CHANGED
@@ -442,7 +442,7 @@ type ProgressProps = {
442
442
  * Visual variant for different states
443
443
  *
444
444
  * - `default`: Primary blue (bg-primary-500)
445
- * - `success`: Green (bg-green-500)
445
+ * - `success`: Green (bg-success-500)
446
446
  * - `error`: Red (bg-destructive)
447
447
  *
448
448
  * @default "default"
@@ -509,7 +509,7 @@ declare const Progress: react.ForwardRefExoticComponent<{
509
509
  * Visual variant for different states
510
510
  *
511
511
  * - `default`: Primary blue (bg-primary-500)
512
- * - `success`: Green (bg-green-500)
512
+ * - `success`: Green (bg-success-500)
513
513
  * - `error`: Red (bg-destructive)
514
514
  *
515
515
  * @default "default"
@@ -1945,9 +1945,9 @@ declare const Spinner: react.ForwardRefExoticComponent<Omit<SpinnerProps, "ref">
1945
1945
  *
1946
1946
  * Customization:
1947
1947
  * All styling uses CSS variables from the design system:
1948
- * - --normal-bg: Background color (uses --popover with fallback)
1949
- * - --normal-text: Text color (uses --popover-foreground with fallback)
1950
- * - --normal-border: Border color (uses --border with fallback)
1948
+ * - --normal-bg: Background color (uses --nx-popover with fallback)
1949
+ * - --normal-text: Text color (uses --nx-popover-foreground with fallback)
1950
+ * - --normal-border: Border color (uses --nx-border with fallback)
1951
1951
  * - --border-radius: Border radius (uses --radius with fallback)
1952
1952
  *
1953
1953
  * Security:
@@ -2047,6 +2047,22 @@ interface TableEmptyProps {
2047
2047
  */
2048
2048
  declare function TableEmpty({ message }: TableEmptyProps): react_jsx_runtime.JSX.Element;
2049
2049
 
2050
+ /**
2051
+ * TableSkeleton Component
2052
+ *
2053
+ * Generic loading skeleton for data tables.
2054
+ * Renders header, body, and footer skeleton bars inside a card.
2055
+ * Unified with EntryTable skeleton pattern for consistency across all tables.
2056
+ */
2057
+
2058
+ interface TableSkeletonProps {
2059
+ columns?: number;
2060
+ rowCount?: number;
2061
+ hideWrapper?: boolean;
2062
+ hideFooter?: boolean;
2063
+ }
2064
+ declare const TableSkeleton: react.FC<TableSkeletonProps>;
2065
+
2050
2066
  interface PaginationMeta {
2051
2067
  total: number;
2052
2068
  page: number;
@@ -2088,129 +2104,6 @@ interface ActionCallbacks<TData = unknown> {
2088
2104
  }
2089
2105
  type DataFetcher<TData> = (params: TableParams) => Promise<ListResponse<TData>>;
2090
2106
 
2091
- /**
2092
- * Props for TablePagination component
2093
- */
2094
- interface TablePaginationProps {
2095
- /** Pagination metadata from server */
2096
- meta: PaginationMeta;
2097
- /** Callback when page changes */
2098
- onPageChange: (page: number) => void;
2099
- /** Callback when page size changes */
2100
- onPageSizeChange: (pageSize: number) => void;
2101
- /** Pagination configuration */
2102
- config?: Required<PaginationConfig>;
2103
- /** Whether data is currently loading */
2104
- isLoading?: boolean;
2105
- }
2106
- /**
2107
- * Pagination controls for tables
2108
- */
2109
- declare function TablePagination({ meta, onPageChange, onPageSizeChange, config, isLoading, }: TablePaginationProps): react_jsx_runtime.JSX.Element;
2110
-
2111
- /**
2112
- * TableSkeleton Component
2113
- *
2114
- * Generic loading skeleton for data tables.
2115
- * Renders header, body, and footer skeleton bars inside a card.
2116
- * Unified with EntryTable skeleton pattern for consistency across all tables.
2117
- */
2118
-
2119
- interface TableSkeletonProps {
2120
- columns?: number;
2121
- rowCount?: number;
2122
- hideWrapper?: boolean;
2123
- hideFooter?: boolean;
2124
- }
2125
- declare const TableSkeleton: react.FC<TableSkeletonProps>;
2126
-
2127
- /**
2128
- * Column definition for ResponsiveTable
2129
- *
2130
- * Provides type-safe column definitions with proper type narrowing for render functions.
2131
- *
2132
- * @template T - The data type of items in the table
2133
- * @template K - The specific key from T (defaults to any key of T)
2134
- *
2135
- * @example
2136
- * ```tsx
2137
- * interface User {
2138
- * id: string;
2139
- * name: string;
2140
- * age: number;
2141
- * }
2142
- *
2143
- * // Type-safe column definition with proper inference
2144
- * const columns: Column<User>[] = [
2145
- * {
2146
- * key: "name",
2147
- * label: "Name",
2148
- * // value is inferred as string, not string | number
2149
- * render: (value, user) => <strong>{value}</strong>
2150
- * },
2151
- * {
2152
- * key: "age",
2153
- * label: "Age",
2154
- * // value is inferred as number, not string | number
2155
- * render: (value) => `${value} years old`
2156
- * }
2157
- * ];
2158
- * ```
2159
- */
2160
- type Column<T, K extends keyof T = keyof T> = {
2161
- /** Unique key for the column (must match a property in T) */
2162
- key: K;
2163
- /** Display label for the column header */
2164
- label: react.ReactNode;
2165
- /** Optional custom renderer for cell content with type-safe value */
2166
- render?: (value: T[K], item: T) => react.ReactNode;
2167
- /** Hide column on mobile card view (optional, default: false) */
2168
- hideOnMobile?: boolean;
2169
- /** Hide the label on mobile card view (optional, default: false) */
2170
- hideLabelOnMobile?: boolean;
2171
- /** Optional custom className for the table header cell */
2172
- headerClassName?: string;
2173
- /** Optional custom className for the table body cell */
2174
- cellClassName?: string;
2175
- };
2176
- /**
2177
- * Props for ResponsiveTable component
2178
- *
2179
- * @template T - The data type of items in the table, must have an 'id' property
2180
- */
2181
- type ResponsiveTableProps<T extends {
2182
- id: string;
2183
- }> = {
2184
- /** Array of data items to display */
2185
- data: T[];
2186
- /** Array of column definitions */
2187
- columns: Column<T>[];
2188
- /** Optional callback when a row/card is clicked */
2189
- onRowClick?: (item: T) => void;
2190
- /** Optional custom renderer for mobile card view */
2191
- renderMobileCard?: (item: T, columns: Column<T>[]) => react.ReactNode;
2192
- /** Optional custom className for the container */
2193
- className?: string;
2194
- /** Optional empty state message */
2195
- emptyMessage?: string;
2196
- /** Optional ARIA label for the table (improves screen reader experience) */
2197
- ariaLabel?: string;
2198
- /** Optional custom className for the internal desktop table wrapper */
2199
- tableWrapperClassName?: string;
2200
- /** Optional footer content rendered inside the table card (e.g. Pagination) */
2201
- footer?: react.ReactNode;
2202
- };
2203
- /**
2204
- * Ref type for ResponsiveTable component
2205
- */
2206
- type ResponsiveTableRef = HTMLDivElement;
2207
-
2208
- declare const ResponsiveTable: <T extends {
2209
- id: string;
2210
- }>(props: ResponsiveTableProps<T> & {
2211
- ref?: react.ForwardedRef<HTMLDivElement>;
2212
- }) => react.ReactElement;
2213
-
2214
2107
  interface PortalProviderProps {
2215
2108
  /** The DOM element to portal overlay content into. Defaults to document.body (Radix default). */
2216
2109
  container: HTMLElement | null;
@@ -2228,7 +2121,7 @@ declare function usePortalContainer(): HTMLElement | undefined;
2228
2121
  * @example
2229
2122
  * ```typescript
2230
2123
  * cn('px-2 py-1', 'px-4') // => 'py-1 px-4'
2231
- * cn('text-red-500', condition && 'text-blue-500')
2124
+ * cn('text-muted-foreground', condition && 'text-foreground')
2232
2125
  * ```
2233
2126
  */
2234
2127
  declare function cn(...inputs: ClassValue[]): string;
@@ -2325,4 +2218,4 @@ declare const uiPreset: {
2325
2218
  };
2326
2219
  };
2327
2220
 
2328
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, type DataFetcher, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type FilterInfo, FormLabelWithTooltip, type FormLabelWithTooltipProps, Input, type InputProps, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, ResponsiveTable, type ResponsiveTableProps, type ResponsiveTableRef, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentRef, SheetDescription, type SheetDescriptionProps, type SheetDescriptionRef, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayRef, SheetPortal, type SheetProps, SheetTitle, type SheetTitleProps, type SheetTitleRef, SheetTrigger, type SheetTriggerProps, Skeleton, type SkeletonProps, type SortInfo, Spinner, type SpinnerProps, Switch, Table, TableBody, TableCaption, TableCell, TableEmpty, type TableEmptyProps, TableError, type TableErrorProps, TableFooter, TableHead, TableHeader, TableLoading, TablePagination, type TablePaginationProps, type TableParams, TableRow, TableSearch, type TableSearchProps, TableSkeleton, type TableSkeletonProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, dialogContentVariants, inputVariants, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, uiPreset, usePortalContainer };
2221
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, type DataFetcher, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type FilterInfo, FormLabelWithTooltip, type FormLabelWithTooltipProps, Input, type InputProps, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentRef, SheetDescription, type SheetDescriptionProps, type SheetDescriptionRef, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayRef, SheetPortal, type SheetProps, SheetTitle, type SheetTitleProps, type SheetTitleRef, SheetTrigger, type SheetTriggerProps, Skeleton, type SkeletonProps, type SortInfo, Spinner, type SpinnerProps, Switch, Table, TableBody, TableCaption, TableCell, TableEmpty, type TableEmptyProps, TableError, type TableErrorProps, TableFooter, TableHead, TableHeader, TableLoading, type TableParams, TableRow, TableSearch, type TableSearchProps, TableSkeleton, type TableSkeletonProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, dialogContentVariants, inputVariants, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, uiPreset, usePortalContainer };
package/dist/index.d.ts CHANGED
@@ -442,7 +442,7 @@ type ProgressProps = {
442
442
  * Visual variant for different states
443
443
  *
444
444
  * - `default`: Primary blue (bg-primary-500)
445
- * - `success`: Green (bg-green-500)
445
+ * - `success`: Green (bg-success-500)
446
446
  * - `error`: Red (bg-destructive)
447
447
  *
448
448
  * @default "default"
@@ -509,7 +509,7 @@ declare const Progress: react.ForwardRefExoticComponent<{
509
509
  * Visual variant for different states
510
510
  *
511
511
  * - `default`: Primary blue (bg-primary-500)
512
- * - `success`: Green (bg-green-500)
512
+ * - `success`: Green (bg-success-500)
513
513
  * - `error`: Red (bg-destructive)
514
514
  *
515
515
  * @default "default"
@@ -1945,9 +1945,9 @@ declare const Spinner: react.ForwardRefExoticComponent<Omit<SpinnerProps, "ref">
1945
1945
  *
1946
1946
  * Customization:
1947
1947
  * All styling uses CSS variables from the design system:
1948
- * - --normal-bg: Background color (uses --popover with fallback)
1949
- * - --normal-text: Text color (uses --popover-foreground with fallback)
1950
- * - --normal-border: Border color (uses --border with fallback)
1948
+ * - --normal-bg: Background color (uses --nx-popover with fallback)
1949
+ * - --normal-text: Text color (uses --nx-popover-foreground with fallback)
1950
+ * - --normal-border: Border color (uses --nx-border with fallback)
1951
1951
  * - --border-radius: Border radius (uses --radius with fallback)
1952
1952
  *
1953
1953
  * Security:
@@ -2047,6 +2047,22 @@ interface TableEmptyProps {
2047
2047
  */
2048
2048
  declare function TableEmpty({ message }: TableEmptyProps): react_jsx_runtime.JSX.Element;
2049
2049
 
2050
+ /**
2051
+ * TableSkeleton Component
2052
+ *
2053
+ * Generic loading skeleton for data tables.
2054
+ * Renders header, body, and footer skeleton bars inside a card.
2055
+ * Unified with EntryTable skeleton pattern for consistency across all tables.
2056
+ */
2057
+
2058
+ interface TableSkeletonProps {
2059
+ columns?: number;
2060
+ rowCount?: number;
2061
+ hideWrapper?: boolean;
2062
+ hideFooter?: boolean;
2063
+ }
2064
+ declare const TableSkeleton: react.FC<TableSkeletonProps>;
2065
+
2050
2066
  interface PaginationMeta {
2051
2067
  total: number;
2052
2068
  page: number;
@@ -2088,129 +2104,6 @@ interface ActionCallbacks<TData = unknown> {
2088
2104
  }
2089
2105
  type DataFetcher<TData> = (params: TableParams) => Promise<ListResponse<TData>>;
2090
2106
 
2091
- /**
2092
- * Props for TablePagination component
2093
- */
2094
- interface TablePaginationProps {
2095
- /** Pagination metadata from server */
2096
- meta: PaginationMeta;
2097
- /** Callback when page changes */
2098
- onPageChange: (page: number) => void;
2099
- /** Callback when page size changes */
2100
- onPageSizeChange: (pageSize: number) => void;
2101
- /** Pagination configuration */
2102
- config?: Required<PaginationConfig>;
2103
- /** Whether data is currently loading */
2104
- isLoading?: boolean;
2105
- }
2106
- /**
2107
- * Pagination controls for tables
2108
- */
2109
- declare function TablePagination({ meta, onPageChange, onPageSizeChange, config, isLoading, }: TablePaginationProps): react_jsx_runtime.JSX.Element;
2110
-
2111
- /**
2112
- * TableSkeleton Component
2113
- *
2114
- * Generic loading skeleton for data tables.
2115
- * Renders header, body, and footer skeleton bars inside a card.
2116
- * Unified with EntryTable skeleton pattern for consistency across all tables.
2117
- */
2118
-
2119
- interface TableSkeletonProps {
2120
- columns?: number;
2121
- rowCount?: number;
2122
- hideWrapper?: boolean;
2123
- hideFooter?: boolean;
2124
- }
2125
- declare const TableSkeleton: react.FC<TableSkeletonProps>;
2126
-
2127
- /**
2128
- * Column definition for ResponsiveTable
2129
- *
2130
- * Provides type-safe column definitions with proper type narrowing for render functions.
2131
- *
2132
- * @template T - The data type of items in the table
2133
- * @template K - The specific key from T (defaults to any key of T)
2134
- *
2135
- * @example
2136
- * ```tsx
2137
- * interface User {
2138
- * id: string;
2139
- * name: string;
2140
- * age: number;
2141
- * }
2142
- *
2143
- * // Type-safe column definition with proper inference
2144
- * const columns: Column<User>[] = [
2145
- * {
2146
- * key: "name",
2147
- * label: "Name",
2148
- * // value is inferred as string, not string | number
2149
- * render: (value, user) => <strong>{value}</strong>
2150
- * },
2151
- * {
2152
- * key: "age",
2153
- * label: "Age",
2154
- * // value is inferred as number, not string | number
2155
- * render: (value) => `${value} years old`
2156
- * }
2157
- * ];
2158
- * ```
2159
- */
2160
- type Column<T, K extends keyof T = keyof T> = {
2161
- /** Unique key for the column (must match a property in T) */
2162
- key: K;
2163
- /** Display label for the column header */
2164
- label: react.ReactNode;
2165
- /** Optional custom renderer for cell content with type-safe value */
2166
- render?: (value: T[K], item: T) => react.ReactNode;
2167
- /** Hide column on mobile card view (optional, default: false) */
2168
- hideOnMobile?: boolean;
2169
- /** Hide the label on mobile card view (optional, default: false) */
2170
- hideLabelOnMobile?: boolean;
2171
- /** Optional custom className for the table header cell */
2172
- headerClassName?: string;
2173
- /** Optional custom className for the table body cell */
2174
- cellClassName?: string;
2175
- };
2176
- /**
2177
- * Props for ResponsiveTable component
2178
- *
2179
- * @template T - The data type of items in the table, must have an 'id' property
2180
- */
2181
- type ResponsiveTableProps<T extends {
2182
- id: string;
2183
- }> = {
2184
- /** Array of data items to display */
2185
- data: T[];
2186
- /** Array of column definitions */
2187
- columns: Column<T>[];
2188
- /** Optional callback when a row/card is clicked */
2189
- onRowClick?: (item: T) => void;
2190
- /** Optional custom renderer for mobile card view */
2191
- renderMobileCard?: (item: T, columns: Column<T>[]) => react.ReactNode;
2192
- /** Optional custom className for the container */
2193
- className?: string;
2194
- /** Optional empty state message */
2195
- emptyMessage?: string;
2196
- /** Optional ARIA label for the table (improves screen reader experience) */
2197
- ariaLabel?: string;
2198
- /** Optional custom className for the internal desktop table wrapper */
2199
- tableWrapperClassName?: string;
2200
- /** Optional footer content rendered inside the table card (e.g. Pagination) */
2201
- footer?: react.ReactNode;
2202
- };
2203
- /**
2204
- * Ref type for ResponsiveTable component
2205
- */
2206
- type ResponsiveTableRef = HTMLDivElement;
2207
-
2208
- declare const ResponsiveTable: <T extends {
2209
- id: string;
2210
- }>(props: ResponsiveTableProps<T> & {
2211
- ref?: react.ForwardedRef<HTMLDivElement>;
2212
- }) => react.ReactElement;
2213
-
2214
2107
  interface PortalProviderProps {
2215
2108
  /** The DOM element to portal overlay content into. Defaults to document.body (Radix default). */
2216
2109
  container: HTMLElement | null;
@@ -2228,7 +2121,7 @@ declare function usePortalContainer(): HTMLElement | undefined;
2228
2121
  * @example
2229
2122
  * ```typescript
2230
2123
  * cn('px-2 py-1', 'px-4') // => 'py-1 px-4'
2231
- * cn('text-red-500', condition && 'text-blue-500')
2124
+ * cn('text-muted-foreground', condition && 'text-foreground')
2232
2125
  * ```
2233
2126
  */
2234
2127
  declare function cn(...inputs: ClassValue[]): string;
@@ -2325,4 +2218,4 @@ declare const uiPreset: {
2325
2218
  };
2326
2219
  };
2327
2220
 
2328
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, type DataFetcher, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type FilterInfo, FormLabelWithTooltip, type FormLabelWithTooltipProps, Input, type InputProps, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, ResponsiveTable, type ResponsiveTableProps, type ResponsiveTableRef, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentRef, SheetDescription, type SheetDescriptionProps, type SheetDescriptionRef, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayRef, SheetPortal, type SheetProps, SheetTitle, type SheetTitleProps, type SheetTitleRef, SheetTrigger, type SheetTriggerProps, Skeleton, type SkeletonProps, type SortInfo, Spinner, type SpinnerProps, Switch, Table, TableBody, TableCaption, TableCell, TableEmpty, type TableEmptyProps, TableError, type TableErrorProps, TableFooter, TableHead, TableHeader, TableLoading, TablePagination, type TablePaginationProps, type TableParams, TableRow, TableSearch, type TableSearchProps, TableSkeleton, type TableSkeletonProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, dialogContentVariants, inputVariants, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, uiPreset, usePortalContainer };
2221
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, type DataFetcher, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type FilterInfo, FormLabelWithTooltip, type FormLabelWithTooltipProps, Input, type InputProps, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentRef, SheetDescription, type SheetDescriptionProps, type SheetDescriptionRef, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayRef, SheetPortal, type SheetProps, SheetTitle, type SheetTitleProps, type SheetTitleRef, SheetTrigger, type SheetTriggerProps, Skeleton, type SkeletonProps, type SortInfo, Spinner, type SpinnerProps, Switch, Table, TableBody, TableCaption, TableCell, TableEmpty, type TableEmptyProps, TableError, type TableErrorProps, TableFooter, TableHead, TableHeader, TableLoading, type TableParams, TableRow, TableSearch, type TableSearchProps, TableSkeleton, type TableSkeletonProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, dialogContentVariants, inputVariants, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, uiPreset, usePortalContainer };