@marcoschwartz/lite-ui 0.23.4 → 0.24.0
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.mts +63 -13
- package/dist/index.d.ts +63 -13
- package/dist/index.js +291 -150
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +293 -154
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -73,23 +73,73 @@ interface SidebarProviderProps {
|
|
|
73
73
|
declare const SidebarProvider: React.FC<SidebarProviderProps>;
|
|
74
74
|
declare const useSidebar: () => SidebarContextValue;
|
|
75
75
|
|
|
76
|
+
interface AppShellHeaderConfig {
|
|
77
|
+
content: React.ReactNode;
|
|
78
|
+
height?: 'sm' | 'md' | 'lg';
|
|
79
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
80
|
+
collapsed?: boolean;
|
|
81
|
+
withBorder?: boolean;
|
|
82
|
+
}
|
|
83
|
+
interface AppShellNavbarConfig {
|
|
84
|
+
content: React.ReactNode;
|
|
85
|
+
width?: 'sm' | 'md' | 'lg';
|
|
86
|
+
breakpoint?: 'sm' | 'md' | 'lg' | 'xl';
|
|
87
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
88
|
+
collapsed?: {
|
|
89
|
+
mobile?: boolean;
|
|
90
|
+
desktop?: boolean;
|
|
91
|
+
};
|
|
92
|
+
withBorder?: boolean;
|
|
93
|
+
}
|
|
94
|
+
interface AppShellAsideConfig {
|
|
95
|
+
content: React.ReactNode;
|
|
96
|
+
width?: 'sm' | 'md' | 'lg';
|
|
97
|
+
breakpoint?: 'sm' | 'md' | 'lg' | 'xl';
|
|
98
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
99
|
+
collapsed?: {
|
|
100
|
+
mobile?: boolean;
|
|
101
|
+
desktop?: boolean;
|
|
102
|
+
};
|
|
103
|
+
withBorder?: boolean;
|
|
104
|
+
}
|
|
105
|
+
interface AppShellFooterConfig {
|
|
106
|
+
content: React.ReactNode;
|
|
107
|
+
height?: 'sm' | 'md' | 'lg';
|
|
108
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
109
|
+
collapsed?: boolean;
|
|
110
|
+
withBorder?: boolean;
|
|
111
|
+
}
|
|
76
112
|
interface AppShellProps {
|
|
77
113
|
children: React.ReactNode;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
navbarTitle?: string;
|
|
87
|
-
navbarLogo?: React.ReactNode;
|
|
88
|
-
defaultNavbarOpen?: boolean;
|
|
89
|
-
responsive?: boolean;
|
|
114
|
+
header?: AppShellHeaderConfig;
|
|
115
|
+
navbar?: AppShellNavbarConfig;
|
|
116
|
+
aside?: AppShellAsideConfig;
|
|
117
|
+
footer?: AppShellFooterConfig;
|
|
118
|
+
logo?: React.ReactNode;
|
|
119
|
+
title?: string;
|
|
120
|
+
layout?: 'default' | 'alt';
|
|
121
|
+
padding?: 'none' | 'sm' | 'md' | 'lg';
|
|
90
122
|
className?: string;
|
|
91
123
|
}
|
|
124
|
+
interface AppShellContextValue {
|
|
125
|
+
navbarOpen: boolean;
|
|
126
|
+
setNavbarOpen: (open: boolean) => void;
|
|
127
|
+
asideOpen: boolean;
|
|
128
|
+
setAsideOpen: (open: boolean) => void;
|
|
129
|
+
}
|
|
130
|
+
declare const useAppShell: () => AppShellContextValue;
|
|
92
131
|
declare const AppShell: React.FC<AppShellProps>;
|
|
132
|
+
interface AppShellSectionProps {
|
|
133
|
+
children: React.ReactNode;
|
|
134
|
+
grow?: boolean;
|
|
135
|
+
className?: string;
|
|
136
|
+
}
|
|
137
|
+
declare const AppShellSection: React.FC<AppShellSectionProps>;
|
|
138
|
+
declare module 'react' {
|
|
139
|
+
interface FunctionComponent<P = {}> {
|
|
140
|
+
Section?: typeof AppShellSection;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
93
143
|
|
|
94
144
|
interface DrawerProps {
|
|
95
145
|
isOpen: boolean;
|
|
@@ -1388,4 +1438,4 @@ declare const YouTubeIcon: IconComponent;
|
|
|
1388
1438
|
|
|
1389
1439
|
declare const SlackIcon: IconComponent;
|
|
1390
1440
|
|
|
1391
|
-
export { ActionMenu, type ActionMenuItem, type ActionMenuProps, Alert, AlertCircleIcon, type AlertProps, AppShell, type AppShellProps, AppleIcon, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BarChart, type BarChartDataPoint, type BarChartProps, type BarChartSeries, BeakerIcon, BellIcon, BookIcon, BrainIcon, Button, type ButtonProps, type ButtonTheme, CHART_DEFAULTS, Calendar, CalendarHeatmap, type CalendarHeatmapProps, CalendarIcon, type CalendarProps, CameraIcon, Card, type CardProps, CartesianGrid, type CartesianGridProps, type Chapter, ChartTooltip, ChatIcon, CheckCircleIcon, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, CloudIcon, CodeIcon, type ColorMode, type Column, CopyIcon, DatabaseIcon, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Divider, type DividerProps, DownloadIcon, Drawer, type DrawerProps, EditIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FileIcon, FileUpload, type FileUploadProps, FolderIcon, FullscreenExitIcon, FullscreenIcon, GitHubIcon, GlobeIcon, GoogleIcon, HeartIcon, Heatmap, type HeatmapDataPoint, type HeatmapProps, HomeIcon, type IconComponent, type IconProps, ImageIcon, InfoCircleIcon, KeyIcon, Legend, type LegendItem, type LegendProps, LineChart, type LineChartDataPoint, type LineChartProps, type LineChartSeries, LinkedInIcon, LockIcon, MailIcon, MenuIcon, Modal, type ModalProps, Navbar, type NavbarProps, NumberInput, type NumberInputProps, Pagination, type PaginationProps, PauseIcon, PieChart, type PieChartDataPoint, type PieChartProps, PlayIcon, PlugIcon, PlusIcon, ProgressBar, type ProgressBarProps, Radio, type RadioOption, type RadioProps, ReferenceArea, type ReferenceAreaProps, ReferenceLine, type ReferenceLineProps, RefreshIcon, ResponsiveContainer, type ResponsiveContainerProps, RichTextEditor, type RichTextEditorProps, SaveIcon, ScatterChart, type ScatterChartDataPoint, type ScatterChartProps, type ScatterChartSeries, SearchIcon, Select, type SelectOption, type SelectProps, type SelectTheme, SettingsIcon, ShieldIcon, Sidebar, type SidebarContextValue, type SidebarProps, SidebarProvider, type SidebarProviderProps, SkipBackIcon, SkipForwardIcon, SlackIcon, Slider, type SliderProps, SparklesIcon, Spinner, type SpinnerProps, StarIcon, type Step, Stepper, type StepperProps, StopIcon, type Tab, Table, type TableProps, Tabs, type TabsProps, TerminalIcon, TextInput, type TextInputProps, Textarea, type TextareaProps, type Theme, type ThemeName, ThemeProvider, TimePicker, type TimePickerProps, type Toast, ToastProvider, type ToastProviderProps, Toggle, type ToggleProps, type TooltipPayloadItem, type TooltipProps, TrashIcon, TwitterIcon, UploadIcon, UserIcon, VideoPlayer, type VideoPlayerProps, VolumeOffIcon, VolumeUpIcon, YouTubeIcon, getThemeScript, themeScript, themes, toast, useSidebar, useTheme, useToast, useTooltip };
|
|
1441
|
+
export { ActionMenu, type ActionMenuItem, type ActionMenuProps, Alert, AlertCircleIcon, type AlertProps, AppShell, type AppShellAsideConfig, type AppShellFooterConfig, type AppShellHeaderConfig, type AppShellNavbarConfig, type AppShellProps, AppShellSection, type AppShellSectionProps, AppleIcon, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BarChart, type BarChartDataPoint, type BarChartProps, type BarChartSeries, BeakerIcon, BellIcon, BookIcon, BrainIcon, Button, type ButtonProps, type ButtonTheme, CHART_DEFAULTS, Calendar, CalendarHeatmap, type CalendarHeatmapProps, CalendarIcon, type CalendarProps, CameraIcon, Card, type CardProps, CartesianGrid, type CartesianGridProps, type Chapter, ChartTooltip, ChatIcon, CheckCircleIcon, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, CloudIcon, CodeIcon, type ColorMode, type Column, CopyIcon, DatabaseIcon, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Divider, type DividerProps, DownloadIcon, Drawer, type DrawerProps, EditIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FileIcon, FileUpload, type FileUploadProps, FolderIcon, FullscreenExitIcon, FullscreenIcon, GitHubIcon, GlobeIcon, GoogleIcon, HeartIcon, Heatmap, type HeatmapDataPoint, type HeatmapProps, HomeIcon, type IconComponent, type IconProps, ImageIcon, InfoCircleIcon, KeyIcon, Legend, type LegendItem, type LegendProps, LineChart, type LineChartDataPoint, type LineChartProps, type LineChartSeries, LinkedInIcon, LockIcon, MailIcon, MenuIcon, Modal, type ModalProps, Navbar, type NavbarProps, NumberInput, type NumberInputProps, Pagination, type PaginationProps, PauseIcon, PieChart, type PieChartDataPoint, type PieChartProps, PlayIcon, PlugIcon, PlusIcon, ProgressBar, type ProgressBarProps, Radio, type RadioOption, type RadioProps, ReferenceArea, type ReferenceAreaProps, ReferenceLine, type ReferenceLineProps, RefreshIcon, ResponsiveContainer, type ResponsiveContainerProps, RichTextEditor, type RichTextEditorProps, SaveIcon, ScatterChart, type ScatterChartDataPoint, type ScatterChartProps, type ScatterChartSeries, SearchIcon, Select, type SelectOption, type SelectProps, type SelectTheme, SettingsIcon, ShieldIcon, Sidebar, type SidebarContextValue, type SidebarProps, SidebarProvider, type SidebarProviderProps, SkipBackIcon, SkipForwardIcon, SlackIcon, Slider, type SliderProps, SparklesIcon, Spinner, type SpinnerProps, StarIcon, type Step, Stepper, type StepperProps, StopIcon, type Tab, Table, type TableProps, Tabs, type TabsProps, TerminalIcon, TextInput, type TextInputProps, Textarea, type TextareaProps, type Theme, type ThemeName, ThemeProvider, TimePicker, type TimePickerProps, type Toast, ToastProvider, type ToastProviderProps, Toggle, type ToggleProps, type TooltipPayloadItem, type TooltipProps, TrashIcon, TwitterIcon, UploadIcon, UserIcon, VideoPlayer, type VideoPlayerProps, VolumeOffIcon, VolumeUpIcon, YouTubeIcon, getThemeScript, themeScript, themes, toast, useAppShell, useSidebar, useTheme, useToast, useTooltip };
|
package/dist/index.d.ts
CHANGED
|
@@ -73,23 +73,73 @@ interface SidebarProviderProps {
|
|
|
73
73
|
declare const SidebarProvider: React.FC<SidebarProviderProps>;
|
|
74
74
|
declare const useSidebar: () => SidebarContextValue;
|
|
75
75
|
|
|
76
|
+
interface AppShellHeaderConfig {
|
|
77
|
+
content: React.ReactNode;
|
|
78
|
+
height?: 'sm' | 'md' | 'lg';
|
|
79
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
80
|
+
collapsed?: boolean;
|
|
81
|
+
withBorder?: boolean;
|
|
82
|
+
}
|
|
83
|
+
interface AppShellNavbarConfig {
|
|
84
|
+
content: React.ReactNode;
|
|
85
|
+
width?: 'sm' | 'md' | 'lg';
|
|
86
|
+
breakpoint?: 'sm' | 'md' | 'lg' | 'xl';
|
|
87
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
88
|
+
collapsed?: {
|
|
89
|
+
mobile?: boolean;
|
|
90
|
+
desktop?: boolean;
|
|
91
|
+
};
|
|
92
|
+
withBorder?: boolean;
|
|
93
|
+
}
|
|
94
|
+
interface AppShellAsideConfig {
|
|
95
|
+
content: React.ReactNode;
|
|
96
|
+
width?: 'sm' | 'md' | 'lg';
|
|
97
|
+
breakpoint?: 'sm' | 'md' | 'lg' | 'xl';
|
|
98
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
99
|
+
collapsed?: {
|
|
100
|
+
mobile?: boolean;
|
|
101
|
+
desktop?: boolean;
|
|
102
|
+
};
|
|
103
|
+
withBorder?: boolean;
|
|
104
|
+
}
|
|
105
|
+
interface AppShellFooterConfig {
|
|
106
|
+
content: React.ReactNode;
|
|
107
|
+
height?: 'sm' | 'md' | 'lg';
|
|
108
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
109
|
+
collapsed?: boolean;
|
|
110
|
+
withBorder?: boolean;
|
|
111
|
+
}
|
|
76
112
|
interface AppShellProps {
|
|
77
113
|
children: React.ReactNode;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
navbarTitle?: string;
|
|
87
|
-
navbarLogo?: React.ReactNode;
|
|
88
|
-
defaultNavbarOpen?: boolean;
|
|
89
|
-
responsive?: boolean;
|
|
114
|
+
header?: AppShellHeaderConfig;
|
|
115
|
+
navbar?: AppShellNavbarConfig;
|
|
116
|
+
aside?: AppShellAsideConfig;
|
|
117
|
+
footer?: AppShellFooterConfig;
|
|
118
|
+
logo?: React.ReactNode;
|
|
119
|
+
title?: string;
|
|
120
|
+
layout?: 'default' | 'alt';
|
|
121
|
+
padding?: 'none' | 'sm' | 'md' | 'lg';
|
|
90
122
|
className?: string;
|
|
91
123
|
}
|
|
124
|
+
interface AppShellContextValue {
|
|
125
|
+
navbarOpen: boolean;
|
|
126
|
+
setNavbarOpen: (open: boolean) => void;
|
|
127
|
+
asideOpen: boolean;
|
|
128
|
+
setAsideOpen: (open: boolean) => void;
|
|
129
|
+
}
|
|
130
|
+
declare const useAppShell: () => AppShellContextValue;
|
|
92
131
|
declare const AppShell: React.FC<AppShellProps>;
|
|
132
|
+
interface AppShellSectionProps {
|
|
133
|
+
children: React.ReactNode;
|
|
134
|
+
grow?: boolean;
|
|
135
|
+
className?: string;
|
|
136
|
+
}
|
|
137
|
+
declare const AppShellSection: React.FC<AppShellSectionProps>;
|
|
138
|
+
declare module 'react' {
|
|
139
|
+
interface FunctionComponent<P = {}> {
|
|
140
|
+
Section?: typeof AppShellSection;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
93
143
|
|
|
94
144
|
interface DrawerProps {
|
|
95
145
|
isOpen: boolean;
|
|
@@ -1388,4 +1438,4 @@ declare const YouTubeIcon: IconComponent;
|
|
|
1388
1438
|
|
|
1389
1439
|
declare const SlackIcon: IconComponent;
|
|
1390
1440
|
|
|
1391
|
-
export { ActionMenu, type ActionMenuItem, type ActionMenuProps, Alert, AlertCircleIcon, type AlertProps, AppShell, type AppShellProps, AppleIcon, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BarChart, type BarChartDataPoint, type BarChartProps, type BarChartSeries, BeakerIcon, BellIcon, BookIcon, BrainIcon, Button, type ButtonProps, type ButtonTheme, CHART_DEFAULTS, Calendar, CalendarHeatmap, type CalendarHeatmapProps, CalendarIcon, type CalendarProps, CameraIcon, Card, type CardProps, CartesianGrid, type CartesianGridProps, type Chapter, ChartTooltip, ChatIcon, CheckCircleIcon, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, CloudIcon, CodeIcon, type ColorMode, type Column, CopyIcon, DatabaseIcon, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Divider, type DividerProps, DownloadIcon, Drawer, type DrawerProps, EditIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FileIcon, FileUpload, type FileUploadProps, FolderIcon, FullscreenExitIcon, FullscreenIcon, GitHubIcon, GlobeIcon, GoogleIcon, HeartIcon, Heatmap, type HeatmapDataPoint, type HeatmapProps, HomeIcon, type IconComponent, type IconProps, ImageIcon, InfoCircleIcon, KeyIcon, Legend, type LegendItem, type LegendProps, LineChart, type LineChartDataPoint, type LineChartProps, type LineChartSeries, LinkedInIcon, LockIcon, MailIcon, MenuIcon, Modal, type ModalProps, Navbar, type NavbarProps, NumberInput, type NumberInputProps, Pagination, type PaginationProps, PauseIcon, PieChart, type PieChartDataPoint, type PieChartProps, PlayIcon, PlugIcon, PlusIcon, ProgressBar, type ProgressBarProps, Radio, type RadioOption, type RadioProps, ReferenceArea, type ReferenceAreaProps, ReferenceLine, type ReferenceLineProps, RefreshIcon, ResponsiveContainer, type ResponsiveContainerProps, RichTextEditor, type RichTextEditorProps, SaveIcon, ScatterChart, type ScatterChartDataPoint, type ScatterChartProps, type ScatterChartSeries, SearchIcon, Select, type SelectOption, type SelectProps, type SelectTheme, SettingsIcon, ShieldIcon, Sidebar, type SidebarContextValue, type SidebarProps, SidebarProvider, type SidebarProviderProps, SkipBackIcon, SkipForwardIcon, SlackIcon, Slider, type SliderProps, SparklesIcon, Spinner, type SpinnerProps, StarIcon, type Step, Stepper, type StepperProps, StopIcon, type Tab, Table, type TableProps, Tabs, type TabsProps, TerminalIcon, TextInput, type TextInputProps, Textarea, type TextareaProps, type Theme, type ThemeName, ThemeProvider, TimePicker, type TimePickerProps, type Toast, ToastProvider, type ToastProviderProps, Toggle, type ToggleProps, type TooltipPayloadItem, type TooltipProps, TrashIcon, TwitterIcon, UploadIcon, UserIcon, VideoPlayer, type VideoPlayerProps, VolumeOffIcon, VolumeUpIcon, YouTubeIcon, getThemeScript, themeScript, themes, toast, useSidebar, useTheme, useToast, useTooltip };
|
|
1441
|
+
export { ActionMenu, type ActionMenuItem, type ActionMenuProps, Alert, AlertCircleIcon, type AlertProps, AppShell, type AppShellAsideConfig, type AppShellFooterConfig, type AppShellHeaderConfig, type AppShellNavbarConfig, type AppShellProps, AppShellSection, type AppShellSectionProps, AppleIcon, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BarChart, type BarChartDataPoint, type BarChartProps, type BarChartSeries, BeakerIcon, BellIcon, BookIcon, BrainIcon, Button, type ButtonProps, type ButtonTheme, CHART_DEFAULTS, Calendar, CalendarHeatmap, type CalendarHeatmapProps, CalendarIcon, type CalendarProps, CameraIcon, Card, type CardProps, CartesianGrid, type CartesianGridProps, type Chapter, ChartTooltip, ChatIcon, CheckCircleIcon, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, CloudIcon, CodeIcon, type ColorMode, type Column, CopyIcon, DatabaseIcon, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Divider, type DividerProps, DownloadIcon, Drawer, type DrawerProps, EditIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FileIcon, FileUpload, type FileUploadProps, FolderIcon, FullscreenExitIcon, FullscreenIcon, GitHubIcon, GlobeIcon, GoogleIcon, HeartIcon, Heatmap, type HeatmapDataPoint, type HeatmapProps, HomeIcon, type IconComponent, type IconProps, ImageIcon, InfoCircleIcon, KeyIcon, Legend, type LegendItem, type LegendProps, LineChart, type LineChartDataPoint, type LineChartProps, type LineChartSeries, LinkedInIcon, LockIcon, MailIcon, MenuIcon, Modal, type ModalProps, Navbar, type NavbarProps, NumberInput, type NumberInputProps, Pagination, type PaginationProps, PauseIcon, PieChart, type PieChartDataPoint, type PieChartProps, PlayIcon, PlugIcon, PlusIcon, ProgressBar, type ProgressBarProps, Radio, type RadioOption, type RadioProps, ReferenceArea, type ReferenceAreaProps, ReferenceLine, type ReferenceLineProps, RefreshIcon, ResponsiveContainer, type ResponsiveContainerProps, RichTextEditor, type RichTextEditorProps, SaveIcon, ScatterChart, type ScatterChartDataPoint, type ScatterChartProps, type ScatterChartSeries, SearchIcon, Select, type SelectOption, type SelectProps, type SelectTheme, SettingsIcon, ShieldIcon, Sidebar, type SidebarContextValue, type SidebarProps, SidebarProvider, type SidebarProviderProps, SkipBackIcon, SkipForwardIcon, SlackIcon, Slider, type SliderProps, SparklesIcon, Spinner, type SpinnerProps, StarIcon, type Step, Stepper, type StepperProps, StopIcon, type Tab, Table, type TableProps, Tabs, type TabsProps, TerminalIcon, TextInput, type TextInputProps, Textarea, type TextareaProps, type Theme, type ThemeName, ThemeProvider, TimePicker, type TimePickerProps, type Toast, ToastProvider, type ToastProviderProps, Toggle, type ToggleProps, type TooltipPayloadItem, type TooltipProps, TrashIcon, TwitterIcon, UploadIcon, UserIcon, VideoPlayer, type VideoPlayerProps, VolumeOffIcon, VolumeUpIcon, YouTubeIcon, getThemeScript, themeScript, themes, toast, useAppShell, useSidebar, useTheme, useToast, useTooltip };
|