- add SessionDetailPage with breadcrumbs, DescriptionList, status badge, masked token - add Notification component (info/success/error/warning/note variants) for contextual messages - use Notification for 404 errors on session and environment detail pages - add GET /sessions/:id endpoint; sanitize token (head…tail) and strip cookies/localStorage - change DELETE /sessions/:id to return 204 No Content so client redirect works correctly - add onRowClick prop to Table for clickable rows; stop propagation on actions column - update status badges: open=success (green), closed=error (red) on both list and detail
41 lines
1.6 KiB
TypeScript
41 lines
1.6 KiB
TypeScript
export { Button } from './Button/Button';
|
|
export type { ButtonProps } from './Button/Button';
|
|
|
|
export { Badge } from './Badge/Badge';
|
|
export type { BadgeProps, BadgeVariant } from './Badge/Badge';
|
|
|
|
export { Input } from './Input/Input';
|
|
export type { InputProps } from './Input/Input';
|
|
|
|
export { Select } from './Select/Select';
|
|
export type { SelectProps, SelectOption } from './Select/Select';
|
|
|
|
export { Card } from './Card/Card';
|
|
export type { CardProps } from './Card/Card';
|
|
|
|
export { SidePanel } from './SidePanel/SidePanel';
|
|
export type { SidePanelProps } from './SidePanel/SidePanel';
|
|
|
|
export { Breadcrumbs } from './Breadcrumbs/Breadcrumbs';
|
|
export type { BreadcrumbsProps, BreadcrumbItem } from './Breadcrumbs/Breadcrumbs';
|
|
|
|
export { ThemeSwitcher } from './ThemeSwitcher/ThemeSwitcher';
|
|
|
|
export { Timestamp } from './Timestamp/Timestamp';
|
|
export type { TimestampProps } from './Timestamp/Timestamp';
|
|
|
|
export { Pagination } from './Pagination/Pagination';
|
|
export type { PaginationProps } from './Pagination/Pagination';
|
|
|
|
export { ContextMenu } from './ContextMenu/ContextMenu';
|
|
export type { ContextMenuProps, ContextMenuItem } from './ContextMenu/ContextMenu';
|
|
|
|
export { DescriptionList } from './DescriptionList/DescriptionList';
|
|
export type { DescriptionListProps, DescriptionListItem } from './DescriptionList/DescriptionList';
|
|
|
|
export { Notification } from './Notification/Notification';
|
|
export type { NotificationProps, NotificationVariant } from './Notification/Notification';
|
|
|
|
export { Table } from './Table/Table';
|
|
export type { TableProps, TableColumn } from './Table/Table';
|