@marcoschwartz/lite-ui 0.23.5 → 0.24.1
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 +68 -14
- package/dist/index.d.ts +68 -14
- package/dist/index.js +290 -133
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +292 -137
- 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,75 @@ 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
|
+
/** Actions to show in the unified mobile header bar (right side) */
|
|
83
|
+
mobileActions?: React.ReactNode;
|
|
84
|
+
}
|
|
85
|
+
interface AppShellNavbarConfig {
|
|
86
|
+
content: React.ReactNode;
|
|
87
|
+
width?: 'sm' | 'md' | 'lg';
|
|
88
|
+
breakpoint?: 'sm' | 'md' | 'lg' | 'xl';
|
|
89
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
90
|
+
collapsed?: {
|
|
91
|
+
mobile?: boolean;
|
|
92
|
+
desktop?: boolean;
|
|
93
|
+
};
|
|
94
|
+
withBorder?: boolean;
|
|
95
|
+
}
|
|
96
|
+
interface AppShellAsideConfig {
|
|
97
|
+
content: React.ReactNode;
|
|
98
|
+
width?: 'sm' | 'md' | 'lg';
|
|
99
|
+
breakpoint?: 'sm' | 'md' | 'lg' | 'xl';
|
|
100
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
101
|
+
collapsed?: {
|
|
102
|
+
mobile?: boolean;
|
|
103
|
+
desktop?: boolean;
|
|
104
|
+
};
|
|
105
|
+
withBorder?: boolean;
|
|
106
|
+
}
|
|
107
|
+
interface AppShellFooterConfig {
|
|
108
|
+
content: React.ReactNode;
|
|
109
|
+
height?: 'sm' | 'md' | 'lg';
|
|
110
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
111
|
+
collapsed?: boolean;
|
|
112
|
+
withBorder?: boolean;
|
|
113
|
+
}
|
|
76
114
|
interface AppShellProps {
|
|
77
115
|
children: React.ReactNode;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
navbarTitle?: string;
|
|
87
|
-
navbarLogo?: React.ReactNode;
|
|
88
|
-
defaultNavbarOpen?: boolean;
|
|
89
|
-
responsive?: boolean;
|
|
116
|
+
header?: AppShellHeaderConfig;
|
|
117
|
+
navbar?: AppShellNavbarConfig;
|
|
118
|
+
aside?: AppShellAsideConfig;
|
|
119
|
+
footer?: AppShellFooterConfig;
|
|
120
|
+
logo?: React.ReactNode;
|
|
121
|
+
title?: string;
|
|
122
|
+
layout?: 'default' | 'alt';
|
|
123
|
+
padding?: 'none' | 'sm' | 'md' | 'lg';
|
|
90
124
|
className?: string;
|
|
91
125
|
}
|
|
126
|
+
interface AppShellContextValue {
|
|
127
|
+
navbarOpen: boolean;
|
|
128
|
+
setNavbarOpen: (open: boolean) => void;
|
|
129
|
+
asideOpen: boolean;
|
|
130
|
+
setAsideOpen: (open: boolean) => void;
|
|
131
|
+
}
|
|
132
|
+
declare const useAppShell: () => AppShellContextValue;
|
|
92
133
|
declare const AppShell: React.FC<AppShellProps>;
|
|
134
|
+
interface AppShellSectionProps {
|
|
135
|
+
children: React.ReactNode;
|
|
136
|
+
grow?: boolean;
|
|
137
|
+
className?: string;
|
|
138
|
+
}
|
|
139
|
+
declare const AppShellSection: React.FC<AppShellSectionProps>;
|
|
140
|
+
declare module 'react' {
|
|
141
|
+
interface FunctionComponent<P = {}> {
|
|
142
|
+
Section?: typeof AppShellSection;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
93
145
|
|
|
94
146
|
interface DrawerProps {
|
|
95
147
|
isOpen: boolean;
|
|
@@ -173,9 +225,11 @@ interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>
|
|
|
173
225
|
}
|
|
174
226
|
declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
|
|
175
227
|
|
|
176
|
-
interface ToggleProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type' | 'size'> {
|
|
228
|
+
interface ToggleProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type' | 'size' | 'onChange'> {
|
|
177
229
|
label?: string;
|
|
178
230
|
size?: 'sm' | 'md' | 'lg';
|
|
231
|
+
/** Simplified onChange that passes the boolean value directly */
|
|
232
|
+
onChange?: (checked: boolean) => void;
|
|
179
233
|
}
|
|
180
234
|
declare const Toggle: React.ForwardRefExoticComponent<ToggleProps & React.RefAttributes<HTMLInputElement>>;
|
|
181
235
|
|
|
@@ -1388,4 +1442,4 @@ declare const YouTubeIcon: IconComponent;
|
|
|
1388
1442
|
|
|
1389
1443
|
declare const SlackIcon: IconComponent;
|
|
1390
1444
|
|
|
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 };
|
|
1445
|
+
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,75 @@ 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
|
+
/** Actions to show in the unified mobile header bar (right side) */
|
|
83
|
+
mobileActions?: React.ReactNode;
|
|
84
|
+
}
|
|
85
|
+
interface AppShellNavbarConfig {
|
|
86
|
+
content: React.ReactNode;
|
|
87
|
+
width?: 'sm' | 'md' | 'lg';
|
|
88
|
+
breakpoint?: 'sm' | 'md' | 'lg' | 'xl';
|
|
89
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
90
|
+
collapsed?: {
|
|
91
|
+
mobile?: boolean;
|
|
92
|
+
desktop?: boolean;
|
|
93
|
+
};
|
|
94
|
+
withBorder?: boolean;
|
|
95
|
+
}
|
|
96
|
+
interface AppShellAsideConfig {
|
|
97
|
+
content: React.ReactNode;
|
|
98
|
+
width?: 'sm' | 'md' | 'lg';
|
|
99
|
+
breakpoint?: 'sm' | 'md' | 'lg' | 'xl';
|
|
100
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
101
|
+
collapsed?: {
|
|
102
|
+
mobile?: boolean;
|
|
103
|
+
desktop?: boolean;
|
|
104
|
+
};
|
|
105
|
+
withBorder?: boolean;
|
|
106
|
+
}
|
|
107
|
+
interface AppShellFooterConfig {
|
|
108
|
+
content: React.ReactNode;
|
|
109
|
+
height?: 'sm' | 'md' | 'lg';
|
|
110
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
111
|
+
collapsed?: boolean;
|
|
112
|
+
withBorder?: boolean;
|
|
113
|
+
}
|
|
76
114
|
interface AppShellProps {
|
|
77
115
|
children: React.ReactNode;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
navbarTitle?: string;
|
|
87
|
-
navbarLogo?: React.ReactNode;
|
|
88
|
-
defaultNavbarOpen?: boolean;
|
|
89
|
-
responsive?: boolean;
|
|
116
|
+
header?: AppShellHeaderConfig;
|
|
117
|
+
navbar?: AppShellNavbarConfig;
|
|
118
|
+
aside?: AppShellAsideConfig;
|
|
119
|
+
footer?: AppShellFooterConfig;
|
|
120
|
+
logo?: React.ReactNode;
|
|
121
|
+
title?: string;
|
|
122
|
+
layout?: 'default' | 'alt';
|
|
123
|
+
padding?: 'none' | 'sm' | 'md' | 'lg';
|
|
90
124
|
className?: string;
|
|
91
125
|
}
|
|
126
|
+
interface AppShellContextValue {
|
|
127
|
+
navbarOpen: boolean;
|
|
128
|
+
setNavbarOpen: (open: boolean) => void;
|
|
129
|
+
asideOpen: boolean;
|
|
130
|
+
setAsideOpen: (open: boolean) => void;
|
|
131
|
+
}
|
|
132
|
+
declare const useAppShell: () => AppShellContextValue;
|
|
92
133
|
declare const AppShell: React.FC<AppShellProps>;
|
|
134
|
+
interface AppShellSectionProps {
|
|
135
|
+
children: React.ReactNode;
|
|
136
|
+
grow?: boolean;
|
|
137
|
+
className?: string;
|
|
138
|
+
}
|
|
139
|
+
declare const AppShellSection: React.FC<AppShellSectionProps>;
|
|
140
|
+
declare module 'react' {
|
|
141
|
+
interface FunctionComponent<P = {}> {
|
|
142
|
+
Section?: typeof AppShellSection;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
93
145
|
|
|
94
146
|
interface DrawerProps {
|
|
95
147
|
isOpen: boolean;
|
|
@@ -173,9 +225,11 @@ interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>
|
|
|
173
225
|
}
|
|
174
226
|
declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
|
|
175
227
|
|
|
176
|
-
interface ToggleProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type' | 'size'> {
|
|
228
|
+
interface ToggleProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type' | 'size' | 'onChange'> {
|
|
177
229
|
label?: string;
|
|
178
230
|
size?: 'sm' | 'md' | 'lg';
|
|
231
|
+
/** Simplified onChange that passes the boolean value directly */
|
|
232
|
+
onChange?: (checked: boolean) => void;
|
|
179
233
|
}
|
|
180
234
|
declare const Toggle: React.ForwardRefExoticComponent<ToggleProps & React.RefAttributes<HTMLInputElement>>;
|
|
181
235
|
|
|
@@ -1388,4 +1442,4 @@ declare const YouTubeIcon: IconComponent;
|
|
|
1388
1442
|
|
|
1389
1443
|
declare const SlackIcon: IconComponent;
|
|
1390
1444
|
|
|
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 };
|
|
1445
|
+
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 };
|