Add a standalone toast notification system (no Provider needed) and use it for settings save feedback. Skip save when fields are empty. Remove save button on Anilist local user select in favor of auto-save on change. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
782 B
TypeScript
24 lines
782 B
TypeScript
export {
|
|
Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter,
|
|
GlassCard, SimpleCard
|
|
} from "./Card";
|
|
export {
|
|
Badge, StatusBadge, JobTypeBadge, ProgressBadge
|
|
} from "./Badge";
|
|
export { StatBox } from "./StatBox";
|
|
export {
|
|
ProgressBar, MiniProgressBar, SmartProgressBar, CircularProgress
|
|
} from "./ProgressBar";
|
|
export { Button, IconButton } from "./Button";
|
|
export {
|
|
Input, Select, Textarea, SearchInput
|
|
} from "./Input";
|
|
export {
|
|
FormField, FormLabel, FormInput, FormSelect, FormRow,
|
|
FormSection, FormError, FormDescription
|
|
} from "./Form";
|
|
export { PageIcon, NavIcon, Icon } from "./Icon";
|
|
export { CursorPagination, OffsetPagination } from "./Pagination";
|
|
export { Tooltip } from "./Tooltip";
|
|
export { toast, Toaster } from "./Toast";
|