@fluentui/react-utilities 9.0.0-alpha.9 → 9.0.0-beta.4

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 (283) hide show
  1. package/CHANGELOG.json +1132 -1
  2. package/CHANGELOG.md +492 -2
  3. package/dist/react-utilities.d.ts +335 -67
  4. package/lib/compose/getSlots.d.ts +13 -4
  5. package/lib/compose/getSlots.js +44 -32
  6. package/lib/compose/getSlots.js.map +1 -1
  7. package/lib/compose/index.d.ts +1 -2
  8. package/lib/compose/index.js +2 -2
  9. package/lib/compose/index.js.map +1 -1
  10. package/lib/compose/nullRender.js +1 -1
  11. package/lib/compose/nullRender.js.map +1 -1
  12. package/lib/compose/resolveShorthand.d.ts +12 -0
  13. package/lib/compose/resolveShorthand.js +31 -0
  14. package/lib/compose/resolveShorthand.js.map +1 -0
  15. package/lib/compose/types.d.ts +95 -21
  16. package/lib/compose/types.js +5 -0
  17. package/lib/compose/types.js.map +1 -1
  18. package/lib/hooks/index.d.ts +9 -1
  19. package/lib/hooks/index.js +9 -1
  20. package/lib/hooks/index.js.map +1 -1
  21. package/lib/hooks/useBoolean.d.ts +2 -2
  22. package/lib/hooks/useBoolean.js +16 -11
  23. package/lib/hooks/useBoolean.js.map +1 -1
  24. package/lib/hooks/useConst.js +15 -12
  25. package/lib/hooks/useConst.js.map +1 -1
  26. package/lib/hooks/useControllableState.d.ts +21 -0
  27. package/lib/hooks/useControllableState.js +68 -0
  28. package/lib/hooks/useControllableState.js.map +1 -0
  29. package/lib/hooks/useControllableValue.js +47 -50
  30. package/lib/hooks/useControllableValue.js.map +1 -1
  31. package/lib/hooks/useEventCallback.d.ts +2 -2
  32. package/lib/hooks/useEventCallback.js +14 -17
  33. package/lib/hooks/useEventCallback.js.map +1 -1
  34. package/lib/hooks/useFirstMount.d.ts +11 -0
  35. package/lib/hooks/useFirstMount.js +23 -0
  36. package/lib/hooks/useFirstMount.js.map +1 -0
  37. package/lib/hooks/useForceUpdate.d.ts +4 -0
  38. package/lib/hooks/useForceUpdate.js +9 -0
  39. package/lib/hooks/useForceUpdate.js.map +1 -0
  40. package/lib/hooks/useId.d.ts +7 -3
  41. package/lib/hooks/useId.js +13 -17
  42. package/lib/hooks/useId.js.map +1 -1
  43. package/lib/hooks/useIsomorphicLayoutEffect.d.ts +9 -0
  44. package/lib/hooks/useIsomorphicLayoutEffect.js +13 -4
  45. package/lib/hooks/useIsomorphicLayoutEffect.js.map +1 -1
  46. package/lib/hooks/useMergedRefs.js +16 -20
  47. package/lib/hooks/useMergedRefs.js.map +1 -1
  48. package/lib/hooks/useMount.d.ts +6 -0
  49. package/lib/hooks/useMount.js +17 -0
  50. package/lib/hooks/useMount.js.map +1 -0
  51. package/lib/hooks/useOnClickOutside.d.ts +14 -4
  52. package/lib/hooks/useOnClickOutside.js +129 -18
  53. package/lib/hooks/useOnClickOutside.js.map +1 -1
  54. package/lib/hooks/useOnScrollOutside.d.ts +5 -0
  55. package/lib/hooks/useOnScrollOutside.js +36 -0
  56. package/lib/hooks/useOnScrollOutside.js.map +1 -0
  57. package/lib/hooks/usePrevious.d.ts +1 -0
  58. package/lib/hooks/usePrevious.js +9 -0
  59. package/lib/hooks/usePrevious.js.map +1 -0
  60. package/lib/hooks/useTimeout.d.ts +8 -0
  61. package/lib/hooks/useTimeout.js +29 -0
  62. package/lib/hooks/useTimeout.js.map +1 -0
  63. package/lib/hooks/useUnmount.d.ts +6 -0
  64. package/lib/hooks/useUnmount.js +17 -0
  65. package/lib/hooks/useUnmount.js.map +1 -0
  66. package/lib/index.d.ts +1 -0
  67. package/lib/index.js +1 -0
  68. package/lib/index.js.map +1 -1
  69. package/lib/ssr/SSRContext.d.ts +33 -0
  70. package/lib/ssr/SSRContext.js +65 -0
  71. package/lib/ssr/SSRContext.js.map +1 -0
  72. package/lib/ssr/canUseDOM.d.ts +4 -0
  73. package/lib/ssr/canUseDOM.js +8 -0
  74. package/lib/ssr/canUseDOM.js.map +1 -0
  75. package/lib/ssr/index.d.ts +2 -0
  76. package/lib/ssr/index.js +3 -0
  77. package/lib/ssr/index.js.map +1 -0
  78. package/lib/tsdoc-metadata.json +1 -1
  79. package/lib/utils/applyTriggerPropsToChildren.d.ts +5 -0
  80. package/lib/utils/applyTriggerPropsToChildren.js +16 -0
  81. package/lib/utils/applyTriggerPropsToChildren.js.map +1 -0
  82. package/lib/utils/clamp.d.ts +8 -0
  83. package/lib/utils/clamp.js +9 -0
  84. package/lib/utils/clamp.js.map +1 -0
  85. package/lib/utils/getNativeElementProps.d.ts +22 -0
  86. package/lib/utils/getNativeElementProps.js +48 -24
  87. package/lib/utils/getNativeElementProps.js.map +1 -1
  88. package/lib/utils/getRTLSafeKey.d.ts +4 -0
  89. package/lib/utils/getRTLSafeKey.js +21 -0
  90. package/lib/utils/getRTLSafeKey.js.map +1 -0
  91. package/lib/utils/index.d.ts +5 -0
  92. package/lib/utils/index.js +5 -0
  93. package/lib/utils/index.js.map +1 -1
  94. package/lib/utils/omit.d.ts +1 -1
  95. package/lib/utils/omit.js +9 -7
  96. package/lib/utils/omit.js.map +1 -1
  97. package/lib/utils/onlyChild.d.ts +5 -0
  98. package/lib/utils/onlyChild.js +13 -0
  99. package/lib/utils/onlyChild.js.map +1 -0
  100. package/lib/utils/properties.js +80 -282
  101. package/lib/utils/properties.js.map +1 -1
  102. package/lib/utils/shouldPreventDefaultOnKeyDown.d.ts +7 -0
  103. package/lib/utils/shouldPreventDefaultOnKeyDown.js +20 -0
  104. package/lib/utils/shouldPreventDefaultOnKeyDown.js.map +1 -0
  105. package/lib-commonjs/compose/getSlots.d.ts +13 -4
  106. package/lib-commonjs/compose/getSlots.js +57 -35
  107. package/lib-commonjs/compose/getSlots.js.map +1 -1
  108. package/lib-commonjs/compose/index.d.ts +1 -2
  109. package/lib-commonjs/compose/index.js +12 -4
  110. package/lib-commonjs/compose/index.js.map +1 -1
  111. package/lib-commonjs/compose/nullRender.js +9 -2
  112. package/lib-commonjs/compose/nullRender.js.map +1 -1
  113. package/lib-commonjs/compose/resolveShorthand.d.ts +12 -0
  114. package/lib-commonjs/compose/resolveShorthand.js +41 -0
  115. package/lib-commonjs/compose/resolveShorthand.js.map +1 -0
  116. package/lib-commonjs/compose/types.d.ts +95 -21
  117. package/lib-commonjs/compose/types.js +8 -1
  118. package/lib-commonjs/compose/types.js.map +1 -1
  119. package/lib-commonjs/hooks/index.d.ts +9 -1
  120. package/lib-commonjs/hooks/index.js +31 -4
  121. package/lib-commonjs/hooks/index.js.map +1 -1
  122. package/lib-commonjs/hooks/useBoolean.d.ts +2 -2
  123. package/lib-commonjs/hooks/useBoolean.js +27 -14
  124. package/lib-commonjs/hooks/useBoolean.js.map +1 -1
  125. package/lib-commonjs/hooks/useConst.js +24 -14
  126. package/lib-commonjs/hooks/useConst.js.map +1 -1
  127. package/lib-commonjs/hooks/useControllableState.d.ts +21 -0
  128. package/lib-commonjs/hooks/useControllableState.js +78 -0
  129. package/lib-commonjs/hooks/useControllableState.js.map +1 -0
  130. package/lib-commonjs/hooks/useControllableValue.js +58 -53
  131. package/lib-commonjs/hooks/useControllableValue.js.map +1 -1
  132. package/lib-commonjs/hooks/useEventCallback.d.ts +2 -2
  133. package/lib-commonjs/hooks/useEventCallback.js +26 -20
  134. package/lib-commonjs/hooks/useEventCallback.js.map +1 -1
  135. package/lib-commonjs/hooks/useFirstMount.d.ts +11 -0
  136. package/lib-commonjs/hooks/useFirstMount.js +33 -0
  137. package/lib-commonjs/hooks/useFirstMount.js.map +1 -0
  138. package/lib-commonjs/hooks/useForceUpdate.d.ts +4 -0
  139. package/lib-commonjs/hooks/useForceUpdate.js +19 -0
  140. package/lib-commonjs/hooks/useForceUpdate.js.map +1 -0
  141. package/lib-commonjs/hooks/useId.d.ts +7 -3
  142. package/lib-commonjs/hooks/useId.js +25 -21
  143. package/lib-commonjs/hooks/useId.js.map +1 -1
  144. package/lib-commonjs/hooks/useIsomorphicLayoutEffect.d.ts +9 -0
  145. package/lib-commonjs/hooks/useIsomorphicLayoutEffect.js +22 -6
  146. package/lib-commonjs/hooks/useIsomorphicLayoutEffect.js.map +1 -1
  147. package/lib-commonjs/hooks/useMergedRefs.js +25 -22
  148. package/lib-commonjs/hooks/useMergedRefs.js.map +1 -1
  149. package/lib-commonjs/hooks/useMount.d.ts +6 -0
  150. package/lib-commonjs/hooks/useMount.js +27 -0
  151. package/lib-commonjs/hooks/useMount.js.map +1 -0
  152. package/lib-commonjs/hooks/useOnClickOutside.d.ts +14 -4
  153. package/lib-commonjs/hooks/useOnClickOutside.js +141 -21
  154. package/lib-commonjs/hooks/useOnClickOutside.js.map +1 -1
  155. package/lib-commonjs/hooks/useOnScrollOutside.d.ts +5 -0
  156. package/lib-commonjs/hooks/useOnScrollOutside.js +47 -0
  157. package/lib-commonjs/hooks/useOnScrollOutside.js.map +1 -0
  158. package/lib-commonjs/hooks/usePrevious.d.ts +1 -0
  159. package/lib-commonjs/hooks/usePrevious.js +19 -0
  160. package/lib-commonjs/hooks/usePrevious.js.map +1 -0
  161. package/lib-commonjs/hooks/useTimeout.d.ts +8 -0
  162. package/lib-commonjs/hooks/useTimeout.js +40 -0
  163. package/lib-commonjs/hooks/useTimeout.js.map +1 -0
  164. package/lib-commonjs/hooks/useUnmount.d.ts +6 -0
  165. package/lib-commonjs/hooks/useUnmount.js +27 -0
  166. package/lib-commonjs/hooks/useUnmount.js.map +1 -0
  167. package/lib-commonjs/index.d.ts +1 -0
  168. package/lib-commonjs/index.js +11 -2
  169. package/lib-commonjs/index.js.map +1 -1
  170. package/lib-commonjs/ssr/SSRContext.d.ts +33 -0
  171. package/lib-commonjs/ssr/SSRContext.js +80 -0
  172. package/lib-commonjs/ssr/SSRContext.js.map +1 -0
  173. package/lib-commonjs/ssr/canUseDOM.d.ts +4 -0
  174. package/lib-commonjs/ssr/canUseDOM.js +17 -0
  175. package/lib-commonjs/ssr/canUseDOM.js.map +1 -0
  176. package/lib-commonjs/ssr/index.d.ts +2 -0
  177. package/lib-commonjs/ssr/index.js +12 -0
  178. package/lib-commonjs/ssr/index.js.map +1 -0
  179. package/lib-commonjs/utils/applyTriggerPropsToChildren.d.ts +5 -0
  180. package/lib-commonjs/utils/applyTriggerPropsToChildren.js +27 -0
  181. package/lib-commonjs/utils/applyTriggerPropsToChildren.js.map +1 -0
  182. package/lib-commonjs/utils/clamp.d.ts +8 -0
  183. package/lib-commonjs/utils/clamp.js +18 -0
  184. package/lib-commonjs/utils/clamp.js.map +1 -0
  185. package/lib-commonjs/utils/getNativeElementProps.d.ts +22 -0
  186. package/lib-commonjs/utils/getNativeElementProps.js +58 -25
  187. package/lib-commonjs/utils/getNativeElementProps.js.map +1 -1
  188. package/lib-commonjs/utils/getRTLSafeKey.d.ts +4 -0
  189. package/lib-commonjs/utils/getRTLSafeKey.js +30 -0
  190. package/lib-commonjs/utils/getRTLSafeKey.js.map +1 -0
  191. package/lib-commonjs/utils/index.d.ts +5 -0
  192. package/lib-commonjs/utils/index.js +19 -2
  193. package/lib-commonjs/utils/index.js.map +1 -1
  194. package/lib-commonjs/utils/omit.d.ts +1 -1
  195. package/lib-commonjs/utils/omit.js +16 -8
  196. package/lib-commonjs/utils/omit.js.map +1 -1
  197. package/lib-commonjs/utils/onlyChild.d.ts +5 -0
  198. package/lib-commonjs/utils/onlyChild.js +23 -0
  199. package/lib-commonjs/utils/onlyChild.js.map +1 -0
  200. package/lib-commonjs/utils/properties.js +84 -280
  201. package/lib-commonjs/utils/properties.js.map +1 -1
  202. package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.d.ts +7 -0
  203. package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.js +30 -0
  204. package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.js.map +1 -0
  205. package/package.json +11 -9
  206. package/NOTICE.txt +0 -0
  207. package/config/api-extractor.json +0 -3
  208. package/config/tests.js +0 -7
  209. package/etc/react-utilities.api.md +0 -207
  210. package/just.config.ts +0 -3
  211. package/lib/compose/makeMergeProps.d.ts +0 -15
  212. package/lib/compose/makeMergeProps.js +0 -96
  213. package/lib/compose/makeMergeProps.js.map +0 -1
  214. package/lib/compose/resolveShorthandProps.d.ts +0 -7
  215. package/lib/compose/resolveShorthandProps.js +0 -27
  216. package/lib/compose/resolveShorthandProps.js.map +0 -1
  217. package/lib-amd/compose/getSlots.d.ts +0 -20
  218. package/lib-amd/compose/getSlots.js +0 -51
  219. package/lib-amd/compose/getSlots.js.map +0 -1
  220. package/lib-amd/compose/index.d.ts +0 -5
  221. package/lib-amd/compose/index.js +0 -9
  222. package/lib-amd/compose/index.js.map +0 -1
  223. package/lib-amd/compose/makeMergeProps.d.ts +0 -15
  224. package/lib-amd/compose/makeMergeProps.js +0 -98
  225. package/lib-amd/compose/makeMergeProps.js.map +0 -1
  226. package/lib-amd/compose/nullRender.d.ts +0 -4
  227. package/lib-amd/compose/nullRender.js +0 -9
  228. package/lib-amd/compose/nullRender.js.map +0 -1
  229. package/lib-amd/compose/resolveShorthandProps.d.ts +0 -7
  230. package/lib-amd/compose/resolveShorthandProps.js +0 -29
  231. package/lib-amd/compose/resolveShorthandProps.js.map +0 -1
  232. package/lib-amd/compose/types.d.ts +0 -29
  233. package/lib-amd/compose/types.js +0 -5
  234. package/lib-amd/compose/types.js.map +0 -1
  235. package/lib-amd/hooks/index.d.ts +0 -8
  236. package/lib-amd/hooks/index.js +0 -13
  237. package/lib-amd/hooks/index.js.map +0 -1
  238. package/lib-amd/hooks/useBoolean.d.ts +0 -17
  239. package/lib-amd/hooks/useBoolean.js +0 -26
  240. package/lib-amd/hooks/useBoolean.js.map +0 -1
  241. package/lib-amd/hooks/useConst.d.ts +0 -12
  242. package/lib-amd/hooks/useConst.js +0 -31
  243. package/lib-amd/hooks/useConst.js.map +0 -1
  244. package/lib-amd/hooks/useControllableValue.d.ts +0 -20
  245. package/lib-amd/hooks/useControllableValue.js +0 -42
  246. package/lib-amd/hooks/useControllableValue.js.map +0 -1
  247. package/lib-amd/hooks/useEventCallback.d.ts +0 -13
  248. package/lib-amd/hooks/useEventCallback.js +0 -33
  249. package/lib-amd/hooks/useEventCallback.js.map +0 -1
  250. package/lib-amd/hooks/useId.d.ts +0 -11
  251. package/lib-amd/hooks/useId.js +0 -35
  252. package/lib-amd/hooks/useId.js.map +0 -1
  253. package/lib-amd/hooks/useIsomorphicLayoutEffect.d.ts +0 -2
  254. package/lib-amd/hooks/useIsomorphicLayoutEffect.js +0 -9
  255. package/lib-amd/hooks/useIsomorphicLayoutEffect.js.map +0 -1
  256. package/lib-amd/hooks/useMergedRefs.d.ts +0 -13
  257. package/lib-amd/hooks/useMergedRefs.js +0 -33
  258. package/lib-amd/hooks/useMergedRefs.js.map +0 -1
  259. package/lib-amd/hooks/useOnClickOutside.d.ts +0 -19
  260. package/lib-amd/hooks/useOnClickOutside.js +0 -27
  261. package/lib-amd/hooks/useOnClickOutside.js.map +0 -1
  262. package/lib-amd/index.d.ts +0 -3
  263. package/lib-amd/index.js +0 -8
  264. package/lib-amd/index.js.map +0 -1
  265. package/lib-amd/utils/getNativeElementProps.d.ts +0 -9
  266. package/lib-amd/utils/getNativeElementProps.js +0 -40
  267. package/lib-amd/utils/getNativeElementProps.js.map +0 -1
  268. package/lib-amd/utils/index.d.ts +0 -3
  269. package/lib-amd/utils/index.js +0 -8
  270. package/lib-amd/utils/index.js.map +0 -1
  271. package/lib-amd/utils/omit.d.ts +0 -14
  272. package/lib-amd/utils/omit.js +0 -30
  273. package/lib-amd/utils/omit.js.map +0 -1
  274. package/lib-amd/utils/properties.d.ts +0 -148
  275. package/lib-amd/utils/properties.js +0 -416
  276. package/lib-amd/utils/properties.js.map +0 -1
  277. package/lib-commonjs/compose/makeMergeProps.d.ts +0 -15
  278. package/lib-commonjs/compose/makeMergeProps.js +0 -98
  279. package/lib-commonjs/compose/makeMergeProps.js.map +0 -1
  280. package/lib-commonjs/compose/resolveShorthandProps.d.ts +0 -7
  281. package/lib-commonjs/compose/resolveShorthandProps.js +0 -29
  282. package/lib-commonjs/compose/resolveShorthandProps.js.map +0 -1
  283. package/src/compose/README.md +0 -279
package/CHANGELOG.json CHANGED
@@ -2,7 +2,1138 @@
2
2
  "name": "@fluentui/react-utilities",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 18 Mar 2021 20:11:49 GMT",
5
+ "date": "Thu, 25 Nov 2021 08:31:27 GMT",
6
+ "tag": "@fluentui/react-utilities_v9.0.0-beta.4",
7
+ "version": "9.0.0-beta.4",
8
+ "comments": {
9
+ "none": [
10
+ {
11
+ "author": "lingfangao@hotmail.com",
12
+ "package": "@fluentui/react-utilities",
13
+ "commit": "718e63006d8d07d24efab9c32942041963d78dc7",
14
+ "comment": "Migrate package to use solution style ts-configs"
15
+ }
16
+ ],
17
+ "prerelease": [
18
+ {
19
+ "author": "behowell@microsoft.com",
20
+ "package": "@fluentui/react-utilities",
21
+ "commit": "99adff5a9aab9086e8bc4737040654ab23f0febe",
22
+ "comment": "Update utility types to support specifying a primary slot other than root"
23
+ }
24
+ ]
25
+ }
26
+ },
27
+ {
28
+ "date": "Fri, 12 Nov 2021 13:25:10 GMT",
29
+ "tag": "@fluentui/react-utilities_v9.0.0-beta.3",
30
+ "version": "9.0.0-beta.3",
31
+ "comments": {
32
+ "none": [
33
+ {
34
+ "author": "lingfangao@hotmail.com",
35
+ "package": "@fluentui/react-utilities",
36
+ "commit": "00f70581480b536e723fb69edf0ae617beac4807",
37
+ "comment": "Remove beta release tag"
38
+ }
39
+ ],
40
+ "prerelease": [
41
+ {
42
+ "author": "gcox@microsoft.com",
43
+ "package": "@fluentui/react-utilities",
44
+ "commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
45
+ "comment": "Updated beta and RC components to ES2019"
46
+ }
47
+ ]
48
+ }
49
+ },
50
+ {
51
+ "date": "Wed, 27 Oct 2021 12:14:24 GMT",
52
+ "tag": "@fluentui/react-utilities_v9.0.0-beta.2",
53
+ "version": "9.0.0-beta.2",
54
+ "comments": {
55
+ "prerelease": [
56
+ {
57
+ "author": "olfedias@microsoft.com",
58
+ "package": "@fluentui/react-utilities",
59
+ "commit": "5cd2c86d041588c98747f16902ff99a7b41c10ac",
60
+ "comment": "remove compat utilities and types"
61
+ },
62
+ {
63
+ "author": "lingfangao@hotmail.com",
64
+ "package": "@fluentui/react-utilities",
65
+ "commit": "b5b740100714724214e097fae2f7c1f51f294e35",
66
+ "comment": "fix(getNativeElementPrps): Add support for `onAuxClick`"
67
+ }
68
+ ]
69
+ }
70
+ },
71
+ {
72
+ "date": "Wed, 06 Oct 2021 10:37:22 GMT",
73
+ "tag": "@fluentui/react-utilities_v9.0.0-beta.1",
74
+ "version": "9.0.0-beta.1",
75
+ "comments": {
76
+ "prerelease": [
77
+ {
78
+ "author": "lingfangao@hotmail.com",
79
+ "package": "@fluentui/react-utilities",
80
+ "comment": "Bump all v9 components to beta prerelease tag",
81
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
82
+ },
83
+ {
84
+ "author": "beachball",
85
+ "package": "@fluentui/react-utilities",
86
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.0-beta.1",
87
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
88
+ }
89
+ ]
90
+ }
91
+ },
92
+ {
93
+ "date": "Tue, 05 Oct 2021 09:28:07 GMT",
94
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.56",
95
+ "version": "9.0.0-alpha.56",
96
+ "comments": {
97
+ "prerelease": [
98
+ {
99
+ "author": "elcraig@microsoft.com",
100
+ "package": "@fluentui/react-utilities",
101
+ "comment": "Add and use ForwardRefComponent helper type",
102
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
103
+ }
104
+ ]
105
+ }
106
+ },
107
+ {
108
+ "date": "Fri, 01 Oct 2021 14:13:08 GMT",
109
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.55",
110
+ "version": "9.0.0-alpha.55",
111
+ "comments": {
112
+ "prerelease": [
113
+ {
114
+ "author": "lingfangao@hotmail.com",
115
+ "package": "@fluentui/react-utilities",
116
+ "comment": "Bump v9 prerelease versions to rerelease",
117
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
118
+ },
119
+ {
120
+ "author": "beachball",
121
+ "package": "@fluentui/react-utilities",
122
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.0-alpha.5",
123
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
124
+ }
125
+ ]
126
+ }
127
+ },
128
+ {
129
+ "date": "Mon, 27 Sep 2021 08:06:00 GMT",
130
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.53",
131
+ "version": "9.0.0-alpha.53",
132
+ "comments": {
133
+ "prerelease": [
134
+ {
135
+ "author": "bsunderhus@microsoft.com",
136
+ "package": "@fluentui/react-utilities",
137
+ "comment": "Updates ComponentState on custom props",
138
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
139
+ }
140
+ ]
141
+ }
142
+ },
143
+ {
144
+ "date": "Fri, 24 Sep 2021 09:17:17 GMT",
145
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.52",
146
+ "version": "9.0.0-alpha.52",
147
+ "comments": {
148
+ "prerelease": [
149
+ {
150
+ "author": "andredias@microsoft.com",
151
+ "package": "@fluentui/react-utilities",
152
+ "comment": "Add as prop to properties allowed with getNativeElementProps",
153
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
154
+ }
155
+ ]
156
+ }
157
+ },
158
+ {
159
+ "date": "Thu, 23 Sep 2021 08:21:34 GMT",
160
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.51",
161
+ "version": "9.0.0-alpha.51",
162
+ "comments": {
163
+ "prerelease": [
164
+ {
165
+ "author": "czearing@outlook.com",
166
+ "package": "@fluentui/react-utilities",
167
+ "comment": "Adding clamp and getRTLSafeKey utilities.",
168
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
169
+ }
170
+ ]
171
+ }
172
+ },
173
+ {
174
+ "date": "Wed, 22 Sep 2021 10:10:07 GMT",
175
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.50",
176
+ "version": "9.0.0-alpha.50",
177
+ "comments": {
178
+ "prerelease": [
179
+ {
180
+ "author": "gcox@microsoft.com",
181
+ "package": "@fluentui/react-utilities",
182
+ "comment": "Moved from interfaces to types per RFC",
183
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
184
+ }
185
+ ]
186
+ }
187
+ },
188
+ {
189
+ "date": "Mon, 20 Sep 2021 07:36:26 GMT",
190
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.49",
191
+ "version": "9.0.0-alpha.49",
192
+ "comments": {
193
+ "none": [
194
+ {
195
+ "author": "lingfangao@hotmail.com",
196
+ "package": "@fluentui/react-utilities",
197
+ "comment": "chore: use versioon eslint-plugin and react-conformance in dev dependencies",
198
+ "commit": "b8a304770f77c0353553a152dad34421070400a6"
199
+ },
200
+ {
201
+ "author": "lingfangao@hotmail.com",
202
+ "package": "@fluentui/react-utilities",
203
+ "commit": "b8a304770f77c0353553a152dad34421070400a6",
204
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.49"
205
+ }
206
+ ]
207
+ }
208
+ },
209
+ {
210
+ "date": "Fri, 17 Sep 2021 07:35:26 GMT",
211
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.49",
212
+ "version": "9.0.0-alpha.49",
213
+ "comments": {
214
+ "prerelease": [
215
+ {
216
+ "author": "Humberto.Morimoto@microsoft.com",
217
+ "package": "@fluentui/react-utilities",
218
+ "comment": "Refactoring out functionality that applies trigger props to children as a utility.",
219
+ "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575"
220
+ },
221
+ {
222
+ "author": "bsunderhus@microsoft.com",
223
+ "package": "@fluentui/react-utilities",
224
+ "comment": "Removes ExtractRef Typings",
225
+ "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575"
226
+ }
227
+ ]
228
+ }
229
+ },
230
+ {
231
+ "date": "Thu, 16 Sep 2021 07:38:39 GMT",
232
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.48",
233
+ "version": "9.0.0-alpha.48",
234
+ "comments": {
235
+ "prerelease": [
236
+ {
237
+ "author": "behowell@microsoft.com",
238
+ "package": "@fluentui/react-utilities",
239
+ "comment": "Fix IntrinsicShorthandProps used in the root slot with multiple possible `as` values",
240
+ "commit": "fbe41e2877a20ce0f3c01b5188e17c12f941cc4c"
241
+ }
242
+ ]
243
+ }
244
+ },
245
+ {
246
+ "date": "Tue, 14 Sep 2021 20:09:02 GMT",
247
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.47",
248
+ "version": "9.0.0-alpha.47",
249
+ "comments": {
250
+ "prerelease": [
251
+ {
252
+ "author": "bsunderhus@microsoft.com",
253
+ "package": "@fluentui/react-utilities",
254
+ "comment": "Adds ExtractRef typings to react-utilities to extract reference from props",
255
+ "commit": "10495c31fb5c5cf48b4665601a75a0cfabb6a03c"
256
+ }
257
+ ]
258
+ }
259
+ },
260
+ {
261
+ "date": "Fri, 10 Sep 2021 16:31:53 GMT",
262
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.46",
263
+ "version": "9.0.0-alpha.46",
264
+ "comments": {
265
+ "prerelease": [
266
+ {
267
+ "author": "lingfangao@hotmail.com",
268
+ "package": "@fluentui/react-utilities",
269
+ "comment": "chore(v9): Move all internal v9 dependencies from caret to fixed version",
270
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0"
271
+ }
272
+ ]
273
+ }
274
+ },
275
+ {
276
+ "date": "Fri, 10 Sep 2021 07:39:51 GMT",
277
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.45",
278
+ "version": "9.0.0-alpha.45",
279
+ "comments": {
280
+ "prerelease": [
281
+ {
282
+ "comment": "Add IntrinsicShorthandProps for slots that use intrinsic elements like div or span",
283
+ "author": "behowell@microsoft.com",
284
+ "commit": "8700a515c7f2659761c5b53f55c32453bc3510b1",
285
+ "package": "@fluentui/react-utilities"
286
+ }
287
+ ]
288
+ }
289
+ },
290
+ {
291
+ "date": "Mon, 06 Sep 2021 07:34:53 GMT",
292
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.44",
293
+ "version": "9.0.0-alpha.44",
294
+ "comments": {
295
+ "prerelease": [
296
+ {
297
+ "comment": "feat(react-utilities): use `event.key` for keyboard events",
298
+ "author": "lingfangao@hotmail.com",
299
+ "commit": "cd22a603bb20947e7d23a3357b9a535afdb5ee1d",
300
+ "package": "@fluentui/react-utilities"
301
+ }
302
+ ]
303
+ }
304
+ },
305
+ {
306
+ "date": "Wed, 01 Sep 2021 07:39:56 GMT",
307
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.43",
308
+ "version": "9.0.0-alpha.43",
309
+ "comments": {
310
+ "prerelease": [
311
+ {
312
+ "comment": "Update implementation to handle 'root' as a slot",
313
+ "author": "bsunderhus@microsoft.com",
314
+ "commit": "40254a1b07bd51affd276e51af0b1d517714b45c",
315
+ "package": "@fluentui/react-utilities"
316
+ }
317
+ ]
318
+ }
319
+ },
320
+ {
321
+ "date": "Tue, 31 Aug 2021 07:37:47 GMT",
322
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.42",
323
+ "version": "9.0.0-alpha.42",
324
+ "comments": {
325
+ "none": [
326
+ {
327
+ "comment": "docs(composeUtils): update README",
328
+ "author": "olfedias@microsoft.com",
329
+ "commit": "3205b59f5d25006349b27883e4e3ec70eb14ad6f",
330
+ "package": "@fluentui/react-utilities"
331
+ }
332
+ ],
333
+ "prerelease": [
334
+ {
335
+ "comment": "fix(useOnClickOutside): Treat right click/context menu as outside click",
336
+ "author": "lingfan.gao@microsoft.com",
337
+ "commit": "7a53d85571212d2f5b56a84fd84e29f5e1985daa",
338
+ "package": "@fluentui/react-utilities"
339
+ }
340
+ ]
341
+ }
342
+ },
343
+ {
344
+ "date": "Tue, 24 Aug 2021 07:34:48 GMT",
345
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.41",
346
+ "version": "9.0.0-alpha.41",
347
+ "comments": {
348
+ "prerelease": [
349
+ {
350
+ "comment": "Updating TypeScript type-only imports/exports to use import/export type syntax.",
351
+ "author": "dzearing@hotmail.com",
352
+ "commit": "789a3733b128569190319fce3fe2b46900b24896",
353
+ "package": "@fluentui/react-utilities"
354
+ }
355
+ ],
356
+ "none": [
357
+ {
358
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.1",
359
+ "author": "dzearing@hotmail.com",
360
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
361
+ "package": "@fluentui/react-utilities"
362
+ },
363
+ {
364
+ "comment": "Bump @fluentui/keyboard-key to v0.3.4",
365
+ "author": "dzearing@hotmail.com",
366
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
367
+ "package": "@fluentui/react-utilities"
368
+ },
369
+ {
370
+ "comment": "Bump @fluentui/scripts to v1.0.0",
371
+ "author": "dzearing@hotmail.com",
372
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
373
+ "package": "@fluentui/react-utilities"
374
+ }
375
+ ]
376
+ }
377
+ },
378
+ {
379
+ "date": "Fri, 20 Aug 2021 07:37:28 GMT",
380
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.40",
381
+ "version": "9.0.0-alpha.40",
382
+ "comments": {
383
+ "prerelease": [
384
+ {
385
+ "comment": "Update .npmignore",
386
+ "author": "elcraig@microsoft.com",
387
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
388
+ "package": "@fluentui/react-utilities"
389
+ }
390
+ ],
391
+ "none": [
392
+ {
393
+ "comment": "Update jest-environment comment formatting to fix lint error",
394
+ "author": "behowell@microsoft.com",
395
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
396
+ "package": "@fluentui/react-utilities"
397
+ },
398
+ {
399
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.0",
400
+ "author": "behowell@microsoft.com",
401
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
402
+ "package": "@fluentui/react-utilities"
403
+ },
404
+ {
405
+ "comment": "Bump @fluentui/keyboard-key to v0.3.4",
406
+ "author": "behowell@microsoft.com",
407
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
408
+ "package": "@fluentui/react-utilities"
409
+ },
410
+ {
411
+ "comment": "Bump @fluentui/scripts to v1.0.0",
412
+ "author": "behowell@microsoft.com",
413
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
414
+ "package": "@fluentui/react-utilities"
415
+ }
416
+ ]
417
+ }
418
+ },
419
+ {
420
+ "date": "Thu, 19 Aug 2021 07:41:35 GMT",
421
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.39",
422
+ "version": "9.0.0-alpha.39",
423
+ "comments": {
424
+ "prerelease": [
425
+ {
426
+ "comment": "Slot null rendering refactor",
427
+ "author": "bsunderhus@microsoft.com",
428
+ "commit": "e467d64e7d3edb2512a81efdaeca5813269039b4",
429
+ "package": "@fluentui/react-utilities"
430
+ }
431
+ ]
432
+ }
433
+ },
434
+ {
435
+ "date": "Fri, 06 Aug 2021 07:35:14 GMT",
436
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.38",
437
+ "version": "9.0.0-alpha.38",
438
+ "comments": {
439
+ "prerelease": [
440
+ {
441
+ "comment": "Deletes descendants API",
442
+ "author": "bsunderhus@microsoft.com",
443
+ "commit": "9ac8b044a6a524d6ce55f3f801ce0189a8087e85",
444
+ "package": "@fluentui/react-utilities"
445
+ }
446
+ ]
447
+ }
448
+ },
449
+ {
450
+ "date": "Wed, 04 Aug 2021 07:34:12 GMT",
451
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.37",
452
+ "version": "9.0.0-alpha.37",
453
+ "comments": {
454
+ "none": [
455
+ {
456
+ "comment": "Fixing various typos in the react-utilities package.",
457
+ "author": "czearing@outlook.com",
458
+ "commit": "109e85b19d8ee37a9c31ddf8e2083471bab64526",
459
+ "package": "@fluentui/react-utilities"
460
+ }
461
+ ]
462
+ }
463
+ },
464
+ {
465
+ "date": "Tue, 03 Aug 2021 07:39:30 GMT",
466
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.37",
467
+ "version": "9.0.0-alpha.37",
468
+ "comments": {
469
+ "prerelease": [
470
+ {
471
+ "comment": "Copying useMount and useUnmount hooks into the react-utilities package.",
472
+ "author": "czearing@outlook.com",
473
+ "commit": "14dbbf7bb2b56ccf4974fcb8ad40b73ae9614326",
474
+ "package": "@fluentui/react-utilities"
475
+ }
476
+ ],
477
+ "patch": [
478
+ {
479
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.3",
480
+ "author": "behowell@microsoft.com",
481
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
482
+ "package": "@fluentui/react-utilities"
483
+ },
484
+ {
485
+ "comment": "Bump @fluentui/keyboard-key to v0.3.4",
486
+ "author": "behowell@microsoft.com",
487
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
488
+ "package": "@fluentui/react-utilities"
489
+ },
490
+ {
491
+ "comment": "Bump @fluentui/scripts to v1.0.0",
492
+ "author": "behowell@microsoft.com",
493
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
494
+ "package": "@fluentui/react-utilities"
495
+ }
496
+ ]
497
+ }
498
+ },
499
+ {
500
+ "date": "Mon, 02 Aug 2021 07:36:20 GMT",
501
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.36",
502
+ "version": "9.0.0-alpha.36",
503
+ "comments": {
504
+ "prerelease": [
505
+ {
506
+ "comment": "feat(useOnClickOutside): Handle clicks into an iframe",
507
+ "author": "lingfan.gao@microsoft.com",
508
+ "commit": "ab0e1bafdd9ace2974b3362cd2300fb32af466fb",
509
+ "package": "@fluentui/react-utilities"
510
+ }
511
+ ]
512
+ }
513
+ },
514
+ {
515
+ "date": "Fri, 23 Jul 2021 07:38:19 GMT",
516
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.35",
517
+ "version": "9.0.0-alpha.35",
518
+ "comments": {
519
+ "prerelease": [
520
+ {
521
+ "comment": "Improve type safety of the onlyChild function",
522
+ "author": "behowell@microsoft.com",
523
+ "commit": "d38109a7fd40e187aca862046219cf9a7ca66131",
524
+ "package": "@fluentui/react-utilities"
525
+ }
526
+ ]
527
+ }
528
+ },
529
+ {
530
+ "date": "Thu, 22 Jul 2021 07:36:55 GMT",
531
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.34",
532
+ "version": "9.0.0-alpha.34",
533
+ "comments": {
534
+ "prerelease": [
535
+ {
536
+ "comment": "Move useTimeout into react-utilities and add tests",
537
+ "author": "behowell@microsoft.com",
538
+ "commit": "2e257154d0448b8d4fd64142f93fcc9a225995cc",
539
+ "package": "@fluentui/react-utilities"
540
+ }
541
+ ]
542
+ }
543
+ },
544
+ {
545
+ "date": "Tue, 20 Jul 2021 22:23:17 GMT",
546
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.33",
547
+ "version": "9.0.0-alpha.33",
548
+ "comments": {
549
+ "none": [
550
+ {
551
+ "comment": "add bundle size fixtures",
552
+ "author": "olfedias@microsoft.com",
553
+ "commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
554
+ "package": "@fluentui/react-utilities"
555
+ }
556
+ ]
557
+ }
558
+ },
559
+ {
560
+ "date": "Thu, 15 Jul 2021 07:36:18 GMT",
561
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.33",
562
+ "version": "9.0.0-alpha.33",
563
+ "comments": {
564
+ "prerelease": [
565
+ {
566
+ "comment": "Fix bugs on getSlots to follow with RFC",
567
+ "author": "bsunderhus@microsoft.com",
568
+ "commit": "b60234948eacb8c6fa9d08ab8e98d963f583d475",
569
+ "package": "@fluentui/react-utilities"
570
+ },
571
+ {
572
+ "comment": "feat(useControllableState): deprecate useControlledValue with new hook",
573
+ "author": "lingfan.gao@microsoft.com",
574
+ "commit": "57b43a4d07fbccd83fa03a3b7879813be920b91f",
575
+ "package": "@fluentui/react-utilities"
576
+ }
577
+ ]
578
+ }
579
+ },
580
+ {
581
+ "date": "Fri, 09 Jul 2021 07:39:31 GMT",
582
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.32",
583
+ "version": "9.0.0-alpha.32",
584
+ "comments": {
585
+ "patch": [
586
+ {
587
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.2",
588
+ "author": "martinhochel@microsoft.com",
589
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
590
+ "package": "@fluentui/react-utilities"
591
+ },
592
+ {
593
+ "comment": "Bump @fluentui/keyboard-key to v0.3.3",
594
+ "author": "martinhochel@microsoft.com",
595
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
596
+ "package": "@fluentui/react-utilities"
597
+ },
598
+ {
599
+ "comment": "Bump @fluentui/scripts to v1.0.0",
600
+ "author": "martinhochel@microsoft.com",
601
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
602
+ "package": "@fluentui/react-utilities"
603
+ }
604
+ ]
605
+ }
606
+ },
607
+ {
608
+ "date": "Fri, 02 Jul 2021 23:15:55 GMT",
609
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.31",
610
+ "version": "9.0.0-alpha.31",
611
+ "comments": {
612
+ "prerelease": [
613
+ {
614
+ "comment": "Add new prop mergin mechanism",
615
+ "author": "bsunderhus@microsoft.com",
616
+ "commit": "6c37a1cb5c312d4be8b239bfd9f6c9f28e9f0d24",
617
+ "package": "@fluentui/react-utilities"
618
+ },
619
+ {
620
+ "comment": "chore(Menu): use capture event to handle outside click",
621
+ "author": "lingfan.gao@microsoft.com",
622
+ "commit": "3812a10a4152a2e27ac89b16259e312f42469570",
623
+ "package": "@fluentui/react-utilities"
624
+ }
625
+ ]
626
+ }
627
+ },
628
+ {
629
+ "date": "Fri, 02 Jul 2021 07:37:06 GMT",
630
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.30",
631
+ "version": "9.0.0-alpha.30",
632
+ "comments": {
633
+ "none": [
634
+ {
635
+ "comment": "chore(react-utilities): Migrate DX",
636
+ "author": "lingfan.gao@microsoft.com",
637
+ "commit": "4279e187f29c2dfa4d9244c615e92fdd29159b3b",
638
+ "package": "@fluentui/react-utilities"
639
+ }
640
+ ],
641
+ "prerelease": [
642
+ {
643
+ "comment": "Rename typings and getSlots to have the Compat Suffix",
644
+ "author": "bsunderhus@microsoft.com",
645
+ "commit": "c939e67b1840a9eb5f7706afcda8c14df8f18d33",
646
+ "package": "@fluentui/react-utilities"
647
+ }
648
+ ]
649
+ }
650
+ },
651
+ {
652
+ "date": "Tue, 15 Jun 2021 07:40:20 GMT",
653
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.29",
654
+ "version": "9.0.0-alpha.29",
655
+ "comments": {
656
+ "prerelease": [
657
+ {
658
+ "comment": "Remove boolean from ShorthandProps type",
659
+ "author": "behowell@microsoft.com",
660
+ "commit": "10b1e17acaa01675866f7a623be1a61b1478d7d7",
661
+ "package": "@fluentui/react-utilities"
662
+ }
663
+ ]
664
+ }
665
+ },
666
+ {
667
+ "date": "Mon, 07 Jun 2021 07:38:15 GMT",
668
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.28",
669
+ "version": "9.0.0-alpha.28",
670
+ "comments": {
671
+ "patch": [
672
+ {
673
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.1",
674
+ "author": "martinhochel@microsoft.com",
675
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
676
+ "package": "@fluentui/react-utilities"
677
+ },
678
+ {
679
+ "comment": "Bump @fluentui/keyboard-key to v0.3.2",
680
+ "author": "martinhochel@microsoft.com",
681
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
682
+ "package": "@fluentui/react-utilities"
683
+ },
684
+ {
685
+ "comment": "Bump @fluentui/scripts to v1.0.0",
686
+ "author": "martinhochel@microsoft.com",
687
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
688
+ "package": "@fluentui/react-utilities"
689
+ }
690
+ ]
691
+ }
692
+ },
693
+ {
694
+ "date": "Fri, 04 Jun 2021 07:37:23 GMT",
695
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.27",
696
+ "version": "9.0.0-alpha.27",
697
+ "comments": {
698
+ "prerelease": [
699
+ {
700
+ "comment": "Moving onlyChild to @fluentui/react-utilities and adding tests.",
701
+ "author": "Humberto.Morimoto@microsoft.com",
702
+ "commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb",
703
+ "package": "@fluentui/react-utilities"
704
+ }
705
+ ]
706
+ }
707
+ },
708
+ {
709
+ "date": "Thu, 03 Jun 2021 07:36:03 GMT",
710
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.26",
711
+ "version": "9.0.0-alpha.26",
712
+ "comments": {
713
+ "none": [
714
+ {
715
+ "comment": "fix(react-utilities): explicitly provide context for setTimeout call",
716
+ "author": "martinhochel@microsoft.com",
717
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
718
+ "package": "@fluentui/react-utilities"
719
+ }
720
+ ]
721
+ }
722
+ },
723
+ {
724
+ "date": "Tue, 01 Jun 2021 07:31:58 GMT",
725
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.26",
726
+ "version": "9.0.0-alpha.26",
727
+ "comments": {
728
+ "none": [
729
+ {
730
+ "comment": "Revert \"chore: enable Jest aliases for converged packages (#18337)\"",
731
+ "author": "olfedias@microsoft.com",
732
+ "commit": "b5f2a02b37c8ea394a65f7a22bff057de93370dd",
733
+ "package": "@fluentui/react-utilities"
734
+ }
735
+ ]
736
+ }
737
+ },
738
+ {
739
+ "date": "Fri, 28 May 2021 07:33:57 GMT",
740
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.26",
741
+ "version": "9.0.0-alpha.26",
742
+ "comments": {
743
+ "prerelease": [
744
+ {
745
+ "comment": "useOnScrollOutside hook to detect scroll outside a component",
746
+ "author": "lingfan.gao@microsoft.com",
747
+ "commit": "53145c8f329f92f25d1ce2cd132e6dc4ee4ce43a",
748
+ "package": "@fluentui/react-utilities"
749
+ }
750
+ ],
751
+ "none": [
752
+ {
753
+ "comment": "enable Jest aliases",
754
+ "author": "olfedias@microsoft.com",
755
+ "commit": "5379823a6f53bd36a936806153d228b9a0ef0543",
756
+ "package": "@fluentui/react-utilities"
757
+ }
758
+ ]
759
+ }
760
+ },
761
+ {
762
+ "date": "Wed, 26 May 2021 07:35:43 GMT",
763
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.25",
764
+ "version": "9.0.0-alpha.25",
765
+ "comments": {
766
+ "prerelease": [
767
+ {
768
+ "comment": "useOnClickOutside, workaround for facebook/react#20074",
769
+ "author": "lingfan.gao@microsoft.com",
770
+ "commit": "6ffca36c9537a1852d8ec26478b8b7aeb059e17c",
771
+ "package": "@fluentui/react-utilities"
772
+ }
773
+ ]
774
+ }
775
+ },
776
+ {
777
+ "date": "Fri, 21 May 2021 07:34:54 GMT",
778
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.24",
779
+ "version": "9.0.0-alpha.24",
780
+ "comments": {
781
+ "prerelease": [
782
+ {
783
+ "comment": "Refactor ComponentState to remove ref template parameter",
784
+ "author": "behowell@microsoft.com",
785
+ "commit": "aabab8dedf6aa56a403b314157bcef84b6bcd585",
786
+ "package": "@fluentui/react-utilities"
787
+ }
788
+ ]
789
+ }
790
+ },
791
+ {
792
+ "date": "Thu, 20 May 2021 07:41:54 GMT",
793
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.23",
794
+ "version": "9.0.0-alpha.23",
795
+ "comments": {
796
+ "prerelease": [
797
+ {
798
+ "comment": "ComponentState: fix shadowing and doc syntax for type params",
799
+ "author": "elcraig@microsoft.com",
800
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
801
+ "package": "@fluentui/react-utilities"
802
+ }
803
+ ],
804
+ "patch": [
805
+ {
806
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.0",
807
+ "author": "elcraig@microsoft.com",
808
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
809
+ "package": "@fluentui/react-utilities"
810
+ },
811
+ {
812
+ "comment": "Bump @fluentui/keyboard-key to v0.3.1",
813
+ "author": "elcraig@microsoft.com",
814
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
815
+ "package": "@fluentui/react-utilities"
816
+ },
817
+ {
818
+ "comment": "Bump @fluentui/scripts to v1.0.0",
819
+ "author": "elcraig@microsoft.com",
820
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
821
+ "package": "@fluentui/react-utilities"
822
+ }
823
+ ]
824
+ }
825
+ },
826
+ {
827
+ "date": "Wed, 19 May 2021 07:34:20 GMT",
828
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.22",
829
+ "version": "9.0.0-alpha.22",
830
+ "comments": {
831
+ "prerelease": [
832
+ {
833
+ "comment": "chore: add more Babel plugins",
834
+ "author": "olfedias@microsoft.com",
835
+ "commit": "975140887c6ad2391f8db63003ed440239ec9c25",
836
+ "package": "@fluentui/react-utilities"
837
+ },
838
+ {
839
+ "comment": "Support custom `contains` check",
840
+ "author": "lingfan.gao@microsoft.com",
841
+ "commit": "90cd8ca21a6904680a1a06ba4800053dc69a9a48",
842
+ "package": "@fluentui/react-utilities"
843
+ }
844
+ ]
845
+ }
846
+ },
847
+ {
848
+ "date": "Mon, 03 May 2021 07:45:19 GMT",
849
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.21",
850
+ "version": "9.0.0-alpha.21",
851
+ "comments": {
852
+ "prerelease": [
853
+ {
854
+ "comment": "useOnClickOutside can be disabled",
855
+ "author": "lingfan.gao@microsoft.com",
856
+ "commit": "5e6aa4df0c03051e59d686d24b35f01c721a3b4e",
857
+ "package": "@fluentui/react-utilities"
858
+ }
859
+ ]
860
+ }
861
+ },
862
+ {
863
+ "date": "Fri, 30 Apr 2021 07:42:23 GMT",
864
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.20",
865
+ "version": "9.0.0-alpha.20",
866
+ "comments": {
867
+ "prerelease": [
868
+ {
869
+ "comment": "Upgrade to ts 4.0",
870
+ "author": "joschect@microsoft.com",
871
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
872
+ "package": "@fluentui/react-utilities"
873
+ },
874
+ {
875
+ "comment": "update useId() to be safe for SSR",
876
+ "author": "olfedias@microsoft.com",
877
+ "commit": "2a95add2ed379f3e061339d86ae03199ef0d5080",
878
+ "package": "@fluentui/react-utilities"
879
+ }
880
+ ],
881
+ "patch": [
882
+ {
883
+ "comment": "Bump @fluentui/eslint-plugin to v1.2.0",
884
+ "author": "joschect@microsoft.com",
885
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
886
+ "package": "@fluentui/react-utilities"
887
+ },
888
+ {
889
+ "comment": "Bump @fluentui/keyboard-key to v0.3.0",
890
+ "author": "joschect@microsoft.com",
891
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
892
+ "package": "@fluentui/react-utilities"
893
+ },
894
+ {
895
+ "comment": "Bump @fluentui/scripts to v1.0.0",
896
+ "author": "joschect@microsoft.com",
897
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
898
+ "package": "@fluentui/react-utilities"
899
+ }
900
+ ]
901
+ }
902
+ },
903
+ {
904
+ "date": "Fri, 23 Apr 2021 07:37:10 GMT",
905
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.19",
906
+ "version": "9.0.0-alpha.19",
907
+ "comments": {
908
+ "none": [
909
+ {
910
+ "comment": "disable lint rules",
911
+ "author": "olfedias@microsoft.com",
912
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
913
+ "package": "@fluentui/react-utilities"
914
+ }
915
+ ],
916
+ "patch": [
917
+ {
918
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.1",
919
+ "author": "olfedias@microsoft.com",
920
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
921
+ "package": "@fluentui/react-utilities"
922
+ },
923
+ {
924
+ "comment": "Bump @fluentui/keyboard-key to v0.2.17",
925
+ "author": "olfedias@microsoft.com",
926
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
927
+ "package": "@fluentui/react-utilities"
928
+ },
929
+ {
930
+ "comment": "Bump @fluentui/scripts to v1.0.0",
931
+ "author": "olfedias@microsoft.com",
932
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
933
+ "package": "@fluentui/react-utilities"
934
+ }
935
+ ]
936
+ }
937
+ },
938
+ {
939
+ "date": "Thu, 22 Apr 2021 07:33:28 GMT",
940
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.18",
941
+ "version": "9.0.0-alpha.18",
942
+ "comments": {
943
+ "prerelease": [
944
+ {
945
+ "comment": "dedupe isSSR definitions",
946
+ "author": "olfedias@microsoft.com",
947
+ "commit": "7feded422987e9c82f3250f419ab62118a52f9d4",
948
+ "package": "@fluentui/react-utilities"
949
+ },
950
+ {
951
+ "comment": "Remove default document in useOnClickOutside",
952
+ "author": "lingfan.gao@microsoft.com",
953
+ "commit": "619ff0af80bfed0e3ec64c2d56fc3ff4747faf7f",
954
+ "package": "@fluentui/react-utilities"
955
+ }
956
+ ]
957
+ }
958
+ },
959
+ {
960
+ "date": "Wed, 21 Apr 2021 07:31:50 GMT",
961
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.17",
962
+ "version": "9.0.0-alpha.17",
963
+ "comments": {
964
+ "prerelease": [
965
+ {
966
+ "comment": "Rename ax() to mergeClasses()",
967
+ "author": "miroslav.stastny@microsoft.com",
968
+ "commit": "64da065944467537d8f23a97ef4c19c3d60a529b",
969
+ "package": "@fluentui/react-utilities"
970
+ }
971
+ ]
972
+ }
973
+ },
974
+ {
975
+ "date": "Mon, 19 Apr 2021 07:33:33 GMT",
976
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.16",
977
+ "version": "9.0.0-alpha.16",
978
+ "comments": {
979
+ "none": [
980
+ {
981
+ "comment": "Remove unneeded react-app-polyfill devDependency",
982
+ "author": "elcraig@microsoft.com",
983
+ "commit": "fdc32557d49e5d70ea7e4af8957102d415b44547",
984
+ "package": "@fluentui/react-utilities"
985
+ }
986
+ ]
987
+ }
988
+ },
989
+ {
990
+ "date": "Fri, 16 Apr 2021 18:08:21 GMT",
991
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.16",
992
+ "version": "9.0.0-alpha.16",
993
+ "comments": {
994
+ "prerelease": [
995
+ {
996
+ "comment": "Extract usePrevious from descendants",
997
+ "author": "lingfan.gao@microsoft.com",
998
+ "commit": "202f547fef3255f5c59ff4ad912c67b4978ef457",
999
+ "package": "@fluentui/react-utilities"
1000
+ }
1001
+ ]
1002
+ }
1003
+ },
1004
+ {
1005
+ "date": "Thu, 01 Apr 2021 20:13:37 GMT",
1006
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.15",
1007
+ "version": "9.0.0-alpha.15",
1008
+ "comments": {
1009
+ "prerelease": [
1010
+ {
1011
+ "comment": "Adds isSSR method to react-utilities",
1012
+ "author": "bsunderhus@microsoft.com",
1013
+ "commit": "dec60bc3ea87901ff8c2c52989301ae8f4229721",
1014
+ "package": "@fluentui/react-utilities"
1015
+ }
1016
+ ]
1017
+ }
1018
+ },
1019
+ {
1020
+ "date": "Wed, 31 Mar 2021 00:53:43 GMT",
1021
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.14",
1022
+ "version": "9.0.0-alpha.14",
1023
+ "comments": {
1024
+ "prerelease": [
1025
+ {
1026
+ "comment": "Add ComponentState helper type; improve type checking for makeMergeProps",
1027
+ "author": "behowell@microsoft.com",
1028
+ "commit": "e45eeaba8deb93e825a9d3f72e87a9c4c9225ea1",
1029
+ "package": "@fluentui/react-utilities"
1030
+ },
1031
+ {
1032
+ "comment": "Add shouldPreventDefaultOnKeyDown utility function to detect keyboard clicks",
1033
+ "author": "lingfan.gao@microsoft.com",
1034
+ "commit": "08a93f5d9f50d5caffff652d8f605a06804692e3",
1035
+ "package": "@fluentui/react-utilities"
1036
+ }
1037
+ ],
1038
+ "patch": [
1039
+ {
1040
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.0",
1041
+ "author": "elcraig@microsoft.com",
1042
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
1043
+ "package": "@fluentui/react-utilities"
1044
+ },
1045
+ {
1046
+ "comment": "Bump @fluentui/keyboard-key to v0.2.16",
1047
+ "author": "elcraig@microsoft.com",
1048
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
1049
+ "package": "@fluentui/react-utilities"
1050
+ },
1051
+ {
1052
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1053
+ "author": "elcraig@microsoft.com",
1054
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
1055
+ "package": "@fluentui/react-utilities"
1056
+ }
1057
+ ]
1058
+ }
1059
+ },
1060
+ {
1061
+ "date": "Tue, 30 Mar 2021 07:34:45 GMT",
1062
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.13",
1063
+ "version": "9.0.0-alpha.13",
1064
+ "comments": {
1065
+ "prerelease": [
1066
+ {
1067
+ "comment": "chore: restore \"sideEffects\" to enable treeshaking",
1068
+ "author": "olfedias@microsoft.com",
1069
+ "commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3",
1070
+ "package": "@fluentui/react-utilities"
1071
+ }
1072
+ ]
1073
+ }
1074
+ },
1075
+ {
1076
+ "date": "Fri, 26 Mar 2021 07:32:34 GMT",
1077
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.12",
1078
+ "version": "9.0.0-alpha.12",
1079
+ "comments": {
1080
+ "prerelease": [
1081
+ {
1082
+ "comment": "Add descendants utility",
1083
+ "author": "lingfan.gao@microsoft.com",
1084
+ "commit": "8b5295e082e07dbe428bff7b9548c80c338f07c8",
1085
+ "package": "@fluentui/react-utilities"
1086
+ }
1087
+ ]
1088
+ }
1089
+ },
1090
+ {
1091
+ "date": "Thu, 25 Mar 2021 07:33:24 GMT",
1092
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.11",
1093
+ "version": "9.0.0-alpha.11",
1094
+ "comments": {
1095
+ "prerelease": [
1096
+ {
1097
+ "comment": "Move descendants to react-utilities",
1098
+ "author": "lingfan.gao@microsoft.com",
1099
+ "commit": "31b7b0d625e40f818d33c5df0890b584caaf0e6c",
1100
+ "package": "@fluentui/react-utilities"
1101
+ }
1102
+ ]
1103
+ }
1104
+ },
1105
+ {
1106
+ "date": "Tue, 23 Mar 2021 07:31:43 GMT",
1107
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.10",
1108
+ "version": "9.0.0-alpha.10",
1109
+ "comments": {
1110
+ "prerelease": [
1111
+ {
1112
+ "comment": "Add useCallbackRef and useFirstMount hooks",
1113
+ "author": "lingfan.gao@microsoft.com",
1114
+ "commit": "fc0d87258337229e59ec1c1fec87dc91193858f1",
1115
+ "package": "@fluentui/react-utilities"
1116
+ }
1117
+ ]
1118
+ }
1119
+ },
1120
+ {
1121
+ "date": "Mon, 22 Mar 2021 07:34:09 GMT",
1122
+ "tag": "@fluentui/react-utilities_v9.0.0-alpha.9",
1123
+ "version": "9.0.0-alpha.9",
1124
+ "comments": {
1125
+ "none": [
1126
+ {
1127
+ "comment": "chore: apply single version policy on @testing-library packages",
1128
+ "author": "martinhochel@microsoft.com",
1129
+ "commit": "25c4ce7c54a2a65d3db4e5f2b13785468b669329",
1130
+ "package": "@fluentui/react-utilities"
1131
+ }
1132
+ ]
1133
+ }
1134
+ },
1135
+ {
1136
+ "date": "Thu, 18 Mar 2021 20:15:34 GMT",
6
1137
  "tag": "@fluentui/react-utilities_v9.0.0-alpha.9",
7
1138
  "version": "9.0.0-alpha.9",
8
1139
  "comments": {