@octanejs/shadcn 0.0.5 → 0.0.7

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.
Files changed (79) hide show
  1. package/package.json +87 -10
  2. package/src/{ui → bases/radix/ui}/accordion.tsrx +1 -1
  3. package/src/{ui → bases/radix/ui}/alert-dialog.tsrx +1 -1
  4. package/src/{ui → bases/radix/ui}/alert.tsrx +2 -2
  5. package/src/{ui → bases/radix/ui}/avatar.tsrx +1 -1
  6. package/src/{ui → bases/radix/ui}/badge.tsrx +2 -2
  7. package/src/{ui → bases/radix/ui}/breadcrumb.tsrx +1 -1
  8. package/src/{ui → bases/radix/ui}/button.tsrx +2 -2
  9. package/src/{ui → bases/radix/ui}/card.tsrx +2 -2
  10. package/src/{ui → bases/radix/ui}/checkbox.tsrx +1 -1
  11. package/src/{ui → bases/radix/ui}/context-menu.tsrx +1 -1
  12. package/src/{ui → bases/radix/ui}/dialog.tsrx +1 -1
  13. package/src/{ui → bases/radix/ui}/dropdown-menu.tsrx +1 -1
  14. package/src/{ui → bases/radix/ui}/empty.tsrx +1 -1
  15. package/src/{ui → bases/radix/ui}/field.tsrx +1 -1
  16. package/src/{ui → bases/radix/ui}/hover-card.tsrx +1 -1
  17. package/src/{ui → bases/radix/ui}/input.tsrx +2 -2
  18. package/src/{ui → bases/radix/ui}/item.tsrx +1 -1
  19. package/src/{ui → bases/radix/ui}/kbd.tsrx +2 -2
  20. package/src/{ui → bases/radix/ui}/label.tsrx +1 -1
  21. package/src/{ui → bases/radix/ui}/menubar.tsrx +1 -1
  22. package/src/{ui → bases/radix/ui}/native-select.tsrx +1 -1
  23. package/src/{ui → bases/radix/ui}/navigation-menu.tsrx +1 -1
  24. package/src/{ui → bases/radix/ui}/pagination.tsrx +1 -1
  25. package/src/{ui → bases/radix/ui}/popover.tsrx +1 -1
  26. package/src/{ui → bases/radix/ui}/progress.tsrx +1 -1
  27. package/src/{ui → bases/radix/ui}/radio-group.tsrx +1 -1
  28. package/src/{ui → bases/radix/ui}/scroll-area.tsrx +1 -1
  29. package/src/{ui → bases/radix/ui}/select.tsrx +1 -1
  30. package/src/{ui → bases/radix/ui}/separator.tsrx +1 -1
  31. package/src/{ui → bases/radix/ui}/sheet.tsrx +1 -1
  32. package/src/{ui → bases/radix/ui}/sidebar.tsrx +2 -2
  33. package/src/{ui → bases/radix/ui}/skeleton.tsrx +2 -2
  34. package/src/{ui → bases/radix/ui}/slider.tsrx +1 -1
  35. package/src/{ui → bases/radix/ui}/spinner.tsrx +1 -1
  36. package/src/{ui → bases/radix/ui}/switch.tsrx +1 -1
  37. package/src/{ui → bases/radix/ui}/table.tsrx +1 -1
  38. package/src/{ui → bases/radix/ui}/tabs.tsrx +1 -1
  39. package/src/{ui → bases/radix/ui}/textarea.tsrx +2 -2
  40. package/src/{ui → bases/radix/ui}/toggle-group.tsrx +1 -1
  41. package/src/{ui → bases/radix/ui}/toggle.tsrx +1 -1
  42. package/src/{ui → bases/radix/ui}/tooltip.tsrx +1 -1
  43. package/src/bases/react-aria/ui/accordion.tsrx +73 -0
  44. package/src/bases/react-aria/ui/alert-dialog.tsrx +154 -0
  45. package/src/bases/react-aria/ui/alert.tsrx +60 -0
  46. package/src/bases/react-aria/ui/aspect-ratio.tsrx +13 -0
  47. package/src/bases/react-aria/ui/avatar.tsrx +83 -0
  48. package/src/bases/react-aria/ui/badge.tsrx +48 -0
  49. package/src/bases/react-aria/ui/breadcrumb.tsrx +100 -0
  50. package/src/bases/react-aria/ui/button.tsrx +96 -0
  51. package/src/bases/react-aria/ui/card.tsrx +73 -0
  52. package/src/bases/react-aria/ui/checkbox.tsrx +37 -0
  53. package/src/bases/react-aria/ui/collapsible.tsrx +20 -0
  54. package/src/bases/react-aria/ui/dialog.tsrx +131 -0
  55. package/src/bases/react-aria/ui/empty.tsrx +79 -0
  56. package/src/bases/react-aria/ui/field.tsrx +170 -0
  57. package/src/bases/react-aria/ui/input.tsrx +28 -0
  58. package/src/bases/react-aria/ui/item.tsrx +148 -0
  59. package/src/bases/react-aria/ui/kbd.tsrx +30 -0
  60. package/src/bases/react-aria/ui/label.tsrx +22 -0
  61. package/src/bases/react-aria/ui/native-select.tsrx +44 -0
  62. package/src/bases/react-aria/ui/pagination.tsrx +92 -0
  63. package/src/bases/react-aria/ui/popover.tsrx +57 -0
  64. package/src/bases/react-aria/ui/radio-group.tsrx +46 -0
  65. package/src/bases/react-aria/ui/scroll-area.tsrx +14 -0
  66. package/src/bases/react-aria/ui/separator.tsrx +28 -0
  67. package/src/bases/react-aria/ui/sheet.tsrx +143 -0
  68. package/src/bases/react-aria/ui/skeleton.tsrx +10 -0
  69. package/src/bases/react-aria/ui/slider.tsrx +56 -0
  70. package/src/bases/react-aria/ui/spinner.tsrx +28 -0
  71. package/src/bases/react-aria/ui/switch.tsrx +38 -0
  72. package/src/bases/react-aria/ui/table.tsrx +98 -0
  73. package/src/bases/react-aria/ui/tabs.tsrx +67 -0
  74. package/src/bases/react-aria/ui/textarea.tsrx +26 -0
  75. package/src/bases/react-aria/ui/toggle.tsrx +38 -0
  76. package/src/index.ts +0 -263
  77. /package/src/{ui → bases/radix/ui}/aspect-ratio.tsrx +0 -0
  78. /package/src/{ui → bases/radix/ui}/collapsible.tsrx +0 -0
  79. /package/src/{ui → bases/radix/ui}/sonner.tsrx +0 -0
@@ -0,0 +1,98 @@
1
+ // OCTANE ADAPTATION: RAC's collection props are generic over the item type, and
2
+ // its JSX signatures fix that parameter at `object`. The wrappers therefore
3
+ // carry the same `T extends object` constraint upstream's collection types
4
+ // assume, so a caller's item type flows through instead of widening.
5
+ import {
6
+ Cell as CellPrimitive,
7
+ Column as ColumnPrimitive,
8
+ Row as RowPrimitive,
9
+ TableBody as TableBodyPrimitive,
10
+ TableFooter as TableFooterPrimitive,
11
+ TableHeader as TableHeaderPrimitive,
12
+ Table as TablePrimitive,
13
+ type CellProps,
14
+ type ColumnProps,
15
+ type RowProps,
16
+ type TableBodyProps,
17
+ type TableFooterProps,
18
+ type TableHeaderProps,
19
+ type TableProps,
20
+ } from '@octanejs/aria/components';
21
+
22
+ import { cn } from '../../../lib/utils';
23
+ import type { HostProps } from '../../../lib/types';
24
+
25
+ export function Table({ className, ...props }: TableProps) {
26
+ return <div data-slot="table-container" className="relative w-full overflow-x-auto">
27
+ <TablePrimitive
28
+ data-slot="table"
29
+ className={cn('w-full caption-bottom text-sm', className)}
30
+ {...props}
31
+ />
32
+ </div>;
33
+ }
34
+
35
+ export function TableHeader<T extends object>({ className, ...props }: TableHeaderProps<T>) {
36
+ return <TableHeaderPrimitive
37
+ data-slot="table-header"
38
+ className={cn('[&_tr]:border-b', className)}
39
+ {...props}
40
+ />;
41
+ }
42
+
43
+ export function TableBody<T extends object>({ className, ...props }: TableBodyProps<T>) {
44
+ return <TableBodyPrimitive
45
+ data-slot="table-body"
46
+ className={cn('data-empty:h-24 data-empty:text-center [&_tr:last-child]:border-0', className)}
47
+ {...props}
48
+ />;
49
+ }
50
+
51
+ export function TableFooter<T extends object>({ className, ...props }: TableFooterProps<T>) {
52
+ return <TableFooterPrimitive
53
+ data-slot="table-footer"
54
+ className={cn('border-t bg-muted/50 font-medium [&>tr]:last:border-b-0', className)}
55
+ {...props}
56
+ />;
57
+ }
58
+
59
+ export function TableRow<T extends object>({ className, ...props }: RowProps<T>) {
60
+ return <RowPrimitive
61
+ data-slot="table-row"
62
+ className={cn(
63
+ 'border-b transition-colors hover:bg-muted/50 has-aria-expanded:bg-muted/50 data-[state=selected]:bg-muted data-selected:bg-muted',
64
+ className,
65
+ )}
66
+ {...props}
67
+ />;
68
+ }
69
+
70
+ export function TableHead({ className, ...props }: ColumnProps) {
71
+ return <ColumnPrimitive
72
+ data-slot="table-head"
73
+ className={cn(
74
+ 'h-10 px-2 text-left align-middle font-medium whitespace-nowrap text-foreground [&:has([data-slot=checkbox])]:pr-0 [&:has([role=checkbox])]:pr-0',
75
+ className,
76
+ )}
77
+ {...props}
78
+ />;
79
+ }
80
+
81
+ export function TableCell({ className, ...props }: CellProps) {
82
+ return <CellPrimitive
83
+ data-slot="table-cell"
84
+ className={cn(
85
+ 'p-2 align-middle whitespace-nowrap [&:has([data-slot=checkbox])]:pr-0 [&:has([role=checkbox])]:pr-0',
86
+ className,
87
+ )}
88
+ {...props}
89
+ />;
90
+ }
91
+
92
+ export function TableCaption({ className, ...props }: HostProps<'figcaption'>) {
93
+ return <figcaption
94
+ data-slot="table-caption"
95
+ className={cn('mt-4 text-center text-sm text-muted-foreground', className)}
96
+ {...props}
97
+ />;
98
+ }
@@ -0,0 +1,67 @@
1
+ import { cva, type VariantProps } from 'class-variance-authority';
2
+ import {
3
+ TabList as TabListPrimitive,
4
+ TabPanel as TabPanelPrimitive,
5
+ Tab as TabPrimitive,
6
+ Tabs as TabsPrimitive,
7
+ } from '@octanejs/aria/components';
8
+ import type { TabPanelProps, TabProps, TabsProps } from '@octanejs/aria/components';
9
+
10
+ import { cn } from '../../../lib/utils';
11
+
12
+ export function Tabs({ className, ...props }: TabsProps) {
13
+ return <TabsPrimitive
14
+ data-slot="tabs"
15
+ className={cn('group/tabs flex gap-2 data-horizontal:flex-col', className)}
16
+ {...props}
17
+ />;
18
+ }
19
+
20
+ export const tabsListVariants = cva(
21
+ 'group/tabs-list inline-flex w-fit items-center justify-center rounded-lg p-[3px] text-muted-foreground group-data-horizontal/tabs:h-8 group-data-vertical/tabs:h-fit group-data-vertical/tabs:flex-col data-[variant=line]:rounded-none',
22
+ {
23
+ variants: {
24
+ variant: {
25
+ default: 'bg-muted',
26
+ line: 'gap-1 bg-transparent',
27
+ },
28
+ },
29
+ defaultVariants: {
30
+ variant: 'default',
31
+ },
32
+ },
33
+ );
34
+
35
+ export function TabsList({ className, variant = 'default', ...props }: Record<
36
+ string,
37
+ any
38
+ > & VariantProps<typeof tabsListVariants>) {
39
+ return <TabListPrimitive
40
+ data-slot="tabs-list"
41
+ data-variant={variant}
42
+ className={cn(tabsListVariants({ variant }), className)}
43
+ {...props}
44
+ />;
45
+ }
46
+
47
+ export function TabsTrigger({ className, ...props }: TabProps) {
48
+ return <TabPrimitive
49
+ data-slot="tabs-trigger"
50
+ className={cn(
51
+ 'relative inline-flex h-[calc(100%-1px)] flex-1 cursor-default items-center justify-center gap-1.5 rounded-md border border-transparent px-1.5 py-0.5 text-sm font-medium whitespace-nowrap text-foreground/60 transition-all group-data-vertical/tabs:w-full group-data-vertical/tabs:justify-start hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1 focus-visible:outline-ring disabled:pointer-events-none disabled:opacity-50 has-data-[icon=inline-end]:pr-1 has-data-[icon=inline-start]:pl-1 data-[disabled]:pointer-events-none data-[disabled]:opacity-50 dark:text-muted-foreground dark:hover:text-foreground group-data-[variant=default]/tabs-list:data-selected:shadow-sm group-data-[variant=line]/tabs-list:data-selected:shadow-none group-data-[variant=default]/tabs-list:data-active:shadow-sm group-data-[variant=line]/tabs-list:data-active:shadow-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=\'size-\'])]:size-4',
52
+ 'group-data-[variant=line]/tabs-list:bg-transparent group-data-[variant=line]/tabs-list:data-selected:bg-transparent dark:group-data-[variant=line]/tabs-list:data-selected:border-transparent dark:group-data-[variant=line]/tabs-list:data-selected:bg-transparent',
53
+ 'data-selected:bg-background data-selected:text-foreground dark:data-selected:border-input dark:data-selected:bg-input/30 dark:data-selected:text-foreground',
54
+ 'after:absolute after:bg-foreground after:opacity-0 after:transition-opacity group-data-horizontal/tabs:after:inset-x-0 group-data-horizontal/tabs:after:bottom-[-5px] group-data-horizontal/tabs:after:h-0.5 group-data-vertical/tabs:after:inset-y-0 group-data-vertical/tabs:after:-right-1 group-data-vertical/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-selected:after:opacity-100',
55
+ className,
56
+ )}
57
+ {...props}
58
+ />;
59
+ }
60
+
61
+ export function TabsContent({ className, ...props }: TabPanelProps) {
62
+ return <TabPanelPrimitive
63
+ data-slot="tabs-content"
64
+ className={cn('flex-1 text-sm outline-none', className)}
65
+ {...props}
66
+ />;
67
+ }
@@ -0,0 +1,26 @@
1
+ // React Aria base textarea — structure from upstream `bases/aria/ui/textarea.tsx`
2
+ // (RAC TextArea, className through composeRenderProps). Class strings are the
3
+ // package's shipped utilities-inlined flavor, matching the Radix base.
4
+ //
5
+ // OCTANE DIVERGENCE: per-keystroke handling is the native `onInput` event, not
6
+ // a synthetic `onChange`; native `change` keeps its commit-on-blur meaning.
7
+ import { composeRenderProps, TextArea as TextareaPrimitive } from '@octanejs/aria/components';
8
+ import type { TextAreaProps as TextareaPrimitiveProps } from '@octanejs/aria/components';
9
+
10
+ import { cn } from '../../../lib/utils';
11
+
12
+ export interface TextareaProps extends TextareaPrimitiveProps {}
13
+
14
+ export function Textarea({ className, ...props }: TextareaProps) @{
15
+ <TextareaPrimitive
16
+ data-slot="textarea"
17
+ className={composeRenderProps(
18
+ className,
19
+ (resolved: string | undefined) => cn(
20
+ 'flex field-sizing-content min-h-16 w-full rounded-lg border border-input bg-transparent px-2.5 py-2 text-base transition-colors outline-none placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40',
21
+ resolved,
22
+ ),
23
+ )}
24
+ {...props}
25
+ />
26
+ }
@@ -0,0 +1,38 @@
1
+ import { cva, type VariantProps } from 'class-variance-authority';
2
+ import { ToggleButton as TogglePrimitive, type ToggleButtonProps } from '@octanejs/aria/components';
3
+
4
+ import { cn } from '../../../lib/utils';
5
+
6
+ export const toggleVariants = cva(
7
+ 'group/toggle inline-flex items-center justify-center gap-1 rounded-lg text-sm font-medium whitespace-nowrap transition-all outline-none hover:bg-muted hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 aria-pressed:bg-muted data-[state=on]:bg-muted dark:aria-invalid:ring-destructive/40 data-selected:bg-muted [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=\'size-\'])]:size-4',
8
+ {
9
+ variants: {
10
+ variant: {
11
+ default: 'bg-transparent',
12
+ outline: 'border border-input bg-transparent hover:bg-muted',
13
+ },
14
+ size: {
15
+ default: 'h-8 min-w-8 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2',
16
+ sm: 'h-7 min-w-7 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*=\'size-\'])]:size-3.5',
17
+ lg: 'h-9 min-w-9 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2',
18
+ },
19
+ },
20
+ defaultVariants: {
21
+ variant: 'default',
22
+ size: 'default',
23
+ },
24
+ },
25
+ );
26
+
27
+ export function Toggle({
28
+ className,
29
+ variant = 'default',
30
+ size = 'default',
31
+ ...props
32
+ }: ToggleButtonProps & VariantProps<typeof toggleVariants>) {
33
+ return <TogglePrimitive
34
+ data-slot="toggle"
35
+ className={cn(toggleVariants({ variant, size, className }))}
36
+ {...props}
37
+ />;
38
+ }
package/src/index.ts DELETED
@@ -1,263 +0,0 @@
1
- // @octanejs/shadcn — shadcn/ui (Radix base) for the octane renderer.
2
- //
3
- // Upstream pin: shadcn-ui/ui@4baadbc6517070ae8f8feb2c97037adc2b305544 (main,
4
- // 2026-07-24) + CLI shadcn@4.14.1. Components are authored in `.tsrx` so the
5
- // octane compiler owns templates and hook slots; the cva variant maps, class
6
- // strings, and data-slot attributes are preserved byte-for-byte from the
7
- // pinned upstream sources (the public styling contract). See
8
- // docs/shadcn-port-plan.md.
9
- export { cn } from './lib/utils';
10
-
11
- export { Accordion, AccordionItem, AccordionTrigger, AccordionContent } from './ui/accordion.tsrx';
12
- export { Alert, AlertTitle, AlertDescription, AlertAction, alertVariants } from './ui/alert.tsrx';
13
- export {
14
- AlertDialog,
15
- AlertDialogAction,
16
- AlertDialogCancel,
17
- AlertDialogContent,
18
- AlertDialogDescription,
19
- AlertDialogFooter,
20
- AlertDialogHeader,
21
- AlertDialogMedia,
22
- AlertDialogOverlay,
23
- AlertDialogPortal,
24
- AlertDialogTitle,
25
- AlertDialogTrigger,
26
- } from './ui/alert-dialog.tsrx';
27
- export { AspectRatio } from './ui/aspect-ratio.tsrx';
28
- export {
29
- Avatar,
30
- AvatarImage,
31
- AvatarFallback,
32
- AvatarBadge,
33
- AvatarGroup,
34
- AvatarGroupCount,
35
- } from './ui/avatar.tsrx';
36
- export { Badge, badgeVariants, type BadgeProps } from './ui/badge.tsrx';
37
- export {
38
- Breadcrumb,
39
- BreadcrumbList,
40
- BreadcrumbItem,
41
- BreadcrumbLink,
42
- BreadcrumbPage,
43
- BreadcrumbSeparator,
44
- BreadcrumbEllipsis,
45
- } from './ui/breadcrumb.tsrx';
46
- export { Button, buttonVariants, type ButtonProps } from './ui/button.tsrx';
47
- export { Checkbox } from './ui/checkbox.tsrx';
48
- export { Collapsible, CollapsibleTrigger, CollapsibleContent } from './ui/collapsible.tsrx';
49
- export {
50
- ContextMenu,
51
- ContextMenuTrigger,
52
- ContextMenuContent,
53
- ContextMenuItem,
54
- ContextMenuCheckboxItem,
55
- ContextMenuRadioItem,
56
- ContextMenuLabel,
57
- ContextMenuSeparator,
58
- ContextMenuShortcut,
59
- ContextMenuGroup,
60
- ContextMenuPortal,
61
- ContextMenuSub,
62
- ContextMenuSubContent,
63
- ContextMenuSubTrigger,
64
- ContextMenuRadioGroup,
65
- } from './ui/context-menu.tsrx';
66
- export {
67
- Dialog,
68
- DialogClose,
69
- DialogContent,
70
- DialogDescription,
71
- DialogFooter,
72
- DialogHeader,
73
- DialogOverlay,
74
- DialogPortal,
75
- DialogTitle,
76
- DialogTrigger,
77
- } from './ui/dialog.tsrx';
78
- export {
79
- DropdownMenu,
80
- DropdownMenuPortal,
81
- DropdownMenuTrigger,
82
- DropdownMenuContent,
83
- DropdownMenuGroup,
84
- DropdownMenuLabel,
85
- DropdownMenuItem,
86
- DropdownMenuCheckboxItem,
87
- DropdownMenuRadioGroup,
88
- DropdownMenuRadioItem,
89
- DropdownMenuSeparator,
90
- DropdownMenuShortcut,
91
- DropdownMenuSub,
92
- DropdownMenuSubTrigger,
93
- DropdownMenuSubContent,
94
- } from './ui/dropdown-menu.tsrx';
95
- export {
96
- Card,
97
- CardHeader,
98
- CardFooter,
99
- CardTitle,
100
- CardAction,
101
- CardDescription,
102
- CardContent,
103
- } from './ui/card.tsrx';
104
- export {
105
- Empty,
106
- EmptyHeader,
107
- EmptyTitle,
108
- EmptyDescription,
109
- EmptyContent,
110
- EmptyMedia,
111
- emptyMediaVariants,
112
- } from './ui/empty.tsrx';
113
- export {
114
- Field,
115
- FieldContent,
116
- FieldDescription,
117
- FieldError,
118
- FieldGroup,
119
- FieldLabel,
120
- FieldLegend,
121
- FieldSeparator,
122
- FieldSet,
123
- FieldTitle,
124
- } from './ui/field.tsrx';
125
- export { HoverCard, HoverCardTrigger, HoverCardContent } from './ui/hover-card.tsrx';
126
- export { useIsMobile } from './hooks/use-mobile';
127
- export { Input, type InputProps } from './ui/input.tsrx';
128
- export {
129
- Item,
130
- ItemMedia,
131
- ItemContent,
132
- ItemActions,
133
- ItemGroup,
134
- ItemSeparator,
135
- ItemTitle,
136
- ItemDescription,
137
- ItemHeader,
138
- ItemFooter,
139
- itemVariants,
140
- itemMediaVariants,
141
- } from './ui/item.tsrx';
142
- export { Kbd, KbdGroup } from './ui/kbd.tsrx';
143
- export { Label } from './ui/label.tsrx';
144
- export {
145
- Menubar,
146
- MenubarPortal,
147
- MenubarMenu,
148
- MenubarTrigger,
149
- MenubarContent,
150
- MenubarGroup,
151
- MenubarSeparator,
152
- MenubarLabel,
153
- MenubarItem,
154
- MenubarShortcut,
155
- MenubarCheckboxItem,
156
- MenubarRadioGroup,
157
- MenubarRadioItem,
158
- MenubarSub,
159
- MenubarSubTrigger,
160
- MenubarSubContent,
161
- } from './ui/menubar.tsrx';
162
- export { NativeSelect, NativeSelectOption, NativeSelectOptGroup } from './ui/native-select.tsrx';
163
- export {
164
- NavigationMenu,
165
- NavigationMenuList,
166
- NavigationMenuItem,
167
- NavigationMenuContent,
168
- NavigationMenuTrigger,
169
- NavigationMenuLink,
170
- NavigationMenuIndicator,
171
- NavigationMenuViewport,
172
- navigationMenuTriggerStyle,
173
- } from './ui/navigation-menu.tsrx';
174
- export {
175
- Pagination,
176
- PaginationContent,
177
- PaginationEllipsis,
178
- PaginationItem,
179
- PaginationLink,
180
- PaginationNext,
181
- PaginationPrevious,
182
- } from './ui/pagination.tsrx';
183
- export {
184
- Popover,
185
- PopoverAnchor,
186
- PopoverContent,
187
- PopoverDescription,
188
- PopoverHeader,
189
- PopoverTitle,
190
- PopoverTrigger,
191
- } from './ui/popover.tsrx';
192
- export { Progress } from './ui/progress.tsrx';
193
- export { RadioGroup, RadioGroupItem } from './ui/radio-group.tsrx';
194
- export { ScrollArea, ScrollBar } from './ui/scroll-area.tsrx';
195
- export {
196
- Select,
197
- SelectContent,
198
- SelectGroup,
199
- SelectItem,
200
- SelectLabel,
201
- SelectScrollDownButton,
202
- SelectScrollUpButton,
203
- SelectSeparator,
204
- SelectTrigger,
205
- SelectValue,
206
- } from './ui/select.tsrx';
207
- export { Separator } from './ui/separator.tsrx';
208
- export {
209
- Sheet,
210
- SheetTrigger,
211
- SheetClose,
212
- SheetContent,
213
- SheetHeader,
214
- SheetFooter,
215
- SheetTitle,
216
- SheetDescription,
217
- } from './ui/sheet.tsrx';
218
- export {
219
- Sidebar,
220
- SidebarContent,
221
- SidebarFooter,
222
- SidebarGroup,
223
- SidebarGroupAction,
224
- SidebarGroupContent,
225
- SidebarGroupLabel,
226
- SidebarHeader,
227
- SidebarInput,
228
- SidebarInset,
229
- SidebarMenu,
230
- SidebarMenuAction,
231
- SidebarMenuBadge,
232
- SidebarMenuButton,
233
- SidebarMenuItem,
234
- SidebarMenuSkeleton,
235
- SidebarMenuSub,
236
- SidebarMenuSubButton,
237
- SidebarMenuSubItem,
238
- SidebarProvider,
239
- SidebarRail,
240
- SidebarSeparator,
241
- SidebarTrigger,
242
- useSidebar,
243
- } from './ui/sidebar.tsrx';
244
- export { Slider } from './ui/slider.tsrx';
245
- export { Skeleton } from './ui/skeleton.tsrx';
246
- export { Toaster } from './ui/sonner.tsrx';
247
- export { Spinner } from './ui/spinner.tsrx';
248
- export { Switch } from './ui/switch.tsrx';
249
- export {
250
- Table,
251
- TableHeader,
252
- TableBody,
253
- TableFooter,
254
- TableHead,
255
- TableRow,
256
- TableCell,
257
- TableCaption,
258
- } from './ui/table.tsrx';
259
- export { Tabs, TabsList, TabsTrigger, TabsContent, tabsListVariants } from './ui/tabs.tsrx';
260
- export { Textarea } from './ui/textarea.tsrx';
261
- export { Toggle, toggleVariants } from './ui/toggle.tsrx';
262
- export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from './ui/tooltip.tsrx';
263
- export { ToggleGroup, ToggleGroupItem } from './ui/toggle-group.tsrx';
File without changes
File without changes
File without changes