- Implemented TemplateCheckpointEditDialog for creating and editing inspection checkpoints. - Added VendorActions component for managing vendor actions including edit, activate/deactivate, and delete. - Created VendorContext for managing vendor state across components. - Developed VendorGeneralInfo component to display detailed vendor information. - Introduced AedSymbol and Money components for consistent currency representation. - Added PromptDialog for user input prompts throughout the application. - Implemented RelationLink component for unified related-data display in CRUD tables. - Created InspectionTemplatesClient for API interactions related to inspection templates.
25 lines
578 B
TypeScript
25 lines
578 B
TypeScript
export { useResourcePage } from "./use-resource-page"
|
|
export { ResourcePage } from "./resource-page"
|
|
export { CrudResource } from "./crud-resource"
|
|
|
|
export type {
|
|
ResourcePageClient,
|
|
ResourceItem,
|
|
UseResourcePageOptions,
|
|
} from "./use-resource-page"
|
|
|
|
export type {
|
|
ResourceFormProps,
|
|
ResourcePageColumnHelpers,
|
|
ResourcePageHeaderHelpers,
|
|
ResourcePageContext,
|
|
ResourcePageProps,
|
|
} from "./resource-page"
|
|
|
|
export type {
|
|
CrudResourceColumnHelpers,
|
|
CrudResourceContext,
|
|
CrudResourceProps,
|
|
StatusFilterConfig,
|
|
} from "./crud-resource"
|