- Added sidebar menu components including sidebar-menu-item, sidebar-menu-skeleton, sidebar-menu-sub-button, sidebar-menu-sub-item, sidebar-menu-sub, sidebar-menu, sidebar-provider, sidebar-rail, sidebar-separator, sidebar-trigger, and sidebar. - Introduced skeleton loading states for sidebar items. - Integrated tooltip components for enhanced user interaction. - Developed mobile responsiveness using media queries. - Established authentication flow with Keycloak, including login, logout, and token management. - Implemented server-side redirection based on authentication status. - Enhanced error handling and logging for authentication processes.
18 lines
260 B
TypeScript
18 lines
260 B
TypeScript
import Root, {
|
|
type ButtonProps,
|
|
type ButtonSize,
|
|
type ButtonVariant,
|
|
buttonVariants,
|
|
} from "./button.svelte";
|
|
|
|
export {
|
|
Root,
|
|
type ButtonProps as Props,
|
|
//
|
|
Root as Button,
|
|
buttonVariants,
|
|
type ButtonProps,
|
|
type ButtonSize,
|
|
type ButtonVariant,
|
|
};
|