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.
13 lines
379 B
TypeScript
13 lines
379 B
TypeScript
export { DashboardListPage } from "./dashboard-list-page"
|
|
export { useDashboardPagedList } from "./use-dashboard-paged-list"
|
|
export type {
|
|
DashboardListColumn,
|
|
DashboardListFilter,
|
|
DashboardListPageProps,
|
|
DashboardListRenderContext,
|
|
} from "./dashboard-list-page"
|
|
export type {
|
|
DashboardPagedListFilter,
|
|
DashboardPagedListOptions,
|
|
} from "./use-dashboard-paged-list"
|