mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-04 21:53:38 +00:00
- Create migration for booking_requests table with necessary fields and indexes. - Implement BookingRequestRepository for database operations related to booking requests. - Develop BookingRequestService to handle business logic for submitting, accepting, rejecting, and canceling booking requests. - Create DTOs for creating booking requests and reviewing them. - Define BookingRequest entity to map to the booking_requests table. - Add UI components for managing shipment requests, including detail and list pages. - Implement OperationDatePicker component for selecting available shipment days.
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
export { Table } from "./components/table";
|
|
export type { TableProps, TableColumn } from "./components/Table/Table";
|
|
|
|
export { FormField } from "./components/Form";
|
|
export type { FormFieldProps } from "./components/Form";
|
|
|
|
export { default as SmartFileInput } from "./components/SmartFileInput";
|
|
export type { SmartFileInputProps } from "./components/SmartFileInput";
|
|
|
|
export { default as Modal } from "./components/Modal";
|
|
export type { ModalProps } from "./components/Modal";
|
|
|
|
export {
|
|
FileViewerModal,
|
|
isViewable,
|
|
resolveViewerKind,
|
|
} from "./components/FileViewer";
|
|
export type {
|
|
FileViewerModalProps,
|
|
ViewableFile,
|
|
} from "./components/FileViewer";
|
|
|
|
export { OperationDatePicker } from "./components/OperationDatePicker";
|
|
export type { OperationDatePickerProps } from "./components/OperationDatePicker";
|
|
|
|
export { Badge } from "./components/badge";
|
|
// export type { BadgeProps } from "./components/badge";
|
|
|
|
export { Sidebar, DashboardLayout } from "./components/Layout";
|
|
|
|
export type {
|
|
SidebarProps,
|
|
SidebarItem,
|
|
DashboardLayoutProps,
|
|
} from "./components/Layout";
|
|
|
|
export * from "./components/button";
|
|
export * from "./components/input";
|
|
export * from "./components/skeleton";
|
|
export * from "./components/textarea";
|
|
export * from "./components/label";
|
|
export * from "./components/card";
|
|
export * from "./components/dropdown-menu";
|
|
export * from "./components/data-table";
|
|
export * from "./components/dialog";
|
|
export * from "./components/SmartFileInput";
|
|
export * from "./components/select";
|
|
export * from "./components/switch";
|
|
export * from "./components/separator";
|
|
export * from "./components/field";
|