From 0b2004864a2763af11d46488be5e3163f64d8eb0 Mon Sep 17 00:00:00 2001 From: Patrick Wehbe Date: Wed, 17 Jun 2026 15:23:17 +0300 Subject: [PATCH 1/3] docs(ComboBox): document that defaultFilter defaults to the contains filter --- packages/react-aria-components/src/ComboBox.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/react-aria-components/src/ComboBox.tsx b/packages/react-aria-components/src/ComboBox.tsx index b834adb560d..13ec44f1ac0 100644 --- a/packages/react-aria-components/src/ComboBox.tsx +++ b/packages/react-aria-components/src/ComboBox.tsx @@ -115,7 +115,10 @@ export interface ComboBoxProps * @default 'react-aria-ComboBox' */ className?: ClassNameOrFunction; - /** The filter function used to determine if a option should be included in the combo box list. */ + /** + * The filter function used to determine if an option should be included in the combo box list. + * By default, a "contains" filter from `useFilter` is used. + */ defaultFilter?: (textValue: string, inputValue: string) => boolean; /** * Whether the text or key of the selected item is submitted as part of an HTML form. When From 86067ae246feecb52d8745e72384a5c30d4d6566 Mon Sep 17 00:00:00 2001 From: Robert Snow Date: Thu, 18 Jun 2026 14:54:00 +1000 Subject: [PATCH 2/3] Apply suggestion from @snowystinger --- packages/react-aria-components/src/ComboBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-aria-components/src/ComboBox.tsx b/packages/react-aria-components/src/ComboBox.tsx index 13ec44f1ac0..6392815fcc3 100644 --- a/packages/react-aria-components/src/ComboBox.tsx +++ b/packages/react-aria-components/src/ComboBox.tsx @@ -117,7 +117,7 @@ export interface ComboBoxProps className?: ClassNameOrFunction; /** * The filter function used to determine if an option should be included in the combo box list. - * By default, a "contains" filter from `useFilter` is used. + * By default, a language-sensitive "contains" filter from `useFilter` is used. */ defaultFilter?: (textValue: string, inputValue: string) => boolean; /** From e2c6b343a904fad4951204bd07f1eebf9242b293 Mon Sep 17 00:00:00 2001 From: Patrick Wehbe Date: Fri, 19 Jun 2026 13:21:06 +0300 Subject: [PATCH 3/3] chore: re-run checks after signing Adobe CLA