diff --git a/types/fomantic-ui-dropdown.d.ts b/types/fomantic-ui-dropdown.d.ts index 08cb813d14..ff69cdb8b4 100644 --- a/types/fomantic-ui-dropdown.d.ts +++ b/types/fomantic-ui-dropdown.d.ts @@ -385,6 +385,12 @@ declare namespace FomanticUI { */ ignoreSearchCase: boolean; + /** + * Whether search result should highlight matching strings + * @default false + */ + highlightMatches: boolean; + /** * If disabled user additions will appear in the dropdown's menu using a specially formatted selection item formatted by 'templates.addition'. * @default true diff --git a/types/fomantic-ui-search.d.ts b/types/fomantic-ui-search.d.ts index a5f218fc63..6455d41391 100644 --- a/types/fomantic-ui-search.d.ts +++ b/types/fomantic-ui-search.d.ts @@ -228,6 +228,18 @@ declare namespace FomanticUI { */ ignoreDiacritics: boolean; + /** + * Whether to consider case sensitivity on local searching + * @default true + */ + ignoreSearchCase: boolean; + + /** + * Whether search result should highlight matching strings + * @default false + */ + highlightMatches: boolean; + /** * Template to use (specified in settings.templates) * @default 'standard'