mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #3806 - Api: Typing mismatch
This commit is contained in:
parent
fde2bc6ec7
commit
9b9504ffe1
13 changed files with 306 additions and 298 deletions
4
components/lib/datatable/DataTable.d.ts
vendored
4
components/lib/datatable/DataTable.d.ts
vendored
|
@ -36,7 +36,7 @@ export interface DataTableFilterMetaData {
|
|||
/**
|
||||
* Filter match mode
|
||||
*/
|
||||
matchMode: 'startsWith' | 'contains' | 'notContains' | 'endsWith' | 'equals' | 'notEquals' | 'in' | 'lt' | 'lte' | 'gt' | 'gte' | 'between' | 'dateIs' | 'dateIsNot' | 'dateBefore' | 'dateAfter' | undefined;
|
||||
matchMode: 'startsWith' | 'contains' | 'notContains' | 'endsWith' | 'equals' | 'notEquals' | 'in' | 'lt' | 'lte' | 'gt' | 'gte' | 'between' | 'dateIs' | 'dateIsNot' | 'dateBefore' | 'dateAfter' | string | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -138,7 +138,7 @@ export interface DataTableSortEvent {
|
|||
/**
|
||||
* Match modes per field
|
||||
*/
|
||||
filterMatchModes: 'startsWith' | 'contains' | 'notContains' | 'endsWith' | 'equals' | 'notEquals' | 'in' | 'lt' | 'lte' | 'gt' | 'gte' | 'between' | 'dateIs' | 'dateIsNot' | 'dateBefore' | 'dateAfter' | undefined;
|
||||
filterMatchModes: 'startsWith' | 'contains' | 'notContains' | 'endsWith' | 'equals' | 'notEquals' | 'in' | 'lt' | 'lte' | 'gt' | 'gte' | 'between' | 'dateIs' | 'dateIsNot' | 'dateBefore' | 'dateAfter' | string | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue