@fluentui/react-utilities 0.0.0-nightly050f89bf0020211102.1

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 (217) hide show
  1. package/CHANGELOG.json +1637 -0
  2. package/CHANGELOG.md +677 -0
  3. package/LICENSE +15 -0
  4. package/README.md +5 -0
  5. package/dist/react-utilities.d.ts +648 -0
  6. package/lib/compose/getSlots.d.ts +29 -0
  7. package/lib/compose/getSlots.js +72 -0
  8. package/lib/compose/getSlots.js.map +1 -0
  9. package/lib/compose/index.d.ts +4 -0
  10. package/lib/compose/index.js +5 -0
  11. package/lib/compose/index.js.map +1 -0
  12. package/lib/compose/nullRender.d.ts +4 -0
  13. package/lib/compose/nullRender.js +7 -0
  14. package/lib/compose/nullRender.js.map +1 -0
  15. package/lib/compose/resolveShorthand.d.ts +12 -0
  16. package/lib/compose/resolveShorthand.js +30 -0
  17. package/lib/compose/resolveShorthand.js.map +1 -0
  18. package/lib/compose/types.d.ts +104 -0
  19. package/lib/compose/types.js +6 -0
  20. package/lib/compose/types.js.map +1 -0
  21. package/lib/hooks/index.d.ts +16 -0
  22. package/lib/hooks/index.js +17 -0
  23. package/lib/hooks/index.js.map +1 -0
  24. package/lib/hooks/useBoolean.d.ts +17 -0
  25. package/lib/hooks/useBoolean.js +39 -0
  26. package/lib/hooks/useBoolean.js.map +1 -0
  27. package/lib/hooks/useConst.d.ts +12 -0
  28. package/lib/hooks/useConst.js +30 -0
  29. package/lib/hooks/useConst.js.map +1 -0
  30. package/lib/hooks/useControllableState.d.ts +21 -0
  31. package/lib/hooks/useControllableState.js +72 -0
  32. package/lib/hooks/useControllableState.js.map +1 -0
  33. package/lib/hooks/useControllableValue.d.ts +20 -0
  34. package/lib/hooks/useControllableValue.js +62 -0
  35. package/lib/hooks/useControllableValue.js.map +1 -0
  36. package/lib/hooks/useEventCallback.d.ts +13 -0
  37. package/lib/hooks/useEventCallback.js +34 -0
  38. package/lib/hooks/useEventCallback.js.map +1 -0
  39. package/lib/hooks/useFirstMount.d.ts +11 -0
  40. package/lib/hooks/useFirstMount.js +23 -0
  41. package/lib/hooks/useFirstMount.js.map +1 -0
  42. package/lib/hooks/useForceUpdate.d.ts +4 -0
  43. package/lib/hooks/useForceUpdate.js +11 -0
  44. package/lib/hooks/useForceUpdate.js.map +1 -0
  45. package/lib/hooks/useId.d.ts +15 -0
  46. package/lib/hooks/useId.js +27 -0
  47. package/lib/hooks/useId.js.map +1 -0
  48. package/lib/hooks/useIsomorphicLayoutEffect.d.ts +11 -0
  49. package/lib/hooks/useIsomorphicLayoutEffect.js +15 -0
  50. package/lib/hooks/useIsomorphicLayoutEffect.js.map +1 -0
  51. package/lib/hooks/useMergedRefs.d.ts +13 -0
  52. package/lib/hooks/useMergedRefs.js +34 -0
  53. package/lib/hooks/useMergedRefs.js.map +1 -0
  54. package/lib/hooks/useMount.d.ts +6 -0
  55. package/lib/hooks/useMount.js +17 -0
  56. package/lib/hooks/useMount.js.map +1 -0
  57. package/lib/hooks/useOnClickOutside.d.ts +29 -0
  58. package/lib/hooks/useOnClickOutside.js +142 -0
  59. package/lib/hooks/useOnClickOutside.js.map +1 -0
  60. package/lib/hooks/useOnScrollOutside.d.ts +5 -0
  61. package/lib/hooks/useOnScrollOutside.js +38 -0
  62. package/lib/hooks/useOnScrollOutside.js.map +1 -0
  63. package/lib/hooks/usePrevious.d.ts +1 -0
  64. package/lib/hooks/usePrevious.js +9 -0
  65. package/lib/hooks/usePrevious.js.map +1 -0
  66. package/lib/hooks/useTimeout.d.ts +8 -0
  67. package/lib/hooks/useTimeout.js +33 -0
  68. package/lib/hooks/useTimeout.js.map +1 -0
  69. package/lib/hooks/useUnmount.d.ts +6 -0
  70. package/lib/hooks/useUnmount.js +19 -0
  71. package/lib/hooks/useUnmount.js.map +1 -0
  72. package/lib/index.d.ts +4 -0
  73. package/lib/index.js +5 -0
  74. package/lib/index.js.map +1 -0
  75. package/lib/ssr/SSRContext.d.ts +33 -0
  76. package/lib/ssr/SSRContext.js +71 -0
  77. package/lib/ssr/SSRContext.js.map +1 -0
  78. package/lib/ssr/canUseDOM.d.ts +4 -0
  79. package/lib/ssr/canUseDOM.js +8 -0
  80. package/lib/ssr/canUseDOM.js.map +1 -0
  81. package/lib/ssr/index.d.ts +2 -0
  82. package/lib/ssr/index.js +3 -0
  83. package/lib/ssr/index.js.map +1 -0
  84. package/lib/tsdoc-metadata.json +11 -0
  85. package/lib/utils/applyTriggerPropsToChildren.d.ts +5 -0
  86. package/lib/utils/applyTriggerPropsToChildren.js +16 -0
  87. package/lib/utils/applyTriggerPropsToChildren.js.map +1 -0
  88. package/lib/utils/clamp.d.ts +8 -0
  89. package/lib/utils/clamp.js +11 -0
  90. package/lib/utils/clamp.js.map +1 -0
  91. package/lib/utils/getNativeElementProps.d.ts +9 -0
  92. package/lib/utils/getNativeElementProps.js +38 -0
  93. package/lib/utils/getNativeElementProps.js.map +1 -0
  94. package/lib/utils/getRTLSafeKey.d.ts +4 -0
  95. package/lib/utils/getRTLSafeKey.js +21 -0
  96. package/lib/utils/getRTLSafeKey.js.map +1 -0
  97. package/lib/utils/index.d.ts +8 -0
  98. package/lib/utils/index.js +9 -0
  99. package/lib/utils/index.js.map +1 -0
  100. package/lib/utils/omit.d.ts +14 -0
  101. package/lib/utils/omit.js +27 -0
  102. package/lib/utils/omit.js.map +1 -0
  103. package/lib/utils/onlyChild.d.ts +5 -0
  104. package/lib/utils/onlyChild.js +13 -0
  105. package/lib/utils/onlyChild.js.map +1 -0
  106. package/lib/utils/properties.d.ts +148 -0
  107. package/lib/utils/properties.js +218 -0
  108. package/lib/utils/properties.js.map +1 -0
  109. package/lib/utils/shouldPreventDefaultOnKeyDown.d.ts +7 -0
  110. package/lib/utils/shouldPreventDefaultOnKeyDown.js +20 -0
  111. package/lib/utils/shouldPreventDefaultOnKeyDown.js.map +1 -0
  112. package/lib-commonjs/compose/getSlots.d.ts +29 -0
  113. package/lib-commonjs/compose/getSlots.js +85 -0
  114. package/lib-commonjs/compose/getSlots.js.map +1 -0
  115. package/lib-commonjs/compose/index.d.ts +4 -0
  116. package/lib-commonjs/compose/index.js +16 -0
  117. package/lib-commonjs/compose/index.js.map +1 -0
  118. package/lib-commonjs/compose/nullRender.d.ts +4 -0
  119. package/lib-commonjs/compose/nullRender.js +16 -0
  120. package/lib-commonjs/compose/nullRender.js.map +1 -0
  121. package/lib-commonjs/compose/resolveShorthand.d.ts +12 -0
  122. package/lib-commonjs/compose/resolveShorthand.js +41 -0
  123. package/lib-commonjs/compose/resolveShorthand.js.map +1 -0
  124. package/lib-commonjs/compose/types.d.ts +104 -0
  125. package/lib-commonjs/compose/types.js +10 -0
  126. package/lib-commonjs/compose/types.js.map +1 -0
  127. package/lib-commonjs/hooks/index.d.ts +16 -0
  128. package/lib-commonjs/hooks/index.js +40 -0
  129. package/lib-commonjs/hooks/index.js.map +1 -0
  130. package/lib-commonjs/hooks/useBoolean.d.ts +17 -0
  131. package/lib-commonjs/hooks/useBoolean.js +50 -0
  132. package/lib-commonjs/hooks/useBoolean.js.map +1 -0
  133. package/lib-commonjs/hooks/useConst.d.ts +12 -0
  134. package/lib-commonjs/hooks/useConst.js +40 -0
  135. package/lib-commonjs/hooks/useConst.js.map +1 -0
  136. package/lib-commonjs/hooks/useControllableState.d.ts +21 -0
  137. package/lib-commonjs/hooks/useControllableState.js +82 -0
  138. package/lib-commonjs/hooks/useControllableState.js.map +1 -0
  139. package/lib-commonjs/hooks/useControllableValue.d.ts +20 -0
  140. package/lib-commonjs/hooks/useControllableValue.js +73 -0
  141. package/lib-commonjs/hooks/useControllableValue.js.map +1 -0
  142. package/lib-commonjs/hooks/useEventCallback.d.ts +13 -0
  143. package/lib-commonjs/hooks/useEventCallback.js +45 -0
  144. package/lib-commonjs/hooks/useEventCallback.js.map +1 -0
  145. package/lib-commonjs/hooks/useFirstMount.d.ts +11 -0
  146. package/lib-commonjs/hooks/useFirstMount.js +33 -0
  147. package/lib-commonjs/hooks/useFirstMount.js.map +1 -0
  148. package/lib-commonjs/hooks/useForceUpdate.d.ts +4 -0
  149. package/lib-commonjs/hooks/useForceUpdate.js +21 -0
  150. package/lib-commonjs/hooks/useForceUpdate.js.map +1 -0
  151. package/lib-commonjs/hooks/useId.d.ts +15 -0
  152. package/lib-commonjs/hooks/useId.js +40 -0
  153. package/lib-commonjs/hooks/useId.js.map +1 -0
  154. package/lib-commonjs/hooks/useIsomorphicLayoutEffect.d.ts +11 -0
  155. package/lib-commonjs/hooks/useIsomorphicLayoutEffect.js +24 -0
  156. package/lib-commonjs/hooks/useIsomorphicLayoutEffect.js.map +1 -0
  157. package/lib-commonjs/hooks/useMergedRefs.d.ts +13 -0
  158. package/lib-commonjs/hooks/useMergedRefs.js +45 -0
  159. package/lib-commonjs/hooks/useMergedRefs.js.map +1 -0
  160. package/lib-commonjs/hooks/useMount.d.ts +6 -0
  161. package/lib-commonjs/hooks/useMount.js +27 -0
  162. package/lib-commonjs/hooks/useMount.js.map +1 -0
  163. package/lib-commonjs/hooks/useOnClickOutside.d.ts +29 -0
  164. package/lib-commonjs/hooks/useOnClickOutside.js +153 -0
  165. package/lib-commonjs/hooks/useOnClickOutside.js.map +1 -0
  166. package/lib-commonjs/hooks/useOnScrollOutside.d.ts +5 -0
  167. package/lib-commonjs/hooks/useOnScrollOutside.js +49 -0
  168. package/lib-commonjs/hooks/useOnScrollOutside.js.map +1 -0
  169. package/lib-commonjs/hooks/usePrevious.d.ts +1 -0
  170. package/lib-commonjs/hooks/usePrevious.js +19 -0
  171. package/lib-commonjs/hooks/usePrevious.js.map +1 -0
  172. package/lib-commonjs/hooks/useTimeout.d.ts +8 -0
  173. package/lib-commonjs/hooks/useTimeout.js +44 -0
  174. package/lib-commonjs/hooks/useTimeout.js.map +1 -0
  175. package/lib-commonjs/hooks/useUnmount.d.ts +6 -0
  176. package/lib-commonjs/hooks/useUnmount.js +29 -0
  177. package/lib-commonjs/hooks/useUnmount.js.map +1 -0
  178. package/lib-commonjs/index.d.ts +4 -0
  179. package/lib-commonjs/index.js +16 -0
  180. package/lib-commonjs/index.js.map +1 -0
  181. package/lib-commonjs/ssr/SSRContext.d.ts +33 -0
  182. package/lib-commonjs/ssr/SSRContext.js +86 -0
  183. package/lib-commonjs/ssr/SSRContext.js.map +1 -0
  184. package/lib-commonjs/ssr/canUseDOM.d.ts +4 -0
  185. package/lib-commonjs/ssr/canUseDOM.js +17 -0
  186. package/lib-commonjs/ssr/canUseDOM.js.map +1 -0
  187. package/lib-commonjs/ssr/index.d.ts +2 -0
  188. package/lib-commonjs/ssr/index.js +12 -0
  189. package/lib-commonjs/ssr/index.js.map +1 -0
  190. package/lib-commonjs/utils/applyTriggerPropsToChildren.d.ts +5 -0
  191. package/lib-commonjs/utils/applyTriggerPropsToChildren.js +27 -0
  192. package/lib-commonjs/utils/applyTriggerPropsToChildren.js.map +1 -0
  193. package/lib-commonjs/utils/clamp.d.ts +8 -0
  194. package/lib-commonjs/utils/clamp.js +20 -0
  195. package/lib-commonjs/utils/clamp.js.map +1 -0
  196. package/lib-commonjs/utils/getNativeElementProps.d.ts +9 -0
  197. package/lib-commonjs/utils/getNativeElementProps.js +48 -0
  198. package/lib-commonjs/utils/getNativeElementProps.js.map +1 -0
  199. package/lib-commonjs/utils/getRTLSafeKey.d.ts +4 -0
  200. package/lib-commonjs/utils/getRTLSafeKey.js +30 -0
  201. package/lib-commonjs/utils/getRTLSafeKey.js.map +1 -0
  202. package/lib-commonjs/utils/index.d.ts +8 -0
  203. package/lib-commonjs/utils/index.js +24 -0
  204. package/lib-commonjs/utils/index.js.map +1 -0
  205. package/lib-commonjs/utils/omit.d.ts +14 -0
  206. package/lib-commonjs/utils/omit.js +36 -0
  207. package/lib-commonjs/utils/omit.js.map +1 -0
  208. package/lib-commonjs/utils/onlyChild.d.ts +5 -0
  209. package/lib-commonjs/utils/onlyChild.js +23 -0
  210. package/lib-commonjs/utils/onlyChild.js.map +1 -0
  211. package/lib-commonjs/utils/properties.d.ts +148 -0
  212. package/lib-commonjs/utils/properties.js +227 -0
  213. package/lib-commonjs/utils/properties.js.map +1 -0
  214. package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.d.ts +7 -0
  215. package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.js +30 -0
  216. package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.js.map +1 -0
  217. package/package.json +55 -0
package/CHANGELOG.json ADDED
@@ -0,0 +1,1637 @@
1
+ {
2
+ "name": "@fluentui/react-utilities",
3
+ "entries": [
4
+ {
5
+ "date": "Tue, 02 Nov 2021 08:40:41 GMT",
6
+ "tag": "@fluentui/react-utilities_v0.0.0-nightly050f89bf0020211102.1",
7
+ "version": "0.0.0-nightly050f89bf0020211102.1",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "email not defined",
12
+ "package": "@fluentui/react-utilities",
13
+ "commit": "40469cc9aef788dfd49e97df32d6aed267c2cc26",
14
+ "comment": "Release nightly v9"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-utilities",
19
+ "comment": "Bump @fluentui/keyboard-keys to v0.0.0-nightly050f89bf0020211102.1",
20
+ "commit": "40469cc9aef788dfd49e97df32d6aed267c2cc26"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "date": "Wed, 27 Oct 2021 12:14:24 GMT",
27
+ "tag": "@fluentui/react-utilities_v9.0.0-beta.2",
28
+ "version": "9.0.0-beta.2",
29
+ "comments": {
30
+ "prerelease": [
31
+ {
32
+ "author": "olfedias@microsoft.com",
33
+ "package": "@fluentui/react-utilities",
34
+ "commit": "5cd2c86d041588c98747f16902ff99a7b41c10ac",
35
+ "comment": "remove compat utilities and types"
36
+ },
37
+ {
38
+ "author": "lingfangao@hotmail.com",
39
+ "package": "@fluentui/react-utilities",
40
+ "commit": "b5b740100714724214e097fae2f7c1f51f294e35",
41
+ "comment": "fix(getNativeElementPrps): Add support for `onAuxClick`"
42
+ }
43
+ ]
44
+ }
45
+ },
46
+ {
47
+ "date": "Wed, 06 Oct 2021 10:37:22 GMT",
48
+ "tag": "@fluentui/react-utilities_v9.0.0-beta.1",
49
+ "version": "9.0.0-beta.1",
50
+ "comments": {
51
+ "prerelease": [
52
+ {
53
+ "author": "lingfangao@hotmail.com",
54
+ "package": "@fluentui/react-utilities",
55
+ "comment": "Bump all v9 components to beta prerelease tag",
56
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
57
+ },
58
+ {
59
+ "author": "beachball",
60
+ "package": "@fluentui/react-utilities",
61
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.0-beta.1",
62
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
63
+ }
64
+ ]
65
+ }
66
+ },
67
+ {
68
+ "date": "Tue, 05 Oct 2021 09:28:07 GMT",
69
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.56",
70
+ "version": "9.0.0-alpha.56",
71
+ "comments": {
72
+ "prerelease": [
73
+ {
74
+ "author": "elcraig@microsoft.com",
75
+ "package": "@fluentui/react-utilities",
76
+ "comment": "Add and use ForwardRefComponent helper type",
77
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
78
+ }
79
+ ]
80
+ }
81
+ },
82
+ {
83
+ "date": "Fri, 01 Oct 2021 14:13:08 GMT",
84
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.55",
85
+ "version": "9.0.0-alpha.55",
86
+ "comments": {
87
+ "prerelease": [
88
+ {
89
+ "author": "lingfangao@hotmail.com",
90
+ "package": "@fluentui/react-utilities",
91
+ "comment": "Bump v9 prerelease versions to rerelease",
92
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
93
+ },
94
+ {
95
+ "author": "beachball",
96
+ "package": "@fluentui/react-utilities",
97
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.0-alpha.5",
98
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
99
+ }
100
+ ]
101
+ }
102
+ },
103
+ {
104
+ "date": "Mon, 27 Sep 2021 08:06:00 GMT",
105
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.53",
106
+ "version": "9.0.0-alpha.53",
107
+ "comments": {
108
+ "prerelease": [
109
+ {
110
+ "author": "bsunderhus@microsoft.com",
111
+ "package": "@fluentui/react-utilities",
112
+ "comment": "Updates ComponentState on custom props",
113
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
114
+ }
115
+ ]
116
+ }
117
+ },
118
+ {
119
+ "date": "Fri, 24 Sep 2021 09:17:17 GMT",
120
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.52",
121
+ "version": "9.0.0-alpha.52",
122
+ "comments": {
123
+ "prerelease": [
124
+ {
125
+ "author": "andredias@microsoft.com",
126
+ "package": "@fluentui/react-utilities",
127
+ "comment": "Add as prop to properties allowed with getNativeElementProps",
128
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
129
+ }
130
+ ]
131
+ }
132
+ },
133
+ {
134
+ "date": "Thu, 23 Sep 2021 08:21:34 GMT",
135
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.51",
136
+ "version": "9.0.0-alpha.51",
137
+ "comments": {
138
+ "prerelease": [
139
+ {
140
+ "author": "czearing@outlook.com",
141
+ "package": "@fluentui/react-utilities",
142
+ "comment": "Adding clamp and getRTLSafeKey utilities.",
143
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
144
+ }
145
+ ]
146
+ }
147
+ },
148
+ {
149
+ "date": "Wed, 22 Sep 2021 10:10:07 GMT",
150
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.50",
151
+ "version": "9.0.0-alpha.50",
152
+ "comments": {
153
+ "prerelease": [
154
+ {
155
+ "author": "gcox@microsoft.com",
156
+ "package": "@fluentui/react-utilities",
157
+ "comment": "Moved from interfaces to types per RFC",
158
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
159
+ }
160
+ ]
161
+ }
162
+ },
163
+ {
164
+ "date": "Mon, 20 Sep 2021 07:36:26 GMT",
165
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.49",
166
+ "version": "9.0.0-alpha.49",
167
+ "comments": {
168
+ "none": [
169
+ {
170
+ "author": "lingfangao@hotmail.com",
171
+ "package": "@fluentui/react-utilities",
172
+ "comment": "chore: use versioon eslint-plugin and react-conformance in dev dependencies",
173
+ "commit": "b8a304770f77c0353553a152dad34421070400a6"
174
+ },
175
+ {
176
+ "author": "lingfangao@hotmail.com",
177
+ "package": "@fluentui/react-utilities",
178
+ "commit": "b8a304770f77c0353553a152dad34421070400a6",
179
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.49"
180
+ }
181
+ ]
182
+ }
183
+ },
184
+ {
185
+ "date": "Fri, 17 Sep 2021 07:35:26 GMT",
186
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.49",
187
+ "version": "9.0.0-alpha.49",
188
+ "comments": {
189
+ "prerelease": [
190
+ {
191
+ "author": "Humberto.Morimoto@microsoft.com",
192
+ "package": "@fluentui/react-utilities",
193
+ "comment": "Refactoring out functionality that applies trigger props to children as a utility.",
194
+ "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575"
195
+ },
196
+ {
197
+ "author": "bsunderhus@microsoft.com",
198
+ "package": "@fluentui/react-utilities",
199
+ "comment": "Removes ExtractRef Typings",
200
+ "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575"
201
+ }
202
+ ]
203
+ }
204
+ },
205
+ {
206
+ "date": "Thu, 16 Sep 2021 07:38:39 GMT",
207
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.48",
208
+ "version": "9.0.0-alpha.48",
209
+ "comments": {
210
+ "prerelease": [
211
+ {
212
+ "author": "behowell@microsoft.com",
213
+ "package": "@fluentui/react-utilities",
214
+ "comment": "Fix IntrinsicShorthandProps used in the root slot with multiple possible `as` values",
215
+ "commit": "fbe41e2877a20ce0f3c01b5188e17c12f941cc4c"
216
+ }
217
+ ]
218
+ }
219
+ },
220
+ {
221
+ "date": "Tue, 14 Sep 2021 20:09:02 GMT",
222
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.47",
223
+ "version": "9.0.0-alpha.47",
224
+ "comments": {
225
+ "prerelease": [
226
+ {
227
+ "author": "bsunderhus@microsoft.com",
228
+ "package": "@fluentui/react-utilities",
229
+ "comment": "Adds ExtractRef typings to react-utilities to extract reference from props",
230
+ "commit": "10495c31fb5c5cf48b4665601a75a0cfabb6a03c"
231
+ }
232
+ ]
233
+ }
234
+ },
235
+ {
236
+ "date": "Fri, 10 Sep 2021 16:31:53 GMT",
237
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.46",
238
+ "version": "9.0.0-alpha.46",
239
+ "comments": {
240
+ "prerelease": [
241
+ {
242
+ "author": "lingfangao@hotmail.com",
243
+ "package": "@fluentui/react-utilities",
244
+ "comment": "chore(v9): Move all internal v9 dependencies from caret to fixed version",
245
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0"
246
+ }
247
+ ]
248
+ }
249
+ },
250
+ {
251
+ "date": "Fri, 10 Sep 2021 07:39:51 GMT",
252
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.45",
253
+ "version": "9.0.0-alpha.45",
254
+ "comments": {
255
+ "prerelease": [
256
+ {
257
+ "comment": "Add IntrinsicShorthandProps for slots that use intrinsic elements like div or span",
258
+ "author": "behowell@microsoft.com",
259
+ "commit": "8700a515c7f2659761c5b53f55c32453bc3510b1",
260
+ "package": "@fluentui/react-utilities"
261
+ }
262
+ ]
263
+ }
264
+ },
265
+ {
266
+ "date": "Mon, 06 Sep 2021 07:34:53 GMT",
267
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.44",
268
+ "version": "9.0.0-alpha.44",
269
+ "comments": {
270
+ "prerelease": [
271
+ {
272
+ "comment": "feat(react-utilities): use `event.key` for keyboard events",
273
+ "author": "lingfangao@hotmail.com",
274
+ "commit": "cd22a603bb20947e7d23a3357b9a535afdb5ee1d",
275
+ "package": "@fluentui/react-utilities"
276
+ }
277
+ ]
278
+ }
279
+ },
280
+ {
281
+ "date": "Wed, 01 Sep 2021 07:39:56 GMT",
282
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.43",
283
+ "version": "9.0.0-alpha.43",
284
+ "comments": {
285
+ "prerelease": [
286
+ {
287
+ "comment": "Update implementation to handle 'root' as a slot",
288
+ "author": "bsunderhus@microsoft.com",
289
+ "commit": "40254a1b07bd51affd276e51af0b1d517714b45c",
290
+ "package": "@fluentui/react-utilities"
291
+ }
292
+ ]
293
+ }
294
+ },
295
+ {
296
+ "date": "Tue, 31 Aug 2021 07:37:47 GMT",
297
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.42",
298
+ "version": "9.0.0-alpha.42",
299
+ "comments": {
300
+ "none": [
301
+ {
302
+ "comment": "docs(composeUtils): update README",
303
+ "author": "olfedias@microsoft.com",
304
+ "commit": "3205b59f5d25006349b27883e4e3ec70eb14ad6f",
305
+ "package": "@fluentui/react-utilities"
306
+ }
307
+ ],
308
+ "prerelease": [
309
+ {
310
+ "comment": "fix(useOnClickOutside): Treat right click/context menu as outside click",
311
+ "author": "lingfan.gao@microsoft.com",
312
+ "commit": "7a53d85571212d2f5b56a84fd84e29f5e1985daa",
313
+ "package": "@fluentui/react-utilities"
314
+ }
315
+ ]
316
+ }
317
+ },
318
+ {
319
+ "date": "Tue, 24 Aug 2021 07:34:48 GMT",
320
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.41",
321
+ "version": "9.0.0-alpha.41",
322
+ "comments": {
323
+ "prerelease": [
324
+ {
325
+ "comment": "Updating TypeScript type-only imports/exports to use import/export type syntax.",
326
+ "author": "dzearing@hotmail.com",
327
+ "commit": "789a3733b128569190319fce3fe2b46900b24896",
328
+ "package": "@fluentui/react-utilities"
329
+ }
330
+ ],
331
+ "none": [
332
+ {
333
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.1",
334
+ "author": "dzearing@hotmail.com",
335
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
336
+ "package": "@fluentui/react-utilities"
337
+ },
338
+ {
339
+ "comment": "Bump @fluentui/keyboard-key to v0.3.4",
340
+ "author": "dzearing@hotmail.com",
341
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
342
+ "package": "@fluentui/react-utilities"
343
+ },
344
+ {
345
+ "comment": "Bump @fluentui/scripts to v1.0.0",
346
+ "author": "dzearing@hotmail.com",
347
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
348
+ "package": "@fluentui/react-utilities"
349
+ }
350
+ ]
351
+ }
352
+ },
353
+ {
354
+ "date": "Fri, 20 Aug 2021 07:37:28 GMT",
355
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.40",
356
+ "version": "9.0.0-alpha.40",
357
+ "comments": {
358
+ "prerelease": [
359
+ {
360
+ "comment": "Update .npmignore",
361
+ "author": "elcraig@microsoft.com",
362
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
363
+ "package": "@fluentui/react-utilities"
364
+ }
365
+ ],
366
+ "none": [
367
+ {
368
+ "comment": "Update jest-environment comment formatting to fix lint error",
369
+ "author": "behowell@microsoft.com",
370
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
371
+ "package": "@fluentui/react-utilities"
372
+ },
373
+ {
374
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.0",
375
+ "author": "behowell@microsoft.com",
376
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
377
+ "package": "@fluentui/react-utilities"
378
+ },
379
+ {
380
+ "comment": "Bump @fluentui/keyboard-key to v0.3.4",
381
+ "author": "behowell@microsoft.com",
382
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
383
+ "package": "@fluentui/react-utilities"
384
+ },
385
+ {
386
+ "comment": "Bump @fluentui/scripts to v1.0.0",
387
+ "author": "behowell@microsoft.com",
388
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
389
+ "package": "@fluentui/react-utilities"
390
+ }
391
+ ]
392
+ }
393
+ },
394
+ {
395
+ "date": "Thu, 19 Aug 2021 07:41:35 GMT",
396
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.39",
397
+ "version": "9.0.0-alpha.39",
398
+ "comments": {
399
+ "prerelease": [
400
+ {
401
+ "comment": "Slot null rendering refactor",
402
+ "author": "bsunderhus@microsoft.com",
403
+ "commit": "e467d64e7d3edb2512a81efdaeca5813269039b4",
404
+ "package": "@fluentui/react-utilities"
405
+ }
406
+ ]
407
+ }
408
+ },
409
+ {
410
+ "date": "Fri, 06 Aug 2021 07:35:14 GMT",
411
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.38",
412
+ "version": "9.0.0-alpha.38",
413
+ "comments": {
414
+ "prerelease": [
415
+ {
416
+ "comment": "Deletes descendants API",
417
+ "author": "bsunderhus@microsoft.com",
418
+ "commit": "9ac8b044a6a524d6ce55f3f801ce0189a8087e85",
419
+ "package": "@fluentui/react-utilities"
420
+ }
421
+ ]
422
+ }
423
+ },
424
+ {
425
+ "date": "Wed, 04 Aug 2021 07:34:12 GMT",
426
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.37",
427
+ "version": "9.0.0-alpha.37",
428
+ "comments": {
429
+ "none": [
430
+ {
431
+ "comment": "Fixing various typos in the react-utilities package.",
432
+ "author": "czearing@outlook.com",
433
+ "commit": "109e85b19d8ee37a9c31ddf8e2083471bab64526",
434
+ "package": "@fluentui/react-utilities"
435
+ }
436
+ ]
437
+ }
438
+ },
439
+ {
440
+ "date": "Tue, 03 Aug 2021 07:39:30 GMT",
441
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.37",
442
+ "version": "9.0.0-alpha.37",
443
+ "comments": {
444
+ "prerelease": [
445
+ {
446
+ "comment": "Copying useMount and useUnmount hooks into the react-utilities package.",
447
+ "author": "czearing@outlook.com",
448
+ "commit": "14dbbf7bb2b56ccf4974fcb8ad40b73ae9614326",
449
+ "package": "@fluentui/react-utilities"
450
+ }
451
+ ],
452
+ "patch": [
453
+ {
454
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.3",
455
+ "author": "behowell@microsoft.com",
456
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
457
+ "package": "@fluentui/react-utilities"
458
+ },
459
+ {
460
+ "comment": "Bump @fluentui/keyboard-key to v0.3.4",
461
+ "author": "behowell@microsoft.com",
462
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
463
+ "package": "@fluentui/react-utilities"
464
+ },
465
+ {
466
+ "comment": "Bump @fluentui/scripts to v1.0.0",
467
+ "author": "behowell@microsoft.com",
468
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
469
+ "package": "@fluentui/react-utilities"
470
+ }
471
+ ]
472
+ }
473
+ },
474
+ {
475
+ "date": "Mon, 02 Aug 2021 07:36:20 GMT",
476
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.36",
477
+ "version": "9.0.0-alpha.36",
478
+ "comments": {
479
+ "prerelease": [
480
+ {
481
+ "comment": "feat(useOnClickOutside): Handle clicks into an iframe",
482
+ "author": "lingfan.gao@microsoft.com",
483
+ "commit": "ab0e1bafdd9ace2974b3362cd2300fb32af466fb",
484
+ "package": "@fluentui/react-utilities"
485
+ }
486
+ ]
487
+ }
488
+ },
489
+ {
490
+ "date": "Fri, 23 Jul 2021 07:38:19 GMT",
491
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.35",
492
+ "version": "9.0.0-alpha.35",
493
+ "comments": {
494
+ "prerelease": [
495
+ {
496
+ "comment": "Improve type safety of the onlyChild function",
497
+ "author": "behowell@microsoft.com",
498
+ "commit": "d38109a7fd40e187aca862046219cf9a7ca66131",
499
+ "package": "@fluentui/react-utilities"
500
+ }
501
+ ]
502
+ }
503
+ },
504
+ {
505
+ "date": "Thu, 22 Jul 2021 07:36:55 GMT",
506
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.34",
507
+ "version": "9.0.0-alpha.34",
508
+ "comments": {
509
+ "prerelease": [
510
+ {
511
+ "comment": "Move useTimeout into react-utilities and add tests",
512
+ "author": "behowell@microsoft.com",
513
+ "commit": "2e257154d0448b8d4fd64142f93fcc9a225995cc",
514
+ "package": "@fluentui/react-utilities"
515
+ }
516
+ ]
517
+ }
518
+ },
519
+ {
520
+ "date": "Tue, 20 Jul 2021 22:23:17 GMT",
521
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.33",
522
+ "version": "9.0.0-alpha.33",
523
+ "comments": {
524
+ "none": [
525
+ {
526
+ "comment": "add bundle size fixtures",
527
+ "author": "olfedias@microsoft.com",
528
+ "commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
529
+ "package": "@fluentui/react-utilities"
530
+ }
531
+ ]
532
+ }
533
+ },
534
+ {
535
+ "date": "Thu, 15 Jul 2021 07:36:18 GMT",
536
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.33",
537
+ "version": "9.0.0-alpha.33",
538
+ "comments": {
539
+ "prerelease": [
540
+ {
541
+ "comment": "Fix bugs on getSlots to follow with RFC",
542
+ "author": "bsunderhus@microsoft.com",
543
+ "commit": "b60234948eacb8c6fa9d08ab8e98d963f583d475",
544
+ "package": "@fluentui/react-utilities"
545
+ },
546
+ {
547
+ "comment": "feat(useControllableState): deprecate useControlledValue with new hook",
548
+ "author": "lingfan.gao@microsoft.com",
549
+ "commit": "57b43a4d07fbccd83fa03a3b7879813be920b91f",
550
+ "package": "@fluentui/react-utilities"
551
+ }
552
+ ]
553
+ }
554
+ },
555
+ {
556
+ "date": "Fri, 09 Jul 2021 07:39:31 GMT",
557
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.32",
558
+ "version": "9.0.0-alpha.32",
559
+ "comments": {
560
+ "patch": [
561
+ {
562
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.2",
563
+ "author": "martinhochel@microsoft.com",
564
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
565
+ "package": "@fluentui/react-utilities"
566
+ },
567
+ {
568
+ "comment": "Bump @fluentui/keyboard-key to v0.3.3",
569
+ "author": "martinhochel@microsoft.com",
570
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
571
+ "package": "@fluentui/react-utilities"
572
+ },
573
+ {
574
+ "comment": "Bump @fluentui/scripts to v1.0.0",
575
+ "author": "martinhochel@microsoft.com",
576
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
577
+ "package": "@fluentui/react-utilities"
578
+ }
579
+ ]
580
+ }
581
+ },
582
+ {
583
+ "date": "Fri, 02 Jul 2021 23:15:55 GMT",
584
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.31",
585
+ "version": "9.0.0-alpha.31",
586
+ "comments": {
587
+ "prerelease": [
588
+ {
589
+ "comment": "Add new prop mergin mechanism",
590
+ "author": "bsunderhus@microsoft.com",
591
+ "commit": "6c37a1cb5c312d4be8b239bfd9f6c9f28e9f0d24",
592
+ "package": "@fluentui/react-utilities"
593
+ },
594
+ {
595
+ "comment": "chore(Menu): use capture event to handle outside click",
596
+ "author": "lingfan.gao@microsoft.com",
597
+ "commit": "3812a10a4152a2e27ac89b16259e312f42469570",
598
+ "package": "@fluentui/react-utilities"
599
+ }
600
+ ]
601
+ }
602
+ },
603
+ {
604
+ "date": "Fri, 02 Jul 2021 07:37:06 GMT",
605
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.30",
606
+ "version": "9.0.0-alpha.30",
607
+ "comments": {
608
+ "none": [
609
+ {
610
+ "comment": "chore(react-utilities): Migrate DX",
611
+ "author": "lingfan.gao@microsoft.com",
612
+ "commit": "4279e187f29c2dfa4d9244c615e92fdd29159b3b",
613
+ "package": "@fluentui/react-utilities"
614
+ }
615
+ ],
616
+ "prerelease": [
617
+ {
618
+ "comment": "Rename typings and getSlots to have the Compat Suffix",
619
+ "author": "bsunderhus@microsoft.com",
620
+ "commit": "c939e67b1840a9eb5f7706afcda8c14df8f18d33",
621
+ "package": "@fluentui/react-utilities"
622
+ }
623
+ ]
624
+ }
625
+ },
626
+ {
627
+ "date": "Tue, 15 Jun 2021 07:40:20 GMT",
628
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.29",
629
+ "version": "9.0.0-alpha.29",
630
+ "comments": {
631
+ "prerelease": [
632
+ {
633
+ "comment": "Remove boolean from ShorthandProps type",
634
+ "author": "behowell@microsoft.com",
635
+ "commit": "10b1e17acaa01675866f7a623be1a61b1478d7d7",
636
+ "package": "@fluentui/react-utilities"
637
+ }
638
+ ]
639
+ }
640
+ },
641
+ {
642
+ "date": "Mon, 07 Jun 2021 07:38:15 GMT",
643
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.28",
644
+ "version": "9.0.0-alpha.28",
645
+ "comments": {
646
+ "patch": [
647
+ {
648
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.1",
649
+ "author": "martinhochel@microsoft.com",
650
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
651
+ "package": "@fluentui/react-utilities"
652
+ },
653
+ {
654
+ "comment": "Bump @fluentui/keyboard-key to v0.3.2",
655
+ "author": "martinhochel@microsoft.com",
656
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
657
+ "package": "@fluentui/react-utilities"
658
+ },
659
+ {
660
+ "comment": "Bump @fluentui/scripts to v1.0.0",
661
+ "author": "martinhochel@microsoft.com",
662
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
663
+ "package": "@fluentui/react-utilities"
664
+ }
665
+ ]
666
+ }
667
+ },
668
+ {
669
+ "date": "Fri, 04 Jun 2021 07:37:23 GMT",
670
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.27",
671
+ "version": "9.0.0-alpha.27",
672
+ "comments": {
673
+ "prerelease": [
674
+ {
675
+ "comment": "Moving onlyChild to @fluentui/react-utilities and adding tests.",
676
+ "author": "Humberto.Morimoto@microsoft.com",
677
+ "commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb",
678
+ "package": "@fluentui/react-utilities"
679
+ }
680
+ ]
681
+ }
682
+ },
683
+ {
684
+ "date": "Thu, 03 Jun 2021 07:36:03 GMT",
685
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.26",
686
+ "version": "9.0.0-alpha.26",
687
+ "comments": {
688
+ "none": [
689
+ {
690
+ "comment": "fix(react-utilities): explicitly provide context for setTimeout call",
691
+ "author": "martinhochel@microsoft.com",
692
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
693
+ "package": "@fluentui/react-utilities"
694
+ }
695
+ ]
696
+ }
697
+ },
698
+ {
699
+ "date": "Tue, 01 Jun 2021 07:31:58 GMT",
700
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.26",
701
+ "version": "9.0.0-alpha.26",
702
+ "comments": {
703
+ "none": [
704
+ {
705
+ "comment": "Revert \"chore: enable Jest aliases for converged packages (#18337)\"",
706
+ "author": "olfedias@microsoft.com",
707
+ "commit": "b5f2a02b37c8ea394a65f7a22bff057de93370dd",
708
+ "package": "@fluentui/react-utilities"
709
+ }
710
+ ]
711
+ }
712
+ },
713
+ {
714
+ "date": "Fri, 28 May 2021 07:33:57 GMT",
715
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.26",
716
+ "version": "9.0.0-alpha.26",
717
+ "comments": {
718
+ "prerelease": [
719
+ {
720
+ "comment": "useOnScrollOutside hook to detect scroll outside a component",
721
+ "author": "lingfan.gao@microsoft.com",
722
+ "commit": "53145c8f329f92f25d1ce2cd132e6dc4ee4ce43a",
723
+ "package": "@fluentui/react-utilities"
724
+ }
725
+ ],
726
+ "none": [
727
+ {
728
+ "comment": "enable Jest aliases",
729
+ "author": "olfedias@microsoft.com",
730
+ "commit": "5379823a6f53bd36a936806153d228b9a0ef0543",
731
+ "package": "@fluentui/react-utilities"
732
+ }
733
+ ]
734
+ }
735
+ },
736
+ {
737
+ "date": "Wed, 26 May 2021 07:35:43 GMT",
738
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.25",
739
+ "version": "9.0.0-alpha.25",
740
+ "comments": {
741
+ "prerelease": [
742
+ {
743
+ "comment": "useOnClickOutside, workaround for facebook/react#20074",
744
+ "author": "lingfan.gao@microsoft.com",
745
+ "commit": "6ffca36c9537a1852d8ec26478b8b7aeb059e17c",
746
+ "package": "@fluentui/react-utilities"
747
+ }
748
+ ]
749
+ }
750
+ },
751
+ {
752
+ "date": "Fri, 21 May 2021 07:34:54 GMT",
753
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.24",
754
+ "version": "9.0.0-alpha.24",
755
+ "comments": {
756
+ "prerelease": [
757
+ {
758
+ "comment": "Refactor ComponentState to remove ref template parameter",
759
+ "author": "behowell@microsoft.com",
760
+ "commit": "aabab8dedf6aa56a403b314157bcef84b6bcd585",
761
+ "package": "@fluentui/react-utilities"
762
+ }
763
+ ]
764
+ }
765
+ },
766
+ {
767
+ "date": "Thu, 20 May 2021 07:41:54 GMT",
768
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.23",
769
+ "version": "9.0.0-alpha.23",
770
+ "comments": {
771
+ "prerelease": [
772
+ {
773
+ "comment": "ComponentState: fix shadowing and doc syntax for type params",
774
+ "author": "elcraig@microsoft.com",
775
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
776
+ "package": "@fluentui/react-utilities"
777
+ }
778
+ ],
779
+ "patch": [
780
+ {
781
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.0",
782
+ "author": "elcraig@microsoft.com",
783
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
784
+ "package": "@fluentui/react-utilities"
785
+ },
786
+ {
787
+ "comment": "Bump @fluentui/keyboard-key to v0.3.1",
788
+ "author": "elcraig@microsoft.com",
789
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
790
+ "package": "@fluentui/react-utilities"
791
+ },
792
+ {
793
+ "comment": "Bump @fluentui/scripts to v1.0.0",
794
+ "author": "elcraig@microsoft.com",
795
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
796
+ "package": "@fluentui/react-utilities"
797
+ }
798
+ ]
799
+ }
800
+ },
801
+ {
802
+ "date": "Wed, 19 May 2021 07:34:20 GMT",
803
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.22",
804
+ "version": "9.0.0-alpha.22",
805
+ "comments": {
806
+ "prerelease": [
807
+ {
808
+ "comment": "chore: add more Babel plugins",
809
+ "author": "olfedias@microsoft.com",
810
+ "commit": "975140887c6ad2391f8db63003ed440239ec9c25",
811
+ "package": "@fluentui/react-utilities"
812
+ },
813
+ {
814
+ "comment": "Support custom `contains` check",
815
+ "author": "lingfan.gao@microsoft.com",
816
+ "commit": "90cd8ca21a6904680a1a06ba4800053dc69a9a48",
817
+ "package": "@fluentui/react-utilities"
818
+ }
819
+ ]
820
+ }
821
+ },
822
+ {
823
+ "date": "Mon, 03 May 2021 07:45:19 GMT",
824
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.21",
825
+ "version": "9.0.0-alpha.21",
826
+ "comments": {
827
+ "prerelease": [
828
+ {
829
+ "comment": "useOnClickOutside can be disabled",
830
+ "author": "lingfan.gao@microsoft.com",
831
+ "commit": "5e6aa4df0c03051e59d686d24b35f01c721a3b4e",
832
+ "package": "@fluentui/react-utilities"
833
+ }
834
+ ]
835
+ }
836
+ },
837
+ {
838
+ "date": "Fri, 30 Apr 2021 07:42:23 GMT",
839
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.20",
840
+ "version": "9.0.0-alpha.20",
841
+ "comments": {
842
+ "prerelease": [
843
+ {
844
+ "comment": "Upgrade to ts 4.0",
845
+ "author": "joschect@microsoft.com",
846
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
847
+ "package": "@fluentui/react-utilities"
848
+ },
849
+ {
850
+ "comment": "update useId() to be safe for SSR",
851
+ "author": "olfedias@microsoft.com",
852
+ "commit": "2a95add2ed379f3e061339d86ae03199ef0d5080",
853
+ "package": "@fluentui/react-utilities"
854
+ }
855
+ ],
856
+ "patch": [
857
+ {
858
+ "comment": "Bump @fluentui/eslint-plugin to v1.2.0",
859
+ "author": "joschect@microsoft.com",
860
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
861
+ "package": "@fluentui/react-utilities"
862
+ },
863
+ {
864
+ "comment": "Bump @fluentui/keyboard-key to v0.3.0",
865
+ "author": "joschect@microsoft.com",
866
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
867
+ "package": "@fluentui/react-utilities"
868
+ },
869
+ {
870
+ "comment": "Bump @fluentui/scripts to v1.0.0",
871
+ "author": "joschect@microsoft.com",
872
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
873
+ "package": "@fluentui/react-utilities"
874
+ }
875
+ ]
876
+ }
877
+ },
878
+ {
879
+ "date": "Fri, 23 Apr 2021 07:37:10 GMT",
880
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.19",
881
+ "version": "9.0.0-alpha.19",
882
+ "comments": {
883
+ "none": [
884
+ {
885
+ "comment": "disable lint rules",
886
+ "author": "olfedias@microsoft.com",
887
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
888
+ "package": "@fluentui/react-utilities"
889
+ }
890
+ ],
891
+ "patch": [
892
+ {
893
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.1",
894
+ "author": "olfedias@microsoft.com",
895
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
896
+ "package": "@fluentui/react-utilities"
897
+ },
898
+ {
899
+ "comment": "Bump @fluentui/keyboard-key to v0.2.17",
900
+ "author": "olfedias@microsoft.com",
901
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
902
+ "package": "@fluentui/react-utilities"
903
+ },
904
+ {
905
+ "comment": "Bump @fluentui/scripts to v1.0.0",
906
+ "author": "olfedias@microsoft.com",
907
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
908
+ "package": "@fluentui/react-utilities"
909
+ }
910
+ ]
911
+ }
912
+ },
913
+ {
914
+ "date": "Thu, 22 Apr 2021 07:33:28 GMT",
915
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.18",
916
+ "version": "9.0.0-alpha.18",
917
+ "comments": {
918
+ "prerelease": [
919
+ {
920
+ "comment": "dedupe isSSR definitions",
921
+ "author": "olfedias@microsoft.com",
922
+ "commit": "7feded422987e9c82f3250f419ab62118a52f9d4",
923
+ "package": "@fluentui/react-utilities"
924
+ },
925
+ {
926
+ "comment": "Remove default document in useOnClickOutside",
927
+ "author": "lingfan.gao@microsoft.com",
928
+ "commit": "619ff0af80bfed0e3ec64c2d56fc3ff4747faf7f",
929
+ "package": "@fluentui/react-utilities"
930
+ }
931
+ ]
932
+ }
933
+ },
934
+ {
935
+ "date": "Wed, 21 Apr 2021 07:31:50 GMT",
936
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.17",
937
+ "version": "9.0.0-alpha.17",
938
+ "comments": {
939
+ "prerelease": [
940
+ {
941
+ "comment": "Rename ax() to mergeClasses()",
942
+ "author": "miroslav.stastny@microsoft.com",
943
+ "commit": "64da065944467537d8f23a97ef4c19c3d60a529b",
944
+ "package": "@fluentui/react-utilities"
945
+ }
946
+ ]
947
+ }
948
+ },
949
+ {
950
+ "date": "Mon, 19 Apr 2021 07:33:33 GMT",
951
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.16",
952
+ "version": "9.0.0-alpha.16",
953
+ "comments": {
954
+ "none": [
955
+ {
956
+ "comment": "Remove unneeded react-app-polyfill devDependency",
957
+ "author": "elcraig@microsoft.com",
958
+ "commit": "fdc32557d49e5d70ea7e4af8957102d415b44547",
959
+ "package": "@fluentui/react-utilities"
960
+ }
961
+ ]
962
+ }
963
+ },
964
+ {
965
+ "date": "Fri, 16 Apr 2021 18:08:21 GMT",
966
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.16",
967
+ "version": "9.0.0-alpha.16",
968
+ "comments": {
969
+ "prerelease": [
970
+ {
971
+ "comment": "Extract usePrevious from descendants",
972
+ "author": "lingfan.gao@microsoft.com",
973
+ "commit": "202f547fef3255f5c59ff4ad912c67b4978ef457",
974
+ "package": "@fluentui/react-utilities"
975
+ }
976
+ ]
977
+ }
978
+ },
979
+ {
980
+ "date": "Thu, 01 Apr 2021 20:13:37 GMT",
981
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.15",
982
+ "version": "9.0.0-alpha.15",
983
+ "comments": {
984
+ "prerelease": [
985
+ {
986
+ "comment": "Adds isSSR method to react-utilities",
987
+ "author": "bsunderhus@microsoft.com",
988
+ "commit": "dec60bc3ea87901ff8c2c52989301ae8f4229721",
989
+ "package": "@fluentui/react-utilities"
990
+ }
991
+ ]
992
+ }
993
+ },
994
+ {
995
+ "date": "Wed, 31 Mar 2021 00:53:43 GMT",
996
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.14",
997
+ "version": "9.0.0-alpha.14",
998
+ "comments": {
999
+ "prerelease": [
1000
+ {
1001
+ "comment": "Add ComponentState helper type; improve type checking for makeMergeProps",
1002
+ "author": "behowell@microsoft.com",
1003
+ "commit": "e45eeaba8deb93e825a9d3f72e87a9c4c9225ea1",
1004
+ "package": "@fluentui/react-utilities"
1005
+ },
1006
+ {
1007
+ "comment": "Add shouldPreventDefaultOnKeyDown utility function to detect keyboard clicks",
1008
+ "author": "lingfan.gao@microsoft.com",
1009
+ "commit": "08a93f5d9f50d5caffff652d8f605a06804692e3",
1010
+ "package": "@fluentui/react-utilities"
1011
+ }
1012
+ ],
1013
+ "patch": [
1014
+ {
1015
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.0",
1016
+ "author": "elcraig@microsoft.com",
1017
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
1018
+ "package": "@fluentui/react-utilities"
1019
+ },
1020
+ {
1021
+ "comment": "Bump @fluentui/keyboard-key to v0.2.16",
1022
+ "author": "elcraig@microsoft.com",
1023
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
1024
+ "package": "@fluentui/react-utilities"
1025
+ },
1026
+ {
1027
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1028
+ "author": "elcraig@microsoft.com",
1029
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
1030
+ "package": "@fluentui/react-utilities"
1031
+ }
1032
+ ]
1033
+ }
1034
+ },
1035
+ {
1036
+ "date": "Tue, 30 Mar 2021 07:34:45 GMT",
1037
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.13",
1038
+ "version": "9.0.0-alpha.13",
1039
+ "comments": {
1040
+ "prerelease": [
1041
+ {
1042
+ "comment": "chore: restore \"sideEffects\" to enable treeshaking",
1043
+ "author": "olfedias@microsoft.com",
1044
+ "commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3",
1045
+ "package": "@fluentui/react-utilities"
1046
+ }
1047
+ ]
1048
+ }
1049
+ },
1050
+ {
1051
+ "date": "Fri, 26 Mar 2021 07:32:34 GMT",
1052
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.12",
1053
+ "version": "9.0.0-alpha.12",
1054
+ "comments": {
1055
+ "prerelease": [
1056
+ {
1057
+ "comment": "Add descendants utility",
1058
+ "author": "lingfan.gao@microsoft.com",
1059
+ "commit": "8b5295e082e07dbe428bff7b9548c80c338f07c8",
1060
+ "package": "@fluentui/react-utilities"
1061
+ }
1062
+ ]
1063
+ }
1064
+ },
1065
+ {
1066
+ "date": "Thu, 25 Mar 2021 07:33:24 GMT",
1067
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.11",
1068
+ "version": "9.0.0-alpha.11",
1069
+ "comments": {
1070
+ "prerelease": [
1071
+ {
1072
+ "comment": "Move descendants to react-utilities",
1073
+ "author": "lingfan.gao@microsoft.com",
1074
+ "commit": "31b7b0d625e40f818d33c5df0890b584caaf0e6c",
1075
+ "package": "@fluentui/react-utilities"
1076
+ }
1077
+ ]
1078
+ }
1079
+ },
1080
+ {
1081
+ "date": "Tue, 23 Mar 2021 07:31:43 GMT",
1082
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.10",
1083
+ "version": "9.0.0-alpha.10",
1084
+ "comments": {
1085
+ "prerelease": [
1086
+ {
1087
+ "comment": "Add useCallbackRef and useFirstMount hooks",
1088
+ "author": "lingfan.gao@microsoft.com",
1089
+ "commit": "fc0d87258337229e59ec1c1fec87dc91193858f1",
1090
+ "package": "@fluentui/react-utilities"
1091
+ }
1092
+ ]
1093
+ }
1094
+ },
1095
+ {
1096
+ "date": "Mon, 22 Mar 2021 07:34:09 GMT",
1097
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.9",
1098
+ "version": "9.0.0-alpha.9",
1099
+ "comments": {
1100
+ "none": [
1101
+ {
1102
+ "comment": "chore: apply single version policy on @testing-library packages",
1103
+ "author": "martinhochel@microsoft.com",
1104
+ "commit": "25c4ce7c54a2a65d3db4e5f2b13785468b669329",
1105
+ "package": "@fluentui/react-utilities"
1106
+ }
1107
+ ]
1108
+ }
1109
+ },
1110
+ {
1111
+ "date": "Thu, 18 Mar 2021 20:15:34 GMT",
1112
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.9",
1113
+ "version": "9.0.0-alpha.9",
1114
+ "comments": {
1115
+ "prerelease": [
1116
+ {
1117
+ "comment": "Add onUseClickOutside hook",
1118
+ "author": "lingfan.gao@microsoft.com",
1119
+ "commit": "165259181dd79866dc7ae5fa57c10a0f209d668f",
1120
+ "package": "@fluentui/react-utilities"
1121
+ }
1122
+ ]
1123
+ }
1124
+ },
1125
+ {
1126
+ "date": "Wed, 17 Mar 2021 07:35:44 GMT",
1127
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.8",
1128
+ "version": "9.0.0-alpha.8",
1129
+ "comments": {
1130
+ "none": [
1131
+ {
1132
+ "comment": "restore README for compose utils",
1133
+ "author": "olfedias@microsoft.com",
1134
+ "commit": "51902da6d01f0e9a790ca686e32eb94b31ecf733",
1135
+ "package": "@fluentui/react-utilities"
1136
+ }
1137
+ ]
1138
+ }
1139
+ },
1140
+ {
1141
+ "date": "Mon, 15 Mar 2021 07:36:20 GMT",
1142
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.8",
1143
+ "version": "9.0.0-alpha.8",
1144
+ "comments": {
1145
+ "prerelease": [
1146
+ {
1147
+ "comment": "Remove set-version references",
1148
+ "author": "elcraig@microsoft.com",
1149
+ "commit": "b0bef818ea07833d9b9797ef26a4b24200ed0307",
1150
+ "package": "@fluentui/react-utilities"
1151
+ }
1152
+ ],
1153
+ "none": [
1154
+ {
1155
+ "comment": "Remove unneeded scripts",
1156
+ "author": "elcraig@microsoft.com",
1157
+ "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
1158
+ "package": "@fluentui/react-utilities"
1159
+ }
1160
+ ]
1161
+ }
1162
+ },
1163
+ {
1164
+ "date": "Fri, 12 Mar 2021 20:04:27 GMT",
1165
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.7",
1166
+ "version": "9.0.0-alpha.7",
1167
+ "comments": {
1168
+ "none": [
1169
+ {
1170
+ "comment": "Move `@types/node` and `@types/webpack-env` devDependencies to root, and remove unneeded references",
1171
+ "author": "elcraig@microsoft.com",
1172
+ "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
1173
+ "package": "@fluentui/react-utilities"
1174
+ }
1175
+ ]
1176
+ }
1177
+ },
1178
+ {
1179
+ "date": "Wed, 10 Mar 2021 07:34:39 GMT",
1180
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.7",
1181
+ "version": "9.0.0-alpha.7",
1182
+ "comments": {
1183
+ "none": [
1184
+ {
1185
+ "comment": "remove a JSDoc comment",
1186
+ "author": "olfedias@microsoft.com",
1187
+ "commit": "7f5086718eec496063c6830302c162117fcfc4ec",
1188
+ "package": "@fluentui/react-utilities"
1189
+ }
1190
+ ],
1191
+ "prerelease": [
1192
+ {
1193
+ "comment": "useControllableValue should behave natively",
1194
+ "author": "lingfan.gao@microsoft.com",
1195
+ "commit": "458d1a05b3288c5d36da578f954df06f227066bf",
1196
+ "package": "@fluentui/react-utilities"
1197
+ }
1198
+ ]
1199
+ }
1200
+ },
1201
+ {
1202
+ "date": "Fri, 05 Mar 2021 20:30:59 GMT",
1203
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.6",
1204
+ "version": "9.0.0-alpha.6",
1205
+ "comments": {
1206
+ "prerelease": [
1207
+ {
1208
+ "comment": "useIsomorphicLayout effect with useEventCallback",
1209
+ "author": "lingfan.gao@microsoft.com",
1210
+ "commit": "f7b97e9dc1cf0fec0201533042db4befb800cbd0",
1211
+ "package": "@fluentui/react-utilities"
1212
+ }
1213
+ ]
1214
+ }
1215
+ },
1216
+ {
1217
+ "date": "Wed, 03 Mar 2021 00:10:09 GMT",
1218
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.5",
1219
+ "version": "9.0.0-alpha.5",
1220
+ "comments": {
1221
+ "prerelease": [
1222
+ {
1223
+ "comment": "Remove set-version dependency from converged components",
1224
+ "author": "miroslav.stastny@microsoft.com",
1225
+ "commit": "712ca04cd82ad2b3426762a409cdce05a7cc80fc",
1226
+ "package": "@fluentui/react-utilities"
1227
+ }
1228
+ ],
1229
+ "patch": [
1230
+ {
1231
+ "comment": "Bump @fluentui/jest-serializer-merge-styles to v8.0.2",
1232
+ "author": "elcraig@microsoft.com",
1233
+ "commit": "9fa8d85af3c60daab15f5a91ec876c8648b018f2",
1234
+ "package": "@fluentui/react-utilities"
1235
+ }
1236
+ ]
1237
+ }
1238
+ },
1239
+ {
1240
+ "date": "Tue, 02 Mar 2021 07:24:27 GMT",
1241
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.4",
1242
+ "version": "9.0.0-alpha.4",
1243
+ "comments": {
1244
+ "prerelease": [
1245
+ {
1246
+ "comment": "remove dependency on @fluentui/utilities",
1247
+ "author": "olfedias@microsoft.com",
1248
+ "commit": "529d34473f30680fa35928e0d977434ab2ed2173",
1249
+ "package": "@fluentui/react-utilities"
1250
+ }
1251
+ ]
1252
+ }
1253
+ },
1254
+ {
1255
+ "date": "Fri, 26 Feb 2021 01:16:27 GMT",
1256
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.3",
1257
+ "version": "9.0.0-alpha.3",
1258
+ "comments": {
1259
+ "prerelease": [
1260
+ {
1261
+ "comment": "Update references to major-bumped packages",
1262
+ "author": "elcraig@microsoft.com",
1263
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1264
+ "package": "@fluentui/react-utilities"
1265
+ }
1266
+ ],
1267
+ "patch": [
1268
+ {
1269
+ "comment": "Bump @fluentui/eslint-plugin to v1.0.1",
1270
+ "author": "elcraig@microsoft.com",
1271
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1272
+ "package": "@fluentui/react-utilities"
1273
+ },
1274
+ {
1275
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1276
+ "author": "elcraig@microsoft.com",
1277
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1278
+ "package": "@fluentui/react-utilities"
1279
+ },
1280
+ {
1281
+ "comment": "Bump @fluentui/jest-serializer-merge-styles to v8.0.1",
1282
+ "author": "elcraig@microsoft.com",
1283
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1284
+ "package": "@fluentui/react-utilities"
1285
+ },
1286
+ {
1287
+ "comment": "Bump @fluentui/set-version to v8.0.1",
1288
+ "author": "elcraig@microsoft.com",
1289
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1290
+ "package": "@fluentui/react-utilities"
1291
+ },
1292
+ {
1293
+ "comment": "Bump @fluentui/utilities to v8.0.1",
1294
+ "author": "elcraig@microsoft.com",
1295
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1296
+ "package": "@fluentui/react-utilities"
1297
+ }
1298
+ ]
1299
+ }
1300
+ },
1301
+ {
1302
+ "date": "Thu, 25 Feb 2021 01:15:27 GMT",
1303
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.2",
1304
+ "version": "9.0.0-alpha.2",
1305
+ "comments": {
1306
+ "prerelease": [
1307
+ {
1308
+ "comment": "Remove dep array from useEventCallback",
1309
+ "author": "lingfan.gao@microsoft.com",
1310
+ "commit": "f8aad9bd5f65b102478944d69e841b37a19d0599",
1311
+ "package": "@fluentui/react-utilities"
1312
+ }
1313
+ ]
1314
+ }
1315
+ },
1316
+ {
1317
+ "date": "Wed, 24 Feb 2021 00:05:29 GMT",
1318
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.1",
1319
+ "version": "9.0.0-alpha.1",
1320
+ "comments": {
1321
+ "prerelease": [
1322
+ {
1323
+ "comment": "bump version to v9",
1324
+ "author": "olfedias@microsoft.com",
1325
+ "commit": "74da15f2f1fb10fe089fcaef24a47ac5dba89ad2",
1326
+ "package": "@fluentui/react-utilities"
1327
+ }
1328
+ ]
1329
+ }
1330
+ },
1331
+ {
1332
+ "date": "Mon, 22 Feb 2021 12:26:22 GMT",
1333
+ "tag": "@fluentui/react-utilities_v0.4.0",
1334
+ "version": "0.4.0",
1335
+ "comments": {
1336
+ "patch": [
1337
+ {
1338
+ "comment": "align typings for shorthands",
1339
+ "author": "olfedias@microsoft.com",
1340
+ "commit": "a37bab178f676de967b937a8bad1a309e3e67fd8",
1341
+ "package": "@fluentui/react-utilities"
1342
+ }
1343
+ ],
1344
+ "minor": [
1345
+ {
1346
+ "comment": "Breaks dependency on react-hooks for convergence",
1347
+ "author": "lingfan.gao@microsoft.com",
1348
+ "commit": "68bc4c7d68b5c01022658fcc485342670d56df39",
1349
+ "package": "@fluentui/react-utilities"
1350
+ }
1351
+ ],
1352
+ "prerelease": [
1353
+ {
1354
+ "comment": "Bump @fluentui/jest-serializer-merge-styles to v8.0.0-beta.7",
1355
+ "author": "elcraig@microsoft.com",
1356
+ "commit": "a37bab178f676de967b937a8bad1a309e3e67fd8",
1357
+ "package": "@fluentui/react-utilities"
1358
+ },
1359
+ {
1360
+ "comment": "Bump @fluentui/utilities to v8.0.0-beta.15",
1361
+ "author": "elcraig@microsoft.com",
1362
+ "commit": "a37bab178f676de967b937a8bad1a309e3e67fd8",
1363
+ "package": "@fluentui/react-utilities"
1364
+ }
1365
+ ]
1366
+ }
1367
+ },
1368
+ {
1369
+ "date": "Thu, 18 Feb 2021 19:38:50 GMT",
1370
+ "tag": "@fluentui/react-utilities_v0.3.1",
1371
+ "version": "0.3.1",
1372
+ "comments": {
1373
+ "patch": [
1374
+ {
1375
+ "comment": "Allow React 17 in peerDependencies",
1376
+ "author": "elcraig@microsoft.com",
1377
+ "commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4",
1378
+ "package": "@fluentui/react-utilities"
1379
+ }
1380
+ ],
1381
+ "prerelease": [
1382
+ {
1383
+ "comment": "Bump @fluentui/utilities to v8.0.0-beta.14",
1384
+ "author": "elcraig@microsoft.com",
1385
+ "commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4",
1386
+ "package": "@fluentui/react-utilities"
1387
+ }
1388
+ ]
1389
+ }
1390
+ },
1391
+ {
1392
+ "date": "Thu, 18 Feb 2021 12:27:34 GMT",
1393
+ "tag": "@fluentui/react-utilities_v0.3.0",
1394
+ "version": "0.3.0",
1395
+ "comments": {
1396
+ "minor": [
1397
+ {
1398
+ "comment": "include all utils from fluentui/react-utils",
1399
+ "author": "olfedias@microsoft.com",
1400
+ "commit": "e0d4772fbaff0afd7ae0a2f85b53c4ca3831a701",
1401
+ "package": "@fluentui/react-utilities"
1402
+ }
1403
+ ],
1404
+ "prerelease": [
1405
+ {
1406
+ "comment": "Bump @fluentui/eslint-plugin to v1.0.0-beta.2",
1407
+ "author": "elcraig@microsoft.com",
1408
+ "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
1409
+ "package": "@fluentui/react-utilities"
1410
+ },
1411
+ {
1412
+ "comment": "Bump @fluentui/utilities to v8.0.0-beta.13",
1413
+ "author": "elcraig@microsoft.com",
1414
+ "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
1415
+ "package": "@fluentui/react-utilities"
1416
+ },
1417
+ {
1418
+ "comment": "Bump @fluentui/jest-serializer-merge-styles to v8.0.0-beta.6",
1419
+ "author": "elcraig@microsoft.com",
1420
+ "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
1421
+ "package": "@fluentui/react-utilities"
1422
+ },
1423
+ {
1424
+ "comment": "Bump @fluentui/set-version to v8.0.0-beta.2",
1425
+ "author": "elcraig@microsoft.com",
1426
+ "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
1427
+ "package": "@fluentui/react-utilities"
1428
+ },
1429
+ {
1430
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1431
+ "author": "elcraig@microsoft.com",
1432
+ "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
1433
+ "package": "@fluentui/react-utilities"
1434
+ }
1435
+ ]
1436
+ }
1437
+ },
1438
+ {
1439
+ "date": "Wed, 17 Feb 2021 12:21:39 GMT",
1440
+ "tag": "@fluentui/react-utilities_v0.2.4",
1441
+ "version": "0.2.4",
1442
+ "comments": {
1443
+ "none": [
1444
+ {
1445
+ "comment": "chore: apply single version policy on jest",
1446
+ "author": "martinhochel@microsoft.com",
1447
+ "commit": "0de01d003589b5e2f166bc070729dca20125a091",
1448
+ "package": "@fluentui/react-utilities"
1449
+ }
1450
+ ]
1451
+ }
1452
+ },
1453
+ {
1454
+ "date": "Thu, 11 Feb 2021 12:18:41 GMT",
1455
+ "tag": "@fluentui/react-utilities_v0.2.4",
1456
+ "version": "0.2.4",
1457
+ "comments": {
1458
+ "none": [
1459
+ {
1460
+ "comment": "Bump @fluentui/jest-serializer-merge-styles to v8.0.0-beta.5",
1461
+ "author": "martinhochel@microsoft.com",
1462
+ "commit": "7566015a7edd355b4fcd3796bc8f44f732ef0877",
1463
+ "package": "@fluentui/react-utilities"
1464
+ }
1465
+ ]
1466
+ }
1467
+ },
1468
+ {
1469
+ "date": "Wed, 03 Feb 2021 05:51:40 GMT",
1470
+ "tag": "@fluentui/react-utilities_v0.2.4",
1471
+ "version": "0.2.4",
1472
+ "comments": {
1473
+ "none": [
1474
+ {
1475
+ "comment": "refactor: remove unused .npmrc in packages",
1476
+ "author": "hantatsang@gmail.com",
1477
+ "commit": "c688ee2ea6f192c4874974ebf11598523ccf6db9",
1478
+ "package": "@fluentui/react-utilities"
1479
+ }
1480
+ ]
1481
+ }
1482
+ },
1483
+ {
1484
+ "date": "Mon, 01 Feb 2021 12:23:48 GMT",
1485
+ "tag": "@fluentui/react-utilities_v0.2.4",
1486
+ "version": "0.2.4",
1487
+ "comments": {
1488
+ "patch": [
1489
+ {
1490
+ "comment": "add prerelease in disallowed change type for version packages and fix current versioning.",
1491
+ "author": "xgao@microsoft.com",
1492
+ "commit": "9ec4369a9e7850d7ab37803f931d1a0cf30743a9",
1493
+ "package": "@fluentui/react-utilities"
1494
+ }
1495
+ ]
1496
+ }
1497
+ },
1498
+ {
1499
+ "date": "Thu, 28 Jan 2021 12:25:56 GMT",
1500
+ "tag": "@fluentui/react-utilities_v0.2.4-4",
1501
+ "version": "0.2.4-4",
1502
+ "comments": {
1503
+ "none": [
1504
+ {
1505
+ "comment": "Delete update-api script which is no longer needed",
1506
+ "author": "elcraig@microsoft.com",
1507
+ "commit": "943a9ef5768a9cd77ade84217d142f93b1be6127",
1508
+ "package": "@fluentui/react-utilities"
1509
+ },
1510
+ {
1511
+ "comment": "Remove incorrect mock of requestAnimationFrame",
1512
+ "author": "elcraig@microsoft.com",
1513
+ "commit": "6bd0ce75decd9f62c40967bd7a59bfff960a0105",
1514
+ "package": "@fluentui/react-utilities"
1515
+ }
1516
+ ],
1517
+ "prerelease": [
1518
+ {
1519
+ "comment": "Updating to webpack 5, latest typings, latest loaders and plugins.",
1520
+ "author": "dzearing@microsoft.com",
1521
+ "commit": "9c2c4a61c7d9eb8d153945ff57962118b569ea5b",
1522
+ "package": "@fluentui/react-utilities"
1523
+ }
1524
+ ]
1525
+ }
1526
+ },
1527
+ {
1528
+ "date": "Thu, 21 Jan 2021 12:36:12 GMT",
1529
+ "tag": "@fluentui/react-utilities_v0.2.4-3",
1530
+ "version": "0.2.4-3",
1531
+ "comments": {
1532
+ "prerelease": [
1533
+ {
1534
+ "comment": " Updating dev dependencies.",
1535
+ "author": "dzearing@microsoft.com",
1536
+ "commit": "f7813725750ecc893ca37792bbb004e554591279",
1537
+ "package": "@fluentui/react-utilities"
1538
+ }
1539
+ ]
1540
+ }
1541
+ },
1542
+ {
1543
+ "date": "Fri, 23 Oct 2020 03:26:15 GMT",
1544
+ "tag": "@fluentui/react-utilities_v0.2.3",
1545
+ "version": "0.2.3",
1546
+ "comments": {
1547
+ "prerelease": [
1548
+ {
1549
+ "comment": "Add missing version.ts; Remove unneeded package dependencies.",
1550
+ "author": "xgao@microsoft.com",
1551
+ "commit": "9775badfc989f8820a437367a53f761cc3ca7512",
1552
+ "package": "@fluentui/react-utilities"
1553
+ },
1554
+ {
1555
+ "comment": "Remove react-dom from peerDependencies",
1556
+ "author": "elcraig@microsoft.com",
1557
+ "commit": "c57941f88df0dd5e7a9e10da84471e435b669ef8",
1558
+ "package": "@fluentui/react-utilities"
1559
+ }
1560
+ ],
1561
+ "none": [
1562
+ {
1563
+ "comment": "Update npmignore",
1564
+ "author": "elcraig@microsoft.com",
1565
+ "commit": "aec02d96e7cef745e9867c03a528426a5ad28038",
1566
+ "package": "@fluentui/react-utilities"
1567
+ },
1568
+ {
1569
+ "comment": "Rename build-related packages",
1570
+ "author": "elcraig@microsoft.com",
1571
+ "commit": "32a158fd2c7fca8dc308a3e41f692817e6c26c44",
1572
+ "package": "@fluentui/react-utilities"
1573
+ },
1574
+ {
1575
+ "comment": "Update package version for @fluentui/react version 8 beta release.",
1576
+ "author": "xgao@microsoft.com",
1577
+ "commit": "ee2622a8572c11f1eeb9d7f1c8d759d6ae0281ca",
1578
+ "package": "@fluentui/react-utilities"
1579
+ }
1580
+ ],
1581
+ "patch": [
1582
+ {
1583
+ "comment": "Rename @uifabric/set-version to @fluentui/set-version",
1584
+ "author": "ololubek@microsoft.com",
1585
+ "commit": "2eba5d5be163a7a64975f058dc38b465f2363064",
1586
+ "package": "@fluentui/react-utilities"
1587
+ }
1588
+ ]
1589
+ }
1590
+ },
1591
+ {
1592
+ "date": "Fri, 25 Sep 2020 12:25:17 GMT",
1593
+ "tag": "@fluentui/react-utilities_v0.2.2",
1594
+ "version": "0.2.2",
1595
+ "comments": {
1596
+ "none": [
1597
+ {
1598
+ "comment": "Remove same-package path aliases",
1599
+ "author": "elcraig@microsoft.com",
1600
+ "commit": "85432b281ce55e1a990dd811e5adebbad84e7cb8",
1601
+ "package": "@fluentui/react-utilities"
1602
+ }
1603
+ ]
1604
+ }
1605
+ },
1606
+ {
1607
+ "date": "Wed, 16 Sep 2020 12:27:22 GMT",
1608
+ "tag": "@fluentui/react-utilities_v0.2.2",
1609
+ "version": "0.2.2",
1610
+ "comments": {
1611
+ "none": [
1612
+ {
1613
+ "comment": "Update API Extractor settings to share config and handle newlines better",
1614
+ "author": "elcraig@microsoft.com",
1615
+ "commit": "7d093f59a06527fc39656c903cab4470650e3acd",
1616
+ "package": "@fluentui/react-utilities"
1617
+ }
1618
+ ]
1619
+ }
1620
+ },
1621
+ {
1622
+ "date": "Tue, 18 Aug 2020 07:58:00 GMT",
1623
+ "tag": "@fluentui/react-utilities_v0.1.1",
1624
+ "version": "0.1.1",
1625
+ "comments": {
1626
+ "patch": [
1627
+ {
1628
+ "comment": "Scaffolding @fluentui/react-utilities package.",
1629
+ "author": "dzearing@hotmail.com",
1630
+ "commit": "5369cd681a47a6b5640b0387d7db9367bdd6f1ba",
1631
+ "package": "@fluentui/react-utilities"
1632
+ }
1633
+ ]
1634
+ }
1635
+ }
1636
+ ]
1637
+ }