fix(ui): emit node-compatible root exports
This commit is contained in:
parent
50617c1813
commit
cd6546ef97
@ -1,4 +1,4 @@
|
|||||||
export { Button, type ButtonProps } from './components/Button';
|
export { Button, type ButtonProps } from './components/Button.js';
|
||||||
export {
|
export {
|
||||||
AppShell,
|
AppShell,
|
||||||
AppShellMain,
|
AppShellMain,
|
||||||
@ -18,8 +18,8 @@ export {
|
|||||||
type AppShellProps,
|
type AppShellProps,
|
||||||
type AppShellSidebarProps,
|
type AppShellSidebarProps,
|
||||||
type AppShellSkipLinkProps,
|
type AppShellSkipLinkProps,
|
||||||
} from './components/AppShell';
|
} from './components/AppShell.js';
|
||||||
export { IconButton, type IconButtonProps } from './components/IconButton';
|
export { IconButton, type IconButtonProps } from './components/IconButton.js';
|
||||||
export {
|
export {
|
||||||
Toast,
|
Toast,
|
||||||
ToastProvider,
|
ToastProvider,
|
||||||
@ -27,20 +27,20 @@ export {
|
|||||||
toast,
|
toast,
|
||||||
dismissToast,
|
dismissToast,
|
||||||
type ToastMessage,
|
type ToastMessage,
|
||||||
} from './components/Toast';
|
} from './components/Toast.js';
|
||||||
export { Modal, type ModalProps } from './components/Modal';
|
export { Modal, type ModalProps } from './components/Modal.js';
|
||||||
export { ConfirmDialog, type ConfirmDialogProps } from './components/ConfirmDialog';
|
export { ConfirmDialog, type ConfirmDialogProps } from './components/ConfirmDialog.js';
|
||||||
export { Badge, type BadgeProps } from './components/Badge';
|
export { Badge, type BadgeProps } from './components/Badge.js';
|
||||||
export {
|
export {
|
||||||
StatusBadge,
|
StatusBadge,
|
||||||
StatusDot,
|
StatusDot,
|
||||||
type StatusBadgeProps,
|
type StatusBadgeProps,
|
||||||
type StatusTone,
|
type StatusTone,
|
||||||
} from './components/StatusBadge';
|
} from './components/StatusBadge.js';
|
||||||
export { EmptyState, type EmptyStateProps } from './components/EmptyState';
|
export { EmptyState, type EmptyStateProps } from './components/EmptyState.js';
|
||||||
export { Input, type InputProps } from './components/Input';
|
export { Input, type InputProps } from './components/Input.js';
|
||||||
export { Textarea, type TextareaProps } from './components/Textarea';
|
export { Textarea, type TextareaProps } from './components/Textarea.js';
|
||||||
export { Card, CardHeader, CardTitle, CardDescription, type CardProps } from './components/Card';
|
export { Card, CardHeader, CardTitle, CardDescription, type CardProps } from './components/Card.js';
|
||||||
export {
|
export {
|
||||||
Panel,
|
Panel,
|
||||||
PanelBody,
|
PanelBody,
|
||||||
@ -52,7 +52,7 @@ export {
|
|||||||
type PanelHeaderProps,
|
type PanelHeaderProps,
|
||||||
type PanelProps,
|
type PanelProps,
|
||||||
type PanelTitleProps,
|
type PanelTitleProps,
|
||||||
} from './components/Panel';
|
} from './components/Panel.js';
|
||||||
export {
|
export {
|
||||||
Surface,
|
Surface,
|
||||||
SurfaceList,
|
SurfaceList,
|
||||||
@ -60,10 +60,10 @@ export {
|
|||||||
type SurfaceListItemProps,
|
type SurfaceListItemProps,
|
||||||
type SurfaceListProps,
|
type SurfaceListProps,
|
||||||
type SurfaceProps,
|
type SurfaceProps,
|
||||||
} from './components/Surface';
|
} from './components/Surface.js';
|
||||||
export { ListItemButton, type ListItemButtonProps } from './components/ListItemButton';
|
export { ListItemButton, type ListItemButtonProps } from './components/ListItemButton.js';
|
||||||
export { Timeline, type TimelineItem, type TimelineProps } from './components/Timeline';
|
export { Timeline, type TimelineItem, type TimelineProps } from './components/Timeline.js';
|
||||||
export { DiffCard, type DiffCardProps } from './components/DiffCard';
|
export { DiffCard, type DiffCardProps } from './components/DiffCard.js';
|
||||||
export {
|
export {
|
||||||
DataList,
|
DataList,
|
||||||
DataListItem,
|
DataListItem,
|
||||||
@ -71,7 +71,7 @@ export {
|
|||||||
type DataListItemProps,
|
type DataListItemProps,
|
||||||
type DataListMetaProps,
|
type DataListMetaProps,
|
||||||
type DataListProps,
|
type DataListProps,
|
||||||
} from './components/DataList';
|
} from './components/DataList.js';
|
||||||
export {
|
export {
|
||||||
DataTable,
|
DataTable,
|
||||||
DataTableBody,
|
DataTableBody,
|
||||||
@ -85,9 +85,9 @@ export {
|
|||||||
type DataTableHeaderProps,
|
type DataTableHeaderProps,
|
||||||
type DataTableProps,
|
type DataTableProps,
|
||||||
type DataTableRowProps,
|
type DataTableRowProps,
|
||||||
} from './components/DataTable';
|
} from './components/DataTable.js';
|
||||||
export { Label, type LabelProps } from './components/Label';
|
export { Label, type LabelProps } from './components/Label.js';
|
||||||
export { Select, type SelectProps } from './components/Select';
|
export { Select, type SelectProps } from './components/Select.js';
|
||||||
export {
|
export {
|
||||||
Tabs,
|
Tabs,
|
||||||
TabsContent,
|
TabsContent,
|
||||||
@ -96,19 +96,19 @@ export {
|
|||||||
type TabsContentProps,
|
type TabsContentProps,
|
||||||
type TabsListProps,
|
type TabsListProps,
|
||||||
type TabsTriggerProps,
|
type TabsTriggerProps,
|
||||||
} from './components/Tabs';
|
} from './components/Tabs.js';
|
||||||
export {
|
export {
|
||||||
SegmentedControl,
|
SegmentedControl,
|
||||||
type SegmentedControlOption,
|
type SegmentedControlOption,
|
||||||
type SegmentedControlProps,
|
type SegmentedControlProps,
|
||||||
} from './components/SegmentedControl';
|
} from './components/SegmentedControl.js';
|
||||||
export {
|
export {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
TooltipContent,
|
TooltipContent,
|
||||||
TooltipProvider,
|
TooltipProvider,
|
||||||
TooltipTrigger,
|
TooltipTrigger,
|
||||||
type TooltipContentProps,
|
type TooltipContentProps,
|
||||||
} from './components/Tooltip';
|
} from './components/Tooltip.js';
|
||||||
export {
|
export {
|
||||||
DropdownMenu,
|
DropdownMenu,
|
||||||
DropdownMenuContent,
|
DropdownMenuContent,
|
||||||
@ -123,16 +123,16 @@ export {
|
|||||||
type DropdownMenuContentProps,
|
type DropdownMenuContentProps,
|
||||||
type DropdownMenuItemProps,
|
type DropdownMenuItemProps,
|
||||||
type DropdownMenuLabelProps,
|
type DropdownMenuLabelProps,
|
||||||
} from './components/DropdownMenu';
|
} from './components/DropdownMenu.js';
|
||||||
export { Checkbox, type CheckboxProps } from './components/Checkbox';
|
export { Checkbox, type CheckboxProps } from './components/Checkbox.js';
|
||||||
export { RadioGroup, RadioGroupItem, type RadioGroupItemProps } from './components/RadioGroup';
|
export { RadioGroup, RadioGroupItem, type RadioGroupItemProps } from './components/RadioGroup.js';
|
||||||
export { Switch, type SwitchProps } from './components/Switch';
|
export { Switch, type SwitchProps } from './components/Switch.js';
|
||||||
export { Separator, type SeparatorProps } from './components/Separator';
|
export { Separator, type SeparatorProps } from './components/Separator.js';
|
||||||
export {
|
export {
|
||||||
Sidebar,
|
Sidebar,
|
||||||
SidebarItem,
|
SidebarItem,
|
||||||
type SidebarProps,
|
type SidebarProps,
|
||||||
type SidebarItemProps,
|
type SidebarItemProps,
|
||||||
} from './components/Sidebar';
|
} from './components/Sidebar.js';
|
||||||
export { StatCard, type StatCardProps } from './components/StatCard';
|
export { StatCard, type StatCardProps } from './components/StatCard.js';
|
||||||
export { LoadingSpinner, type LoadingSpinnerProps } from './components/LoadingSpinner';
|
export { LoadingSpinner, type LoadingSpinnerProps } from './components/LoadingSpinner.js';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user