@fluentui/react-combobox 9.11.7 → 9.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/CHANGELOG.md +174 -135
  2. package/dist/index.d.ts +16 -2
  3. package/lib/components/Combobox/useCombobox.js +18 -4
  4. package/lib/components/Combobox/useCombobox.js.map +1 -1
  5. package/lib/components/Combobox/useComboboxStyles.styles.js +2 -0
  6. package/lib/components/Combobox/useComboboxStyles.styles.js.map +1 -1
  7. package/lib/components/Combobox/useInputTriggerSlot.js +1 -0
  8. package/lib/components/Combobox/useInputTriggerSlot.js.map +1 -1
  9. package/lib/components/Dropdown/useButtonTriggerSlot.js +4 -1
  10. package/lib/components/Dropdown/useButtonTriggerSlot.js.map +1 -1
  11. package/lib/components/Dropdown/useDropdown.js +15 -2
  12. package/lib/components/Dropdown/useDropdown.js.map +1 -1
  13. package/lib/components/Dropdown/useDropdownStyles.styles.js +2 -0
  14. package/lib/components/Dropdown/useDropdownStyles.styles.js.map +1 -1
  15. package/lib/components/Listbox/Listbox.types.js.map +1 -1
  16. package/lib/components/Listbox/useListbox.js +67 -28
  17. package/lib/components/Listbox/useListbox.js.map +1 -1
  18. package/lib/components/Listbox/useListboxStyles.styles.js +2 -0
  19. package/lib/components/Listbox/useListboxStyles.styles.js.map +1 -1
  20. package/lib/components/Option/useOptionStyles.styles.js +2 -0
  21. package/lib/components/Option/useOptionStyles.styles.js.map +1 -1
  22. package/lib/components/OptionGroup/useOptionGroupStyles.styles.js +2 -0
  23. package/lib/components/OptionGroup/useOptionGroupStyles.styles.js.map +1 -1
  24. package/lib/contexts/ListboxContext.js +6 -0
  25. package/lib/contexts/ListboxContext.js.map +1 -1
  26. package/lib/contexts/useComboboxContextValues.js +3 -1
  27. package/lib/contexts/useComboboxContextValues.js.map +1 -1
  28. package/lib/contexts/useListboxContextValues.js +3 -1
  29. package/lib/contexts/useListboxContextValues.js.map +1 -1
  30. package/lib/utils/ComboboxBase.types.js.map +1 -1
  31. package/lib/utils/useComboboxBaseState.js +5 -24
  32. package/lib/utils/useComboboxBaseState.js.map +1 -1
  33. package/lib/utils/useComboboxPositioning.js +1 -0
  34. package/lib/utils/useComboboxPositioning.js.map +1 -1
  35. package/lib-commonjs/components/Combobox/useCombobox.js +17 -3
  36. package/lib-commonjs/components/Combobox/useCombobox.js.map +1 -1
  37. package/lib-commonjs/components/Combobox/useComboboxStyles.styles.js +1 -0
  38. package/lib-commonjs/components/Combobox/useComboboxStyles.styles.js.map +1 -1
  39. package/lib-commonjs/components/Combobox/useInputTriggerSlot.js +1 -0
  40. package/lib-commonjs/components/Combobox/useInputTriggerSlot.js.map +1 -1
  41. package/lib-commonjs/components/Dropdown/useButtonTriggerSlot.js +4 -1
  42. package/lib-commonjs/components/Dropdown/useButtonTriggerSlot.js.map +1 -1
  43. package/lib-commonjs/components/Dropdown/useDropdown.js +14 -1
  44. package/lib-commonjs/components/Dropdown/useDropdown.js.map +1 -1
  45. package/lib-commonjs/components/Dropdown/useDropdownStyles.styles.js +1 -0
  46. package/lib-commonjs/components/Dropdown/useDropdownStyles.styles.js.map +1 -1
  47. package/lib-commonjs/components/Listbox/useListbox.js +67 -28
  48. package/lib-commonjs/components/Listbox/useListbox.js.map +1 -1
  49. package/lib-commonjs/components/Listbox/useListboxStyles.styles.js +1 -0
  50. package/lib-commonjs/components/Listbox/useListboxStyles.styles.js.map +1 -1
  51. package/lib-commonjs/components/Option/useOptionStyles.styles.js +1 -0
  52. package/lib-commonjs/components/Option/useOptionStyles.styles.js.map +1 -1
  53. package/lib-commonjs/components/OptionGroup/useOptionGroupStyles.styles.js +1 -0
  54. package/lib-commonjs/components/OptionGroup/useOptionGroupStyles.styles.js.map +1 -1
  55. package/lib-commonjs/contexts/ListboxContext.js +6 -0
  56. package/lib-commonjs/contexts/ListboxContext.js.map +1 -1
  57. package/lib-commonjs/contexts/useComboboxContextValues.js +3 -1
  58. package/lib-commonjs/contexts/useComboboxContextValues.js.map +1 -1
  59. package/lib-commonjs/contexts/useListboxContextValues.js +3 -1
  60. package/lib-commonjs/contexts/useListboxContextValues.js.map +1 -1
  61. package/lib-commonjs/utils/useComboboxBaseState.js +5 -24
  62. package/lib-commonjs/utils/useComboboxBaseState.js.map +1 -1
  63. package/lib-commonjs/utils/useComboboxPositioning.js +1 -0
  64. package/lib-commonjs/utils/useComboboxPositioning.js.map +1 -1
  65. package/package.json +16 -14
package/CHANGELOG.md CHANGED
@@ -1,12 +1,51 @@
1
1
  # Change Log - @fluentui/react-combobox
2
2
 
3
- This log was last generated on Thu, 06 Jun 2024 15:22:27 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 01 Jul 2024 20:25:58 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.12.0)
8
+
9
+ Mon, 01 Jul 2024 20:25:58 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.11.8..@fluentui/react-combobox_v9.12.0)
11
+
12
+ ### Minor changes
13
+
14
+ - feat: Add disableAutoFocus to Combobox and Listbox for cases when the popover is open on focus. ([PR #31852](https://github.com/microsoft/fluentui/pull/31852) by estebanmu@microsoft.com)
15
+ - fix: Listbox updates activedescendant correctly ([PR #31415](https://github.com/microsoft/fluentui/pull/31415) by sarah.higley@microsoft.com)
16
+ - Bump @fluentui/react-aria to v9.13.0 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
17
+ - Bump @fluentui/react-context-selector to v9.1.63 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
18
+ - Bump @fluentui/react-field to v9.1.69 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
19
+ - Bump @fluentui/react-jsx-runtime to v9.0.40 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
20
+ - Bump @fluentui/react-portal to v9.4.29 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
21
+ - Bump @fluentui/react-positioning to v9.15.4 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
22
+ - Bump @fluentui/react-tabster to v9.22.1 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
23
+ - Bump @fluentui/react-utilities to v9.18.11 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
24
+
25
+ ### Patches
26
+
27
+ - chore: add eslint react-compiler ([PR #31457](https://github.com/microsoft/fluentui/pull/31457) by seanmonahan@microsoft.com)
28
+ - fix: add autoSize: true to Combobox and Dropdown by default ([PR #31864](https://github.com/microsoft/fluentui/pull/31864) by sarah.higley@microsoft.com)
29
+ - close controlled dropdown by clicking outside ([PR #31786](https://github.com/microsoft/fluentui/pull/31786) by kirpadv@gmail.com)
30
+ - style: turn off react-compiler lints for non compliant code ([PR #31795](https://github.com/microsoft/fluentui/pull/31795) by martinhochel@microsoft.com)
31
+ - chore: Update react-icons package to ^2.0.245 ([PR #31802](https://github.com/microsoft/fluentui/pull/31802) by ololubek@microsoft.com)
32
+
33
+ ## [9.11.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.11.8)
34
+
35
+ Mon, 17 Jun 2024 07:34:17 GMT
36
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.11.7..@fluentui/react-combobox_v9.11.8)
37
+
38
+ ### Patches
39
+
40
+ - Bump @fluentui/react-aria to v9.12.1 ([commit](https://github.com/microsoft/fluentui/commit/9ae683c22f2e65d94422a571ad5d3f97d0a77234) by beachball)
41
+ - Bump @fluentui/react-context-selector to v9.1.62 ([commit](https://github.com/microsoft/fluentui/commit/9ae683c22f2e65d94422a571ad5d3f97d0a77234) by beachball)
42
+ - Bump @fluentui/react-field to v9.1.68 ([commit](https://github.com/microsoft/fluentui/commit/9ae683c22f2e65d94422a571ad5d3f97d0a77234) by beachball)
43
+ - Bump @fluentui/react-portal to v9.4.28 ([commit](https://github.com/microsoft/fluentui/commit/9ae683c22f2e65d94422a571ad5d3f97d0a77234) by beachball)
44
+ - Bump @fluentui/react-tabster to v9.22.0 ([commit](https://github.com/microsoft/fluentui/commit/9ae683c22f2e65d94422a571ad5d3f97d0a77234) by beachball)
45
+
7
46
  ## [9.11.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.11.7)
8
47
 
9
- Thu, 06 Jun 2024 15:22:27 GMT
48
+ Thu, 06 Jun 2024 15:26:45 GMT
10
49
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.11.6..@fluentui/react-combobox_v9.11.7)
11
50
 
12
51
  ### Patches
@@ -22,7 +61,7 @@ Thu, 06 Jun 2024 15:22:27 GMT
22
61
 
23
62
  ## [9.11.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.11.6)
24
63
 
25
- Thu, 23 May 2024 08:02:41 GMT
64
+ Thu, 23 May 2024 08:02:41 GMT
26
65
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.11.5..@fluentui/react-combobox_v9.11.6)
27
66
 
28
67
  ### Patches
@@ -35,7 +74,7 @@ Thu, 23 May 2024 08:02:41 GMT
35
74
 
36
75
  ## [9.11.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.11.5)
37
76
 
38
- Mon, 20 May 2024 12:44:53 GMT
77
+ Mon, 20 May 2024 12:44:53 GMT
39
78
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.11.4..@fluentui/react-combobox_v9.11.5)
40
79
 
41
80
  ### Patches
@@ -53,17 +92,17 @@ Mon, 20 May 2024 12:44:53 GMT
53
92
 
54
93
  ## [9.11.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.11.4)
55
94
 
56
- Thu, 16 May 2024 09:25:13 GMT
95
+ Thu, 16 May 2024 09:25:13 GMT
57
96
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.11.3..@fluentui/react-combobox_v9.11.4)
58
97
 
59
98
  ### Patches
60
99
 
61
- - chore: Upgrade react-icons version to 2.0.239 to pick up provider export map fix. ([PR #31287](https://github.com/microsoft/fluentui/pull/31287) by ololubek@microsoft.com)
100
+ - chore: Upgrade react-icons version to 2.0.239 to pick up provider export map fix. ([PR #31287](https://github.com/microsoft/fluentui/pull/31287) by ololubek@microsoft.com)
62
101
  - Bump @fluentui/react-field to v9.1.65 ([PR #31390](https://github.com/microsoft/fluentui/pull/31390) by beachball)
63
102
 
64
103
  ## [9.11.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.11.3)
65
104
 
66
- Mon, 13 May 2024 12:34:18 GMT
105
+ Mon, 13 May 2024 12:34:18 GMT
67
106
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.11.2..@fluentui/react-combobox_v9.11.3)
68
107
 
69
108
  ### Patches
@@ -72,7 +111,7 @@ Mon, 13 May 2024 12:34:18 GMT
72
111
 
73
112
  ## [9.11.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.11.2)
74
113
 
75
- Thu, 09 May 2024 19:35:10 GMT
114
+ Thu, 09 May 2024 19:35:10 GMT
76
115
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.11.1..@fluentui/react-combobox_v9.11.2)
77
116
 
78
117
  ### Patches
@@ -86,7 +125,7 @@ Thu, 09 May 2024 19:35:10 GMT
86
125
 
87
126
  ## [9.11.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.11.1)
88
127
 
89
- Mon, 06 May 2024 12:55:02 GMT
128
+ Mon, 06 May 2024 12:55:02 GMT
90
129
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.11.0..@fluentui/react-combobox_v9.11.1)
91
130
 
92
131
  ### Patches
@@ -103,7 +142,7 @@ Mon, 06 May 2024 12:55:02 GMT
103
142
 
104
143
  ## [9.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.11.0)
105
144
 
106
- Thu, 02 May 2024 11:36:31 GMT
145
+ Thu, 02 May 2024 11:36:31 GMT
107
146
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.10.1..@fluentui/react-combobox_v9.11.0)
108
147
 
109
148
  ### Minor changes
@@ -116,12 +155,12 @@ Thu, 02 May 2024 11:36:31 GMT
116
155
 
117
156
  ### Patches
118
157
 
119
- - chore: upgrade @fluentui/react-icons to 2.0.237. ([PR #31139](https://github.com/microsoft/fluentui/pull/31139) by ololubek@microsoft.com)
158
+ - chore: upgrade @fluentui/react-icons to 2.0.237. ([PR #31139](https://github.com/microsoft/fluentui/pull/31139) by ololubek@microsoft.com)
120
159
  - Fixing initial keyboard focus issues with unparented listbox ([PR #31140](https://github.com/microsoft/fluentui/pull/31140) by stevenco@microsoft.com)
121
160
 
122
161
  ## [9.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.10.1)
123
162
 
124
- Tue, 23 Apr 2024 08:17:49 GMT
163
+ Tue, 23 Apr 2024 08:17:49 GMT
125
164
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.10.0..@fluentui/react-combobox_v9.10.1)
126
165
 
127
166
  ### Patches
@@ -138,7 +177,7 @@ Tue, 23 Apr 2024 08:17:49 GMT
138
177
 
139
178
  ## [9.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.10.0)
140
179
 
141
- Wed, 17 Apr 2024 21:53:49 GMT
180
+ Wed, 17 Apr 2024 21:53:49 GMT
142
181
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.9.6..@fluentui/react-combobox_v9.10.0)
143
182
 
144
183
  ### Minor changes
@@ -153,13 +192,13 @@ Wed, 17 Apr 2024 21:53:49 GMT
153
192
 
154
193
  - chore: Update react-icons to 2.0.235 ([PR #31011](https://github.com/microsoft/fluentui/pull/31011) by ololubek@microsoft.com)
155
194
  - fix: Inline Listbox should render on top of relatively positioned elements. ([PR #31022](https://github.com/microsoft/fluentui/pull/31022) by estebanmu@microsoft.com)
156
- - bugfix: removes freeform prop that was wrongly introduced by PR #30947 ([PR #30963](https://github.com/microsoft/fluentui/pull/30963) by bernardo.sunderhus@gmail.com)
195
+ - bugfix: removes freeform prop that was wrongly introduced by PR #30947 ([PR #30963](https://github.com/microsoft/fluentui/pull/30963) by bernardo.sunderhus@gmail.com)
157
196
  - fix: End key should move activeOption ([PR #30864](https://github.com/microsoft/fluentui/pull/30864) by sarah.higley@microsoft.com)
158
197
  - chore: fix useListBoxSlot signature to accept more triggerRef types ([PR #31038](https://github.com/microsoft/fluentui/pull/31038) by bernardo.sunderhus@gmail.com)
159
198
 
160
199
  ## [9.9.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.9.6)
161
200
 
162
- Thu, 04 Apr 2024 12:08:07 GMT
201
+ Thu, 04 Apr 2024 12:08:07 GMT
163
202
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.9.5..@fluentui/react-combobox_v9.9.6)
164
203
 
165
204
  ### Patches
@@ -168,7 +207,7 @@ Thu, 04 Apr 2024 12:08:07 GMT
168
207
 
169
208
  ## [9.9.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.9.5)
170
209
 
171
- Tue, 02 Apr 2024 09:48:01 GMT
210
+ Tue, 02 Apr 2024 09:48:01 GMT
172
211
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.9.4..@fluentui/react-combobox_v9.9.5)
173
212
 
174
213
  ### Patches
@@ -185,7 +224,7 @@ Tue, 02 Apr 2024 09:48:01 GMT
185
224
 
186
225
  ## [9.9.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.9.4)
187
226
 
188
- Mon, 25 Mar 2024 11:12:13 GMT
227
+ Mon, 25 Mar 2024 11:12:13 GMT
189
228
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.9.3..@fluentui/react-combobox_v9.9.4)
190
229
 
191
230
  ### Patches
@@ -195,7 +234,7 @@ Mon, 25 Mar 2024 11:12:13 GMT
195
234
 
196
235
  ## [9.9.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.9.3)
197
236
 
198
- Mon, 18 Mar 2024 19:50:46 GMT
237
+ Mon, 18 Mar 2024 19:50:46 GMT
199
238
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.9.2..@fluentui/react-combobox_v9.9.3)
200
239
 
201
240
  ### Patches
@@ -213,7 +252,7 @@ Mon, 18 Mar 2024 19:50:46 GMT
213
252
 
214
253
  ## [9.9.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.9.2)
215
254
 
216
- Fri, 15 Mar 2024 21:43:49 GMT
255
+ Fri, 15 Mar 2024 21:43:49 GMT
217
256
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.9.1..@fluentui/react-combobox_v9.9.2)
218
257
 
219
258
  ### Patches
@@ -231,7 +270,7 @@ Fri, 15 Mar 2024 21:43:49 GMT
231
270
 
232
271
  ## [9.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.9.1)
233
272
 
234
- Thu, 07 Mar 2024 19:33:21 GMT
273
+ Thu, 07 Mar 2024 19:33:21 GMT
235
274
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.9.0..@fluentui/react-combobox_v9.9.1)
236
275
 
237
276
  ### Patches
@@ -250,7 +289,7 @@ Thu, 07 Mar 2024 19:33:21 GMT
250
289
 
251
290
  ## [9.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.9.0)
252
291
 
253
- Wed, 28 Feb 2024 02:34:17 GMT
292
+ Wed, 28 Feb 2024 02:34:17 GMT
254
293
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.8.0..@fluentui/react-combobox_v9.9.0)
255
294
 
256
295
  ### Minor changes
@@ -268,7 +307,7 @@ Wed, 28 Feb 2024 02:34:17 GMT
268
307
 
269
308
  ## [9.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.8.0)
270
309
 
271
- Tue, 20 Feb 2024 14:22:18 GMT
310
+ Tue, 20 Feb 2024 14:22:18 GMT
272
311
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.7.5..@fluentui/react-combobox_v9.8.0)
273
312
 
274
313
  ### Minor changes
@@ -289,7 +328,7 @@ Tue, 20 Feb 2024 14:22:18 GMT
289
328
 
290
329
  ## [9.7.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.7.5)
291
330
 
292
- Tue, 06 Feb 2024 17:55:21 GMT
331
+ Tue, 06 Feb 2024 17:55:21 GMT
293
332
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.7.4..@fluentui/react-combobox_v9.7.5)
294
333
 
295
334
  ### Patches
@@ -300,7 +339,7 @@ Tue, 06 Feb 2024 17:55:21 GMT
300
339
 
301
340
  ## [9.7.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.7.4)
302
341
 
303
- Tue, 30 Jan 2024 23:16:54 GMT
342
+ Tue, 30 Jan 2024 23:16:54 GMT
304
343
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.7.3..@fluentui/react-combobox_v9.7.4)
305
344
 
306
345
  ### Patches
@@ -315,7 +354,7 @@ Tue, 30 Jan 2024 23:16:54 GMT
315
354
 
316
355
  ## [9.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.7.3)
317
356
 
318
- Mon, 29 Jan 2024 13:56:05 GMT
357
+ Mon, 29 Jan 2024 13:56:05 GMT
319
358
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.7.2..@fluentui/react-combobox_v9.7.3)
320
359
 
321
360
  ### Patches
@@ -326,7 +365,7 @@ Mon, 29 Jan 2024 13:56:05 GMT
326
365
 
327
366
  ## [9.7.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.7.2)
328
367
 
329
- Fri, 26 Jan 2024 10:40:22 GMT
368
+ Fri, 26 Jan 2024 10:40:22 GMT
330
369
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.7.1..@fluentui/react-combobox_v9.7.2)
331
370
 
332
371
  ### Patches
@@ -335,7 +374,7 @@ Fri, 26 Jan 2024 10:40:22 GMT
335
374
 
336
375
  ## [9.7.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.7.1)
337
376
 
338
- Tue, 23 Jan 2024 15:10:58 GMT
377
+ Tue, 23 Jan 2024 15:10:58 GMT
339
378
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.7.0..@fluentui/react-combobox_v9.7.1)
340
379
 
341
380
  ### Patches
@@ -352,7 +391,7 @@ Tue, 23 Jan 2024 15:10:58 GMT
352
391
 
353
392
  ## [9.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.7.0)
354
393
 
355
- Thu, 18 Jan 2024 14:25:01 GMT
394
+ Thu, 18 Jan 2024 14:25:01 GMT
356
395
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.6.1..@fluentui/react-combobox_v9.7.0)
357
396
 
358
397
  ### Minor changes
@@ -369,7 +408,7 @@ Thu, 18 Jan 2024 14:25:01 GMT
369
408
 
370
409
  ## [9.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.6.1)
371
410
 
372
- Wed, 17 Jan 2024 16:18:49 GMT
411
+ Wed, 17 Jan 2024 16:18:49 GMT
373
412
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.6.0..@fluentui/react-combobox_v9.6.1)
374
413
 
375
414
  ### Patches
@@ -385,7 +424,7 @@ Wed, 17 Jan 2024 16:18:49 GMT
385
424
 
386
425
  ## [9.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.6.0)
387
426
 
388
- Tue, 16 Jan 2024 13:14:15 GMT
427
+ Tue, 16 Jan 2024 13:14:15 GMT
389
428
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.40..@fluentui/react-combobox_v9.6.0)
390
429
 
391
430
  ### Minor changes
@@ -405,7 +444,7 @@ Tue, 16 Jan 2024 13:14:15 GMT
405
444
 
406
445
  ## [9.5.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.40)
407
446
 
408
- Thu, 11 Jan 2024 09:04:29 GMT
447
+ Thu, 11 Jan 2024 09:04:29 GMT
409
448
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.39..@fluentui/react-combobox_v9.5.40)
410
449
 
411
450
  ### Patches
@@ -414,7 +453,7 @@ Thu, 11 Jan 2024 09:04:29 GMT
414
453
 
415
454
  ## [9.5.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.39)
416
455
 
417
- Tue, 09 Jan 2024 10:21:34 GMT
456
+ Tue, 09 Jan 2024 10:21:34 GMT
418
457
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.38..@fluentui/react-combobox_v9.5.39)
419
458
 
420
459
  ### Patches
@@ -423,7 +462,7 @@ Tue, 09 Jan 2024 10:21:34 GMT
423
462
 
424
463
  ## [9.5.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.38)
425
464
 
426
- Mon, 08 Jan 2024 16:24:21 GMT
465
+ Mon, 08 Jan 2024 16:24:21 GMT
427
466
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.37..@fluentui/react-combobox_v9.5.38)
428
467
 
429
468
  ### Patches
@@ -438,7 +477,7 @@ Mon, 08 Jan 2024 16:24:21 GMT
438
477
 
439
478
  ## [9.5.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.37)
440
479
 
441
- Wed, 03 Jan 2024 09:26:42 GMT
480
+ Wed, 03 Jan 2024 09:26:42 GMT
442
481
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.36..@fluentui/react-combobox_v9.5.37)
443
482
 
444
483
  ### Patches
@@ -453,7 +492,7 @@ Wed, 03 Jan 2024 09:26:42 GMT
453
492
 
454
493
  ## [9.5.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.36)
455
494
 
456
- Thu, 21 Dec 2023 17:00:41 GMT
495
+ Thu, 21 Dec 2023 17:00:41 GMT
457
496
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.35..@fluentui/react-combobox_v9.5.36)
458
497
 
459
498
  ### Patches
@@ -462,7 +501,7 @@ Thu, 21 Dec 2023 17:00:41 GMT
462
501
 
463
502
  ## [9.5.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.35)
464
503
 
465
- Mon, 18 Dec 2023 17:48:16 GMT
504
+ Mon, 18 Dec 2023 17:48:16 GMT
466
505
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.34..@fluentui/react-combobox_v9.5.35)
467
506
 
468
507
  ### Patches
@@ -472,7 +511,7 @@ Mon, 18 Dec 2023 17:48:16 GMT
472
511
 
473
512
  ## [9.5.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.34)
474
513
 
475
- Mon, 18 Dec 2023 14:40:46 GMT
514
+ Mon, 18 Dec 2023 14:40:46 GMT
476
515
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.33..@fluentui/react-combobox_v9.5.34)
477
516
 
478
517
  ### Patches
@@ -487,7 +526,7 @@ Mon, 18 Dec 2023 14:40:46 GMT
487
526
 
488
527
  ## [9.5.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.33)
489
528
 
490
- Thu, 14 Dec 2023 09:58:43 GMT
529
+ Thu, 14 Dec 2023 09:58:43 GMT
491
530
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.32..@fluentui/react-combobox_v9.5.33)
492
531
 
493
532
  ### Patches
@@ -503,7 +542,7 @@ Thu, 14 Dec 2023 09:58:43 GMT
503
542
 
504
543
  ## [9.5.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.32)
505
544
 
506
- Thu, 30 Nov 2023 13:42:05 GMT
545
+ Thu, 30 Nov 2023 13:42:05 GMT
507
546
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.31..@fluentui/react-combobox_v9.5.32)
508
547
 
509
548
  ### Patches
@@ -517,7 +556,7 @@ Thu, 30 Nov 2023 13:42:05 GMT
517
556
 
518
557
  ## [9.5.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.31)
519
558
 
520
- Mon, 20 Nov 2023 09:55:10 GMT
559
+ Mon, 20 Nov 2023 09:55:10 GMT
521
560
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.30..@fluentui/react-combobox_v9.5.31)
522
561
 
523
562
  ### Patches
@@ -529,7 +568,7 @@ Mon, 20 Nov 2023 09:55:10 GMT
529
568
 
530
569
  ## [9.5.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.30)
531
570
 
532
- Tue, 14 Nov 2023 17:51:27 GMT
571
+ Tue, 14 Nov 2023 17:51:27 GMT
533
572
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.29..@fluentui/react-combobox_v9.5.30)
534
573
 
535
574
  ### Patches
@@ -538,7 +577,7 @@ Tue, 14 Nov 2023 17:51:27 GMT
538
577
 
539
578
  ## [9.5.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.29)
540
579
 
541
- Thu, 09 Nov 2023 17:29:31 GMT
580
+ Thu, 09 Nov 2023 17:29:31 GMT
542
581
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.28..@fluentui/react-combobox_v9.5.29)
543
582
 
544
583
  ### Patches
@@ -557,7 +596,7 @@ Thu, 09 Nov 2023 17:29:31 GMT
557
596
 
558
597
  ## [9.5.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.28)
559
598
 
560
- Wed, 01 Nov 2023 12:55:58 GMT
599
+ Wed, 01 Nov 2023 12:55:58 GMT
561
600
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.27..@fluentui/react-combobox_v9.5.28)
562
601
 
563
602
  ### Patches
@@ -571,7 +610,7 @@ Wed, 01 Nov 2023 12:55:58 GMT
571
610
 
572
611
  ## [9.5.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.27)
573
612
 
574
- Sat, 28 Oct 2023 23:35:55 GMT
613
+ Sat, 28 Oct 2023 23:35:55 GMT
575
614
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.26..@fluentui/react-combobox_v9.5.27)
576
615
 
577
616
  ### Patches
@@ -584,7 +623,7 @@ Sat, 28 Oct 2023 23:35:55 GMT
584
623
 
585
624
  ## [9.5.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.26)
586
625
 
587
- Mon, 23 Oct 2023 09:51:57 GMT
626
+ Mon, 23 Oct 2023 09:51:57 GMT
588
627
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.25..@fluentui/react-combobox_v9.5.26)
589
628
 
590
629
  ### Patches
@@ -593,7 +632,7 @@ Mon, 23 Oct 2023 09:51:57 GMT
593
632
 
594
633
  ## [9.5.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.25)
595
634
 
596
- Wed, 18 Oct 2023 17:54:02 GMT
635
+ Wed, 18 Oct 2023 17:54:02 GMT
597
636
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.24..@fluentui/react-combobox_v9.5.25)
598
637
 
599
638
  ### Patches
@@ -608,7 +647,7 @@ Wed, 18 Oct 2023 17:54:02 GMT
608
647
 
609
648
  ## [9.5.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.24)
610
649
 
611
- Thu, 12 Oct 2023 14:55:44 GMT
650
+ Thu, 12 Oct 2023 14:55:44 GMT
612
651
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.23..@fluentui/react-combobox_v9.5.24)
613
652
 
614
653
  ### Patches
@@ -618,7 +657,7 @@ Thu, 12 Oct 2023 14:55:44 GMT
618
657
 
619
658
  ## [9.5.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.23)
620
659
 
621
- Wed, 11 Oct 2023 13:54:26 GMT
660
+ Wed, 11 Oct 2023 13:54:26 GMT
622
661
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.22..@fluentui/react-combobox_v9.5.23)
623
662
 
624
663
  ### Patches
@@ -632,7 +671,7 @@ Wed, 11 Oct 2023 13:54:26 GMT
632
671
 
633
672
  ## [9.5.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.22)
634
673
 
635
- Mon, 09 Oct 2023 20:45:44 GMT
674
+ Mon, 09 Oct 2023 20:45:44 GMT
636
675
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.21..@fluentui/react-combobox_v9.5.22)
637
676
 
638
677
  ### Patches
@@ -647,7 +686,7 @@ Mon, 09 Oct 2023 20:45:44 GMT
647
686
 
648
687
  ## [9.5.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.21)
649
688
 
650
- Thu, 05 Oct 2023 15:25:35 GMT
689
+ Thu, 05 Oct 2023 15:25:35 GMT
651
690
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.20..@fluentui/react-combobox_v9.5.21)
652
691
 
653
692
  ### Patches
@@ -661,7 +700,7 @@ Thu, 05 Oct 2023 15:25:35 GMT
661
700
 
662
701
  ## [9.5.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.20)
663
702
 
664
- Wed, 04 Oct 2023 08:45:47 GMT
703
+ Wed, 04 Oct 2023 08:45:47 GMT
665
704
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.19..@fluentui/react-combobox_v9.5.20)
666
705
 
667
706
  ### Patches
@@ -675,7 +714,7 @@ Wed, 04 Oct 2023 08:45:47 GMT
675
714
 
676
715
  ## [9.5.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.19)
677
716
 
678
- Mon, 02 Oct 2023 08:56:05 GMT
717
+ Mon, 02 Oct 2023 08:56:05 GMT
679
718
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.18..@fluentui/react-combobox_v9.5.19)
680
719
 
681
720
  ### Patches
@@ -687,7 +726,7 @@ Mon, 02 Oct 2023 08:56:05 GMT
687
726
 
688
727
  ## [9.5.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.18)
689
728
 
690
- Tue, 26 Sep 2023 17:49:03 GMT
729
+ Tue, 26 Sep 2023 17:49:03 GMT
691
730
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.17..@fluentui/react-combobox_v9.5.18)
692
731
 
693
732
  ### Patches
@@ -705,7 +744,7 @@ Tue, 26 Sep 2023 17:49:03 GMT
705
744
 
706
745
  ## [9.5.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.17)
707
746
 
708
- Tue, 26 Sep 2023 15:32:04 GMT
747
+ Tue, 26 Sep 2023 15:32:04 GMT
709
748
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.16..@fluentui/react-combobox_v9.5.17)
710
749
 
711
750
  ### Patches
@@ -724,7 +763,7 @@ Tue, 26 Sep 2023 15:32:04 GMT
724
763
 
725
764
  ## [9.5.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.16)
726
765
 
727
- Wed, 20 Sep 2023 17:47:36 GMT
766
+ Wed, 20 Sep 2023 17:47:36 GMT
728
767
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.15..@fluentui/react-combobox_v9.5.16)
729
768
 
730
769
  ### Patches
@@ -738,7 +777,7 @@ Wed, 20 Sep 2023 17:47:36 GMT
738
777
 
739
778
  ## [9.5.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.15)
740
779
 
741
- Wed, 20 Sep 2023 14:59:53 GMT
780
+ Wed, 20 Sep 2023 14:59:53 GMT
742
781
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.14..@fluentui/react-combobox_v9.5.15)
743
782
 
744
783
  ### Patches
@@ -751,7 +790,7 @@ Wed, 20 Sep 2023 14:59:53 GMT
751
790
 
752
791
  ## [9.5.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.14)
753
792
 
754
- Thu, 14 Sep 2023 16:44:47 GMT
793
+ Thu, 14 Sep 2023 16:44:47 GMT
755
794
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.13..@fluentui/react-combobox_v9.5.14)
756
795
 
757
796
  ### Patches
@@ -761,7 +800,7 @@ Thu, 14 Sep 2023 16:44:47 GMT
761
800
 
762
801
  ## [9.5.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.13)
763
802
 
764
- Tue, 12 Sep 2023 08:51:34 GMT
803
+ Tue, 12 Sep 2023 08:51:34 GMT
765
804
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.12..@fluentui/react-combobox_v9.5.13)
766
805
 
767
806
  ### Patches
@@ -772,7 +811,7 @@ Tue, 12 Sep 2023 08:51:34 GMT
772
811
 
773
812
  ## [9.5.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.12)
774
813
 
775
- Wed, 06 Sep 2023 13:31:31 GMT
814
+ Wed, 06 Sep 2023 13:31:31 GMT
776
815
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.11..@fluentui/react-combobox_v9.5.12)
777
816
 
778
817
  ### Patches
@@ -786,7 +825,7 @@ Wed, 06 Sep 2023 13:31:31 GMT
786
825
 
787
826
  ## [9.5.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.11)
788
827
 
789
- Tue, 05 Sep 2023 15:39:04 GMT
828
+ Tue, 05 Sep 2023 15:39:04 GMT
790
829
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.10..@fluentui/react-combobox_v9.5.11)
791
830
 
792
831
  ### Patches
@@ -800,7 +839,7 @@ Tue, 05 Sep 2023 15:39:04 GMT
800
839
 
801
840
  ## [9.5.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.10)
802
841
 
803
- Tue, 05 Sep 2023 13:29:18 GMT
842
+ Tue, 05 Sep 2023 13:29:18 GMT
804
843
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.9..@fluentui/react-combobox_v9.5.10)
805
844
 
806
845
  ### Patches
@@ -819,7 +858,7 @@ Tue, 05 Sep 2023 13:29:18 GMT
819
858
 
820
859
  ## [9.5.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.9)
821
860
 
822
- Tue, 29 Aug 2023 12:57:36 GMT
861
+ Tue, 29 Aug 2023 12:57:36 GMT
823
862
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.8..@fluentui/react-combobox_v9.5.9)
824
863
 
825
864
  ### Patches
@@ -833,7 +872,7 @@ Tue, 29 Aug 2023 12:57:36 GMT
833
872
 
834
873
  ## [9.5.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.8)
835
874
 
836
- Thu, 24 Aug 2023 10:26:35 GMT
875
+ Thu, 24 Aug 2023 10:26:35 GMT
837
876
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.7..@fluentui/react-combobox_v9.5.8)
838
877
 
839
878
  ### Patches
@@ -847,7 +886,7 @@ Thu, 24 Aug 2023 10:26:35 GMT
847
886
 
848
887
  ## [9.5.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.7)
849
888
 
850
- Wed, 23 Aug 2023 12:01:49 GMT
889
+ Wed, 23 Aug 2023 12:01:49 GMT
851
890
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.6..@fluentui/react-combobox_v9.5.7)
852
891
 
853
892
  ### Patches
@@ -861,7 +900,7 @@ Wed, 23 Aug 2023 12:01:49 GMT
861
900
 
862
901
  ## [9.5.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.6)
863
902
 
864
- Mon, 21 Aug 2023 11:38:03 GMT
903
+ Mon, 21 Aug 2023 11:38:03 GMT
865
904
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.5..@fluentui/react-combobox_v9.5.6)
866
905
 
867
906
  ### Patches
@@ -870,7 +909,7 @@ Mon, 21 Aug 2023 11:38:03 GMT
870
909
 
871
910
  ## [9.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.5)
872
911
 
873
- Wed, 16 Aug 2023 17:41:08 GMT
912
+ Wed, 16 Aug 2023 17:41:08 GMT
874
913
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.4..@fluentui/react-combobox_v9.5.5)
875
914
 
876
915
  ### Patches
@@ -880,7 +919,7 @@ Wed, 16 Aug 2023 17:41:08 GMT
880
919
 
881
920
  ## [9.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.4)
882
921
 
883
- Wed, 16 Aug 2023 11:38:33 GMT
922
+ Wed, 16 Aug 2023 11:38:33 GMT
884
923
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.3..@fluentui/react-combobox_v9.5.4)
885
924
 
886
925
  ### Patches
@@ -890,7 +929,7 @@ Wed, 16 Aug 2023 11:38:33 GMT
890
929
 
891
930
  ## [9.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.3)
892
931
 
893
- Fri, 11 Aug 2023 12:14:26 GMT
932
+ Fri, 11 Aug 2023 12:14:26 GMT
894
933
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.2..@fluentui/react-combobox_v9.5.3)
895
934
 
896
935
  ### Patches
@@ -904,7 +943,7 @@ Fri, 11 Aug 2023 12:14:26 GMT
904
943
 
905
944
  ## [9.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.2)
906
945
 
907
- Wed, 09 Aug 2023 13:16:53 GMT
946
+ Wed, 09 Aug 2023 13:16:53 GMT
908
947
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.1..@fluentui/react-combobox_v9.5.2)
909
948
 
910
949
  ### Patches
@@ -920,7 +959,7 @@ Wed, 09 Aug 2023 13:16:53 GMT
920
959
 
921
960
  ## [9.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.1)
922
961
 
923
- Fri, 04 Aug 2023 08:52:58 GMT
962
+ Fri, 04 Aug 2023 08:52:58 GMT
924
963
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.5.0..@fluentui/react-combobox_v9.5.1)
925
964
 
926
965
  ### Patches
@@ -936,7 +975,7 @@ Fri, 04 Aug 2023 08:52:58 GMT
936
975
 
937
976
  ## [9.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.5.0)
938
977
 
939
- Tue, 01 Aug 2023 10:17:19 GMT
978
+ Tue, 01 Aug 2023 10:17:19 GMT
940
979
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.10..@fluentui/react-combobox_v9.5.0)
941
980
 
942
981
  ### Minor changes
@@ -949,7 +988,7 @@ Tue, 01 Aug 2023 10:17:19 GMT
949
988
 
950
989
  ## [9.4.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.10)
951
990
 
952
- Thu, 27 Jul 2023 10:34:14 GMT
991
+ Thu, 27 Jul 2023 10:34:14 GMT
953
992
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.9..@fluentui/react-combobox_v9.4.10)
954
993
 
955
994
  ### Patches
@@ -958,7 +997,7 @@ Thu, 27 Jul 2023 10:34:14 GMT
958
997
 
959
998
  ## [9.4.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.9)
960
999
 
961
- Tue, 25 Jul 2023 13:29:18 GMT
1000
+ Tue, 25 Jul 2023 13:29:18 GMT
962
1001
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.8..@fluentui/react-combobox_v9.4.9)
963
1002
 
964
1003
  ### Patches
@@ -969,7 +1008,7 @@ Tue, 25 Jul 2023 13:29:18 GMT
969
1008
 
970
1009
  ## [9.4.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.8)
971
1010
 
972
- Thu, 20 Jul 2023 18:27:27 GMT
1011
+ Thu, 20 Jul 2023 18:27:27 GMT
973
1012
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.7..@fluentui/react-combobox_v9.4.8)
974
1013
 
975
1014
  ### Patches
@@ -980,7 +1019,7 @@ Thu, 20 Jul 2023 18:27:27 GMT
980
1019
 
981
1020
  ## [9.4.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.7)
982
1021
 
983
- Tue, 11 Jul 2023 18:46:36 GMT
1022
+ Tue, 11 Jul 2023 18:46:36 GMT
984
1023
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.6..@fluentui/react-combobox_v9.4.7)
985
1024
 
986
1025
  ### Patches
@@ -992,7 +1031,7 @@ Tue, 11 Jul 2023 18:46:36 GMT
992
1031
 
993
1032
  ## [9.4.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.6)
994
1033
 
995
- Mon, 03 Jul 2023 13:34:28 GMT
1034
+ Mon, 03 Jul 2023 13:34:28 GMT
996
1035
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.5..@fluentui/react-combobox_v9.4.6)
997
1036
 
998
1037
  ### Patches
@@ -1001,7 +1040,7 @@ Mon, 03 Jul 2023 13:34:28 GMT
1001
1040
 
1002
1041
  ## [9.4.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.5)
1003
1042
 
1004
- Mon, 03 Jul 2023 11:57:14 GMT
1043
+ Mon, 03 Jul 2023 11:57:14 GMT
1005
1044
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.4..@fluentui/react-combobox_v9.4.5)
1006
1045
 
1007
1046
  ### Patches
@@ -1016,7 +1055,7 @@ Mon, 03 Jul 2023 11:57:14 GMT
1016
1055
 
1017
1056
  ## [9.4.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.4)
1018
1057
 
1019
- Wed, 28 Jun 2023 11:12:24 GMT
1058
+ Wed, 28 Jun 2023 11:12:24 GMT
1020
1059
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.3..@fluentui/react-combobox_v9.4.4)
1021
1060
 
1022
1061
  ### Patches
@@ -1030,7 +1069,7 @@ Wed, 28 Jun 2023 11:12:24 GMT
1030
1069
 
1031
1070
  ## [9.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.3)
1032
1071
 
1033
- Tue, 27 Jun 2023 11:21:23 GMT
1072
+ Tue, 27 Jun 2023 11:21:23 GMT
1034
1073
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.2..@fluentui/react-combobox_v9.4.3)
1035
1074
 
1036
1075
  ### Patches
@@ -1039,7 +1078,7 @@ Tue, 27 Jun 2023 11:21:23 GMT
1039
1078
 
1040
1079
  ## [9.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.2)
1041
1080
 
1042
- Mon, 26 Jun 2023 09:53:55 GMT
1081
+ Mon, 26 Jun 2023 09:53:55 GMT
1043
1082
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.1..@fluentui/react-combobox_v9.4.2)
1044
1083
 
1045
1084
  ### Patches
@@ -1053,7 +1092,7 @@ Mon, 26 Jun 2023 09:53:55 GMT
1053
1092
 
1054
1093
  ## [9.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.1)
1055
1094
 
1056
- Tue, 20 Jun 2023 12:38:56 GMT
1095
+ Tue, 20 Jun 2023 12:38:56 GMT
1057
1096
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.4.0..@fluentui/react-combobox_v9.4.1)
1058
1097
 
1059
1098
  ### Patches
@@ -1072,7 +1111,7 @@ Tue, 20 Jun 2023 12:38:56 GMT
1072
1111
 
1073
1112
  ## [9.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.4.0)
1074
1113
 
1075
- Wed, 31 May 2023 06:46:10 GMT
1114
+ Wed, 31 May 2023 06:46:10 GMT
1076
1115
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.3.4..@fluentui/react-combobox_v9.4.0)
1077
1116
 
1078
1117
  ### Minor changes
@@ -1092,7 +1131,7 @@ Wed, 31 May 2023 06:46:10 GMT
1092
1131
 
1093
1132
  ## [9.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.3.4)
1094
1133
 
1095
- Thu, 25 May 2023 10:00:48 GMT
1134
+ Thu, 25 May 2023 10:00:48 GMT
1096
1135
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.3.3..@fluentui/react-combobox_v9.3.4)
1097
1136
 
1098
1137
  ### Patches
@@ -1106,7 +1145,7 @@ Thu, 25 May 2023 10:00:48 GMT
1106
1145
 
1107
1146
  ## [9.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.3.3)
1108
1147
 
1109
- Wed, 24 May 2023 20:45:24 GMT
1148
+ Wed, 24 May 2023 20:45:24 GMT
1110
1149
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.3.2..@fluentui/react-combobox_v9.3.3)
1111
1150
 
1112
1151
  ### Patches
@@ -1118,7 +1157,7 @@ Wed, 24 May 2023 20:45:24 GMT
1118
1157
 
1119
1158
  ## [9.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.3.2)
1120
1159
 
1121
- Thu, 18 May 2023 13:11:08 GMT
1160
+ Thu, 18 May 2023 13:11:08 GMT
1122
1161
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.3.1..@fluentui/react-combobox_v9.3.2)
1123
1162
 
1124
1163
  ### Patches
@@ -1127,7 +1166,7 @@ Thu, 18 May 2023 13:11:08 GMT
1127
1166
 
1128
1167
  ## [9.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.3.1)
1129
1168
 
1130
- Thu, 18 May 2023 00:39:03 GMT
1169
+ Thu, 18 May 2023 00:39:03 GMT
1131
1170
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.3.0..@fluentui/react-combobox_v9.3.1)
1132
1171
 
1133
1172
  ### Patches
@@ -1141,7 +1180,7 @@ Thu, 18 May 2023 00:39:03 GMT
1141
1180
 
1142
1181
  ## [9.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.3.0)
1143
1182
 
1144
- Fri, 12 May 2023 20:28:20 GMT
1183
+ Fri, 12 May 2023 20:28:20 GMT
1145
1184
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.11..@fluentui/react-combobox_v9.3.0)
1146
1185
 
1147
1186
  ### Minor changes
@@ -1166,7 +1205,7 @@ Fri, 12 May 2023 20:28:20 GMT
1166
1205
 
1167
1206
  ## [9.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.11)
1168
1207
 
1169
- Mon, 24 Apr 2023 08:12:33 GMT
1208
+ Mon, 24 Apr 2023 08:12:33 GMT
1170
1209
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.10..@fluentui/react-combobox_v9.2.11)
1171
1210
 
1172
1211
  ### Patches
@@ -1177,7 +1216,7 @@ Mon, 24 Apr 2023 08:12:33 GMT
1177
1216
 
1178
1217
  ## [9.2.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.10)
1179
1218
 
1180
- Mon, 17 Apr 2023 17:53:46 GMT
1219
+ Mon, 17 Apr 2023 17:53:46 GMT
1181
1220
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.9..@fluentui/react-combobox_v9.2.10)
1182
1221
 
1183
1222
  ### Patches
@@ -1192,7 +1231,7 @@ Mon, 17 Apr 2023 17:53:46 GMT
1192
1231
 
1193
1232
  ## [9.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.9)
1194
1233
 
1195
- Wed, 12 Apr 2023 09:31:43 GMT
1234
+ Wed, 12 Apr 2023 09:31:43 GMT
1196
1235
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.8..@fluentui/react-combobox_v9.2.9)
1197
1236
 
1198
1237
  ### Patches
@@ -1206,7 +1245,7 @@ Wed, 12 Apr 2023 09:31:43 GMT
1206
1245
 
1207
1246
  ## [9.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.8)
1208
1247
 
1209
- Fri, 07 Apr 2023 00:01:37 GMT
1248
+ Fri, 07 Apr 2023 00:01:37 GMT
1210
1249
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.7..@fluentui/react-combobox_v9.2.8)
1211
1250
 
1212
1251
  ### Patches
@@ -1217,7 +1256,7 @@ Fri, 07 Apr 2023 00:01:37 GMT
1217
1256
 
1218
1257
  ## [9.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.7)
1219
1258
 
1220
- Tue, 04 Apr 2023 18:44:48 GMT
1259
+ Tue, 04 Apr 2023 18:44:48 GMT
1221
1260
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.6..@fluentui/react-combobox_v9.2.7)
1222
1261
 
1223
1262
  ### Patches
@@ -1231,7 +1270,7 @@ Tue, 04 Apr 2023 18:44:48 GMT
1231
1270
 
1232
1271
  ## [9.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.5)
1233
1272
 
1234
- Tue, 21 Mar 2023 21:23:28 GMT
1273
+ Tue, 21 Mar 2023 21:23:28 GMT
1235
1274
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.4..@fluentui/react-combobox_v9.2.5)
1236
1275
 
1237
1276
  ### Patches
@@ -1251,7 +1290,7 @@ Tue, 21 Mar 2023 21:23:28 GMT
1251
1290
 
1252
1291
  ## [9.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.4)
1253
1292
 
1254
- Thu, 16 Mar 2023 14:36:59 GMT
1293
+ Thu, 16 Mar 2023 14:36:59 GMT
1255
1294
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.3..@fluentui/react-combobox_v9.2.4)
1256
1295
 
1257
1296
  ### Patches
@@ -1264,7 +1303,7 @@ Thu, 16 Mar 2023 14:36:59 GMT
1264
1303
 
1265
1304
  ## [9.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.3)
1266
1305
 
1267
- Wed, 15 Mar 2023 10:19:53 GMT
1306
+ Wed, 15 Mar 2023 10:19:53 GMT
1268
1307
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.2..@fluentui/react-combobox_v9.2.3)
1269
1308
 
1270
1309
  ### Patches
@@ -1277,7 +1316,7 @@ Wed, 15 Mar 2023 10:19:53 GMT
1277
1316
 
1278
1317
  ## [9.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.2)
1279
1318
 
1280
- Mon, 13 Mar 2023 08:58:26 GMT
1319
+ Mon, 13 Mar 2023 08:58:26 GMT
1281
1320
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.1..@fluentui/react-combobox_v9.2.2)
1282
1321
 
1283
1322
  ### Patches
@@ -1290,7 +1329,7 @@ Mon, 13 Mar 2023 08:58:26 GMT
1290
1329
 
1291
1330
  ## [9.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.1)
1292
1331
 
1293
- Fri, 10 Mar 2023 07:14:01 GMT
1332
+ Fri, 10 Mar 2023 07:14:01 GMT
1294
1333
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.0..@fluentui/react-combobox_v9.2.1)
1295
1334
 
1296
1335
  ### Patches
@@ -1303,7 +1342,7 @@ Fri, 10 Mar 2023 07:14:01 GMT
1303
1342
 
1304
1343
  ## [9.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.0)
1305
1344
 
1306
- Wed, 08 Mar 2023 17:42:29 GMT
1345
+ Wed, 08 Mar 2023 17:42:29 GMT
1307
1346
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.1.5..@fluentui/react-combobox_v9.2.0)
1308
1347
 
1309
1348
  ### Minor changes
@@ -1318,7 +1357,7 @@ Wed, 08 Mar 2023 17:42:29 GMT
1318
1357
 
1319
1358
  ## [9.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.1.5)
1320
1359
 
1321
- Wed, 22 Feb 2023 23:06:07 GMT
1360
+ Wed, 22 Feb 2023 23:06:07 GMT
1322
1361
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.1.4..@fluentui/react-combobox_v9.1.5)
1323
1362
 
1324
1363
  ### Patches
@@ -1327,7 +1366,7 @@ Wed, 22 Feb 2023 23:06:07 GMT
1327
1366
 
1328
1367
  ## [9.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.1.4)
1329
1368
 
1330
- Wed, 15 Feb 2023 11:44:52 GMT
1369
+ Wed, 15 Feb 2023 11:44:52 GMT
1331
1370
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.1.3..@fluentui/react-combobox_v9.1.4)
1332
1371
 
1333
1372
  ### Patches
@@ -1340,7 +1379,7 @@ Wed, 15 Feb 2023 11:44:52 GMT
1340
1379
 
1341
1380
  ## [9.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.1.3)
1342
1381
 
1343
- Mon, 13 Feb 2023 23:43:14 GMT
1382
+ Mon, 13 Feb 2023 23:43:14 GMT
1344
1383
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.1.2..@fluentui/react-combobox_v9.1.3)
1345
1384
 
1346
1385
  ### Patches
@@ -1353,7 +1392,7 @@ Mon, 13 Feb 2023 23:43:14 GMT
1353
1392
 
1354
1393
  ## [9.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.1.2)
1355
1394
 
1356
- Mon, 13 Feb 2023 09:35:48 GMT
1395
+ Mon, 13 Feb 2023 09:35:48 GMT
1357
1396
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.1.1..@fluentui/react-combobox_v9.1.2)
1358
1397
 
1359
1398
  ### Patches
@@ -1362,7 +1401,7 @@ Mon, 13 Feb 2023 09:35:48 GMT
1362
1401
 
1363
1402
  ## [9.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.1.1)
1364
1403
 
1365
- Fri, 10 Feb 2023 08:50:02 GMT
1404
+ Fri, 10 Feb 2023 08:50:02 GMT
1366
1405
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.1.0..@fluentui/react-combobox_v9.1.1)
1367
1406
 
1368
1407
  ### Patches
@@ -1375,7 +1414,7 @@ Fri, 10 Feb 2023 08:50:02 GMT
1375
1414
 
1376
1415
  ## [9.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.1.0)
1377
1416
 
1378
- Tue, 07 Feb 2023 14:13:09 GMT
1417
+ Tue, 07 Feb 2023 14:13:09 GMT
1379
1418
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0..@fluentui/react-combobox_v9.1.0)
1380
1419
 
1381
1420
  ### Minor changes
@@ -1386,7 +1425,7 @@ Tue, 07 Feb 2023 14:13:09 GMT
1386
1425
 
1387
1426
  ## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0)
1388
1427
 
1389
- Tue, 31 Jan 2023 19:53:53 GMT
1428
+ Tue, 31 Jan 2023 19:53:53 GMT
1390
1429
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.26..@fluentui/react-combobox_v9.0.0)
1391
1430
 
1392
1431
  ### Patches
@@ -1400,7 +1439,7 @@ Tue, 31 Jan 2023 19:53:53 GMT
1400
1439
 
1401
1440
  ## [9.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.26)
1402
1441
 
1403
- Thu, 26 Jan 2023 13:30:53 GMT
1442
+ Thu, 26 Jan 2023 13:30:53 GMT
1404
1443
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.25..@fluentui/react-combobox_v9.0.0-beta.26)
1405
1444
 
1406
1445
  ### Changes
@@ -1418,7 +1457,7 @@ Thu, 26 Jan 2023 13:30:53 GMT
1418
1457
 
1419
1458
  ## [9.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.25)
1420
1459
 
1421
- Mon, 23 Jan 2023 16:43:12 GMT
1460
+ Mon, 23 Jan 2023 16:43:12 GMT
1422
1461
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.24..@fluentui/react-combobox_v9.0.0-beta.25)
1423
1462
 
1424
1463
  ### Changes
@@ -1428,7 +1467,7 @@ Mon, 23 Jan 2023 16:43:12 GMT
1428
1467
 
1429
1468
  ## [9.0.0-beta.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.24)
1430
1469
 
1431
- Wed, 18 Jan 2023 16:32:57 GMT
1470
+ Wed, 18 Jan 2023 16:32:57 GMT
1432
1471
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.23..@fluentui/react-combobox_v9.0.0-beta.24)
1433
1472
 
1434
1473
  ### Changes
@@ -1437,7 +1476,7 @@ Wed, 18 Jan 2023 16:32:57 GMT
1437
1476
 
1438
1477
  ## [9.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.23)
1439
1478
 
1440
- Mon, 16 Jan 2023 08:38:57 GMT
1479
+ Mon, 16 Jan 2023 08:38:57 GMT
1441
1480
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.22..@fluentui/react-combobox_v9.0.0-beta.23)
1442
1481
 
1443
1482
  ### Changes
@@ -1450,7 +1489,7 @@ Mon, 16 Jan 2023 08:38:57 GMT
1450
1489
 
1451
1490
  ## [9.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.22)
1452
1491
 
1453
- Mon, 09 Jan 2023 21:51:23 GMT
1492
+ Mon, 09 Jan 2023 21:51:23 GMT
1454
1493
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.21..@fluentui/react-combobox_v9.0.0-beta.22)
1455
1494
 
1456
1495
  ### Changes
@@ -1459,7 +1498,7 @@ Mon, 09 Jan 2023 21:51:23 GMT
1459
1498
 
1460
1499
  ## [9.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.21)
1461
1500
 
1462
- Mon, 09 Jan 2023 14:34:55 GMT
1501
+ Mon, 09 Jan 2023 14:34:55 GMT
1463
1502
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.20..@fluentui/react-combobox_v9.0.0-beta.21)
1464
1503
 
1465
1504
  ### Changes
@@ -1474,7 +1513,7 @@ Mon, 09 Jan 2023 14:34:55 GMT
1474
1513
 
1475
1514
  ## [9.0.0-beta.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.20)
1476
1515
 
1477
- Wed, 04 Jan 2023 01:40:56 GMT
1516
+ Wed, 04 Jan 2023 01:40:56 GMT
1478
1517
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.19..@fluentui/react-combobox_v9.0.0-beta.20)
1479
1518
 
1480
1519
  ### Changes
@@ -1489,7 +1528,7 @@ Wed, 04 Jan 2023 01:40:56 GMT
1489
1528
 
1490
1529
  ## [9.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.19)
1491
1530
 
1492
- Wed, 21 Dec 2022 10:20:28 GMT
1531
+ Wed, 21 Dec 2022 10:20:28 GMT
1493
1532
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.18..@fluentui/react-combobox_v9.0.0-beta.19)
1494
1533
 
1495
1534
  ### Changes
@@ -1502,7 +1541,7 @@ Wed, 21 Dec 2022 10:20:28 GMT
1502
1541
 
1503
1542
  ## [9.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.18)
1504
1543
 
1505
- Tue, 20 Dec 2022 14:59:22 GMT
1544
+ Tue, 20 Dec 2022 14:59:22 GMT
1506
1545
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.17..@fluentui/react-combobox_v9.0.0-beta.18)
1507
1546
 
1508
1547
  ### Changes
@@ -1518,12 +1557,12 @@ Tue, 20 Dec 2022 14:59:22 GMT
1518
1557
 
1519
1558
  ## [9.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.17)
1520
1559
 
1521
- Mon, 05 Dec 2022 18:29:21 GMT
1560
+ Mon, 05 Dec 2022 18:29:21 GMT
1522
1561
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.16..@fluentui/react-combobox_v9.0.0-beta.17)
1523
1562
 
1524
1563
  ### Changes
1525
1564
 
1526
- - feat: update Option value to be a non-display value, and add an Option text prop that is required if the child is not a string ([PR #25379](https://github.com/microsoft/fluentui/pull/25379) by sarah.higley@microsoft.com)
1565
+ - feat: update Option value to be a non-display value, and add an Option text prop that is required if the child is not a string ([PR #25379](https://github.com/microsoft/fluentui/pull/25379) by sarah.higley@microsoft.com)
1527
1566
  - fix: open Combobox popup when typing ([PR #25769](https://github.com/microsoft/fluentui/pull/25769) by sarah.higley@microsoft.com)
1528
1567
  - chore: Replace use of fontSize tokens with typographyStyles ([PR #25727](https://github.com/microsoft/fluentui/pull/25727) by behowell@microsoft.com)
1529
1568
  - fix: Combobox should close on blur after clicking expand icon ([PR #25771](https://github.com/microsoft/fluentui/pull/25771) by sarah.higley@microsoft.com)
@@ -1534,7 +1573,7 @@ Mon, 05 Dec 2022 18:29:21 GMT
1534
1573
 
1535
1574
  ## [9.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.16)
1536
1575
 
1537
- Thu, 17 Nov 2022 23:05:35 GMT
1576
+ Thu, 17 Nov 2022 23:05:35 GMT
1538
1577
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.15..@fluentui/react-combobox_v9.0.0-beta.16)
1539
1578
 
1540
1579
  ### Changes
@@ -1547,12 +1586,12 @@ Thu, 17 Nov 2022 23:05:35 GMT
1547
1586
 
1548
1587
  ## [9.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.15)
1549
1588
 
1550
- Fri, 11 Nov 2022 14:57:58 GMT
1589
+ Fri, 11 Nov 2022 14:57:58 GMT
1551
1590
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.14..@fluentui/react-combobox_v9.0.0-beta.15)
1552
1591
 
1553
1592
  ### Changes
1554
1593
 
1555
- - chore: Move InputField into the @fluentui/react-input package and export as _unstable ([PR #25593](https://github.com/microsoft/fluentui/pull/25593) by behowell@microsoft.com)
1594
+ - chore: Move InputField into the @fluentui/react-input package and export as \_unstable ([PR #25593](https://github.com/microsoft/fluentui/pull/25593) by behowell@microsoft.com)
1556
1595
  - fix: create valid export maps ([PR #25558](https://github.com/microsoft/fluentui/pull/25558) by martinhochel@microsoft.com)
1557
1596
  - fix: update disabled + underline styles, have all text-like form control disabled states match ([PR #25543](https://github.com/microsoft/fluentui/pull/25543) by sarah.higley@microsoft.com)
1558
1597
  - Bump @fluentui/keyboard-keys to v9.0.1 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
@@ -1566,7 +1605,7 @@ Fri, 11 Nov 2022 14:57:58 GMT
1566
1605
 
1567
1606
  ## [9.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.14)
1568
1607
 
1569
- Wed, 02 Nov 2022 11:57:49 GMT
1608
+ Wed, 02 Nov 2022 11:57:49 GMT
1570
1609
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.13..@fluentui/react-combobox_v9.0.0-beta.14)
1571
1610
 
1572
1611
  ### Changes
@@ -1580,7 +1619,7 @@ Wed, 02 Nov 2022 11:57:49 GMT
1580
1619
 
1581
1620
  ## [9.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.13)
1582
1621
 
1583
- Thu, 20 Oct 2022 08:39:30 GMT
1622
+ Thu, 20 Oct 2022 08:39:30 GMT
1584
1623
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.12..@fluentui/react-combobox_v9.0.0-beta.13)
1585
1624
 
1586
1625
  ### Changes
@@ -1597,7 +1636,7 @@ Thu, 20 Oct 2022 08:39:30 GMT
1597
1636
 
1598
1637
  ## [9.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.12)
1599
1638
 
1600
- Thu, 13 Oct 2022 11:02:45 GMT
1639
+ Thu, 13 Oct 2022 11:02:45 GMT
1601
1640
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.11..@fluentui/react-combobox_v9.0.0-beta.12)
1602
1641
 
1603
1642
  ### Changes
@@ -1614,7 +1653,7 @@ Thu, 13 Oct 2022 11:02:45 GMT
1614
1653
 
1615
1654
  ## [9.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.11)
1616
1655
 
1617
- Mon, 03 Oct 2022 22:24:42 GMT
1656
+ Mon, 03 Oct 2022 22:24:42 GMT
1618
1657
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.10..@fluentui/react-combobox_v9.0.0-beta.11)
1619
1658
 
1620
1659
  ### Changes
@@ -1623,7 +1662,7 @@ Mon, 03 Oct 2022 22:24:42 GMT
1623
1662
 
1624
1663
  ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.10)
1625
1664
 
1626
- Tue, 20 Sep 2022 20:55:45 GMT
1665
+ Tue, 20 Sep 2022 20:55:45 GMT
1627
1666
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.9..@fluentui/react-combobox_v9.0.0-beta.10)
1628
1667
 
1629
1668
  ### Changes
@@ -1632,7 +1671,7 @@ Tue, 20 Sep 2022 20:55:45 GMT
1632
1671
 
1633
1672
  ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.9)
1634
1673
 
1635
- Thu, 15 Sep 2022 09:50:00 GMT
1674
+ Thu, 15 Sep 2022 09:50:00 GMT
1636
1675
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.8..@fluentui/react-combobox_v9.0.0-beta.9)
1637
1676
 
1638
1677
  ### Changes
@@ -1655,7 +1694,7 @@ Thu, 15 Sep 2022 09:50:00 GMT
1655
1694
 
1656
1695
  ## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.8)
1657
1696
 
1658
- Wed, 03 Aug 2022 16:03:42 GMT
1697
+ Wed, 03 Aug 2022 16:03:42 GMT
1659
1698
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.7..@fluentui/react-combobox_v9.0.0-beta.8)
1660
1699
 
1661
1700
  ### Changes
@@ -1669,7 +1708,7 @@ Wed, 03 Aug 2022 16:03:42 GMT
1669
1708
 
1670
1709
  ## [9.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.7)
1671
1710
 
1672
- Thu, 14 Jul 2022 21:21:10 GMT
1711
+ Thu, 14 Jul 2022 21:21:10 GMT
1673
1712
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.6..@fluentui/react-combobox_v9.0.0-beta.7)
1674
1713
 
1675
1714
  ### Changes
@@ -1682,7 +1721,7 @@ Thu, 14 Jul 2022 21:21:10 GMT
1682
1721
 
1683
1722
  ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.6)
1684
1723
 
1685
- Thu, 14 Jul 2022 17:06:17 GMT
1724
+ Thu, 14 Jul 2022 17:06:17 GMT
1686
1725
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.5..@fluentui/react-combobox_v9.0.0-beta.6)
1687
1726
 
1688
1727
  ### Changes
@@ -1696,7 +1735,7 @@ Thu, 14 Jul 2022 17:06:17 GMT
1696
1735
 
1697
1736
  ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.5)
1698
1737
 
1699
- Tue, 28 Jun 2022 17:39:48 GMT
1738
+ Tue, 28 Jun 2022 17:39:48 GMT
1700
1739
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.4..@fluentui/react-combobox_v9.0.0-beta.5)
1701
1740
 
1702
1741
  ### Changes
@@ -1708,7 +1747,7 @@ Tue, 28 Jun 2022 17:39:48 GMT
1708
1747
 
1709
1748
  ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.4)
1710
1749
 
1711
- Tue, 28 Jun 2022 15:13:31 GMT
1750
+ Tue, 28 Jun 2022 15:13:31 GMT
1712
1751
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.3..@fluentui/react-combobox_v9.0.0-beta.4)
1713
1752
 
1714
1753
  ### Changes
@@ -1724,7 +1763,7 @@ Tue, 28 Jun 2022 15:13:31 GMT
1724
1763
 
1725
1764
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.3)
1726
1765
 
1727
- Thu, 23 Jun 2022 14:25:31 GMT
1766
+ Thu, 23 Jun 2022 14:25:31 GMT
1728
1767
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.3..@fluentui/react-combobox_v9.0.0-beta.3)
1729
1768
 
1730
1769
  ### Changes
@@ -1735,7 +1774,7 @@ Thu, 23 Jun 2022 14:25:31 GMT
1735
1774
 
1736
1775
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.3)
1737
1776
 
1738
- Tue, 31 May 2022 21:28:50 GMT
1777
+ Tue, 31 May 2022 21:28:50 GMT
1739
1778
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.3..@fluentui/react-combobox_v9.0.0-beta.3)
1740
1779
 
1741
1780
  ### Changes
@@ -1748,7 +1787,7 @@ Tue, 31 May 2022 21:28:50 GMT
1748
1787
 
1749
1788
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.3)
1750
1789
 
1751
- Thu, 26 May 2022 21:01:32 GMT
1790
+ Thu, 26 May 2022 21:01:32 GMT
1752
1791
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.3..@fluentui/react-combobox_v9.0.0-beta.3)
1753
1792
 
1754
1793
  ### Changes
@@ -1757,7 +1796,7 @@ Thu, 26 May 2022 21:01:32 GMT
1757
1796
 
1758
1797
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.3)
1759
1798
 
1760
- Mon, 23 May 2022 18:56:51 GMT
1799
+ Mon, 23 May 2022 18:56:51 GMT
1761
1800
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.3..@fluentui/react-combobox_v9.0.0-beta.3)
1762
1801
 
1763
1802
  ### Changes
@@ -1769,7 +1808,7 @@ Mon, 23 May 2022 18:56:51 GMT
1769
1808
 
1770
1809
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.0.0-beta.3)
1771
1810
 
1772
- Mon, 23 May 2022 12:14:24 GMT
1811
+ Mon, 23 May 2022 12:14:24 GMT
1773
1812
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.0.0-beta.3..@fluentui/react-combobox_v9.0.0-beta.3)
1774
1813
 
1775
1814
  ### Changes