3fe5a89aeb
- Refactored TicketsPage to utilize DashboardListPage for improved filtering and data fetching. - Removed unnecessary state management and loading logic in favor of the new list hooks. - Updated user management page to leverage useDashboardPagedList for cleaner pagination and filtering. - Enhanced CRUD page to support new action state management and toolbar customization. - Added reset filters functionality to dashboard list components. - Updated translations for new UI elements and loading states.
31 lines
919 B
TypeScript
31 lines
919 B
TypeScript
export { DashboardCrudPage } from "./dashboard-crud-page"
|
|
export { DashboardCrudFormDialog } from "./dashboard-crud-form-dialog"
|
|
export {
|
|
buildDashboardCrudQuery,
|
|
normalizeDashboardCrudPageResult,
|
|
} from "./dashboard-crud-utils"
|
|
export {
|
|
createDashboardStatusColumn,
|
|
createDashboardStatusToggleAction,
|
|
} from "./dashboard-crud-presets"
|
|
export { useDashboardCrudFilters } from "./use-dashboard-crud-filters"
|
|
export type {
|
|
DashboardCrudColumn,
|
|
DashboardCrudActionState,
|
|
DashboardCrudDialogProps,
|
|
DashboardCrudFilter,
|
|
DashboardCrudPageProps,
|
|
DashboardCrudRowAction,
|
|
DashboardCrudRowActionContext,
|
|
} from "./dashboard-crud-page"
|
|
export type {
|
|
DashboardCrudFormField,
|
|
DashboardCrudFormInputValue,
|
|
DashboardCrudFormOption,
|
|
DashboardCrudFormValue,
|
|
DashboardCrudFilterStateConfig,
|
|
DashboardCrudPageResult,
|
|
DashboardCrudQueryFilter,
|
|
DashboardCrudQueryValue,
|
|
} from "./dashboard-crud-utils"
|