@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.md ADDED
@@ -0,0 +1,749 @@
1
+ # Change Log - @fluentui/react-portal
2
+
3
+ This log was last generated on Wed, 02 Mar 2022 04:14:55 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20220302-0405.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v0.0.0-nightly-20220302-0405.1)
8
+
9
+ Wed, 02 Mar 2022 04:14:55 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-rc.4..@fluentui/react-portal_v0.0.0-nightly-20220302-0405.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by email not defined)
15
+ - Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
16
+ - Bump @fluentui/react-tabster to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
17
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
18
+
19
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-rc.4)
20
+
21
+ Tue, 01 Mar 2022 02:17:40 GMT
22
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-rc.3..@fluentui/react-portal_v9.0.0-rc.4)
23
+
24
+ ### Changes
25
+
26
+ - Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
27
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
28
+
29
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-rc.3)
30
+
31
+ Fri, 18 Feb 2022 13:35:33 GMT
32
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-rc.1..@fluentui/react-portal_v9.0.0-rc.3)
33
+
34
+ ### Changes
35
+
36
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
37
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
38
+ - Bump @fluentui/react-tabster to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
39
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
40
+
41
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-rc.1)
42
+
43
+ Thu, 10 Feb 2022 08:50:38 GMT
44
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-beta.5..@fluentui/react-portal_v9.0.0-rc.1)
45
+
46
+ ### Changes
47
+
48
+ - BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet ([PR #21365](https://github.com/microsoft/fluentui/pull/21365) by behowell@microsoft.com)
49
+ - remove export of commons types ([PR #21660](https://github.com/microsoft/fluentui/pull/21660) by mgodbolt@microsoft.com)
50
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
51
+ - remove unused dependency on Griffel ([PR #21393](https://github.com/microsoft/fluentui/pull/21393) by olfedias@microsoft.com)
52
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
53
+ - Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
54
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
55
+
56
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-beta.5)
57
+
58
+ Thu, 25 Nov 2021 08:34:15 GMT
59
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-beta.4..@fluentui/react-portal_v9.0.0-beta.5)
60
+
61
+ ### Changes
62
+
63
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
64
+ - Bump @fluentui/react-shared-contexts to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
65
+ - Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
66
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
67
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
68
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
69
+
70
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-beta.4)
71
+
72
+ Fri, 12 Nov 2021 13:25:29 GMT
73
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-beta.3..@fluentui/react-portal_v9.0.0-beta.4)
74
+
75
+ ### Changes
76
+
77
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
78
+ - Broke up stories added codesandbox refs ([PR #20372](https://github.com/microsoft/fluentui/pull/20372) by gcox@microsoft.com)
79
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
80
+ - Bump @fluentui/react-shared-contexts to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
81
+ - Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
82
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
83
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
84
+
85
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-beta.3)
86
+
87
+ Wed, 27 Oct 2021 12:14:21 GMT
88
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-beta.2..@fluentui/react-portal_v9.0.0-beta.3)
89
+
90
+ ### Changes
91
+
92
+ - Removed duplicate 'Portal' from story names ([PR #20270](https://github.com/microsoft/fluentui/pull/20270) by gcox@microsoft.com)
93
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
94
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
95
+ - Bump @fluentui/react-shared-contexts to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
96
+ - Bump @fluentui/react-tabster to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
97
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
98
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
99
+
100
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-beta.2)
101
+
102
+ Tue, 12 Oct 2021 19:45:58 GMT
103
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-beta.1..@fluentui/react-portal_v9.0.0-beta.2)
104
+
105
+ ### Changes
106
+
107
+ - Bump @fluentui/react-tabster to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
108
+
109
+ ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-beta.1)
110
+
111
+ Wed, 06 Oct 2021 10:37:22 GMT
112
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.61..@fluentui/react-portal_v9.0.0-beta.1)
113
+
114
+ ### Changes
115
+
116
+ - Bump all v9 components to beta prerelease tag ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by lingfangao@hotmail.com)
117
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
118
+ - Bump @fluentui/react-shared-contexts to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
119
+ - Bump @fluentui/react-tabster to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
120
+ - Bump @fluentui/react-utilities to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
121
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
122
+
123
+ ## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.61)
124
+
125
+ Tue, 05 Oct 2021 12:47:58 GMT
126
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.60..@fluentui/react-portal_v9.0.0-alpha.61)
127
+
128
+ ### Changes
129
+
130
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.78 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
131
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.73 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
132
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
133
+
134
+ ## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.60)
135
+
136
+ Tue, 05 Oct 2021 09:28:07 GMT
137
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.59..@fluentui/react-portal_v9.0.0-alpha.60)
138
+
139
+ ### Changes
140
+
141
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
142
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.72 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
143
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
144
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
145
+
146
+ ## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.59)
147
+
148
+ Fri, 01 Oct 2021 14:13:08 GMT
149
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.57..@fluentui/react-portal_v9.0.0-alpha.59)
150
+
151
+ ### Changes
152
+
153
+ - Bump v9 prerelease versions to rerelease ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by lingfangao@hotmail.com)
154
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.76 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
155
+ - Bump @fluentui/react-shared-contexts to v9.0.0-alpha.28 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
156
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.71 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
157
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.55 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
158
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
159
+
160
+ ## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.57)
161
+
162
+ Fri, 01 Oct 2021 09:44:56 GMT
163
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.56..@fluentui/react-portal_v9.0.0-alpha.57)
164
+
165
+ ### Changes
166
+
167
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.69 ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by beachball)
168
+
169
+ ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.56)
170
+
171
+ Wed, 29 Sep 2021 08:06:11 GMT
172
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.55..@fluentui/react-portal_v9.0.0-alpha.56)
173
+
174
+ ### Changes
175
+
176
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.74 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
177
+ - Bump @fluentui/react-shared-contexts to v9.0.0-alpha.26 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
178
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.68 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
179
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
180
+
181
+ ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.55)
182
+
183
+ Mon, 27 Sep 2021 08:06:00 GMT
184
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.54..@fluentui/react-portal_v9.0.0-alpha.55)
185
+
186
+ ### Changes
187
+
188
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.73 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
189
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.67 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
190
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
191
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
192
+
193
+ ## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.54)
194
+
195
+ Fri, 24 Sep 2021 09:17:17 GMT
196
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.53..@fluentui/react-portal_v9.0.0-alpha.54)
197
+
198
+ ### Changes
199
+
200
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.72 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
201
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.66 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
202
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.52 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
203
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
204
+
205
+ ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.53)
206
+
207
+ Thu, 23 Sep 2021 08:21:34 GMT
208
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.52..@fluentui/react-portal_v9.0.0-alpha.53)
209
+
210
+ ### Changes
211
+
212
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.71 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
213
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.65 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
214
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.51 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
215
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
216
+
217
+ ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.52)
218
+
219
+ Wed, 22 Sep 2021 10:10:07 GMT
220
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.51..@fluentui/react-portal_v9.0.0-alpha.52)
221
+
222
+ ### Changes
223
+
224
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.70 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
225
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.64 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
226
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.50 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
227
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
228
+
229
+ ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.51)
230
+
231
+ Tue, 21 Sep 2021 07:42:34 GMT
232
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.50..@fluentui/react-portal_v9.0.0-alpha.51)
233
+
234
+ ### Changes
235
+
236
+ - Updating to types over interfaces ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by gcox@microsoft.com)
237
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.69 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
238
+ - Bump @fluentui/react-shared-contexts to v9.0.0-alpha.25 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
239
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.63 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
240
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
241
+
242
+ ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.50)
243
+
244
+ Mon, 20 Sep 2021 07:36:26 GMT
245
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.49..@fluentui/react-portal_v9.0.0-alpha.50)
246
+
247
+ ### Changes
248
+
249
+ - Bump @fluentui/react-portal to v9.0.0-alpha.50 ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by lingfangao@hotmail.com)
250
+
251
+ ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.49)
252
+
253
+ Fri, 17 Sep 2021 07:35:26 GMT
254
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.48..@fluentui/react-portal_v9.0.0-alpha.49)
255
+
256
+ ### Changes
257
+
258
+ - Bump @fluentui/react-portal to v9.0.0-alpha.49 ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
259
+
260
+ ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.48)
261
+
262
+ Thu, 16 Sep 2021 07:38:39 GMT
263
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.47..@fluentui/react-portal_v9.0.0-alpha.48)
264
+
265
+ ### Changes
266
+
267
+ - Bump @fluentui/react-portal to v9.0.0-alpha.48 ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
268
+
269
+ ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.47)
270
+
271
+ Tue, 14 Sep 2021 20:09:02 GMT
272
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.46..@fluentui/react-portal_v9.0.0-alpha.47)
273
+
274
+ ### Changes
275
+
276
+ - Bump @fluentui/react-portal to v9.0.0-alpha.47 ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by bsunderhus@microsoft.com)
277
+
278
+ ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.46)
279
+
280
+ Fri, 10 Sep 2021 16:31:53 GMT
281
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.45..@fluentui/react-portal_v9.0.0-alpha.46)
282
+
283
+ ### Changes
284
+
285
+ - use simplified prop merging ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by olfedias@microsoft.com)
286
+ - chore(v9): Move all internal v9 dependencies from caret to fixed version ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
287
+ - Bump @fluentui/react-portal to v9.0.0-alpha.46 ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
288
+
289
+ ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.45)
290
+
291
+ Fri, 10 Sep 2021 07:39:51 GMT
292
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.44..@fluentui/react-portal_v9.0.0-alpha.45)
293
+
294
+ ### Changes
295
+
296
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.38 ([PR #19642](https://github.com/microsoft/fluentui/pull/19642) by behowell@microsoft.com)
297
+
298
+ ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.44)
299
+
300
+ Mon, 06 Sep 2021 07:34:53 GMT
301
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.43..@fluentui/react-portal_v9.0.0-alpha.44)
302
+
303
+ ### Changes
304
+
305
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.37 ([PR #19640](https://github.com/microsoft/fluentui/pull/19640) by lingfangao@hotmail.com)
306
+
307
+ ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.43)
308
+
309
+ Thu, 02 Sep 2021 07:36:46 GMT
310
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.42..@fluentui/react-portal_v9.0.0-alpha.43)
311
+
312
+ ### Patches
313
+
314
+ - Bump @fluentui/react-conformance to v0.4.5 ([PR #19590](https://github.com/microsoft/fluentui/pull/19590) by olfedias@microsoft.com)
315
+
316
+ ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.42)
317
+
318
+ Wed, 01 Sep 2021 07:39:56 GMT
319
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.41..@fluentui/react-portal_v9.0.0-alpha.42)
320
+
321
+ ### Changes
322
+
323
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.36 ([PR #19483](https://github.com/microsoft/fluentui/pull/19483) by bsunderhus@microsoft.com)
324
+
325
+ ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.41)
326
+
327
+ Tue, 31 Aug 2021 07:37:47 GMT
328
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.40..@fluentui/react-portal_v9.0.0-alpha.41)
329
+
330
+ ### Changes
331
+
332
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.54 ([PR #19534](https://github.com/microsoft/fluentui/pull/19534) by marata@microsoft.com)
333
+
334
+ ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.40)
335
+
336
+ Tue, 24 Aug 2021 07:34:48 GMT
337
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.39..@fluentui/react-portal_v9.0.0-alpha.40)
338
+
339
+ ### Changes
340
+
341
+ - Updating TypeScript type-only imports/exports to use import/export syntax. ([PR #19473](https://github.com/microsoft/fluentui/pull/19473) by dzearing@hotmail.com)
342
+
343
+ ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.39)
344
+
345
+ Fri, 20 Aug 2021 07:37:28 GMT
346
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.38..@fluentui/react-portal_v9.0.0-alpha.39)
347
+
348
+ ### Changes
349
+
350
+ - Update .npmignore ([PR #19441](https://github.com/microsoft/fluentui/pull/19441) by elcraig@microsoft.com)
351
+
352
+ ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.38)
353
+
354
+ Thu, 19 Aug 2021 07:41:35 GMT
355
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.37..@fluentui/react-portal_v9.0.0-alpha.38)
356
+
357
+ ### Changes
358
+
359
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.33 ([PR #19273](https://github.com/microsoft/fluentui/pull/19273) by bsunderhus@microsoft.com)
360
+
361
+ ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.37)
362
+
363
+ Fri, 13 Aug 2021 07:36:34 GMT
364
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.36..@fluentui/react-portal_v9.0.0-alpha.37)
365
+
366
+ ### Changes
367
+
368
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.32 ([PR #19341](https://github.com/microsoft/fluentui/pull/19341) by olfedias@microsoft.com)
369
+
370
+ ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.36)
371
+
372
+ Fri, 06 Aug 2021 07:35:14 GMT
373
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.35..@fluentui/react-portal_v9.0.0-alpha.36)
374
+
375
+ ### Changes
376
+
377
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.31 ([PR #19281](https://github.com/microsoft/fluentui/pull/19281) by jspurlin@microsoft.com)
378
+
379
+ ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.35)
380
+
381
+ Tue, 03 Aug 2021 07:39:30 GMT
382
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.34..@fluentui/react-portal_v9.0.0-alpha.35)
383
+
384
+ ### Patches
385
+
386
+ - Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
387
+ - Bump @fluentui/react-conformance to v0.4.4 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
388
+ - Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
389
+
390
+ ### Changes
391
+
392
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.30 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
393
+
394
+ ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.34)
395
+
396
+ Mon, 02 Aug 2021 07:36:20 GMT
397
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.33..@fluentui/react-portal_v9.0.0-alpha.34)
398
+
399
+ ### Changes
400
+
401
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.29 ([PR #19204](https://github.com/microsoft/fluentui/pull/19204) by lingfan.gao@microsoft.com)
402
+
403
+ ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.33)
404
+
405
+ Mon, 26 Jul 2021 07:37:30 GMT
406
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.32..@fluentui/react-portal_v9.0.0-alpha.33)
407
+
408
+ ### Changes
409
+
410
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.46 ([PR #18968](https://github.com/microsoft/fluentui/pull/18968) by olfedias@microsoft.com)
411
+
412
+ ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.32)
413
+
414
+ Fri, 23 Jul 2021 07:38:19 GMT
415
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.31..@fluentui/react-portal_v9.0.0-alpha.32)
416
+
417
+ ### Changes
418
+
419
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.27 ([PR #19041](https://github.com/microsoft/fluentui/pull/19041) by miroslav.stastny@microsoft.com)
420
+
421
+ ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.31)
422
+
423
+ Thu, 22 Jul 2021 07:36:55 GMT
424
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.30..@fluentui/react-portal_v9.0.0-alpha.31)
425
+
426
+ ### Changes
427
+
428
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.26 ([PR #19023](https://github.com/microsoft/fluentui/pull/19023) by behowell@microsoft.com)
429
+
430
+ ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.30)
431
+
432
+ Thu, 15 Jul 2021 07:36:18 GMT
433
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.29..@fluentui/react-portal_v9.0.0-alpha.30)
434
+
435
+ ### Changes
436
+
437
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.25 ([PR #18861](https://github.com/microsoft/fluentui/pull/18861) by bsunderhus@microsoft.com)
438
+
439
+ ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.29)
440
+
441
+ Tue, 13 Jul 2021 22:32:58 GMT
442
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.28..@fluentui/react-portal_v9.0.0-alpha.29)
443
+
444
+ ### Patches
445
+
446
+ - Bump @fluentui/react-conformance to v0.4.3 ([PR #18925](https://github.com/microsoft/fluentui/pull/18925) by elcraig@microsoft.com)
447
+
448
+ ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.28)
449
+
450
+ Tue, 13 Jul 2021 07:35:36 GMT
451
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.27..@fluentui/react-portal_v9.0.0-alpha.28)
452
+
453
+ ### Changes
454
+
455
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.24 ([PR #18560](https://github.com/microsoft/fluentui/pull/18560) by behowell@microsoft.com)
456
+
457
+ ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.27)
458
+
459
+ Fri, 09 Jul 2021 07:39:31 GMT
460
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.26..@fluentui/react-portal_v9.0.0-alpha.27)
461
+
462
+ ### Patches
463
+
464
+ - Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
465
+ - Bump @fluentui/react-conformance to v0.4.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
466
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
467
+
468
+ ### Changes
469
+
470
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.23 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
471
+
472
+ ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.26)
473
+
474
+ Fri, 02 Jul 2021 23:15:55 GMT
475
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.25..@fluentui/react-portal_v9.0.0-alpha.26)
476
+
477
+ ### Changes
478
+
479
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.22 ([PR #18721](https://github.com/microsoft/fluentui/pull/18721) by bsunderhus@microsoft.com)
480
+
481
+ ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.25)
482
+
483
+ Fri, 02 Jul 2021 07:37:06 GMT
484
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.24..@fluentui/react-portal_v9.0.0-alpha.25)
485
+
486
+ ### Changes
487
+
488
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.21 ([PR #18655](https://github.com/microsoft/fluentui/pull/18655) by miroslav.stastny@microsoft.com)
489
+
490
+ ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.24)
491
+
492
+ Thu, 01 Jul 2021 07:35:05 GMT
493
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.23..@fluentui/react-portal_v9.0.0-alpha.24)
494
+
495
+ ### Changes
496
+
497
+ - Fixing bug in start script of converged packages. ([PR #18768](https://github.com/microsoft/fluentui/pull/18768) by Humberto.Morimoto@microsoft.com)
498
+
499
+ ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.23)
500
+
501
+ Wed, 30 Jun 2021 07:38:35 GMT
502
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.22..@fluentui/react-portal_v9.0.0-alpha.23)
503
+
504
+ ### Changes
505
+
506
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.20 ([PR #18695](https://github.com/microsoft/fluentui/pull/18695) by tristan.watanabe@gmail.com)
507
+
508
+ ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.22)
509
+
510
+ Tue, 29 Jun 2021 07:33:32 GMT
511
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.21..@fluentui/react-portal_v9.0.0-alpha.22)
512
+
513
+ ### Changes
514
+
515
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.19 ([PR #18169](https://github.com/microsoft/fluentui/pull/18169) by olfedias@microsoft.com)
516
+
517
+ ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.21)
518
+
519
+ Tue, 15 Jun 2021 07:40:20 GMT
520
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.20..@fluentui/react-portal_v9.0.0-alpha.21)
521
+
522
+ ### Changes
523
+
524
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.34 ([PR #18490](https://github.com/microsoft/fluentui/pull/18490) by lingfan.gao@microsoft.com)
525
+
526
+ ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.20)
527
+
528
+ Mon, 07 Jun 2021 07:38:15 GMT
529
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.19..@fluentui/react-portal_v9.0.0-alpha.20)
530
+
531
+ ### Patches
532
+
533
+ - Bump @fluentui/eslint-plugin to v1.3.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
534
+ - Bump @fluentui/react-conformance to v0.4.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
535
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
536
+
537
+ ### Changes
538
+
539
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.17 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
540
+
541
+ ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.19)
542
+
543
+ Fri, 04 Jun 2021 07:37:23 GMT
544
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.18..@fluentui/react-portal_v9.0.0-alpha.19)
545
+
546
+ ### Changes
547
+
548
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.16 ([PR #18168](https://github.com/microsoft/fluentui/pull/18168) by Humberto.Morimoto@microsoft.com)
549
+
550
+ ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.18)
551
+
552
+ Thu, 03 Jun 2021 07:36:03 GMT
553
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.17..@fluentui/react-portal_v9.0.0-alpha.18)
554
+
555
+ ### Changes
556
+
557
+ - Fix version of react-tabster dep ([PR #18349](https://github.com/microsoft/fluentui/pull/18349) by elcraig@microsoft.com)
558
+
559
+ ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.17)
560
+
561
+ Wed, 02 Jun 2021 07:37:15 GMT
562
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.16..@fluentui/react-portal_v9.0.0-alpha.17)
563
+
564
+ ### Changes
565
+
566
+ - Adds focus indicator attributes for react-portal ([PR #18399](https://github.com/microsoft/fluentui/pull/18399) by bsunderhus@microsoft.com)
567
+
568
+ ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.16)
569
+
570
+ Wed, 26 May 2021 07:35:43 GMT
571
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.15..@fluentui/react-portal_v9.0.0-alpha.16)
572
+
573
+ ### Changes
574
+
575
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.25 ([PR #18323](https://github.com/microsoft/fluentui/pull/18323) by lingfan.gao@microsoft.com)
576
+
577
+ ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.15)
578
+
579
+ Fri, 21 May 2021 07:34:54 GMT
580
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.14..@fluentui/react-portal_v9.0.0-alpha.15)
581
+
582
+ ### Changes
583
+
584
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.14 ([PR #18259](https://github.com/microsoft/fluentui/pull/18259) by behowell@microsoft.com)
585
+
586
+ ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.14)
587
+
588
+ Thu, 20 May 2021 07:41:54 GMT
589
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.13..@fluentui/react-portal_v9.0.0-alpha.14)
590
+
591
+ ### Patches
592
+
593
+ - Bump @fluentui/eslint-plugin to v1.3.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
594
+ - Bump @fluentui/react-conformance to v0.4.0 ([PR #17577](https://github.com/microsoft/fluentui/pull/17577) by elcraig@microsoft.com)
595
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
596
+
597
+ ### Changes
598
+
599
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.13 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
600
+
601
+ ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.13)
602
+
603
+ Wed, 19 May 2021 07:34:20 GMT
604
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.12..@fluentui/react-portal_v9.0.0-alpha.13)
605
+
606
+ ### Patches
607
+
608
+ - Bump @fluentui/react-conformance to v0.3.1 ([PR #18194](https://github.com/microsoft/fluentui/pull/18194) by martinhochel@microsoft.com)
609
+
610
+ ### Changes
611
+
612
+ - Render portals with virtual parent ([PR #18148](https://github.com/microsoft/fluentui/pull/18148) by lingfan.gao@microsoft.com)
613
+
614
+ ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.12)
615
+
616
+ Tue, 18 May 2021 07:34:38 GMT
617
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.11..@fluentui/react-portal_v9.0.0-alpha.12)
618
+
619
+ ### Changes
620
+
621
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.11 ([PR #18171](https://github.com/microsoft/fluentui/pull/18171) by olfedias@microsoft.com)
622
+
623
+ ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.11)
624
+
625
+ Thu, 13 May 2021 07:36:55 GMT
626
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.10..@fluentui/react-portal_v9.0.0-alpha.11)
627
+
628
+ ### Changes
629
+
630
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.10 ([PR #18039](https://github.com/microsoft/fluentui/pull/18039) by olfedias@microsoft.com)
631
+
632
+ ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.10)
633
+
634
+ Wed, 12 May 2021 07:36:20 GMT
635
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.9..@fluentui/react-portal_v9.0.0-alpha.10)
636
+
637
+ ### Changes
638
+
639
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.9 ([PR #18097](https://github.com/microsoft/fluentui/pull/18097) by olfedias@microsoft.com)
640
+
641
+ ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.9)
642
+
643
+ Mon, 10 May 2021 07:36:07 GMT
644
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.8..@fluentui/react-portal_v9.0.0-alpha.9)
645
+
646
+ ### Changes
647
+
648
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.8 ([PR #18095](https://github.com/microsoft/fluentui/pull/18095) by olfedias@microsoft.com)
649
+
650
+ ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.8)
651
+
652
+ Wed, 05 May 2021 07:36:50 GMT
653
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.7..@fluentui/react-portal_v9.0.0-alpha.8)
654
+
655
+ ### Changes
656
+
657
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.7 ([PR #18038](https://github.com/microsoft/fluentui/pull/18038) by olfedias@microsoft.com)
658
+
659
+ ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.7)
660
+
661
+ Mon, 03 May 2021 07:45:19 GMT
662
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.6..@fluentui/react-portal_v9.0.0-alpha.7)
663
+
664
+ ### Changes
665
+
666
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.21 ([PR #18005](https://github.com/microsoft/fluentui/pull/18005) by lingfan.gao@microsoft.com)
667
+
668
+ ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.6)
669
+
670
+ Fri, 30 Apr 2021 07:42:23 GMT
671
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.5..@fluentui/react-portal_v9.0.0-alpha.6)
672
+
673
+ ### Patches
674
+
675
+ - Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
676
+ - Bump @fluentui/react-conformance to v0.3.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
677
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
678
+
679
+ ### Changes
680
+
681
+ - make implementation safe for SSR ([PR #17924](https://github.com/microsoft/fluentui/pull/17924) by olfedias@microsoft.com)
682
+
683
+ ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.5)
684
+
685
+ Tue, 27 Apr 2021 07:34:03 GMT
686
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.4..@fluentui/react-portal_v9.0.0-alpha.5)
687
+
688
+ ### Changes
689
+
690
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.5 ([PR #17922](https://github.com/microsoft/fluentui/pull/17922) by bsunderhus@microsoft.com)
691
+
692
+ ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.4)
693
+
694
+ Mon, 26 Apr 2021 07:34:31 GMT
695
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.3..@fluentui/react-portal_v9.0.0-alpha.4)
696
+
697
+ ### Changes
698
+
699
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.4 ([PR #17936](https://github.com/microsoft/fluentui/pull/17936) by bsunderhus@microsoft.com)
700
+
701
+ ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.3)
702
+
703
+ Fri, 23 Apr 2021 07:37:10 GMT
704
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.2..@fluentui/react-portal_v9.0.0-alpha.3)
705
+
706
+ ### Patches
707
+
708
+ - Bump @fluentui/eslint-plugin to v1.1.1 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
709
+ - Bump @fluentui/react-conformance to v0.2.6 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
710
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
711
+
712
+ ### Changes
713
+
714
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.3 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
715
+
716
+ ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.2)
717
+
718
+ Thu, 22 Apr 2021 07:33:28 GMT
719
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.1..@fluentui/react-portal_v9.0.0-alpha.2)
720
+
721
+ ### Changes
722
+
723
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.2 ([PR #17826](https://github.com/microsoft/fluentui/pull/17826) by bsunderhus@microsoft.com)
724
+
725
+ ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.1)
726
+
727
+ Wed, 21 Apr 2021 07:31:50 GMT
728
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.0..@fluentui/react-portal_v9.0.0-alpha.1)
729
+
730
+ ### Changes
731
+
732
+ - Implement Portal ([PR #17843](https://github.com/microsoft/fluentui/pull/17843) by lingfan.gao@microsoft.com)
733
+
734
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.0)
735
+
736
+ Tue, 20 Apr 2021 07:31:35 GMT
737
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.0.0-alpha.0..@fluentui/react-portal_v9.0.0-alpha.0)
738
+
739
+ ### Changes
740
+
741
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.23 ([PR #17855](https://github.com/microsoft/fluentui/pull/17855) by lingfan.gao@microsoft.com)
742
+
743
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.0.0-alpha.0)
744
+
745
+ Fri, 16 Apr 2021 18:08:21 GMT
746
+
747
+ ### Changes
748
+
749
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.22 ([PR #17840](https://github.com/microsoft/fluentui/pull/17840) by bsunderhus@microsoft.com)