From 11f14aad99583cc49bb920fb21d00533f4c3bb70 Mon Sep 17 00:00:00 2001 From: melloware Date: Tue, 26 Mar 2024 16:09:19 -0400 Subject: [PATCH] Fix #6233: FilterMatchMode typescript updates --- components/lib/column/column.d.ts | 4 ++-- components/lib/dropdown/dropdown.d.ts | 2 +- components/lib/listbox/listbox.d.ts | 4 ++-- components/lib/multiselect/multiselect.d.ts | 2 +- components/lib/orderlist/orderlist.d.ts | 4 ++-- components/lib/picklist/picklist.d.ts | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) 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 ff0feb297f..9283c03ff3 100644 --- a/components/lib/dropdown/dropdown.d.ts +++ b/components/lib/dropdown/dropdown.d.ts @@ -329,7 +329,7 @@ export interface DropdownProps extends Omit