* feat: improve text filters (WIP) * move function to bottom * apply some styles * fix selection of TextFilterOptions * rename value to operand * remove unused file * merge filters/filters into filters/utils * fix regression of not putting url params correctly * move makeWhereClause to filters/utils * fix negative, empty, and not empty operators * fix initial filtering from search state (url) * fix type errors * do not send an empty array to query * update yarn.lock * i18n for text filter operators * extract logic as useColumnFilters() * add missing import * fix type error * revert yarn.lock * use i18n * insensitive text match * move data-table to @calcom/features * fix type errors * fix type errors * fix type errors --------- Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
8 lines
396 B
TypeScript
8 lines
396 B
TypeScript
export { DataTableToolbar } from "./DataTableToolbar";
|
|
export { DataTableSelectionBar } from "./DataTableSelectionBar";
|
|
export { DataTablePagination } from "./DataTablePagination";
|
|
export { DataTableFilters } from "./filters";
|
|
export { useFetchMoreOnBottomReached } from "./useFetchMoreOnBottomReached";
|
|
export { DataTable } from "./DataTable";
|
|
export type { DataTableProps } from "./DataTable";
|