@fluentui/react-utilities 9.0.0-nightly.d730088d7f.0 → 9.0.0-rc.10

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 (229) hide show
  1. package/CHANGELOG.json +355 -9
  2. package/CHANGELOG.md +185 -70
  3. package/dist/index.d.ts +517 -0
  4. package/{lib → dist}/tsdoc-metadata.json +0 -0
  5. package/lib/compose/getSlots.js +21 -30
  6. package/lib/compose/getSlots.js.map +1 -1
  7. package/lib/compose/index.js +0 -1
  8. package/lib/compose/index.js.map +1 -1
  9. package/lib/compose/resolveShorthand.js +13 -12
  10. package/lib/compose/resolveShorthand.js.map +1 -1
  11. package/lib/compose/types.js +1 -5
  12. package/lib/compose/types.js.map +1 -1
  13. package/lib/hooks/index.js +2 -6
  14. package/lib/hooks/index.js.map +1 -1
  15. package/lib/hooks/useControllableState.js +26 -26
  16. package/lib/hooks/useControllableState.js.map +1 -1
  17. package/lib/hooks/useEventCallback.js +6 -12
  18. package/lib/hooks/useEventCallback.js.map +1 -1
  19. package/lib/hooks/useFirstMount.js +1 -1
  20. package/lib/hooks/useFirstMount.js.map +1 -1
  21. package/lib/hooks/useForceUpdate.js +1 -3
  22. package/lib/hooks/useForceUpdate.js.map +1 -1
  23. package/lib/hooks/useId.js +9 -5
  24. package/lib/hooks/useId.js.map +1 -1
  25. package/lib/hooks/useIsomorphicLayoutEffect.js +1 -1
  26. package/lib/hooks/useIsomorphicLayoutEffect.js.map +1 -1
  27. package/lib/hooks/useMergedEventCallbacks.js +26 -0
  28. package/lib/hooks/useMergedEventCallbacks.js.map +1 -0
  29. package/lib/hooks/useMergedRefs.js +5 -13
  30. package/lib/hooks/useMergedRefs.js.map +1 -1
  31. package/lib/hooks/useOnClickOutside.js +30 -36
  32. package/lib/hooks/useOnClickOutside.js.map +1 -1
  33. package/lib/hooks/useOnScrollOutside.js +13 -15
  34. package/lib/hooks/useOnScrollOutside.js.map +1 -1
  35. package/lib/hooks/usePrevious.js +3 -3
  36. package/lib/hooks/usePrevious.js.map +1 -1
  37. package/lib/hooks/useTimeout.js +13 -18
  38. package/lib/hooks/useTimeout.js.map +1 -1
  39. package/lib/index.js +4 -4
  40. package/lib/index.js.map +1 -1
  41. package/lib/ssr/SSRContext.js +9 -15
  42. package/lib/ssr/SSRContext.js.map +1 -1
  43. package/lib/ssr/canUseDOM.js.map +1 -1
  44. package/lib/ssr/index.js.map +1 -1
  45. package/lib/utils/applyTriggerPropsToChildren.js +24 -4
  46. package/lib/utils/applyTriggerPropsToChildren.js.map +1 -1
  47. package/lib/utils/clamp.js +1 -3
  48. package/lib/utils/clamp.js.map +1 -1
  49. package/lib/utils/getNativeElementProps.js +28 -4
  50. package/lib/utils/getNativeElementProps.js.map +1 -1
  51. package/lib/utils/getRTLSafeKey.js +1 -1
  52. package/lib/utils/getRTLSafeKey.js.map +1 -1
  53. package/lib/utils/getReactCallbackName.js +26 -0
  54. package/lib/utils/getReactCallbackName.js.map +1 -0
  55. package/lib/utils/getTriggerChild.js +26 -0
  56. package/lib/utils/getTriggerChild.js.map +1 -0
  57. package/lib/utils/index.js +2 -1
  58. package/lib/utils/index.js.map +1 -1
  59. package/lib/utils/isFluentTrigger.js +8 -0
  60. package/lib/utils/isFluentTrigger.js.map +1 -0
  61. package/lib/utils/omit.js +2 -2
  62. package/lib/utils/omit.js.map +1 -1
  63. package/lib/utils/properties.js +72 -49
  64. package/lib/utils/properties.js.map +1 -1
  65. package/lib/utils/shouldPreventDefaultOnKeyDown.js +8 -4
  66. package/lib/utils/shouldPreventDefaultOnKeyDown.js.map +1 -1
  67. package/lib-commonjs/compose/getSlots.js +23 -34
  68. package/lib-commonjs/compose/getSlots.js.map +1 -1
  69. package/lib-commonjs/compose/index.js +1 -3
  70. package/lib-commonjs/compose/index.js.map +1 -1
  71. package/lib-commonjs/compose/resolveShorthand.js +14 -14
  72. package/lib-commonjs/compose/resolveShorthand.js.map +1 -1
  73. package/lib-commonjs/compose/types.js +1 -5
  74. package/lib-commonjs/compose/types.js.map +1 -1
  75. package/lib-commonjs/hooks/index.js +5 -13
  76. package/lib-commonjs/hooks/index.js.map +1 -1
  77. package/lib-commonjs/hooks/useControllableState.js +27 -28
  78. package/lib-commonjs/hooks/useControllableState.js.map +1 -1
  79. package/lib-commonjs/hooks/useEventCallback.js +8 -14
  80. package/lib-commonjs/hooks/useEventCallback.js.map +1 -1
  81. package/lib-commonjs/hooks/useFirstMount.js +2 -2
  82. package/lib-commonjs/hooks/useFirstMount.js.map +1 -1
  83. package/lib-commonjs/hooks/useForceUpdate.js +2 -4
  84. package/lib-commonjs/hooks/useForceUpdate.js.map +1 -1
  85. package/lib-commonjs/hooks/useId.js +11 -7
  86. package/lib-commonjs/hooks/useId.js.map +1 -1
  87. package/lib-commonjs/hooks/useIsomorphicLayoutEffect.js +2 -2
  88. package/lib-commonjs/hooks/useIsomorphicLayoutEffect.js.map +1 -1
  89. package/lib-commonjs/hooks/useMergedEventCallbacks.js +36 -0
  90. package/lib-commonjs/hooks/useMergedEventCallbacks.js.map +1 -0
  91. package/lib-commonjs/hooks/useMergedRefs.js +6 -15
  92. package/lib-commonjs/hooks/useMergedRefs.js.map +1 -1
  93. package/lib-commonjs/hooks/useOnClickOutside.js +32 -38
  94. package/lib-commonjs/hooks/useOnClickOutside.js.map +1 -1
  95. package/lib-commonjs/hooks/useOnScrollOutside.js +15 -17
  96. package/lib-commonjs/hooks/useOnScrollOutside.js.map +1 -1
  97. package/lib-commonjs/hooks/usePrevious.js +4 -4
  98. package/lib-commonjs/hooks/usePrevious.js.map +1 -1
  99. package/lib-commonjs/hooks/useTimeout.js +14 -20
  100. package/lib-commonjs/hooks/useTimeout.js.map +1 -1
  101. package/lib-commonjs/index.js +158 -5
  102. package/lib-commonjs/index.js.map +1 -1
  103. package/lib-commonjs/ssr/SSRContext.js +9 -15
  104. package/lib-commonjs/ssr/SSRContext.js.map +1 -1
  105. package/lib-commonjs/ssr/canUseDOM.js.map +1 -1
  106. package/lib-commonjs/ssr/index.js +1 -1
  107. package/lib-commonjs/ssr/index.js.map +1 -1
  108. package/lib-commonjs/utils/applyTriggerPropsToChildren.js +26 -6
  109. package/lib-commonjs/utils/applyTriggerPropsToChildren.js.map +1 -1
  110. package/lib-commonjs/utils/clamp.js +1 -3
  111. package/lib-commonjs/utils/clamp.js.map +1 -1
  112. package/lib-commonjs/utils/getNativeElementProps.js +31 -5
  113. package/lib-commonjs/utils/getNativeElementProps.js.map +1 -1
  114. package/lib-commonjs/utils/getRTLSafeKey.js +1 -1
  115. package/lib-commonjs/utils/getRTLSafeKey.js.map +1 -1
  116. package/lib-commonjs/utils/getReactCallbackName.js +35 -0
  117. package/lib-commonjs/utils/getReactCallbackName.js.map +1 -0
  118. package/lib-commonjs/utils/getTriggerChild.js +37 -0
  119. package/lib-commonjs/utils/getTriggerChild.js.map +1 -0
  120. package/lib-commonjs/utils/index.js +5 -3
  121. package/lib-commonjs/utils/index.js.map +1 -1
  122. package/lib-commonjs/utils/isFluentTrigger.js +17 -0
  123. package/lib-commonjs/utils/isFluentTrigger.js.map +1 -0
  124. package/lib-commonjs/utils/omit.js +2 -2
  125. package/lib-commonjs/utils/omit.js.map +1 -1
  126. package/lib-commonjs/utils/properties.js +70 -47
  127. package/lib-commonjs/utils/properties.js.map +1 -1
  128. package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.js +9 -5
  129. package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.js.map +1 -1
  130. package/package.json +14 -17
  131. package/dist/react-utilities.d.ts +0 -648
  132. package/lib/compose/getSlots.d.ts +0 -29
  133. package/lib/compose/index.d.ts +0 -4
  134. package/lib/compose/nullRender.d.ts +0 -4
  135. package/lib/compose/nullRender.js +0 -7
  136. package/lib/compose/nullRender.js.map +0 -1
  137. package/lib/compose/resolveShorthand.d.ts +0 -12
  138. package/lib/compose/types.d.ts +0 -104
  139. package/lib/hooks/index.d.ts +0 -16
  140. package/lib/hooks/useBoolean.d.ts +0 -17
  141. package/lib/hooks/useBoolean.js +0 -39
  142. package/lib/hooks/useBoolean.js.map +0 -1
  143. package/lib/hooks/useConst.d.ts +0 -12
  144. package/lib/hooks/useConst.js +0 -30
  145. package/lib/hooks/useConst.js.map +0 -1
  146. package/lib/hooks/useControllableState.d.ts +0 -21
  147. package/lib/hooks/useControllableValue.d.ts +0 -20
  148. package/lib/hooks/useControllableValue.js +0 -62
  149. package/lib/hooks/useControllableValue.js.map +0 -1
  150. package/lib/hooks/useEventCallback.d.ts +0 -13
  151. package/lib/hooks/useFirstMount.d.ts +0 -11
  152. package/lib/hooks/useForceUpdate.d.ts +0 -4
  153. package/lib/hooks/useId.d.ts +0 -15
  154. package/lib/hooks/useIsomorphicLayoutEffect.d.ts +0 -11
  155. package/lib/hooks/useMergedRefs.d.ts +0 -13
  156. package/lib/hooks/useMount.d.ts +0 -6
  157. package/lib/hooks/useMount.js +0 -17
  158. package/lib/hooks/useMount.js.map +0 -1
  159. package/lib/hooks/useOnClickOutside.d.ts +0 -29
  160. package/lib/hooks/useOnScrollOutside.d.ts +0 -5
  161. package/lib/hooks/usePrevious.d.ts +0 -1
  162. package/lib/hooks/useTimeout.d.ts +0 -8
  163. package/lib/hooks/useUnmount.d.ts +0 -6
  164. package/lib/hooks/useUnmount.js +0 -19
  165. package/lib/hooks/useUnmount.js.map +0 -1
  166. package/lib/index.d.ts +0 -4
  167. package/lib/ssr/SSRContext.d.ts +0 -33
  168. package/lib/ssr/canUseDOM.d.ts +0 -4
  169. package/lib/ssr/index.d.ts +0 -2
  170. package/lib/utils/applyTriggerPropsToChildren.d.ts +0 -5
  171. package/lib/utils/clamp.d.ts +0 -8
  172. package/lib/utils/getNativeElementProps.d.ts +0 -9
  173. package/lib/utils/getRTLSafeKey.d.ts +0 -4
  174. package/lib/utils/index.d.ts +0 -8
  175. package/lib/utils/omit.d.ts +0 -14
  176. package/lib/utils/onlyChild.d.ts +0 -5
  177. package/lib/utils/onlyChild.js +0 -13
  178. package/lib/utils/onlyChild.js.map +0 -1
  179. package/lib/utils/properties.d.ts +0 -148
  180. package/lib/utils/shouldPreventDefaultOnKeyDown.d.ts +0 -7
  181. package/lib-commonjs/compose/getSlots.d.ts +0 -29
  182. package/lib-commonjs/compose/index.d.ts +0 -4
  183. package/lib-commonjs/compose/nullRender.d.ts +0 -4
  184. package/lib-commonjs/compose/nullRender.js +0 -16
  185. package/lib-commonjs/compose/nullRender.js.map +0 -1
  186. package/lib-commonjs/compose/resolveShorthand.d.ts +0 -12
  187. package/lib-commonjs/compose/types.d.ts +0 -104
  188. package/lib-commonjs/hooks/index.d.ts +0 -16
  189. package/lib-commonjs/hooks/useBoolean.d.ts +0 -17
  190. package/lib-commonjs/hooks/useBoolean.js +0 -50
  191. package/lib-commonjs/hooks/useBoolean.js.map +0 -1
  192. package/lib-commonjs/hooks/useConst.d.ts +0 -12
  193. package/lib-commonjs/hooks/useConst.js +0 -40
  194. package/lib-commonjs/hooks/useConst.js.map +0 -1
  195. package/lib-commonjs/hooks/useControllableState.d.ts +0 -21
  196. package/lib-commonjs/hooks/useControllableValue.d.ts +0 -20
  197. package/lib-commonjs/hooks/useControllableValue.js +0 -73
  198. package/lib-commonjs/hooks/useControllableValue.js.map +0 -1
  199. package/lib-commonjs/hooks/useEventCallback.d.ts +0 -13
  200. package/lib-commonjs/hooks/useFirstMount.d.ts +0 -11
  201. package/lib-commonjs/hooks/useForceUpdate.d.ts +0 -4
  202. package/lib-commonjs/hooks/useId.d.ts +0 -15
  203. package/lib-commonjs/hooks/useIsomorphicLayoutEffect.d.ts +0 -11
  204. package/lib-commonjs/hooks/useMergedRefs.d.ts +0 -13
  205. package/lib-commonjs/hooks/useMount.d.ts +0 -6
  206. package/lib-commonjs/hooks/useMount.js +0 -27
  207. package/lib-commonjs/hooks/useMount.js.map +0 -1
  208. package/lib-commonjs/hooks/useOnClickOutside.d.ts +0 -29
  209. package/lib-commonjs/hooks/useOnScrollOutside.d.ts +0 -5
  210. package/lib-commonjs/hooks/usePrevious.d.ts +0 -1
  211. package/lib-commonjs/hooks/useTimeout.d.ts +0 -8
  212. package/lib-commonjs/hooks/useUnmount.d.ts +0 -6
  213. package/lib-commonjs/hooks/useUnmount.js +0 -29
  214. package/lib-commonjs/hooks/useUnmount.js.map +0 -1
  215. package/lib-commonjs/index.d.ts +0 -4
  216. package/lib-commonjs/ssr/SSRContext.d.ts +0 -33
  217. package/lib-commonjs/ssr/canUseDOM.d.ts +0 -4
  218. package/lib-commonjs/ssr/index.d.ts +0 -2
  219. package/lib-commonjs/utils/applyTriggerPropsToChildren.d.ts +0 -5
  220. package/lib-commonjs/utils/clamp.d.ts +0 -8
  221. package/lib-commonjs/utils/getNativeElementProps.d.ts +0 -9
  222. package/lib-commonjs/utils/getRTLSafeKey.d.ts +0 -4
  223. package/lib-commonjs/utils/index.d.ts +0 -8
  224. package/lib-commonjs/utils/omit.d.ts +0 -14
  225. package/lib-commonjs/utils/onlyChild.d.ts +0 -5
  226. package/lib-commonjs/utils/onlyChild.js +0 -23
  227. package/lib-commonjs/utils/onlyChild.js.map +0 -1
  228. package/lib-commonjs/utils/properties.d.ts +0 -148
  229. package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.d.ts +0 -7
package/CHANGELOG.md CHANGED
@@ -1,23 +1,138 @@
1
1
  # Change Log - @fluentui/react-utilities
2
2
 
3
- This log was last generated on Wed, 20 Oct 2021 09:19:30 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 31 May 2022 21:26:44 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [9.0.0-nightly.d730088d7f.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-nightly.d730088d7f.0)
7
+ ## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.10)
8
8
 
9
- Wed, 20 Oct 2021 09:19:30 GMT
10
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-beta.1..@fluentui/react-utilities_v9.0.0-nightly.d730088d7f.0)
9
+ Tue, 31 May 2022 21:26:44 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-rc.9..@fluentui/react-utilities_v9.0.0-rc.10)
11
11
 
12
12
  ### Changes
13
13
 
14
- - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by email not defined)
15
- - remove compat utilities and types ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by olfedias@microsoft.com)
16
- - Bump @fluentui/keyboard-keys to v9.0.0-nightly.d730088d7f.0 ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by beachball)
14
+ - remove exports for internals APIs & unused hooks ([PR #23319](https://github.com/microsoft/fluentui/pull/23319) by olfedias@microsoft.com)
15
+
16
+ ## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.9)
17
+
18
+ Mon, 23 May 2022 12:13:58 GMT
19
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-rc.8..@fluentui/react-utilities_v9.0.0-rc.9)
20
+
21
+ ### Changes
22
+
23
+ - feat: ship rolluped only dts ([PR #22828](https://github.com/microsoft/fluentui/pull/22828) by martinhochel@microsoft.com)
24
+
25
+ ## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.8)
26
+
27
+ Thu, 05 May 2022 18:26:28 GMT
28
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-rc.7..@fluentui/react-utilities_v9.0.0-rc.8)
29
+
30
+ ### Changes
31
+
32
+ - feat: add time element on nativeElementMap ([PR #22848](https://github.com/microsoft/fluentui/pull/22848) by bsunderhus@microsoft.com)
33
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.6 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
34
+
35
+ ## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.7)
36
+
37
+ Wed, 04 May 2022 13:26:36 GMT
38
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-rc.6..@fluentui/react-utilities_v9.0.0-rc.7)
39
+
40
+ ### Changes
41
+
42
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.5 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
43
+
44
+ ## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.6)
45
+
46
+ Tue, 19 Apr 2022 19:17:05 GMT
47
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-rc.5..@fluentui/react-utilities_v9.0.0-rc.6)
48
+
49
+ ### Changes
50
+
51
+ - Removing star exports at src/index.ts ([PR #22367](https://github.com/microsoft/fluentui/pull/22367) by Humberto.Morimoto@microsoft.com)
52
+
53
+ ## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.5)
54
+
55
+ Fri, 04 Mar 2022 05:17:32 GMT
56
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-rc.4..@fluentui/react-utilities_v9.0.0-rc.5)
57
+
58
+ ### Changes
59
+
60
+ - Adding explicit export maps on all consumer packages for FUIR 8 and 9. ([PR #21508](https://github.com/microsoft/fluentui/pull/21508) by dzearing@microsoft.com)
61
+ - Adding helper type to define slot class names. ([PR #21933](https://github.com/microsoft/fluentui/pull/21933) by email not defined)
62
+ - fix(shouldPreventDefaultOnKeyDown): return false for events that are default prevented ([PR #21905](https://github.com/microsoft/fluentui/pull/21905) by lingfangao@hotmail.com)
63
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
64
+
65
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.4)
66
+
67
+ Tue, 01 Mar 2022 02:17:39 GMT
68
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-rc.3..@fluentui/react-utilities_v9.0.0-rc.4)
69
+
70
+ ### Changes
71
+
72
+ - Ignore prefix in useId() when it is falsey. ([PR #21848](https://github.com/microsoft/fluentui/pull/21848) by seanmonahan@microsoft.com)
73
+ - Add fieldset to getNativeElementProps ([PR #21835](https://github.com/microsoft/fluentui/pull/21835) by behowell@microsoft.com)
74
+
75
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.3)
76
+
77
+ Fri, 18 Feb 2022 13:35:37 GMT
78
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-rc.1..@fluentui/react-utilities_v9.0.0-rc.3)
79
+
80
+ ### Changes
81
+
82
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
83
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
84
+
85
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.1)
86
+
87
+ Thu, 10 Feb 2022 08:50:32 GMT
88
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-beta.4..@fluentui/react-utilities_v9.0.0-rc.1)
89
+
90
+ ### Changes
91
+
92
+ - Rename component hooks add the suffix _unstable, as their API has not been finalized yet ([PR #21365](https://github.com/microsoft/fluentui/pull/21365) by behowell@microsoft.com)
93
+ - getSlots: remove slotNames param, and infer from state.components instead ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
94
+ - add useTriggerElement() hook ([PR #21225](https://github.com/microsoft/fluentui/pull/21225) by olfedias@microsoft.com)
95
+ - Removes nullRender from react-utilities ([PR #21576](https://github.com/microsoft/fluentui/pull/21576) by bsunderhus@microsoft.com)
96
+ - update applyTriggerPropsToChildren() to return React.ReactElement or null ([PR #21609](https://github.com/microsoft/fluentui/pull/21609) by olfedias@microsoft.com)
97
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
98
+ - Adding ComponentSlotProps to allow ref to be passed in composite components. ([PR #20890](https://github.com/microsoft/fluentui/pull/20890) by Humberto.Morimoto@microsoft.com)
99
+ - Renaming most *Shorthand* composition types to *SlotProps* so they better reflect what the types do. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
100
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
101
+ - Update trigger utilities to handle nested triggers ([PR #21495](https://github.com/microsoft/fluentui/pull/21495) by behowell@microsoft.com)
102
+ - [breaking] Remove useControllableValue hook (use useControllableState instead) ([PR #20865](https://github.com/microsoft/fluentui/pull/20865) by elcraig@microsoft.com)
103
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
104
+
105
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-beta.4)
106
+
107
+ Thu, 25 Nov 2021 08:34:09 GMT
108
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-beta.3..@fluentui/react-utilities_v9.0.0-beta.4)
109
+
110
+ ### Changes
111
+
112
+ - Update utility types to support specifying a primary slot other than root ([PR #20617](https://github.com/microsoft/fluentui/pull/20617) by behowell@microsoft.com)
113
+
114
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-beta.3)
115
+
116
+ Fri, 12 Nov 2021 13:25:10 GMT
117
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-beta.2..@fluentui/react-utilities_v9.0.0-beta.3)
118
+
119
+ ### Changes
120
+
121
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
122
+
123
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-beta.2)
124
+
125
+ Wed, 27 Oct 2021 12:14:24 GMT
126
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-beta.1..@fluentui/react-utilities_v9.0.0-beta.2)
127
+
128
+ ### Changes
129
+
130
+ - remove compat utilities and types ([PR #20255](https://github.com/microsoft/fluentui/pull/20255) by olfedias@microsoft.com)
131
+ - fix(getNativeElementPrps): Add support for `onAuxClick` ([PR #20343](https://github.com/microsoft/fluentui/pull/20343) by lingfangao@hotmail.com)
17
132
 
18
133
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-beta.1)
19
134
 
20
- Wed, 06 Oct 2021 10:37:22 GMT
135
+ Wed, 06 Oct 2021 10:37:22 GMT
21
136
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.56..@fluentui/react-utilities_v9.0.0-beta.1)
22
137
 
23
138
  ### Changes
@@ -27,7 +142,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
27
142
 
28
143
  ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.56)
29
144
 
30
- Tue, 05 Oct 2021 09:28:07 GMT
145
+ Tue, 05 Oct 2021 09:28:07 GMT
31
146
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.55..@fluentui/react-utilities_v9.0.0-alpha.56)
32
147
 
33
148
  ### Changes
@@ -36,7 +151,7 @@ Tue, 05 Oct 2021 09:28:07 GMT
36
151
 
37
152
  ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.55)
38
153
 
39
- Fri, 01 Oct 2021 14:13:08 GMT
154
+ Fri, 01 Oct 2021 14:13:08 GMT
40
155
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.53..@fluentui/react-utilities_v9.0.0-alpha.55)
41
156
 
42
157
  ### Changes
@@ -46,7 +161,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
46
161
 
47
162
  ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.53)
48
163
 
49
- Mon, 27 Sep 2021 08:06:00 GMT
164
+ Mon, 27 Sep 2021 08:06:00 GMT
50
165
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.52..@fluentui/react-utilities_v9.0.0-alpha.53)
51
166
 
52
167
  ### Changes
@@ -55,7 +170,7 @@ Mon, 27 Sep 2021 08:06:00 GMT
55
170
 
56
171
  ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.52)
57
172
 
58
- Fri, 24 Sep 2021 09:17:17 GMT
173
+ Fri, 24 Sep 2021 09:17:17 GMT
59
174
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.51..@fluentui/react-utilities_v9.0.0-alpha.52)
60
175
 
61
176
  ### Changes
@@ -64,7 +179,7 @@ Fri, 24 Sep 2021 09:17:17 GMT
64
179
 
65
180
  ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.51)
66
181
 
67
- Thu, 23 Sep 2021 08:21:34 GMT
182
+ Thu, 23 Sep 2021 08:21:34 GMT
68
183
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.50..@fluentui/react-utilities_v9.0.0-alpha.51)
69
184
 
70
185
  ### Changes
@@ -73,7 +188,7 @@ Thu, 23 Sep 2021 08:21:34 GMT
73
188
 
74
189
  ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.50)
75
190
 
76
- Wed, 22 Sep 2021 10:10:07 GMT
191
+ Wed, 22 Sep 2021 10:10:07 GMT
77
192
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.49..@fluentui/react-utilities_v9.0.0-alpha.50)
78
193
 
79
194
  ### Changes
@@ -82,7 +197,7 @@ Wed, 22 Sep 2021 10:10:07 GMT
82
197
 
83
198
  ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.49)
84
199
 
85
- Fri, 17 Sep 2021 07:35:26 GMT
200
+ Fri, 17 Sep 2021 07:35:26 GMT
86
201
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.48..@fluentui/react-utilities_v9.0.0-alpha.49)
87
202
 
88
203
  ### Changes
@@ -92,7 +207,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
92
207
 
93
208
  ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.48)
94
209
 
95
- Thu, 16 Sep 2021 07:38:39 GMT
210
+ Thu, 16 Sep 2021 07:38:39 GMT
96
211
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.47..@fluentui/react-utilities_v9.0.0-alpha.48)
97
212
 
98
213
  ### Changes
@@ -101,7 +216,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
101
216
 
102
217
  ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.47)
103
218
 
104
- Tue, 14 Sep 2021 20:09:02 GMT
219
+ Tue, 14 Sep 2021 20:09:02 GMT
105
220
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.46..@fluentui/react-utilities_v9.0.0-alpha.47)
106
221
 
107
222
  ### Changes
@@ -110,7 +225,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
110
225
 
111
226
  ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.46)
112
227
 
113
- Fri, 10 Sep 2021 16:31:53 GMT
228
+ Fri, 10 Sep 2021 16:31:53 GMT
114
229
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.45..@fluentui/react-utilities_v9.0.0-alpha.46)
115
230
 
116
231
  ### Changes
@@ -119,7 +234,7 @@ Fri, 10 Sep 2021 16:31:53 GMT
119
234
 
120
235
  ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.45)
121
236
 
122
- Fri, 10 Sep 2021 07:39:51 GMT
237
+ Fri, 10 Sep 2021 07:39:51 GMT
123
238
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.44..@fluentui/react-utilities_v9.0.0-alpha.45)
124
239
 
125
240
  ### Changes
@@ -128,7 +243,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
128
243
 
129
244
  ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.44)
130
245
 
131
- Mon, 06 Sep 2021 07:34:53 GMT
246
+ Mon, 06 Sep 2021 07:34:53 GMT
132
247
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.43..@fluentui/react-utilities_v9.0.0-alpha.44)
133
248
 
134
249
  ### Changes
@@ -137,7 +252,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
137
252
 
138
253
  ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.43)
139
254
 
140
- Wed, 01 Sep 2021 07:39:56 GMT
255
+ Wed, 01 Sep 2021 07:39:56 GMT
141
256
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.42..@fluentui/react-utilities_v9.0.0-alpha.43)
142
257
 
143
258
  ### Changes
@@ -146,7 +261,7 @@ Wed, 01 Sep 2021 07:39:56 GMT
146
261
 
147
262
  ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.42)
148
263
 
149
- Tue, 31 Aug 2021 07:37:47 GMT
264
+ Tue, 31 Aug 2021 07:37:47 GMT
150
265
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.41..@fluentui/react-utilities_v9.0.0-alpha.42)
151
266
 
152
267
  ### Changes
@@ -155,7 +270,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
155
270
 
156
271
  ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.41)
157
272
 
158
- Tue, 24 Aug 2021 07:34:48 GMT
273
+ Tue, 24 Aug 2021 07:34:48 GMT
159
274
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.40..@fluentui/react-utilities_v9.0.0-alpha.41)
160
275
 
161
276
  ### Changes
@@ -164,7 +279,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
164
279
 
165
280
  ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.40)
166
281
 
167
- Fri, 20 Aug 2021 07:37:28 GMT
282
+ Fri, 20 Aug 2021 07:37:28 GMT
168
283
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.39..@fluentui/react-utilities_v9.0.0-alpha.40)
169
284
 
170
285
  ### Changes
@@ -173,7 +288,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
173
288
 
174
289
  ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.39)
175
290
 
176
- Thu, 19 Aug 2021 07:41:35 GMT
291
+ Thu, 19 Aug 2021 07:41:35 GMT
177
292
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.38..@fluentui/react-utilities_v9.0.0-alpha.39)
178
293
 
179
294
  ### Changes
@@ -182,7 +297,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
182
297
 
183
298
  ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.38)
184
299
 
185
- Fri, 06 Aug 2021 07:35:14 GMT
300
+ Fri, 06 Aug 2021 07:35:14 GMT
186
301
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.37..@fluentui/react-utilities_v9.0.0-alpha.38)
187
302
 
188
303
  ### Changes
@@ -191,7 +306,7 @@ Fri, 06 Aug 2021 07:35:14 GMT
191
306
 
192
307
  ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.37)
193
308
 
194
- Tue, 03 Aug 2021 07:39:30 GMT
309
+ Tue, 03 Aug 2021 07:39:30 GMT
195
310
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.36..@fluentui/react-utilities_v9.0.0-alpha.37)
196
311
 
197
312
  ### Patches
@@ -206,7 +321,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
206
321
 
207
322
  ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.36)
208
323
 
209
- Mon, 02 Aug 2021 07:36:20 GMT
324
+ Mon, 02 Aug 2021 07:36:20 GMT
210
325
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.35..@fluentui/react-utilities_v9.0.0-alpha.36)
211
326
 
212
327
  ### Changes
@@ -215,7 +330,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
215
330
 
216
331
  ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.35)
217
332
 
218
- Fri, 23 Jul 2021 07:38:19 GMT
333
+ Fri, 23 Jul 2021 07:38:19 GMT
219
334
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.34..@fluentui/react-utilities_v9.0.0-alpha.35)
220
335
 
221
336
  ### Changes
@@ -224,7 +339,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
224
339
 
225
340
  ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.34)
226
341
 
227
- Thu, 22 Jul 2021 07:36:55 GMT
342
+ Thu, 22 Jul 2021 07:36:55 GMT
228
343
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.33..@fluentui/react-utilities_v9.0.0-alpha.34)
229
344
 
230
345
  ### Changes
@@ -233,7 +348,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
233
348
 
234
349
  ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.33)
235
350
 
236
- Thu, 15 Jul 2021 07:36:18 GMT
351
+ Thu, 15 Jul 2021 07:36:18 GMT
237
352
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.32..@fluentui/react-utilities_v9.0.0-alpha.33)
238
353
 
239
354
  ### Changes
@@ -243,7 +358,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
243
358
 
244
359
  ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.32)
245
360
 
246
- Fri, 09 Jul 2021 07:39:31 GMT
361
+ Fri, 09 Jul 2021 07:39:31 GMT
247
362
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.31..@fluentui/react-utilities_v9.0.0-alpha.32)
248
363
 
249
364
  ### Patches
@@ -254,7 +369,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
254
369
 
255
370
  ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.31)
256
371
 
257
- Fri, 02 Jul 2021 23:15:55 GMT
372
+ Fri, 02 Jul 2021 23:15:55 GMT
258
373
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.30..@fluentui/react-utilities_v9.0.0-alpha.31)
259
374
 
260
375
  ### Changes
@@ -264,7 +379,7 @@ Fri, 02 Jul 2021 23:15:55 GMT
264
379
 
265
380
  ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.30)
266
381
 
267
- Fri, 02 Jul 2021 07:37:06 GMT
382
+ Fri, 02 Jul 2021 07:37:06 GMT
268
383
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.29..@fluentui/react-utilities_v9.0.0-alpha.30)
269
384
 
270
385
  ### Changes
@@ -273,7 +388,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
273
388
 
274
389
  ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.29)
275
390
 
276
- Tue, 15 Jun 2021 07:40:20 GMT
391
+ Tue, 15 Jun 2021 07:40:20 GMT
277
392
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.28..@fluentui/react-utilities_v9.0.0-alpha.29)
278
393
 
279
394
  ### Changes
@@ -282,7 +397,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
282
397
 
283
398
  ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.28)
284
399
 
285
- Mon, 07 Jun 2021 07:38:15 GMT
400
+ Mon, 07 Jun 2021 07:38:15 GMT
286
401
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.27..@fluentui/react-utilities_v9.0.0-alpha.28)
287
402
 
288
403
  ### Patches
@@ -293,7 +408,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
293
408
 
294
409
  ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.27)
295
410
 
296
- Fri, 04 Jun 2021 07:37:23 GMT
411
+ Fri, 04 Jun 2021 07:37:23 GMT
297
412
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.26..@fluentui/react-utilities_v9.0.0-alpha.27)
298
413
 
299
414
  ### Changes
@@ -302,7 +417,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
302
417
 
303
418
  ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.26)
304
419
 
305
- Fri, 28 May 2021 07:33:57 GMT
420
+ Fri, 28 May 2021 07:33:57 GMT
306
421
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.25..@fluentui/react-utilities_v9.0.0-alpha.26)
307
422
 
308
423
  ### Changes
@@ -311,7 +426,7 @@ Fri, 28 May 2021 07:33:57 GMT
311
426
 
312
427
  ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.25)
313
428
 
314
- Wed, 26 May 2021 07:35:43 GMT
429
+ Wed, 26 May 2021 07:35:43 GMT
315
430
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.24..@fluentui/react-utilities_v9.0.0-alpha.25)
316
431
 
317
432
  ### Changes
@@ -320,7 +435,7 @@ Wed, 26 May 2021 07:35:43 GMT
320
435
 
321
436
  ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.24)
322
437
 
323
- Fri, 21 May 2021 07:34:54 GMT
438
+ Fri, 21 May 2021 07:34:54 GMT
324
439
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.23..@fluentui/react-utilities_v9.0.0-alpha.24)
325
440
 
326
441
  ### Changes
@@ -329,7 +444,7 @@ Fri, 21 May 2021 07:34:54 GMT
329
444
 
330
445
  ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.23)
331
446
 
332
- Thu, 20 May 2021 07:41:54 GMT
447
+ Thu, 20 May 2021 07:41:54 GMT
333
448
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.22..@fluentui/react-utilities_v9.0.0-alpha.23)
334
449
 
335
450
  ### Patches
@@ -344,7 +459,7 @@ Thu, 20 May 2021 07:41:54 GMT
344
459
 
345
460
  ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.22)
346
461
 
347
- Wed, 19 May 2021 07:34:20 GMT
462
+ Wed, 19 May 2021 07:34:20 GMT
348
463
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.21..@fluentui/react-utilities_v9.0.0-alpha.22)
349
464
 
350
465
  ### Changes
@@ -354,7 +469,7 @@ Wed, 19 May 2021 07:34:20 GMT
354
469
 
355
470
  ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.21)
356
471
 
357
- Mon, 03 May 2021 07:45:19 GMT
472
+ Mon, 03 May 2021 07:45:19 GMT
358
473
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.20..@fluentui/react-utilities_v9.0.0-alpha.21)
359
474
 
360
475
  ### Changes
@@ -363,7 +478,7 @@ Mon, 03 May 2021 07:45:19 GMT
363
478
 
364
479
  ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.20)
365
480
 
366
- Fri, 30 Apr 2021 07:42:23 GMT
481
+ Fri, 30 Apr 2021 07:42:23 GMT
367
482
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.19..@fluentui/react-utilities_v9.0.0-alpha.20)
368
483
 
369
484
  ### Patches
@@ -379,7 +494,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
379
494
 
380
495
  ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.19)
381
496
 
382
- Fri, 23 Apr 2021 07:37:10 GMT
497
+ Fri, 23 Apr 2021 07:37:10 GMT
383
498
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.18..@fluentui/react-utilities_v9.0.0-alpha.19)
384
499
 
385
500
  ### Patches
@@ -390,7 +505,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
390
505
 
391
506
  ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.18)
392
507
 
393
- Thu, 22 Apr 2021 07:33:28 GMT
508
+ Thu, 22 Apr 2021 07:33:28 GMT
394
509
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.17..@fluentui/react-utilities_v9.0.0-alpha.18)
395
510
 
396
511
  ### Changes
@@ -400,7 +515,7 @@ Thu, 22 Apr 2021 07:33:28 GMT
400
515
 
401
516
  ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.17)
402
517
 
403
- Wed, 21 Apr 2021 07:31:50 GMT
518
+ Wed, 21 Apr 2021 07:31:50 GMT
404
519
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.16..@fluentui/react-utilities_v9.0.0-alpha.17)
405
520
 
406
521
  ### Changes
@@ -409,7 +524,7 @@ Wed, 21 Apr 2021 07:31:50 GMT
409
524
 
410
525
  ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.16)
411
526
 
412
- Fri, 16 Apr 2021 18:08:21 GMT
527
+ Fri, 16 Apr 2021 18:08:21 GMT
413
528
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.15..@fluentui/react-utilities_v9.0.0-alpha.16)
414
529
 
415
530
  ### Changes
@@ -418,7 +533,7 @@ Fri, 16 Apr 2021 18:08:21 GMT
418
533
 
419
534
  ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.15)
420
535
 
421
- Thu, 01 Apr 2021 20:13:37 GMT
536
+ Thu, 01 Apr 2021 20:13:37 GMT
422
537
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.14..@fluentui/react-utilities_v9.0.0-alpha.15)
423
538
 
424
539
  ### Changes
@@ -427,7 +542,7 @@ Thu, 01 Apr 2021 20:13:37 GMT
427
542
 
428
543
  ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.14)
429
544
 
430
- Wed, 31 Mar 2021 00:53:43 GMT
545
+ Wed, 31 Mar 2021 00:53:43 GMT
431
546
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.13..@fluentui/react-utilities_v9.0.0-alpha.14)
432
547
 
433
548
  ### Patches
@@ -443,7 +558,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
443
558
 
444
559
  ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.13)
445
560
 
446
- Tue, 30 Mar 2021 07:34:45 GMT
561
+ Tue, 30 Mar 2021 07:34:45 GMT
447
562
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.12..@fluentui/react-utilities_v9.0.0-alpha.13)
448
563
 
449
564
  ### Changes
@@ -452,7 +567,7 @@ Tue, 30 Mar 2021 07:34:45 GMT
452
567
 
453
568
  ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.12)
454
569
 
455
- Fri, 26 Mar 2021 07:32:34 GMT
570
+ Fri, 26 Mar 2021 07:32:34 GMT
456
571
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.11..@fluentui/react-utilities_v9.0.0-alpha.12)
457
572
 
458
573
  ### Changes
@@ -461,7 +576,7 @@ Fri, 26 Mar 2021 07:32:34 GMT
461
576
 
462
577
  ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.11)
463
578
 
464
- Thu, 25 Mar 2021 07:33:24 GMT
579
+ Thu, 25 Mar 2021 07:33:24 GMT
465
580
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.10..@fluentui/react-utilities_v9.0.0-alpha.11)
466
581
 
467
582
  ### Changes
@@ -470,7 +585,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
470
585
 
471
586
  ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.10)
472
587
 
473
- Tue, 23 Mar 2021 07:31:43 GMT
588
+ Tue, 23 Mar 2021 07:31:43 GMT
474
589
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.9..@fluentui/react-utilities_v9.0.0-alpha.10)
475
590
 
476
591
  ### Changes
@@ -479,7 +594,7 @@ Tue, 23 Mar 2021 07:31:43 GMT
479
594
 
480
595
  ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.9)
481
596
 
482
- Thu, 18 Mar 2021 20:15:34 GMT
597
+ Thu, 18 Mar 2021 20:15:34 GMT
483
598
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.8..@fluentui/react-utilities_v9.0.0-alpha.9)
484
599
 
485
600
  ### Changes
@@ -488,7 +603,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
488
603
 
489
604
  ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.8)
490
605
 
491
- Mon, 15 Mar 2021 07:36:20 GMT
606
+ Mon, 15 Mar 2021 07:36:20 GMT
492
607
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.7..@fluentui/react-utilities_v9.0.0-alpha.8)
493
608
 
494
609
  ### Changes
@@ -497,7 +612,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
497
612
 
498
613
  ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.7)
499
614
 
500
- Wed, 10 Mar 2021 07:34:39 GMT
615
+ Wed, 10 Mar 2021 07:34:39 GMT
501
616
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.6..@fluentui/react-utilities_v9.0.0-alpha.7)
502
617
 
503
618
  ### Changes
@@ -506,7 +621,7 @@ Wed, 10 Mar 2021 07:34:39 GMT
506
621
 
507
622
  ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.6)
508
623
 
509
- Fri, 05 Mar 2021 20:30:59 GMT
624
+ Fri, 05 Mar 2021 20:30:59 GMT
510
625
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.5..@fluentui/react-utilities_v9.0.0-alpha.6)
511
626
 
512
627
  ### Changes
@@ -515,7 +630,7 @@ Fri, 05 Mar 2021 20:30:59 GMT
515
630
 
516
631
  ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.5)
517
632
 
518
- Wed, 03 Mar 2021 00:10:09 GMT
633
+ Wed, 03 Mar 2021 00:10:09 GMT
519
634
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.4..@fluentui/react-utilities_v9.0.0-alpha.5)
520
635
 
521
636
  ### Patches
@@ -528,7 +643,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
528
643
 
529
644
  ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.4)
530
645
 
531
- Tue, 02 Mar 2021 07:24:27 GMT
646
+ Tue, 02 Mar 2021 07:24:27 GMT
532
647
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.3..@fluentui/react-utilities_v9.0.0-alpha.4)
533
648
 
534
649
  ### Changes
@@ -537,7 +652,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
537
652
 
538
653
  ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.3)
539
654
 
540
- Fri, 26 Feb 2021 01:16:27 GMT
655
+ Fri, 26 Feb 2021 01:16:27 GMT
541
656
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.2..@fluentui/react-utilities_v9.0.0-alpha.3)
542
657
 
543
658
  ### Patches
@@ -554,7 +669,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
554
669
 
555
670
  ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.2)
556
671
 
557
- Thu, 25 Feb 2021 01:15:27 GMT
672
+ Thu, 25 Feb 2021 01:15:27 GMT
558
673
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-alpha.1..@fluentui/react-utilities_v9.0.0-alpha.2)
559
674
 
560
675
  ### Changes
@@ -563,7 +678,7 @@ Thu, 25 Feb 2021 01:15:27 GMT
563
678
 
564
679
  ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-alpha.1)
565
680
 
566
- Wed, 24 Feb 2021 00:05:29 GMT
681
+ Wed, 24 Feb 2021 00:05:29 GMT
567
682
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v0.4.0..@fluentui/react-utilities_v9.0.0-alpha.1)
568
683
 
569
684
  ### Changes
@@ -572,7 +687,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
572
687
 
573
688
  ## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v0.4.0)
574
689
 
575
- Mon, 22 Feb 2021 12:26:22 GMT
690
+ Mon, 22 Feb 2021 12:26:22 GMT
576
691
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v0.3.1..@fluentui/react-utilities_v0.4.0)
577
692
 
578
693
  ### Minor changes
@@ -590,7 +705,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
590
705
 
591
706
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v0.3.1)
592
707
 
593
- Thu, 18 Feb 2021 19:38:50 GMT
708
+ Thu, 18 Feb 2021 19:38:50 GMT
594
709
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v0.3.0..@fluentui/react-utilities_v0.3.1)
595
710
 
596
711
  ### Patches
@@ -603,7 +718,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
603
718
 
604
719
  ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v0.3.0)
605
720
 
606
- Thu, 18 Feb 2021 12:27:34 GMT
721
+ Thu, 18 Feb 2021 12:27:34 GMT
607
722
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v0.2.4..@fluentui/react-utilities_v0.3.0)
608
723
 
609
724
  ### Minor changes
@@ -620,7 +735,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
620
735
 
621
736
  ## [0.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v0.2.4)
622
737
 
623
- Mon, 01 Feb 2021 12:23:48 GMT
738
+ Mon, 01 Feb 2021 12:23:48 GMT
624
739
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v0.2.4-4..@fluentui/react-utilities_v0.2.4)
625
740
 
626
741
  ### Patches
@@ -629,7 +744,7 @@ Mon, 01 Feb 2021 12:23:48 GMT
629
744
 
630
745
  ## [0.2.4-4](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v0.2.4-4)
631
746
 
632
- Thu, 28 Jan 2021 12:25:56 GMT
747
+ Thu, 28 Jan 2021 12:25:56 GMT
633
748
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v0.2.4-3..@fluentui/react-utilities_v0.2.4-4)
634
749
 
635
750
  ### Changes
@@ -638,7 +753,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
638
753
 
639
754
  ## [0.2.4-3](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v0.2.4-3)
640
755
 
641
- Thu, 21 Jan 2021 12:36:12 GMT
756
+ Thu, 21 Jan 2021 12:36:12 GMT
642
757
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v0.2.3..@fluentui/react-utilities_v0.2.4-3)
643
758
 
644
759
  ### Changes
@@ -647,7 +762,7 @@ Thu, 21 Jan 2021 12:36:12 GMT
647
762
 
648
763
  ## [0.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v0.2.3)
649
764
 
650
- Fri, 23 Oct 2020 03:26:15 GMT
765
+ Fri, 23 Oct 2020 03:26:15 GMT
651
766
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v0.2.2..@fluentui/react-utilities_v0.2.3)
652
767
 
653
768
  ### Patches