@fluentui/react-portal 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 (98) hide show
  1. package/CHANGELOG.json +2010 -0
  2. package/CHANGELOG.md +749 -0
  3. package/LICENSE +15 -0
  4. package/README.md +147 -0
  5. package/Spec.md +254 -0
  6. package/dist/react-portal.d.ts +62 -0
  7. package/lib/Portal.d.ts +1 -0
  8. package/lib/Portal.js +2 -0
  9. package/lib/Portal.js.map +1 -0
  10. package/lib/components/Portal/Portal.d.ts +7 -0
  11. package/lib/components/Portal/Portal.js +13 -0
  12. package/lib/components/Portal/Portal.js.map +1 -0
  13. package/lib/components/Portal/Portal.types.d.ts +22 -0
  14. package/lib/components/Portal/Portal.types.js +2 -0
  15. package/lib/components/Portal/Portal.types.js.map +1 -0
  16. package/lib/components/Portal/index.d.ts +4 -0
  17. package/lib/components/Portal/index.js +5 -0
  18. package/lib/components/Portal/index.js.map +1 -0
  19. package/lib/components/Portal/renderPortal.d.ts +6 -0
  20. package/lib/components/Portal/renderPortal.js +13 -0
  21. package/lib/components/Portal/renderPortal.js.map +1 -0
  22. package/lib/components/Portal/usePortal.d.ts +9 -0
  23. package/lib/components/Portal/usePortal.js +35 -0
  24. package/lib/components/Portal/usePortal.js.map +1 -0
  25. package/lib/components/Portal/usePortalMountNode.d.ts +10 -0
  26. package/lib/components/Portal/usePortalMountNode.js +36 -0
  27. package/lib/components/Portal/usePortalMountNode.js.map +1 -0
  28. package/lib/index.d.ts +2 -0
  29. package/lib/index.js +3 -0
  30. package/lib/index.js.map +1 -0
  31. package/lib/tsdoc-metadata.json +11 -0
  32. package/lib/virtualParent/elementContains.d.ts +7 -0
  33. package/lib/virtualParent/elementContains.js +30 -0
  34. package/lib/virtualParent/elementContains.js.map +1 -0
  35. package/lib/virtualParent/getParent.d.ts +5 -0
  36. package/lib/virtualParent/getParent.js +10 -0
  37. package/lib/virtualParent/getParent.js.map +1 -0
  38. package/lib/virtualParent/getVirtualParent.d.ts +4 -0
  39. package/lib/virtualParent/getVirtualParent.js +15 -0
  40. package/lib/virtualParent/getVirtualParent.js.map +1 -0
  41. package/lib/virtualParent/index.d.ts +5 -0
  42. package/lib/virtualParent/index.js +6 -0
  43. package/lib/virtualParent/index.js.map +1 -0
  44. package/lib/virtualParent/isVirtualElement.d.ts +5 -0
  45. package/lib/virtualParent/isVirtualElement.js +7 -0
  46. package/lib/virtualParent/isVirtualElement.js.map +1 -0
  47. package/lib/virtualParent/setVirtualParent.d.ts +7 -0
  48. package/lib/virtualParent/setVirtualParent.js +20 -0
  49. package/lib/virtualParent/setVirtualParent.js.map +1 -0
  50. package/lib/virtualParent/types.d.ts +5 -0
  51. package/lib/virtualParent/types.js +2 -0
  52. package/lib/virtualParent/types.js.map +1 -0
  53. package/lib-commonjs/Portal.d.ts +1 -0
  54. package/lib-commonjs/Portal.js +10 -0
  55. package/lib-commonjs/Portal.js.map +1 -0
  56. package/lib-commonjs/components/Portal/Portal.d.ts +7 -0
  57. package/lib-commonjs/components/Portal/Portal.js +24 -0
  58. package/lib-commonjs/components/Portal/Portal.js.map +1 -0
  59. package/lib-commonjs/components/Portal/Portal.types.d.ts +22 -0
  60. package/lib-commonjs/components/Portal/Portal.types.js +6 -0
  61. package/lib-commonjs/components/Portal/Portal.types.js.map +1 -0
  62. package/lib-commonjs/components/Portal/index.d.ts +4 -0
  63. package/lib-commonjs/components/Portal/index.js +16 -0
  64. package/lib-commonjs/components/Portal/index.js.map +1 -0
  65. package/lib-commonjs/components/Portal/renderPortal.d.ts +6 -0
  66. package/lib-commonjs/components/Portal/renderPortal.js +24 -0
  67. package/lib-commonjs/components/Portal/renderPortal.js.map +1 -0
  68. package/lib-commonjs/components/Portal/usePortal.d.ts +9 -0
  69. package/lib-commonjs/components/Portal/usePortal.js +48 -0
  70. package/lib-commonjs/components/Portal/usePortal.js.map +1 -0
  71. package/lib-commonjs/components/Portal/usePortalMountNode.d.ts +10 -0
  72. package/lib-commonjs/components/Portal/usePortalMountNode.js +49 -0
  73. package/lib-commonjs/components/Portal/usePortalMountNode.js.map +1 -0
  74. package/lib-commonjs/index.d.ts +2 -0
  75. package/lib-commonjs/index.js +26 -0
  76. package/lib-commonjs/index.js.map +1 -0
  77. package/lib-commonjs/virtualParent/elementContains.d.ts +7 -0
  78. package/lib-commonjs/virtualParent/elementContains.js +40 -0
  79. package/lib-commonjs/virtualParent/elementContains.js.map +1 -0
  80. package/lib-commonjs/virtualParent/getParent.d.ts +5 -0
  81. package/lib-commonjs/virtualParent/getParent.js +20 -0
  82. package/lib-commonjs/virtualParent/getParent.js.map +1 -0
  83. package/lib-commonjs/virtualParent/getVirtualParent.d.ts +4 -0
  84. package/lib-commonjs/virtualParent/getVirtualParent.js +25 -0
  85. package/lib-commonjs/virtualParent/getVirtualParent.js.map +1 -0
  86. package/lib-commonjs/virtualParent/index.d.ts +5 -0
  87. package/lib-commonjs/virtualParent/index.js +18 -0
  88. package/lib-commonjs/virtualParent/index.js.map +1 -0
  89. package/lib-commonjs/virtualParent/isVirtualElement.d.ts +5 -0
  90. package/lib-commonjs/virtualParent/isVirtualElement.js +16 -0
  91. package/lib-commonjs/virtualParent/isVirtualElement.js.map +1 -0
  92. package/lib-commonjs/virtualParent/setVirtualParent.d.ts +7 -0
  93. package/lib-commonjs/virtualParent/setVirtualParent.js +29 -0
  94. package/lib-commonjs/virtualParent/setVirtualParent.js.map +1 -0
  95. package/lib-commonjs/virtualParent/types.d.ts +5 -0
  96. package/lib-commonjs/virtualParent/types.js +6 -0
  97. package/lib-commonjs/virtualParent/types.js.map +1 -0
  98. package/package.json +62 -0
package/CHANGELOG.json ADDED
@@ -0,0 +1,2010 @@
1
+ {
2
+ "name": "@fluentui/react-portal",
3
+ "entries": [
4
+ {
5
+ "date": "Wed, 02 Mar 2022 04:14:55 GMT",
6
+ "tag": "@fluentui/react-portal_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-portal",
13
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec",
14
+ "comment": "Release nightly v9"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-portal",
19
+ "comment": "Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20220302-0405.1",
20
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-portal",
25
+ "comment": "Bump @fluentui/react-tabster to v0.0.0-nightly-20220302-0405.1",
26
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-portal",
31
+ "comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1",
32
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
33
+ }
34
+ ]
35
+ }
36
+ },
37
+ {
38
+ "date": "Tue, 01 Mar 2022 02:17:40 GMT",
39
+ "tag": "@fluentui/react-portal_v9.0.0-rc.4",
40
+ "version": "9.0.0-rc.4",
41
+ "comments": {
42
+ "prerelease": [
43
+ {
44
+ "author": "beachball",
45
+ "package": "@fluentui/react-portal",
46
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.4",
47
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
48
+ },
49
+ {
50
+ "author": "beachball",
51
+ "package": "@fluentui/react-portal",
52
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
53
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
54
+ }
55
+ ]
56
+ }
57
+ },
58
+ {
59
+ "date": "Fri, 18 Feb 2022 13:35:33 GMT",
60
+ "tag": "@fluentui/react-portal_v9.0.0-rc.3",
61
+ "version": "9.0.0-rc.3",
62
+ "comments": {
63
+ "prerelease": [
64
+ {
65
+ "author": "lingfangao@hotmail.com",
66
+ "package": "@fluentui/react-portal",
67
+ "commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
68
+ "comment": "fix: Source maps contain original source code"
69
+ },
70
+ {
71
+ "author": "beachball",
72
+ "package": "@fluentui/react-portal",
73
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.3",
74
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
75
+ },
76
+ {
77
+ "author": "beachball",
78
+ "package": "@fluentui/react-portal",
79
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.3",
80
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
81
+ },
82
+ {
83
+ "author": "beachball",
84
+ "package": "@fluentui/react-portal",
85
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
86
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
87
+ }
88
+ ]
89
+ }
90
+ },
91
+ {
92
+ "date": "Thu, 10 Feb 2022 08:50:38 GMT",
93
+ "tag": "@fluentui/react-portal_v9.0.0-rc.1",
94
+ "version": "9.0.0-rc.1",
95
+ "comments": {
96
+ "none": [
97
+ {
98
+ "author": "olfedias@microsoft.com",
99
+ "package": "@fluentui/react-portal",
100
+ "commit": "f4883108ae74c089213780f09997115c0d547aef",
101
+ "comment": "update stories to not use CSS shorthands in styles"
102
+ },
103
+ {
104
+ "author": "Humberto.Morimoto@microsoft.com",
105
+ "package": "@fluentui/react-portal",
106
+ "commit": "60e153e786c586b867898109c07a51876d3bfd5a",
107
+ "comment": "Replacing use of functions in makeStyles with direct use of tokens"
108
+ },
109
+ {
110
+ "author": "martinhochel@microsoft.com",
111
+ "package": "@fluentui/react-portal",
112
+ "commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
113
+ "comment": "chore: use storybook runner for all vNext packages"
114
+ },
115
+ {
116
+ "author": "olfedias@microsoft.com",
117
+ "package": "@fluentui/react-portal",
118
+ "commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
119
+ "comment": "remove inline-style-expand-shorthand from tsconfigs"
120
+ }
121
+ ],
122
+ "prerelease": [
123
+ {
124
+ "author": "behowell@microsoft.com",
125
+ "package": "@fluentui/react-portal",
126
+ "commit": "317209bb5cd57c40f35bc42060acb7e3cce5ec95",
127
+ "comment": "BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet"
128
+ },
129
+ {
130
+ "author": "mgodbolt@microsoft.com",
131
+ "package": "@fluentui/react-portal",
132
+ "commit": "839ec14849e112b85aa321d034739ec421199141",
133
+ "comment": "remove export of commons types"
134
+ },
135
+ {
136
+ "author": "lingfangao@hotmail.com",
137
+ "package": "@fluentui/react-portal",
138
+ "commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
139
+ "comment": "Bump Fluent UI packages to 9.0.0-rc"
140
+ },
141
+ {
142
+ "author": "olfedias@microsoft.com",
143
+ "package": "@fluentui/react-portal",
144
+ "commit": "d525c8b2106551865d648873210a6b48c2326ecb",
145
+ "comment": "remove unused dependency on Griffel"
146
+ },
147
+ {
148
+ "author": "beachball",
149
+ "package": "@fluentui/react-portal",
150
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.1",
151
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
152
+ },
153
+ {
154
+ "author": "beachball",
155
+ "package": "@fluentui/react-portal",
156
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.1",
157
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
158
+ },
159
+ {
160
+ "author": "beachball",
161
+ "package": "@fluentui/react-portal",
162
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
163
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
164
+ }
165
+ ]
166
+ }
167
+ },
168
+ {
169
+ "date": "Thu, 25 Nov 2021 08:34:15 GMT",
170
+ "tag": "@fluentui/react-portal_v9.0.0-beta.5",
171
+ "version": "9.0.0-beta.5",
172
+ "comments": {
173
+ "none": [
174
+ {
175
+ "author": "lingfangao@hotmail.com",
176
+ "package": "@fluentui/react-portal",
177
+ "commit": "8a141d14f3a14de2e1c4691dad908622f310a9d1",
178
+ "comment": "Migrate package to use solution tsconfigs"
179
+ }
180
+ ],
181
+ "prerelease": [
182
+ {
183
+ "author": "beachball",
184
+ "package": "@fluentui/react-portal",
185
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
186
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
187
+ },
188
+ {
189
+ "author": "beachball",
190
+ "package": "@fluentui/react-portal",
191
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.4",
192
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
193
+ },
194
+ {
195
+ "author": "beachball",
196
+ "package": "@fluentui/react-portal",
197
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.5",
198
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
199
+ },
200
+ {
201
+ "author": "beachball",
202
+ "package": "@fluentui/react-portal",
203
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
204
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
205
+ },
206
+ {
207
+ "author": "beachball",
208
+ "package": "@fluentui/react-portal",
209
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
210
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
211
+ },
212
+ {
213
+ "author": "beachball",
214
+ "package": "@fluentui/react-portal",
215
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
216
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
217
+ }
218
+ ]
219
+ }
220
+ },
221
+ {
222
+ "date": "Fri, 12 Nov 2021 13:25:29 GMT",
223
+ "tag": "@fluentui/react-portal_v9.0.0-beta.4",
224
+ "version": "9.0.0-beta.4",
225
+ "comments": {
226
+ "none": [
227
+ {
228
+ "author": "lingfangao@hotmail.com",
229
+ "package": "@fluentui/react-portal",
230
+ "commit": "00f70581480b536e723fb69edf0ae617beac4807",
231
+ "comment": "Remove beta release tag"
232
+ },
233
+ {
234
+ "author": "mgodbolt@microsoft.com",
235
+ "package": "@fluentui/react-portal",
236
+ "commit": "7fafe76eb2c09f9d17a03c11ba73729d91ef411e",
237
+ "comment": "update docs descriptions"
238
+ }
239
+ ],
240
+ "prerelease": [
241
+ {
242
+ "author": "gcox@microsoft.com",
243
+ "package": "@fluentui/react-portal",
244
+ "commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
245
+ "comment": "Updated beta and RC components to ES2019"
246
+ },
247
+ {
248
+ "author": "gcox@microsoft.com",
249
+ "package": "@fluentui/react-portal",
250
+ "commit": "36404e1921159b0a69b4824ae86e6276e0723ea2",
251
+ "comment": "Broke up stories added codesandbox refs"
252
+ },
253
+ {
254
+ "author": "beachball",
255
+ "package": "@fluentui/react-portal",
256
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
257
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
258
+ },
259
+ {
260
+ "author": "beachball",
261
+ "package": "@fluentui/react-portal",
262
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.3",
263
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
264
+ },
265
+ {
266
+ "author": "beachball",
267
+ "package": "@fluentui/react-portal",
268
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.4",
269
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
270
+ },
271
+ {
272
+ "author": "beachball",
273
+ "package": "@fluentui/react-portal",
274
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
275
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
276
+ },
277
+ {
278
+ "author": "beachball",
279
+ "package": "@fluentui/react-portal",
280
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
281
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
282
+ }
283
+ ]
284
+ }
285
+ },
286
+ {
287
+ "date": "Wed, 27 Oct 2021 12:14:21 GMT",
288
+ "tag": "@fluentui/react-portal_v9.0.0-beta.3",
289
+ "version": "9.0.0-beta.3",
290
+ "comments": {
291
+ "prerelease": [
292
+ {
293
+ "author": "gcox@microsoft.com",
294
+ "package": "@fluentui/react-portal",
295
+ "commit": "d730088d7f6e5965ba5d5ed0d449e250f171d791",
296
+ "comment": "Removed duplicate 'Portal' from story names"
297
+ },
298
+ {
299
+ "author": "peter@draxler.ml",
300
+ "package": "@fluentui/react-portal",
301
+ "commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
302
+ "comment": "added styling of documentation"
303
+ },
304
+ {
305
+ "author": "beachball",
306
+ "package": "@fluentui/react-portal",
307
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.2",
308
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
309
+ },
310
+ {
311
+ "author": "beachball",
312
+ "package": "@fluentui/react-portal",
313
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.2",
314
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
315
+ },
316
+ {
317
+ "author": "beachball",
318
+ "package": "@fluentui/react-portal",
319
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.3",
320
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
321
+ },
322
+ {
323
+ "author": "beachball",
324
+ "package": "@fluentui/react-portal",
325
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.2",
326
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
327
+ },
328
+ {
329
+ "author": "beachball",
330
+ "package": "@fluentui/react-portal",
331
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2",
332
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
333
+ }
334
+ ]
335
+ }
336
+ },
337
+ {
338
+ "date": "Tue, 12 Oct 2021 19:45:58 GMT",
339
+ "tag": "@fluentui/react-portal_v9.0.0-beta.2",
340
+ "version": "9.0.0-beta.2",
341
+ "comments": {
342
+ "prerelease": [
343
+ {
344
+ "author": "beachball",
345
+ "package": "@fluentui/react-portal",
346
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.2",
347
+ "commit": "bdd19e2bb827fc1d8eb329e6ed48cd0542048358"
348
+ }
349
+ ]
350
+ }
351
+ },
352
+ {
353
+ "date": "Wed, 06 Oct 2021 10:37:22 GMT",
354
+ "tag": "@fluentui/react-portal_v9.0.0-beta.1",
355
+ "version": "9.0.0-beta.1",
356
+ "comments": {
357
+ "prerelease": [
358
+ {
359
+ "author": "lingfangao@hotmail.com",
360
+ "package": "@fluentui/react-portal",
361
+ "comment": "Bump all v9 components to beta prerelease tag",
362
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
363
+ },
364
+ {
365
+ "author": "beachball",
366
+ "package": "@fluentui/react-portal",
367
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.1",
368
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
369
+ },
370
+ {
371
+ "author": "beachball",
372
+ "package": "@fluentui/react-portal",
373
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.1",
374
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
375
+ },
376
+ {
377
+ "author": "beachball",
378
+ "package": "@fluentui/react-portal",
379
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.1",
380
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
381
+ },
382
+ {
383
+ "author": "beachball",
384
+ "package": "@fluentui/react-portal",
385
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.1",
386
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
387
+ },
388
+ {
389
+ "author": "beachball",
390
+ "package": "@fluentui/react-portal",
391
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1",
392
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
393
+ }
394
+ ]
395
+ }
396
+ },
397
+ {
398
+ "date": "Tue, 05 Oct 2021 12:47:58 GMT",
399
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.61",
400
+ "version": "9.0.0-alpha.61",
401
+ "comments": {
402
+ "prerelease": [
403
+ {
404
+ "author": "beachball",
405
+ "package": "@fluentui/react-portal",
406
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.78",
407
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
408
+ },
409
+ {
410
+ "author": "beachball",
411
+ "package": "@fluentui/react-portal",
412
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.73",
413
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
414
+ },
415
+ {
416
+ "author": "beachball",
417
+ "package": "@fluentui/react-portal",
418
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53",
419
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
420
+ }
421
+ ]
422
+ }
423
+ },
424
+ {
425
+ "date": "Tue, 05 Oct 2021 09:28:07 GMT",
426
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.60",
427
+ "version": "9.0.0-alpha.60",
428
+ "comments": {
429
+ "prerelease": [
430
+ {
431
+ "author": "beachball",
432
+ "package": "@fluentui/react-portal",
433
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.77",
434
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
435
+ },
436
+ {
437
+ "author": "beachball",
438
+ "package": "@fluentui/react-portal",
439
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.72",
440
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
441
+ },
442
+ {
443
+ "author": "beachball",
444
+ "package": "@fluentui/react-portal",
445
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.56",
446
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
447
+ },
448
+ {
449
+ "author": "beachball",
450
+ "package": "@fluentui/react-portal",
451
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52",
452
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
453
+ }
454
+ ]
455
+ }
456
+ },
457
+ {
458
+ "date": "Fri, 01 Oct 2021 14:13:08 GMT",
459
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.59",
460
+ "version": "9.0.0-alpha.59",
461
+ "comments": {
462
+ "prerelease": [
463
+ {
464
+ "author": "lingfangao@hotmail.com",
465
+ "package": "@fluentui/react-portal",
466
+ "comment": "Bump v9 prerelease versions to rerelease",
467
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
468
+ },
469
+ {
470
+ "author": "beachball",
471
+ "package": "@fluentui/react-portal",
472
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.76",
473
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
474
+ },
475
+ {
476
+ "author": "beachball",
477
+ "package": "@fluentui/react-portal",
478
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.28",
479
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
480
+ },
481
+ {
482
+ "author": "beachball",
483
+ "package": "@fluentui/react-portal",
484
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.71",
485
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
486
+ },
487
+ {
488
+ "author": "beachball",
489
+ "package": "@fluentui/react-portal",
490
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.55",
491
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
492
+ },
493
+ {
494
+ "author": "beachball",
495
+ "package": "@fluentui/react-portal",
496
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51",
497
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
498
+ }
499
+ ]
500
+ }
501
+ },
502
+ {
503
+ "date": "Fri, 01 Oct 2021 09:44:56 GMT",
504
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.57",
505
+ "version": "9.0.0-alpha.57",
506
+ "comments": {
507
+ "prerelease": [
508
+ {
509
+ "author": "beachball",
510
+ "package": "@fluentui/react-portal",
511
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.69",
512
+ "commit": "0ebd18ceaba3d032748f76da4ce06fcf8942c6c5"
513
+ }
514
+ ]
515
+ }
516
+ },
517
+ {
518
+ "date": "Wed, 29 Sep 2021 08:06:11 GMT",
519
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.56",
520
+ "version": "9.0.0-alpha.56",
521
+ "comments": {
522
+ "prerelease": [
523
+ {
524
+ "author": "beachball",
525
+ "package": "@fluentui/react-portal",
526
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.74",
527
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
528
+ },
529
+ {
530
+ "author": "beachball",
531
+ "package": "@fluentui/react-portal",
532
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.26",
533
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
534
+ },
535
+ {
536
+ "author": "beachball",
537
+ "package": "@fluentui/react-portal",
538
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.68",
539
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
540
+ },
541
+ {
542
+ "author": "beachball",
543
+ "package": "@fluentui/react-portal",
544
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49",
545
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
546
+ }
547
+ ]
548
+ }
549
+ },
550
+ {
551
+ "date": "Mon, 27 Sep 2021 08:06:00 GMT",
552
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.55",
553
+ "version": "9.0.0-alpha.55",
554
+ "comments": {
555
+ "prerelease": [
556
+ {
557
+ "author": "beachball",
558
+ "package": "@fluentui/react-portal",
559
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.73",
560
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
561
+ },
562
+ {
563
+ "author": "beachball",
564
+ "package": "@fluentui/react-portal",
565
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.67",
566
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
567
+ },
568
+ {
569
+ "author": "beachball",
570
+ "package": "@fluentui/react-portal",
571
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.53",
572
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
573
+ },
574
+ {
575
+ "author": "beachball",
576
+ "package": "@fluentui/react-portal",
577
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48",
578
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
579
+ }
580
+ ]
581
+ }
582
+ },
583
+ {
584
+ "date": "Fri, 24 Sep 2021 09:17:17 GMT",
585
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.54",
586
+ "version": "9.0.0-alpha.54",
587
+ "comments": {
588
+ "prerelease": [
589
+ {
590
+ "author": "beachball",
591
+ "package": "@fluentui/react-portal",
592
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.72",
593
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
594
+ },
595
+ {
596
+ "author": "beachball",
597
+ "package": "@fluentui/react-portal",
598
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.66",
599
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
600
+ },
601
+ {
602
+ "author": "beachball",
603
+ "package": "@fluentui/react-portal",
604
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.52",
605
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
606
+ },
607
+ {
608
+ "author": "beachball",
609
+ "package": "@fluentui/react-portal",
610
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47",
611
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
612
+ }
613
+ ]
614
+ }
615
+ },
616
+ {
617
+ "date": "Thu, 23 Sep 2021 08:21:34 GMT",
618
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.53",
619
+ "version": "9.0.0-alpha.53",
620
+ "comments": {
621
+ "prerelease": [
622
+ {
623
+ "author": "beachball",
624
+ "package": "@fluentui/react-portal",
625
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.71",
626
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
627
+ },
628
+ {
629
+ "author": "beachball",
630
+ "package": "@fluentui/react-portal",
631
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.65",
632
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
633
+ },
634
+ {
635
+ "author": "beachball",
636
+ "package": "@fluentui/react-portal",
637
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.51",
638
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
639
+ },
640
+ {
641
+ "author": "beachball",
642
+ "package": "@fluentui/react-portal",
643
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46",
644
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
645
+ }
646
+ ]
647
+ }
648
+ },
649
+ {
650
+ "date": "Wed, 22 Sep 2021 10:10:07 GMT",
651
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.52",
652
+ "version": "9.0.0-alpha.52",
653
+ "comments": {
654
+ "prerelease": [
655
+ {
656
+ "author": "beachball",
657
+ "package": "@fluentui/react-portal",
658
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.70",
659
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
660
+ },
661
+ {
662
+ "author": "beachball",
663
+ "package": "@fluentui/react-portal",
664
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.64",
665
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
666
+ },
667
+ {
668
+ "author": "beachball",
669
+ "package": "@fluentui/react-portal",
670
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.50",
671
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
672
+ },
673
+ {
674
+ "author": "beachball",
675
+ "package": "@fluentui/react-portal",
676
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45",
677
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
678
+ }
679
+ ]
680
+ }
681
+ },
682
+ {
683
+ "date": "Tue, 21 Sep 2021 07:42:34 GMT",
684
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.51",
685
+ "version": "9.0.0-alpha.51",
686
+ "comments": {
687
+ "prerelease": [
688
+ {
689
+ "author": "gcox@microsoft.com",
690
+ "package": "@fluentui/react-portal",
691
+ "comment": "Updating to types over interfaces",
692
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
693
+ },
694
+ {
695
+ "author": "beachball",
696
+ "package": "@fluentui/react-portal",
697
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.69",
698
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
699
+ },
700
+ {
701
+ "author": "beachball",
702
+ "package": "@fluentui/react-portal",
703
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.25",
704
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
705
+ },
706
+ {
707
+ "author": "beachball",
708
+ "package": "@fluentui/react-portal",
709
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.63",
710
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
711
+ },
712
+ {
713
+ "author": "beachball",
714
+ "package": "@fluentui/react-portal",
715
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44",
716
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
717
+ }
718
+ ]
719
+ }
720
+ },
721
+ {
722
+ "date": "Mon, 20 Sep 2021 07:36:26 GMT",
723
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.50",
724
+ "version": "9.0.0-alpha.50",
725
+ "comments": {
726
+ "none": [
727
+ {
728
+ "author": "lingfangao@hotmail.com",
729
+ "package": "@fluentui/react-portal",
730
+ "comment": "chore: use versioon eslint-plugin and react-conformance in dev dependencies",
731
+ "commit": "b8a304770f77c0353553a152dad34421070400a6"
732
+ }
733
+ ],
734
+ "prerelease": [
735
+ {
736
+ "author": "lingfangao@hotmail.com",
737
+ "package": "@fluentui/react-portal",
738
+ "commit": "b8a304770f77c0353553a152dad34421070400a6",
739
+ "comment": "Bump @fluentui/react-portal to v9.0.0-alpha.50"
740
+ }
741
+ ]
742
+ }
743
+ },
744
+ {
745
+ "date": "Fri, 17 Sep 2021 07:35:26 GMT",
746
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.49",
747
+ "version": "9.0.0-alpha.49",
748
+ "comments": {
749
+ "prerelease": [
750
+ {
751
+ "author": "Humberto.Morimoto@microsoft.com",
752
+ "package": "@fluentui/react-portal",
753
+ "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575",
754
+ "comment": "Bump @fluentui/react-portal to v9.0.0-alpha.49"
755
+ }
756
+ ]
757
+ }
758
+ },
759
+ {
760
+ "date": "Thu, 16 Sep 2021 07:38:39 GMT",
761
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.48",
762
+ "version": "9.0.0-alpha.48",
763
+ "comments": {
764
+ "prerelease": [
765
+ {
766
+ "author": "behowell@microsoft.com",
767
+ "package": "@fluentui/react-portal",
768
+ "commit": "fbe41e2877a20ce0f3c01b5188e17c12f941cc4c",
769
+ "comment": "Bump @fluentui/react-portal to v9.0.0-alpha.48"
770
+ }
771
+ ]
772
+ }
773
+ },
774
+ {
775
+ "date": "Tue, 14 Sep 2021 20:09:02 GMT",
776
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.47",
777
+ "version": "9.0.0-alpha.47",
778
+ "comments": {
779
+ "prerelease": [
780
+ {
781
+ "author": "bsunderhus@microsoft.com",
782
+ "package": "@fluentui/react-portal",
783
+ "commit": "10495c31fb5c5cf48b4665601a75a0cfabb6a03c",
784
+ "comment": "Bump @fluentui/react-portal to v9.0.0-alpha.47"
785
+ }
786
+ ]
787
+ }
788
+ },
789
+ {
790
+ "date": "Fri, 10 Sep 2021 16:31:53 GMT",
791
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.46",
792
+ "version": "9.0.0-alpha.46",
793
+ "comments": {
794
+ "prerelease": [
795
+ {
796
+ "author": "olfedias@microsoft.com",
797
+ "package": "@fluentui/react-portal",
798
+ "comment": "use simplified prop merging",
799
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0"
800
+ },
801
+ {
802
+ "author": "lingfangao@hotmail.com",
803
+ "package": "@fluentui/react-portal",
804
+ "comment": "chore(v9): Move all internal v9 dependencies from caret to fixed version",
805
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0"
806
+ },
807
+ {
808
+ "author": "lingfangao@hotmail.com",
809
+ "package": "@fluentui/react-portal",
810
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0",
811
+ "comment": "Bump @fluentui/react-portal to v9.0.0-alpha.46"
812
+ }
813
+ ]
814
+ }
815
+ },
816
+ {
817
+ "date": "Fri, 10 Sep 2021 07:39:51 GMT",
818
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.45",
819
+ "version": "9.0.0-alpha.45",
820
+ "comments": {
821
+ "prerelease": [
822
+ {
823
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.38",
824
+ "author": "behowell@microsoft.com",
825
+ "commit": "8700a515c7f2659761c5b53f55c32453bc3510b1",
826
+ "package": "@fluentui/react-portal"
827
+ }
828
+ ]
829
+ }
830
+ },
831
+ {
832
+ "date": "Tue, 07 Sep 2021 07:34:55 GMT",
833
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.44",
834
+ "version": "9.0.0-alpha.44",
835
+ "comments": {
836
+ "none": [
837
+ {
838
+ "comment": "Bump @fluentui/react-conformance to v0.5.0",
839
+ "author": "olfedias@microsoft.com",
840
+ "commit": "37e0f35eb706d40c4537010de97db94a831022d3",
841
+ "package": "@fluentui/react-portal"
842
+ }
843
+ ]
844
+ }
845
+ },
846
+ {
847
+ "date": "Mon, 06 Sep 2021 07:34:53 GMT",
848
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.44",
849
+ "version": "9.0.0-alpha.44",
850
+ "comments": {
851
+ "prerelease": [
852
+ {
853
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.37",
854
+ "author": "lingfangao@hotmail.com",
855
+ "commit": "cd22a603bb20947e7d23a3357b9a535afdb5ee1d",
856
+ "package": "@fluentui/react-portal"
857
+ }
858
+ ]
859
+ }
860
+ },
861
+ {
862
+ "date": "Thu, 02 Sep 2021 07:36:46 GMT",
863
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.43",
864
+ "version": "9.0.0-alpha.43",
865
+ "comments": {
866
+ "patch": [
867
+ {
868
+ "comment": "Bump @fluentui/react-conformance to v0.4.5",
869
+ "author": "olfedias@microsoft.com",
870
+ "commit": "8f887d05e8f2fed8433b147c6e175d8297455c51",
871
+ "package": "@fluentui/react-portal"
872
+ }
873
+ ]
874
+ }
875
+ },
876
+ {
877
+ "date": "Wed, 01 Sep 2021 07:39:56 GMT",
878
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.42",
879
+ "version": "9.0.0-alpha.42",
880
+ "comments": {
881
+ "prerelease": [
882
+ {
883
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.36",
884
+ "author": "bsunderhus@microsoft.com",
885
+ "commit": "40254a1b07bd51affd276e51af0b1d517714b45c",
886
+ "package": "@fluentui/react-portal"
887
+ }
888
+ ]
889
+ }
890
+ },
891
+ {
892
+ "date": "Tue, 31 Aug 2021 07:37:47 GMT",
893
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.41",
894
+ "version": "9.0.0-alpha.41",
895
+ "comments": {
896
+ "prerelease": [
897
+ {
898
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.54",
899
+ "author": "marata@microsoft.com",
900
+ "commit": "4a7f81f3d92f128a672717eda660af3ba50ee71b",
901
+ "package": "@fluentui/react-portal"
902
+ }
903
+ ]
904
+ }
905
+ },
906
+ {
907
+ "date": "Thu, 26 Aug 2021 07:35:43 GMT",
908
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.40",
909
+ "version": "9.0.0-alpha.40",
910
+ "comments": {
911
+ "none": [
912
+ {
913
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
914
+ "author": "martinhochel@microsoft.com",
915
+ "commit": "210a7de72f25eb379bb76f76867351b7cad36ccd",
916
+ "package": "@fluentui/react-portal"
917
+ }
918
+ ]
919
+ }
920
+ },
921
+ {
922
+ "date": "Tue, 24 Aug 2021 07:34:48 GMT",
923
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.40",
924
+ "version": "9.0.0-alpha.40",
925
+ "comments": {
926
+ "prerelease": [
927
+ {
928
+ "comment": "Updating TypeScript type-only imports/exports to use import/export syntax.",
929
+ "author": "dzearing@hotmail.com",
930
+ "commit": "4eec618fe480b129e08914b1f091a8509af60379",
931
+ "package": "@fluentui/react-portal"
932
+ }
933
+ ],
934
+ "none": [
935
+ {
936
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.1",
937
+ "author": "dzearing@hotmail.com",
938
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
939
+ "package": "@fluentui/react-portal"
940
+ },
941
+ {
942
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
943
+ "author": "dzearing@hotmail.com",
944
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
945
+ "package": "@fluentui/react-portal"
946
+ },
947
+ {
948
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.41",
949
+ "author": "dzearing@hotmail.com",
950
+ "commit": "789a3733b128569190319fce3fe2b46900b24896",
951
+ "package": "@fluentui/react-portal"
952
+ },
953
+ {
954
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.59",
955
+ "author": "dzearing@hotmail.com",
956
+ "commit": "789a3733b128569190319fce3fe2b46900b24896",
957
+ "package": "@fluentui/react-portal"
958
+ },
959
+ {
960
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.53",
961
+ "author": "dzearing@hotmail.com",
962
+ "commit": "789a3733b128569190319fce3fe2b46900b24896",
963
+ "package": "@fluentui/react-portal"
964
+ },
965
+ {
966
+ "comment": "Bump @fluentui/react-conformance to v0.4.4",
967
+ "author": "dzearing@hotmail.com",
968
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
969
+ "package": "@fluentui/react-portal"
970
+ },
971
+ {
972
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.23",
973
+ "author": "dzearing@hotmail.com",
974
+ "commit": "789a3733b128569190319fce3fe2b46900b24896",
975
+ "package": "@fluentui/react-portal"
976
+ },
977
+ {
978
+ "comment": "Bump @fluentui/scripts to v1.0.0",
979
+ "author": "dzearing@hotmail.com",
980
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
981
+ "package": "@fluentui/react-portal"
982
+ }
983
+ ]
984
+ }
985
+ },
986
+ {
987
+ "date": "Fri, 20 Aug 2021 07:37:28 GMT",
988
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.39",
989
+ "version": "9.0.0-alpha.39",
990
+ "comments": {
991
+ "prerelease": [
992
+ {
993
+ "comment": "Update .npmignore",
994
+ "author": "elcraig@microsoft.com",
995
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
996
+ "package": "@fluentui/react-portal"
997
+ }
998
+ ],
999
+ "none": [
1000
+ {
1001
+ "comment": "Update jest-environment comment formatting to fix lint error",
1002
+ "author": "behowell@microsoft.com",
1003
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
1004
+ "package": "@fluentui/react-portal"
1005
+ },
1006
+ {
1007
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.0",
1008
+ "author": "behowell@microsoft.com",
1009
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
1010
+ "package": "@fluentui/react-portal"
1011
+ },
1012
+ {
1013
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
1014
+ "author": "elcraig@microsoft.com",
1015
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1016
+ "package": "@fluentui/react-portal"
1017
+ },
1018
+ {
1019
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.40",
1020
+ "author": "elcraig@microsoft.com",
1021
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1022
+ "package": "@fluentui/react-portal"
1023
+ },
1024
+ {
1025
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.58",
1026
+ "author": "elcraig@microsoft.com",
1027
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1028
+ "package": "@fluentui/react-portal"
1029
+ },
1030
+ {
1031
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.52",
1032
+ "author": "elcraig@microsoft.com",
1033
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1034
+ "package": "@fluentui/react-portal"
1035
+ },
1036
+ {
1037
+ "comment": "Bump @fluentui/react-conformance to v0.4.4",
1038
+ "author": "behowell@microsoft.com",
1039
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
1040
+ "package": "@fluentui/react-portal"
1041
+ },
1042
+ {
1043
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.22",
1044
+ "author": "elcraig@microsoft.com",
1045
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1046
+ "package": "@fluentui/react-portal"
1047
+ },
1048
+ {
1049
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1050
+ "author": "behowell@microsoft.com",
1051
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
1052
+ "package": "@fluentui/react-portal"
1053
+ }
1054
+ ]
1055
+ }
1056
+ },
1057
+ {
1058
+ "date": "Thu, 19 Aug 2021 07:41:35 GMT",
1059
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.38",
1060
+ "version": "9.0.0-alpha.38",
1061
+ "comments": {
1062
+ "prerelease": [
1063
+ {
1064
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.33",
1065
+ "author": "bsunderhus@microsoft.com",
1066
+ "commit": "e467d64e7d3edb2512a81efdaeca5813269039b4",
1067
+ "package": "@fluentui/react-portal"
1068
+ }
1069
+ ]
1070
+ }
1071
+ },
1072
+ {
1073
+ "date": "Fri, 13 Aug 2021 07:36:34 GMT",
1074
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.37",
1075
+ "version": "9.0.0-alpha.37",
1076
+ "comments": {
1077
+ "prerelease": [
1078
+ {
1079
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.32",
1080
+ "author": "olfedias@microsoft.com",
1081
+ "commit": "284da7c9d57b33abce253aed5fc19b02898f6e0c",
1082
+ "package": "@fluentui/react-portal"
1083
+ }
1084
+ ]
1085
+ }
1086
+ },
1087
+ {
1088
+ "date": "Fri, 06 Aug 2021 07:35:14 GMT",
1089
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.36",
1090
+ "version": "9.0.0-alpha.36",
1091
+ "comments": {
1092
+ "prerelease": [
1093
+ {
1094
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.31",
1095
+ "author": "jspurlin@microsoft.com",
1096
+ "commit": "8a09087b4215a36a50b6d3478cd2b74155c9c630",
1097
+ "package": "@fluentui/react-portal"
1098
+ }
1099
+ ]
1100
+ }
1101
+ },
1102
+ {
1103
+ "date": "Wed, 04 Aug 2021 07:34:12 GMT",
1104
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.35",
1105
+ "version": "9.0.0-alpha.35",
1106
+ "comments": {
1107
+ "none": [
1108
+ {
1109
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.30",
1110
+ "author": "czearing@outlook.com",
1111
+ "commit": "109e85b19d8ee37a9c31ddf8e2083471bab64526",
1112
+ "package": "@fluentui/react-portal"
1113
+ }
1114
+ ]
1115
+ }
1116
+ },
1117
+ {
1118
+ "date": "Tue, 03 Aug 2021 07:39:30 GMT",
1119
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.35",
1120
+ "version": "9.0.0-alpha.35",
1121
+ "comments": {
1122
+ "patch": [
1123
+ {
1124
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.3",
1125
+ "author": "behowell@microsoft.com",
1126
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1127
+ "package": "@fluentui/react-portal"
1128
+ },
1129
+ {
1130
+ "comment": "Bump @fluentui/react-conformance to v0.4.4",
1131
+ "author": "behowell@microsoft.com",
1132
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1133
+ "package": "@fluentui/react-portal"
1134
+ },
1135
+ {
1136
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1137
+ "author": "behowell@microsoft.com",
1138
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1139
+ "package": "@fluentui/react-portal"
1140
+ }
1141
+ ],
1142
+ "prerelease": [
1143
+ {
1144
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.30",
1145
+ "author": "behowell@microsoft.com",
1146
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1147
+ "package": "@fluentui/react-portal"
1148
+ }
1149
+ ]
1150
+ }
1151
+ },
1152
+ {
1153
+ "date": "Mon, 02 Aug 2021 07:36:20 GMT",
1154
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.34",
1155
+ "version": "9.0.0-alpha.34",
1156
+ "comments": {
1157
+ "prerelease": [
1158
+ {
1159
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.29",
1160
+ "author": "lingfan.gao@microsoft.com",
1161
+ "commit": "ab0e1bafdd9ace2974b3362cd2300fb32af466fb",
1162
+ "package": "@fluentui/react-portal"
1163
+ }
1164
+ ]
1165
+ }
1166
+ },
1167
+ {
1168
+ "date": "Mon, 26 Jul 2021 07:37:30 GMT",
1169
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.33",
1170
+ "version": "9.0.0-alpha.33",
1171
+ "comments": {
1172
+ "prerelease": [
1173
+ {
1174
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.46",
1175
+ "author": "olfedias@microsoft.com",
1176
+ "commit": "19db6cb57a237073b0bb50d07eb921b1ce2e0c61",
1177
+ "package": "@fluentui/react-portal"
1178
+ }
1179
+ ]
1180
+ }
1181
+ },
1182
+ {
1183
+ "date": "Fri, 23 Jul 2021 07:38:19 GMT",
1184
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.32",
1185
+ "version": "9.0.0-alpha.32",
1186
+ "comments": {
1187
+ "prerelease": [
1188
+ {
1189
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.27",
1190
+ "author": "miroslav.stastny@microsoft.com",
1191
+ "commit": "5d812148593dc574a6f3a343a5657614b4d10456",
1192
+ "package": "@fluentui/react-portal"
1193
+ }
1194
+ ]
1195
+ }
1196
+ },
1197
+ {
1198
+ "date": "Thu, 22 Jul 2021 07:36:55 GMT",
1199
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.31",
1200
+ "version": "9.0.0-alpha.31",
1201
+ "comments": {
1202
+ "prerelease": [
1203
+ {
1204
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.26",
1205
+ "author": "behowell@microsoft.com",
1206
+ "commit": "2e257154d0448b8d4fd64142f93fcc9a225995cc",
1207
+ "package": "@fluentui/react-portal"
1208
+ }
1209
+ ]
1210
+ }
1211
+ },
1212
+ {
1213
+ "date": "Tue, 20 Jul 2021 22:23:17 GMT",
1214
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.30",
1215
+ "version": "9.0.0-alpha.30",
1216
+ "comments": {
1217
+ "none": [
1218
+ {
1219
+ "comment": "add bundle size fixtures",
1220
+ "author": "olfedias@microsoft.com",
1221
+ "commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
1222
+ "package": "@fluentui/react-portal"
1223
+ }
1224
+ ]
1225
+ }
1226
+ },
1227
+ {
1228
+ "date": "Thu, 15 Jul 2021 07:36:18 GMT",
1229
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.30",
1230
+ "version": "9.0.0-alpha.30",
1231
+ "comments": {
1232
+ "prerelease": [
1233
+ {
1234
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.25",
1235
+ "author": "bsunderhus@microsoft.com",
1236
+ "commit": "b60234948eacb8c6fa9d08ab8e98d963f583d475",
1237
+ "package": "@fluentui/react-portal"
1238
+ }
1239
+ ]
1240
+ }
1241
+ },
1242
+ {
1243
+ "date": "Tue, 13 Jul 2021 22:32:58 GMT",
1244
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.29",
1245
+ "version": "9.0.0-alpha.29",
1246
+ "comments": {
1247
+ "patch": [
1248
+ {
1249
+ "comment": "Bump @fluentui/react-conformance to v0.4.3",
1250
+ "author": "elcraig@microsoft.com",
1251
+ "commit": "12b74625dec55bd1919f6370513043d87705e5ea",
1252
+ "package": "@fluentui/react-portal"
1253
+ }
1254
+ ]
1255
+ }
1256
+ },
1257
+ {
1258
+ "date": "Tue, 13 Jul 2021 07:35:36 GMT",
1259
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.28",
1260
+ "version": "9.0.0-alpha.28",
1261
+ "comments": {
1262
+ "prerelease": [
1263
+ {
1264
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.24",
1265
+ "author": "behowell@microsoft.com",
1266
+ "commit": "8e5969e291bcafac21df12c9fb591bdd5654c613",
1267
+ "package": "@fluentui/react-portal"
1268
+ }
1269
+ ]
1270
+ }
1271
+ },
1272
+ {
1273
+ "date": "Fri, 09 Jul 2021 07:39:31 GMT",
1274
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.27",
1275
+ "version": "9.0.0-alpha.27",
1276
+ "comments": {
1277
+ "patch": [
1278
+ {
1279
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.2",
1280
+ "author": "martinhochel@microsoft.com",
1281
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1282
+ "package": "@fluentui/react-portal"
1283
+ },
1284
+ {
1285
+ "comment": "Bump @fluentui/react-conformance to v0.4.2",
1286
+ "author": "martinhochel@microsoft.com",
1287
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1288
+ "package": "@fluentui/react-portal"
1289
+ },
1290
+ {
1291
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1292
+ "author": "martinhochel@microsoft.com",
1293
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1294
+ "package": "@fluentui/react-portal"
1295
+ }
1296
+ ],
1297
+ "prerelease": [
1298
+ {
1299
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.23",
1300
+ "author": "martinhochel@microsoft.com",
1301
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1302
+ "package": "@fluentui/react-portal"
1303
+ }
1304
+ ]
1305
+ }
1306
+ },
1307
+ {
1308
+ "date": "Fri, 02 Jul 2021 23:15:55 GMT",
1309
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.26",
1310
+ "version": "9.0.0-alpha.26",
1311
+ "comments": {
1312
+ "prerelease": [
1313
+ {
1314
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.22",
1315
+ "author": "bsunderhus@microsoft.com",
1316
+ "commit": "6c37a1cb5c312d4be8b239bfd9f6c9f28e9f0d24",
1317
+ "package": "@fluentui/react-portal"
1318
+ }
1319
+ ]
1320
+ }
1321
+ },
1322
+ {
1323
+ "date": "Fri, 02 Jul 2021 07:37:06 GMT",
1324
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.25",
1325
+ "version": "9.0.0-alpha.25",
1326
+ "comments": {
1327
+ "prerelease": [
1328
+ {
1329
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.21",
1330
+ "author": "miroslav.stastny@microsoft.com",
1331
+ "commit": "7222c057ece8a528431a1860223d9d920685f975",
1332
+ "package": "@fluentui/react-portal"
1333
+ }
1334
+ ]
1335
+ }
1336
+ },
1337
+ {
1338
+ "date": "Thu, 01 Jul 2021 07:35:05 GMT",
1339
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.24",
1340
+ "version": "9.0.0-alpha.24",
1341
+ "comments": {
1342
+ "prerelease": [
1343
+ {
1344
+ "comment": "Fixing bug in start script of converged packages.",
1345
+ "author": "Humberto.Morimoto@microsoft.com",
1346
+ "commit": "c7eff2580a6fe159bbb3c4e77e549925187f3150",
1347
+ "package": "@fluentui/react-portal"
1348
+ }
1349
+ ]
1350
+ }
1351
+ },
1352
+ {
1353
+ "date": "Wed, 30 Jun 2021 07:38:35 GMT",
1354
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.23",
1355
+ "version": "9.0.0-alpha.23",
1356
+ "comments": {
1357
+ "prerelease": [
1358
+ {
1359
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.20",
1360
+ "author": "tristan.watanabe@gmail.com",
1361
+ "commit": "804ca93da84e19cec0737729473be5034a2e4939",
1362
+ "package": "@fluentui/react-portal"
1363
+ }
1364
+ ]
1365
+ }
1366
+ },
1367
+ {
1368
+ "date": "Tue, 29 Jun 2021 07:33:32 GMT",
1369
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.22",
1370
+ "version": "9.0.0-alpha.22",
1371
+ "comments": {
1372
+ "prerelease": [
1373
+ {
1374
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.19",
1375
+ "author": "olfedias@microsoft.com",
1376
+ "commit": "073ea5f67e3088a92f68caeeca32ef96410aabc5",
1377
+ "package": "@fluentui/react-portal"
1378
+ }
1379
+ ],
1380
+ "none": [
1381
+ {
1382
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.35",
1383
+ "author": "lingfan.gao@microsoft.com",
1384
+ "commit": "4f907a837f3b85923178b611e4fbb0d9ac222dda",
1385
+ "package": "@fluentui/react-portal"
1386
+ }
1387
+ ]
1388
+ }
1389
+ },
1390
+ {
1391
+ "date": "Mon, 28 Jun 2021 07:35:16 GMT",
1392
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.21",
1393
+ "version": "9.0.0-alpha.21",
1394
+ "comments": {
1395
+ "none": [
1396
+ {
1397
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.18",
1398
+ "author": "olfedias@microsoft.com",
1399
+ "commit": "bf6fd1290ea6c6861a5d80f704e0d6d0cadb71e0",
1400
+ "package": "@fluentui/react-portal"
1401
+ }
1402
+ ]
1403
+ }
1404
+ },
1405
+ {
1406
+ "date": "Wed, 23 Jun 2021 07:31:49 GMT",
1407
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.21",
1408
+ "version": "9.0.0-alpha.21",
1409
+ "comments": {
1410
+ "none": [
1411
+ {
1412
+ "comment": "Update build:local output path",
1413
+ "author": "miroslav.stastny@microsoft.com",
1414
+ "commit": "e4b6b9a9cbc90d5de498a85aeb793678b48f649b",
1415
+ "package": "@fluentui/react-portal"
1416
+ }
1417
+ ]
1418
+ }
1419
+ },
1420
+ {
1421
+ "date": "Mon, 21 Jun 2021 07:34:33 GMT",
1422
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.21",
1423
+ "version": "9.0.0-alpha.21",
1424
+ "comments": {
1425
+ "none": [
1426
+ {
1427
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.18",
1428
+ "author": "miroslav.stastny@microsoft.com",
1429
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
1430
+ "package": "@fluentui/react-portal"
1431
+ }
1432
+ ]
1433
+ }
1434
+ },
1435
+ {
1436
+ "date": "Thu, 17 Jun 2021 07:34:11 GMT",
1437
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.21",
1438
+ "version": "9.0.0-alpha.21",
1439
+ "comments": {
1440
+ "none": [
1441
+ {
1442
+ "comment": "Colocate stories and use new DX",
1443
+ "author": "lingfan.gao@microsoft.com",
1444
+ "commit": "fc966e8121161aa0a2f339e5a44dc998e318c5c1",
1445
+ "package": "@fluentui/react-portal"
1446
+ }
1447
+ ]
1448
+ }
1449
+ },
1450
+ {
1451
+ "date": "Tue, 15 Jun 2021 07:40:20 GMT",
1452
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.21",
1453
+ "version": "9.0.0-alpha.21",
1454
+ "comments": {
1455
+ "prerelease": [
1456
+ {
1457
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.34",
1458
+ "author": "lingfan.gao@microsoft.com",
1459
+ "commit": "a224777cc0089bd715cc304282115a2cd9929889",
1460
+ "package": "@fluentui/react-portal"
1461
+ }
1462
+ ]
1463
+ }
1464
+ },
1465
+ {
1466
+ "date": "Mon, 07 Jun 2021 07:38:15 GMT",
1467
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.20",
1468
+ "version": "9.0.0-alpha.20",
1469
+ "comments": {
1470
+ "patch": [
1471
+ {
1472
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.1",
1473
+ "author": "martinhochel@microsoft.com",
1474
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
1475
+ "package": "@fluentui/react-portal"
1476
+ },
1477
+ {
1478
+ "comment": "Bump @fluentui/react-conformance to v0.4.1",
1479
+ "author": "martinhochel@microsoft.com",
1480
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
1481
+ "package": "@fluentui/react-portal"
1482
+ },
1483
+ {
1484
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1485
+ "author": "martinhochel@microsoft.com",
1486
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
1487
+ "package": "@fluentui/react-portal"
1488
+ }
1489
+ ],
1490
+ "prerelease": [
1491
+ {
1492
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.17",
1493
+ "author": "martinhochel@microsoft.com",
1494
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
1495
+ "package": "@fluentui/react-portal"
1496
+ }
1497
+ ]
1498
+ }
1499
+ },
1500
+ {
1501
+ "date": "Fri, 04 Jun 2021 07:37:23 GMT",
1502
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.19",
1503
+ "version": "9.0.0-alpha.19",
1504
+ "comments": {
1505
+ "prerelease": [
1506
+ {
1507
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.16",
1508
+ "author": "Humberto.Morimoto@microsoft.com",
1509
+ "commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb",
1510
+ "package": "@fluentui/react-portal"
1511
+ }
1512
+ ]
1513
+ }
1514
+ },
1515
+ {
1516
+ "date": "Thu, 03 Jun 2021 07:36:03 GMT",
1517
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.18",
1518
+ "version": "9.0.0-alpha.18",
1519
+ "comments": {
1520
+ "prerelease": [
1521
+ {
1522
+ "comment": "Fix version of react-tabster dep",
1523
+ "author": "elcraig@microsoft.com",
1524
+ "commit": "6ee223627df7fc52726f04cef2d42d7cdb42b815",
1525
+ "package": "@fluentui/react-portal"
1526
+ }
1527
+ ],
1528
+ "none": [
1529
+ {
1530
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.31",
1531
+ "author": "martinhochel@microsoft.com",
1532
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
1533
+ "package": "@fluentui/react-portal"
1534
+ },
1535
+ {
1536
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.39",
1537
+ "author": "martinhochel@microsoft.com",
1538
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
1539
+ "package": "@fluentui/react-portal"
1540
+ },
1541
+ {
1542
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.15",
1543
+ "author": "martinhochel@microsoft.com",
1544
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
1545
+ "package": "@fluentui/react-portal"
1546
+ },
1547
+ {
1548
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.26",
1549
+ "author": "martinhochel@microsoft.com",
1550
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
1551
+ "package": "@fluentui/react-portal"
1552
+ }
1553
+ ]
1554
+ }
1555
+ },
1556
+ {
1557
+ "date": "Wed, 02 Jun 2021 07:37:15 GMT",
1558
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.17",
1559
+ "version": "9.0.0-alpha.17",
1560
+ "comments": {
1561
+ "prerelease": [
1562
+ {
1563
+ "comment": "Adds focus indicator attributes for react-portal",
1564
+ "author": "bsunderhus@microsoft.com",
1565
+ "commit": "d5d06382a85e2ddcc59f00c85120e1b3fc7ffa40",
1566
+ "package": "@fluentui/react-portal"
1567
+ }
1568
+ ]
1569
+ }
1570
+ },
1571
+ {
1572
+ "date": "Tue, 01 Jun 2021 07:31:58 GMT",
1573
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.16",
1574
+ "version": "9.0.0-alpha.16",
1575
+ "comments": {
1576
+ "none": [
1577
+ {
1578
+ "comment": "Revert \"chore: enable Jest aliases for converged packages (#18337)\"",
1579
+ "author": "olfedias@microsoft.com",
1580
+ "commit": "b5f2a02b37c8ea394a65f7a22bff057de93370dd",
1581
+ "package": "@fluentui/react-portal"
1582
+ }
1583
+ ]
1584
+ }
1585
+ },
1586
+ {
1587
+ "date": "Fri, 28 May 2021 07:33:57 GMT",
1588
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.16",
1589
+ "version": "9.0.0-alpha.16",
1590
+ "comments": {
1591
+ "none": [
1592
+ {
1593
+ "comment": "enable Jest aliases",
1594
+ "author": "olfedias@microsoft.com",
1595
+ "commit": "5379823a6f53bd36a936806153d228b9a0ef0543",
1596
+ "package": "@fluentui/react-portal"
1597
+ }
1598
+ ]
1599
+ }
1600
+ },
1601
+ {
1602
+ "date": "Wed, 26 May 2021 07:35:43 GMT",
1603
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.16",
1604
+ "version": "9.0.0-alpha.16",
1605
+ "comments": {
1606
+ "none": [
1607
+ {
1608
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.14",
1609
+ "author": "olfedias@microsoft.com",
1610
+ "commit": "d2504c72ec7fba0cf4dcf1984c2e1a9322720225",
1611
+ "package": "@fluentui/react-portal"
1612
+ }
1613
+ ],
1614
+ "prerelease": [
1615
+ {
1616
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.25",
1617
+ "author": "lingfan.gao@microsoft.com",
1618
+ "commit": "6ffca36c9537a1852d8ec26478b8b7aeb059e17c",
1619
+ "package": "@fluentui/react-portal"
1620
+ }
1621
+ ]
1622
+ }
1623
+ },
1624
+ {
1625
+ "date": "Fri, 21 May 2021 07:34:54 GMT",
1626
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.15",
1627
+ "version": "9.0.0-alpha.15",
1628
+ "comments": {
1629
+ "prerelease": [
1630
+ {
1631
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.14",
1632
+ "author": "behowell@microsoft.com",
1633
+ "commit": "aabab8dedf6aa56a403b314157bcef84b6bcd585",
1634
+ "package": "@fluentui/react-portal"
1635
+ }
1636
+ ]
1637
+ }
1638
+ },
1639
+ {
1640
+ "date": "Thu, 20 May 2021 07:41:54 GMT",
1641
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.14",
1642
+ "version": "9.0.0-alpha.14",
1643
+ "comments": {
1644
+ "none": [
1645
+ {
1646
+ "comment": "Update conformance tests in all packages to use a package-level isConformant wrapper with appropriate generics for props",
1647
+ "author": "elcraig@microsoft.com",
1648
+ "commit": "1e6ad173e2cfa18cfcae13311be7916f1b241432",
1649
+ "package": "@fluentui/react-portal"
1650
+ }
1651
+ ],
1652
+ "patch": [
1653
+ {
1654
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.0",
1655
+ "author": "elcraig@microsoft.com",
1656
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
1657
+ "package": "@fluentui/react-portal"
1658
+ },
1659
+ {
1660
+ "comment": "Bump @fluentui/react-conformance to v0.4.0",
1661
+ "author": "elcraig@microsoft.com",
1662
+ "commit": "1e6ad173e2cfa18cfcae13311be7916f1b241432",
1663
+ "package": "@fluentui/react-portal"
1664
+ },
1665
+ {
1666
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1667
+ "author": "elcraig@microsoft.com",
1668
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
1669
+ "package": "@fluentui/react-portal"
1670
+ }
1671
+ ],
1672
+ "prerelease": [
1673
+ {
1674
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.13",
1675
+ "author": "elcraig@microsoft.com",
1676
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
1677
+ "package": "@fluentui/react-portal"
1678
+ }
1679
+ ]
1680
+ }
1681
+ },
1682
+ {
1683
+ "date": "Wed, 19 May 2021 07:34:20 GMT",
1684
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.13",
1685
+ "version": "9.0.0-alpha.13",
1686
+ "comments": {
1687
+ "prerelease": [
1688
+ {
1689
+ "comment": "Render portals with virtual parent",
1690
+ "author": "lingfan.gao@microsoft.com",
1691
+ "commit": "90cd8ca21a6904680a1a06ba4800053dc69a9a48",
1692
+ "package": "@fluentui/react-portal"
1693
+ }
1694
+ ],
1695
+ "patch": [
1696
+ {
1697
+ "comment": "Bump @fluentui/react-conformance to v0.3.1",
1698
+ "author": "martinhochel@microsoft.com",
1699
+ "commit": "616b4b7c381c757871e8a590564d8eff7337834c",
1700
+ "package": "@fluentui/react-portal"
1701
+ }
1702
+ ]
1703
+ }
1704
+ },
1705
+ {
1706
+ "date": "Tue, 18 May 2021 07:34:38 GMT",
1707
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.12",
1708
+ "version": "9.0.0-alpha.12",
1709
+ "comments": {
1710
+ "prerelease": [
1711
+ {
1712
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.11",
1713
+ "author": "olfedias@microsoft.com",
1714
+ "commit": "c845a5045c99d8d83b2584cee016b1701cd3de57",
1715
+ "package": "@fluentui/react-portal"
1716
+ }
1717
+ ]
1718
+ }
1719
+ },
1720
+ {
1721
+ "date": "Thu, 13 May 2021 07:36:55 GMT",
1722
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.11",
1723
+ "version": "9.0.0-alpha.11",
1724
+ "comments": {
1725
+ "prerelease": [
1726
+ {
1727
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.10",
1728
+ "author": "olfedias@microsoft.com",
1729
+ "commit": "fb53fd67729d8236e0681d74322717f6974c8b72",
1730
+ "package": "@fluentui/react-portal"
1731
+ }
1732
+ ]
1733
+ }
1734
+ },
1735
+ {
1736
+ "date": "Wed, 12 May 2021 07:36:20 GMT",
1737
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.10",
1738
+ "version": "9.0.0-alpha.10",
1739
+ "comments": {
1740
+ "prerelease": [
1741
+ {
1742
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.9",
1743
+ "author": "olfedias@microsoft.com",
1744
+ "commit": "894712616ee3271fcf06e5fb24ad01e326e30bb5",
1745
+ "package": "@fluentui/react-portal"
1746
+ }
1747
+ ]
1748
+ }
1749
+ },
1750
+ {
1751
+ "date": "Mon, 10 May 2021 07:36:07 GMT",
1752
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.9",
1753
+ "version": "9.0.0-alpha.9",
1754
+ "comments": {
1755
+ "prerelease": [
1756
+ {
1757
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.8",
1758
+ "author": "olfedias@microsoft.com",
1759
+ "commit": "78c12235fcfebe43b7a77d36cbdfc67461ec32dc",
1760
+ "package": "@fluentui/react-portal"
1761
+ }
1762
+ ]
1763
+ }
1764
+ },
1765
+ {
1766
+ "date": "Wed, 05 May 2021 07:36:50 GMT",
1767
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.8",
1768
+ "version": "9.0.0-alpha.8",
1769
+ "comments": {
1770
+ "prerelease": [
1771
+ {
1772
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.7",
1773
+ "author": "olfedias@microsoft.com",
1774
+ "commit": "427fcf0fffb899e5ffcac4dfa61fca5d22ee176c",
1775
+ "package": "@fluentui/react-portal"
1776
+ }
1777
+ ]
1778
+ }
1779
+ },
1780
+ {
1781
+ "date": "Tue, 04 May 2021 07:36:35 GMT",
1782
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.7",
1783
+ "version": "9.0.0-alpha.7",
1784
+ "comments": {
1785
+ "none": [
1786
+ {
1787
+ "comment": "Add spec to component",
1788
+ "author": "lingfan.gao@microsoft.com",
1789
+ "commit": "fc9f3355d4910d7acc44442fa13e1dee9fc12d66",
1790
+ "package": "@fluentui/react-portal"
1791
+ }
1792
+ ]
1793
+ }
1794
+ },
1795
+ {
1796
+ "date": "Mon, 03 May 2021 07:45:19 GMT",
1797
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.7",
1798
+ "version": "9.0.0-alpha.7",
1799
+ "comments": {
1800
+ "prerelease": [
1801
+ {
1802
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.21",
1803
+ "author": "lingfan.gao@microsoft.com",
1804
+ "commit": "5e6aa4df0c03051e59d686d24b35f01c721a3b4e",
1805
+ "package": "@fluentui/react-portal"
1806
+ }
1807
+ ]
1808
+ }
1809
+ },
1810
+ {
1811
+ "date": "Fri, 30 Apr 2021 07:42:23 GMT",
1812
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.6",
1813
+ "version": "9.0.0-alpha.6",
1814
+ "comments": {
1815
+ "none": [
1816
+ {
1817
+ "comment": "Upgrade to typescript 4.1.5",
1818
+ "author": "jdh@microsoft.com",
1819
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
1820
+ "package": "@fluentui/react-portal"
1821
+ }
1822
+ ],
1823
+ "prerelease": [
1824
+ {
1825
+ "comment": "make implementation safe for SSR",
1826
+ "author": "olfedias@microsoft.com",
1827
+ "commit": "2a95add2ed379f3e061339d86ae03199ef0d5080",
1828
+ "package": "@fluentui/react-portal"
1829
+ }
1830
+ ],
1831
+ "patch": [
1832
+ {
1833
+ "comment": "Bump @fluentui/eslint-plugin to v1.2.0",
1834
+ "author": "joschect@microsoft.com",
1835
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
1836
+ "package": "@fluentui/react-portal"
1837
+ },
1838
+ {
1839
+ "comment": "Bump @fluentui/react-conformance to v0.3.0",
1840
+ "author": "joschect@microsoft.com",
1841
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
1842
+ "package": "@fluentui/react-portal"
1843
+ },
1844
+ {
1845
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1846
+ "author": "joschect@microsoft.com",
1847
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
1848
+ "package": "@fluentui/react-portal"
1849
+ }
1850
+ ]
1851
+ }
1852
+ },
1853
+ {
1854
+ "date": "Tue, 27 Apr 2021 07:34:03 GMT",
1855
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.5",
1856
+ "version": "9.0.0-alpha.5",
1857
+ "comments": {
1858
+ "prerelease": [
1859
+ {
1860
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.5",
1861
+ "author": "bsunderhus@microsoft.com",
1862
+ "commit": "fdb1af09ba60238bb1c3913af6a6a6fe98f49034",
1863
+ "package": "@fluentui/react-portal"
1864
+ }
1865
+ ]
1866
+ }
1867
+ },
1868
+ {
1869
+ "date": "Mon, 26 Apr 2021 07:34:31 GMT",
1870
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.4",
1871
+ "version": "9.0.0-alpha.4",
1872
+ "comments": {
1873
+ "prerelease": [
1874
+ {
1875
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.4",
1876
+ "author": "bsunderhus@microsoft.com",
1877
+ "commit": "76e2027d772bc9d19d3d217c449c5965262f73c4",
1878
+ "package": "@fluentui/react-portal"
1879
+ }
1880
+ ]
1881
+ }
1882
+ },
1883
+ {
1884
+ "date": "Fri, 23 Apr 2021 07:37:10 GMT",
1885
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.3",
1886
+ "version": "9.0.0-alpha.3",
1887
+ "comments": {
1888
+ "patch": [
1889
+ {
1890
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.1",
1891
+ "author": "olfedias@microsoft.com",
1892
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
1893
+ "package": "@fluentui/react-portal"
1894
+ },
1895
+ {
1896
+ "comment": "Bump @fluentui/react-conformance to v0.2.6",
1897
+ "author": "olfedias@microsoft.com",
1898
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
1899
+ "package": "@fluentui/react-portal"
1900
+ },
1901
+ {
1902
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1903
+ "author": "olfedias@microsoft.com",
1904
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
1905
+ "package": "@fluentui/react-portal"
1906
+ }
1907
+ ],
1908
+ "prerelease": [
1909
+ {
1910
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.3",
1911
+ "author": "olfedias@microsoft.com",
1912
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
1913
+ "package": "@fluentui/react-portal"
1914
+ }
1915
+ ]
1916
+ }
1917
+ },
1918
+ {
1919
+ "date": "Thu, 22 Apr 2021 07:33:28 GMT",
1920
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.2",
1921
+ "version": "9.0.0-alpha.2",
1922
+ "comments": {
1923
+ "none": [
1924
+ {
1925
+ "comment": "Adds serializer to converged components",
1926
+ "author": "bsunderhus@microsoft.com",
1927
+ "commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add",
1928
+ "package": "@fluentui/react-portal"
1929
+ }
1930
+ ],
1931
+ "prerelease": [
1932
+ {
1933
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.2",
1934
+ "author": "bsunderhus@microsoft.com",
1935
+ "commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add",
1936
+ "package": "@fluentui/react-portal"
1937
+ }
1938
+ ]
1939
+ }
1940
+ },
1941
+ {
1942
+ "date": "Wed, 21 Apr 2021 07:31:50 GMT",
1943
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.1",
1944
+ "version": "9.0.0-alpha.1",
1945
+ "comments": {
1946
+ "prerelease": [
1947
+ {
1948
+ "comment": "Implement Portal",
1949
+ "author": "lingfan.gao@microsoft.com",
1950
+ "commit": "1d13caea245d9360f3414ad6e530bc88231b12e4",
1951
+ "package": "@fluentui/react-portal"
1952
+ }
1953
+ ],
1954
+ "none": [
1955
+ {
1956
+ "comment": "Bump @fluentui/react-conformance to v0.2.5",
1957
+ "author": "martinhochel@microsoft.com",
1958
+ "commit": "c12557d08ab5673ec3d3ba9747cfec64f39309eb",
1959
+ "package": "@fluentui/react-portal"
1960
+ }
1961
+ ]
1962
+ }
1963
+ },
1964
+ {
1965
+ "date": "Tue, 20 Apr 2021 07:31:35 GMT",
1966
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.0",
1967
+ "version": "9.0.0-alpha.0",
1968
+ "comments": {
1969
+ "prerelease": [
1970
+ {
1971
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.23",
1972
+ "author": "lingfan.gao@microsoft.com",
1973
+ "commit": "c1e049dbcbf869f0a6e04d00f84dcfa7217eb808",
1974
+ "package": "@fluentui/react-portal"
1975
+ }
1976
+ ]
1977
+ }
1978
+ },
1979
+ {
1980
+ "date": "Mon, 19 Apr 2021 07:33:33 GMT",
1981
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.0",
1982
+ "version": "9.0.0-alpha.0",
1983
+ "comments": {
1984
+ "none": [
1985
+ {
1986
+ "comment": "Bump @fluentui/react-conformance to v0.2.5",
1987
+ "author": "elcraig@microsoft.com",
1988
+ "commit": "fdc32557d49e5d70ea7e4af8957102d415b44547",
1989
+ "package": "@fluentui/react-portal"
1990
+ }
1991
+ ]
1992
+ }
1993
+ },
1994
+ {
1995
+ "date": "Fri, 16 Apr 2021 18:08:21 GMT",
1996
+ "tag": "@fluentui/react-portal_v9.0.0-alpha.0",
1997
+ "version": "9.0.0-alpha.0",
1998
+ "comments": {
1999
+ "prerelease": [
2000
+ {
2001
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.22",
2002
+ "author": "bsunderhus@microsoft.com",
2003
+ "commit": "e158c65f9712556cfcca1e80c7156889885c95b0",
2004
+ "package": "@fluentui/react-portal"
2005
+ }
2006
+ ]
2007
+ }
2008
+ }
2009
+ ]
2010
+ }