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