Filtering

<T> represents the object's shape coming from the data source. <R> represents the column data type: string, number, Date, or boolean.

Generics

<T> represents the object's shape coming from the data source.

<R> represents the column data type: string, number, Date, or boolean.

<V> represents the filter values.

DikeFilter

interface DikeFilter {
  logicalOperator: LogicalOperator,
  condition: string,
}

DikeTextFilter

interface DikeTextFilter extends DikeFilter {
  value?: string
}

DikeTextCaseFilter

DikeNumericFilter

DikeDateFilter

DikeBinaryFilter

DikeFilterable<T>

Condition<T, R, V>

DikeSelectionModel

DikeBinarySelectionModel

DikeNumericSelectionModel

DikeTextSelectionModel

Last updated