diff --git a/components/lib/column/column.d.ts b/components/lib/column/column.d.ts index 5f51fab3ed..f808131615 100644 --- a/components/lib/column/column.d.ts +++ b/components/lib/column/column.d.ts @@ -725,7 +725,7 @@ interface ColumnFilterMatchModeChangeEvent { /** * Type of filter match. */ - matchMode: FilterMatchMode; + matchMode: FilterMatchMode | string; } /** @@ -964,7 +964,7 @@ export interface ColumnProps { /** * Defines filterMatchMode; "startsWith", "contains", "endsWith", "equals", "notEquals", "in", "lt", "lte", "gt", "gte" and "custom". */ - filterMatchMode?: FilterMatchMode | undefined; + filterMatchMode?: FilterMatchMode | string | undefined; /** * An array of label-value pairs to override the global match mode options. */ diff --git a/components/lib/dropdown/dropdown.d.ts b/components/lib/dropdown/dropdown.d.ts index 66e705448e..590c039f97 100644 --- a/components/lib/dropdown/dropdown.d.ts +++ b/components/lib/dropdown/dropdown.d.ts @@ -329,7 +329,7 @@ export interface DropdownProps extends Omit