@fluentui/react-popover 9.0.0-rc.5 → 9.0.0-rc.8
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.
- package/CHANGELOG.json +194 -1
- package/CHANGELOG.md +121 -74
- package/Spec.md +20 -0
- package/dist/{react-popover.d.ts → index.d.ts} +20 -2
- package/{lib → dist}/tsdoc-metadata.json +0 -0
- package/lib/components/Popover/Popover.types.js.map +1 -1
- package/lib/components/Popover/renderPopover.js +4 -2
- package/lib/components/Popover/renderPopover.js.map +1 -1
- package/lib/components/Popover/usePopover.js +38 -5
- package/lib/components/Popover/usePopover.js.map +1 -1
- package/lib/components/PopoverSurface/PopoverSurface.types.js.map +1 -1
- package/lib/components/PopoverSurface/renderPopoverSurface.js +10 -4
- package/lib/components/PopoverSurface/renderPopoverSurface.js.map +1 -1
- package/lib/components/PopoverSurface/usePopoverSurface.js +2 -0
- package/lib/components/PopoverSurface/usePopoverSurface.js.map +1 -1
- package/lib/components/PopoverSurface/usePopoverSurfaceStyles.js +8 -1
- package/lib/components/PopoverSurface/usePopoverSurfaceStyles.js.map +1 -1
- package/lib/popoverContext.js +2 -1
- package/lib/popoverContext.js.map +1 -1
- package/lib-commonjs/components/Popover/renderPopover.js +4 -2
- package/lib-commonjs/components/Popover/renderPopover.js.map +1 -1
- package/lib-commonjs/components/Popover/usePopover.js +38 -5
- package/lib-commonjs/components/Popover/usePopover.js.map +1 -1
- package/lib-commonjs/components/PopoverSurface/renderPopoverSurface.js +10 -4
- package/lib-commonjs/components/PopoverSurface/renderPopoverSurface.js.map +1 -1
- package/lib-commonjs/components/PopoverSurface/usePopoverSurface.js +2 -0
- package/lib-commonjs/components/PopoverSurface/usePopoverSurface.js.map +1 -1
- package/lib-commonjs/components/PopoverSurface/usePopoverSurfaceStyles.js +9 -2
- package/lib-commonjs/components/PopoverSurface/usePopoverSurfaceStyles.js.map +1 -1
- package/lib-commonjs/popoverContext.js +2 -1
- package/lib-commonjs/popoverContext.js.map +1 -1
- package/package.json +14 -24
- package/lib/Popover.d.ts +0 -1
- package/lib/PopoverSurface.d.ts +0 -1
- package/lib/PopoverTrigger.d.ts +0 -1
- package/lib/components/Popover/Popover.d.ts +0 -6
- package/lib/components/Popover/Popover.types.d.ts +0 -109
- package/lib/components/Popover/index.d.ts +0 -4
- package/lib/components/Popover/renderPopover.d.ts +0 -5
- package/lib/components/Popover/usePopover.d.ts +0 -10
- package/lib/components/PopoverSurface/PopoverSurface.d.ts +0 -6
- package/lib/components/PopoverSurface/PopoverSurface.types.d.ts +0 -21
- package/lib/components/PopoverSurface/index.d.ts +0 -5
- package/lib/components/PopoverSurface/renderPopoverSurface.d.ts +0 -5
- package/lib/components/PopoverSurface/usePopoverSurface.d.ts +0 -12
- package/lib/components/PopoverSurface/usePopoverSurfaceStyles.d.ts +0 -8
- package/lib/components/PopoverTrigger/PopoverTrigger.d.ts +0 -7
- package/lib/components/PopoverTrigger/PopoverTrigger.types.d.ts +0 -18
- package/lib/components/PopoverTrigger/index.d.ts +0 -4
- package/lib/components/PopoverTrigger/renderPopoverTrigger.d.ts +0 -5
- package/lib/components/PopoverTrigger/usePopoverTrigger.d.ts +0 -10
- package/lib/index.d.ts +0 -4
- package/lib/popoverContext.d.ts +0 -8
- package/lib-commonjs/Popover.d.ts +0 -1
- package/lib-commonjs/PopoverSurface.d.ts +0 -1
- package/lib-commonjs/PopoverTrigger.d.ts +0 -1
- package/lib-commonjs/components/Popover/Popover.d.ts +0 -6
- package/lib-commonjs/components/Popover/Popover.types.d.ts +0 -109
- package/lib-commonjs/components/Popover/index.d.ts +0 -4
- package/lib-commonjs/components/Popover/renderPopover.d.ts +0 -5
- package/lib-commonjs/components/Popover/usePopover.d.ts +0 -10
- package/lib-commonjs/components/PopoverSurface/PopoverSurface.d.ts +0 -6
- package/lib-commonjs/components/PopoverSurface/PopoverSurface.types.d.ts +0 -21
- package/lib-commonjs/components/PopoverSurface/index.d.ts +0 -5
- package/lib-commonjs/components/PopoverSurface/renderPopoverSurface.d.ts +0 -5
- package/lib-commonjs/components/PopoverSurface/usePopoverSurface.d.ts +0 -12
- package/lib-commonjs/components/PopoverSurface/usePopoverSurfaceStyles.d.ts +0 -8
- package/lib-commonjs/components/PopoverTrigger/PopoverTrigger.d.ts +0 -7
- package/lib-commonjs/components/PopoverTrigger/PopoverTrigger.types.d.ts +0 -18
- package/lib-commonjs/components/PopoverTrigger/index.d.ts +0 -4
- package/lib-commonjs/components/PopoverTrigger/renderPopoverTrigger.d.ts +0 -5
- package/lib-commonjs/components/PopoverTrigger/usePopoverTrigger.d.ts +0 -10
- package/lib-commonjs/index.d.ts +0 -4
- package/lib-commonjs/popoverContext.d.ts +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,59 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-popover
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 04 May 2022 13:24:12 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.8)
|
|
8
|
+
|
|
9
|
+
Wed, 04 May 2022 13:24:12 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.7..@fluentui/react-popover_v9.0.0-rc.8)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- feat: Add inline prop to Popover ([PR #22789](https://github.com/microsoft/fluentui/pull/22789) by lingfangao@hotmail.com)
|
|
15
|
+
- feat: ship rolluped only dts ([PR #22791](https://github.com/microsoft/fluentui/pull/22791) by martinhochel@microsoft.com)
|
|
16
|
+
- feat: Adds prop `closeOnScroll` to close popover on scrolling outside ([PR #22784](https://github.com/microsoft/fluentui/pull/22784) by yuanboxue@microsoft.com)
|
|
17
|
+
- feat: Adds prop `mouseLeaveDelay` to delay closing popover that opens on hover ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by yuanboxue@microsoft.com)
|
|
18
|
+
- Bump @fluentui/react-context-selector to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
19
|
+
- Bump @fluentui/react-portal to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
20
|
+
- Bump @fluentui/react-positioning to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
21
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
22
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
23
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
24
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
25
|
+
|
|
26
|
+
## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.7)
|
|
27
|
+
|
|
28
|
+
Mon, 25 Apr 2022 09:32:19 GMT
|
|
29
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.6..@fluentui/react-popover_v9.0.0-rc.7)
|
|
30
|
+
|
|
31
|
+
### Changes
|
|
32
|
+
|
|
33
|
+
- Bump @fluentui/react-portal to v9.0.0-rc.7 ([PR #22601](https://github.com/microsoft/fluentui/pull/22601) by beachball)
|
|
34
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.7 ([PR #22601](https://github.com/microsoft/fluentui/pull/22601) by beachball)
|
|
35
|
+
|
|
36
|
+
## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.6)
|
|
37
|
+
|
|
38
|
+
Tue, 19 Apr 2022 19:16:47 GMT
|
|
39
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.5..@fluentui/react-popover_v9.0.0-rc.6)
|
|
40
|
+
|
|
41
|
+
### Changes
|
|
42
|
+
|
|
43
|
+
- Add static classnames to Popover ([PR #21960](https://github.com/microsoft/fluentui/pull/21960) by seanmonahan@microsoft.com)
|
|
44
|
+
- chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
|
|
45
|
+
- Bump @fluentui/react-context-selector to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
46
|
+
- Bump @fluentui/react-portal to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
47
|
+
- Bump @fluentui/react-positioning to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
48
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
49
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
50
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
51
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
52
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
53
|
+
|
|
7
54
|
## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.5)
|
|
8
55
|
|
|
9
|
-
Fri, 04 Mar 2022 05:
|
|
56
|
+
Fri, 04 Mar 2022 05:17:38 GMT
|
|
10
57
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.4..@fluentui/react-popover_v9.0.0-rc.5)
|
|
11
58
|
|
|
12
59
|
### Changes
|
|
@@ -23,7 +70,7 @@ Fri, 04 Mar 2022 05:15:52 GMT
|
|
|
23
70
|
|
|
24
71
|
## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.4)
|
|
25
72
|
|
|
26
|
-
Tue, 01 Mar 2022 02:17:37 GMT
|
|
73
|
+
Tue, 01 Mar 2022 02:17:37 GMT
|
|
27
74
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.3..@fluentui/react-popover_v9.0.0-rc.4)
|
|
28
75
|
|
|
29
76
|
### Changes
|
|
@@ -37,7 +84,7 @@ Tue, 01 Mar 2022 02:17:37 GMT
|
|
|
37
84
|
|
|
38
85
|
## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.3)
|
|
39
86
|
|
|
40
|
-
Fri, 18 Feb 2022 13:35:33 GMT
|
|
87
|
+
Fri, 18 Feb 2022 13:35:33 GMT
|
|
41
88
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.1..@fluentui/react-popover_v9.0.0-rc.3)
|
|
42
89
|
|
|
43
90
|
### Changes
|
|
@@ -53,7 +100,7 @@ Fri, 18 Feb 2022 13:35:33 GMT
|
|
|
53
100
|
|
|
54
101
|
## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.1)
|
|
55
102
|
|
|
56
|
-
Thu, 10 Feb 2022 08:50:36 GMT
|
|
103
|
+
Thu, 10 Feb 2022 08:50:36 GMT
|
|
57
104
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-beta.5..@fluentui/react-popover_v9.0.0-rc.1)
|
|
58
105
|
|
|
59
106
|
### Changes
|
|
@@ -63,7 +110,7 @@ Thu, 10 Feb 2022 08:50:36 GMT
|
|
|
63
110
|
- standardize trigger implementation & cloning ([PR #21609](https://github.com/microsoft/fluentui/pull/21609) by olfedias@microsoft.com)
|
|
64
111
|
- update styles to not use CSS shorthands ([PR #20796](https://github.com/microsoft/fluentui/pull/20796) by olfedias@microsoft.com)
|
|
65
112
|
- fix: Use role=complementary for Popovers without focus traps ([PR #21416](https://github.com/microsoft/fluentui/pull/21416) by lingfangao@hotmail.com)
|
|
66
|
-
- 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)
|
|
113
|
+
- 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)
|
|
67
114
|
- Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
|
|
68
115
|
- Replacing use of functions in makeStyles with direct use of tokens ([PR #21049](https://github.com/microsoft/fluentui/pull/21049) by Humberto.Morimoto@microsoft.com)
|
|
69
116
|
- Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
|
|
@@ -82,7 +129,7 @@ Thu, 10 Feb 2022 08:50:36 GMT
|
|
|
82
129
|
|
|
83
130
|
## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-beta.5)
|
|
84
131
|
|
|
85
|
-
Thu, 25 Nov 2021 08:34:15 GMT
|
|
132
|
+
Thu, 25 Nov 2021 08:34:15 GMT
|
|
86
133
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-beta.4..@fluentui/react-popover_v9.0.0-beta.5)
|
|
87
134
|
|
|
88
135
|
### Changes
|
|
@@ -101,7 +148,7 @@ Thu, 25 Nov 2021 08:34:15 GMT
|
|
|
101
148
|
|
|
102
149
|
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-beta.4)
|
|
103
150
|
|
|
104
|
-
Fri, 12 Nov 2021 13:25:28 GMT
|
|
151
|
+
Fri, 12 Nov 2021 13:25:28 GMT
|
|
105
152
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-beta.3..@fluentui/react-popover_v9.0.0-beta.4)
|
|
106
153
|
|
|
107
154
|
### Changes
|
|
@@ -122,7 +169,7 @@ Fri, 12 Nov 2021 13:25:28 GMT
|
|
|
122
169
|
|
|
123
170
|
## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-beta.3)
|
|
124
171
|
|
|
125
|
-
Wed, 27 Oct 2021 12:14:20 GMT
|
|
172
|
+
Wed, 27 Oct 2021 12:14:20 GMT
|
|
126
173
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-beta.2..@fluentui/react-popover_v9.0.0-beta.3)
|
|
127
174
|
|
|
128
175
|
### Changes
|
|
@@ -142,7 +189,7 @@ Wed, 27 Oct 2021 12:14:20 GMT
|
|
|
142
189
|
|
|
143
190
|
## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-beta.2)
|
|
144
191
|
|
|
145
|
-
Tue, 12 Oct 2021 19:45:58 GMT
|
|
192
|
+
Tue, 12 Oct 2021 19:45:58 GMT
|
|
146
193
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-beta.1..@fluentui/react-popover_v9.0.0-beta.2)
|
|
147
194
|
|
|
148
195
|
### Changes
|
|
@@ -152,7 +199,7 @@ Tue, 12 Oct 2021 19:45:58 GMT
|
|
|
152
199
|
|
|
153
200
|
## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-beta.1)
|
|
154
201
|
|
|
155
|
-
Wed, 06 Oct 2021 10:37:22 GMT
|
|
202
|
+
Wed, 06 Oct 2021 10:37:22 GMT
|
|
156
203
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.56..@fluentui/react-popover_v9.0.0-beta.1)
|
|
157
204
|
|
|
158
205
|
### Changes
|
|
@@ -171,7 +218,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
|
|
|
171
218
|
|
|
172
219
|
## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.56)
|
|
173
220
|
|
|
174
|
-
Tue, 05 Oct 2021 12:47:58 GMT
|
|
221
|
+
Tue, 05 Oct 2021 12:47:58 GMT
|
|
175
222
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.55..@fluentui/react-popover_v9.0.0-alpha.56)
|
|
176
223
|
|
|
177
224
|
### Changes
|
|
@@ -185,7 +232,7 @@ Tue, 05 Oct 2021 12:47:58 GMT
|
|
|
185
232
|
|
|
186
233
|
## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.55)
|
|
187
234
|
|
|
188
|
-
Tue, 05 Oct 2021 09:28:07 GMT
|
|
235
|
+
Tue, 05 Oct 2021 09:28:07 GMT
|
|
189
236
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.54..@fluentui/react-popover_v9.0.0-alpha.55)
|
|
190
237
|
|
|
191
238
|
### Changes
|
|
@@ -203,7 +250,7 @@ Tue, 05 Oct 2021 09:28:07 GMT
|
|
|
203
250
|
|
|
204
251
|
## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.54)
|
|
205
252
|
|
|
206
|
-
Fri, 01 Oct 2021 14:13:08 GMT
|
|
253
|
+
Fri, 01 Oct 2021 14:13:08 GMT
|
|
207
254
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.52..@fluentui/react-popover_v9.0.0-alpha.54)
|
|
208
255
|
|
|
209
256
|
### Changes
|
|
@@ -222,7 +269,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
|
|
|
222
269
|
|
|
223
270
|
## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.52)
|
|
224
271
|
|
|
225
|
-
Fri, 01 Oct 2021 09:44:56 GMT
|
|
272
|
+
Fri, 01 Oct 2021 09:44:56 GMT
|
|
226
273
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.51..@fluentui/react-popover_v9.0.0-alpha.52)
|
|
227
274
|
|
|
228
275
|
### Changes
|
|
@@ -232,7 +279,7 @@ Fri, 01 Oct 2021 09:44:56 GMT
|
|
|
232
279
|
|
|
233
280
|
## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.51)
|
|
234
281
|
|
|
235
|
-
Wed, 29 Sep 2021 08:06:11 GMT
|
|
282
|
+
Wed, 29 Sep 2021 08:06:11 GMT
|
|
236
283
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.50..@fluentui/react-popover_v9.0.0-alpha.51)
|
|
237
284
|
|
|
238
285
|
### Changes
|
|
@@ -248,7 +295,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
|
|
|
248
295
|
|
|
249
296
|
## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.50)
|
|
250
297
|
|
|
251
|
-
Mon, 27 Sep 2021 08:06:00 GMT
|
|
298
|
+
Mon, 27 Sep 2021 08:06:00 GMT
|
|
252
299
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.49..@fluentui/react-popover_v9.0.0-alpha.50)
|
|
253
300
|
|
|
254
301
|
### Changes
|
|
@@ -266,7 +313,7 @@ Mon, 27 Sep 2021 08:06:00 GMT
|
|
|
266
313
|
|
|
267
314
|
## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.49)
|
|
268
315
|
|
|
269
|
-
Fri, 24 Sep 2021 09:17:17 GMT
|
|
316
|
+
Fri, 24 Sep 2021 09:17:17 GMT
|
|
270
317
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.48..@fluentui/react-popover_v9.0.0-alpha.49)
|
|
271
318
|
|
|
272
319
|
### Changes
|
|
@@ -285,7 +332,7 @@ Fri, 24 Sep 2021 09:17:17 GMT
|
|
|
285
332
|
|
|
286
333
|
## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.48)
|
|
287
334
|
|
|
288
|
-
Thu, 23 Sep 2021 08:21:34 GMT
|
|
335
|
+
Thu, 23 Sep 2021 08:21:34 GMT
|
|
289
336
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.47..@fluentui/react-popover_v9.0.0-alpha.48)
|
|
290
337
|
|
|
291
338
|
### Changes
|
|
@@ -302,7 +349,7 @@ Thu, 23 Sep 2021 08:21:34 GMT
|
|
|
302
349
|
|
|
303
350
|
## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.47)
|
|
304
351
|
|
|
305
|
-
Wed, 22 Sep 2021 10:10:07 GMT
|
|
352
|
+
Wed, 22 Sep 2021 10:10:07 GMT
|
|
306
353
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.46..@fluentui/react-popover_v9.0.0-alpha.47)
|
|
307
354
|
|
|
308
355
|
### Changes
|
|
@@ -319,7 +366,7 @@ Wed, 22 Sep 2021 10:10:07 GMT
|
|
|
319
366
|
|
|
320
367
|
## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.46)
|
|
321
368
|
|
|
322
|
-
Tue, 21 Sep 2021 07:42:34 GMT
|
|
369
|
+
Tue, 21 Sep 2021 07:42:34 GMT
|
|
323
370
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.45..@fluentui/react-popover_v9.0.0-alpha.46)
|
|
324
371
|
|
|
325
372
|
### Changes
|
|
@@ -336,7 +383,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
|
|
|
336
383
|
|
|
337
384
|
## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.45)
|
|
338
385
|
|
|
339
|
-
Mon, 20 Sep 2021 07:36:26 GMT
|
|
386
|
+
Mon, 20 Sep 2021 07:36:26 GMT
|
|
340
387
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.44..@fluentui/react-popover_v9.0.0-alpha.45)
|
|
341
388
|
|
|
342
389
|
### Changes
|
|
@@ -345,7 +392,7 @@ Mon, 20 Sep 2021 07:36:26 GMT
|
|
|
345
392
|
|
|
346
393
|
## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.44)
|
|
347
394
|
|
|
348
|
-
Fri, 17 Sep 2021 07:35:26 GMT
|
|
395
|
+
Fri, 17 Sep 2021 07:35:26 GMT
|
|
349
396
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.43..@fluentui/react-popover_v9.0.0-alpha.44)
|
|
350
397
|
|
|
351
398
|
### Changes
|
|
@@ -354,7 +401,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
|
|
|
354
401
|
|
|
355
402
|
## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.43)
|
|
356
403
|
|
|
357
|
-
Thu, 16 Sep 2021 07:38:39 GMT
|
|
404
|
+
Thu, 16 Sep 2021 07:38:39 GMT
|
|
358
405
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.42..@fluentui/react-popover_v9.0.0-alpha.43)
|
|
359
406
|
|
|
360
407
|
### Changes
|
|
@@ -364,7 +411,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
|
|
|
364
411
|
|
|
365
412
|
## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.42)
|
|
366
413
|
|
|
367
|
-
Tue, 14 Sep 2021 20:09:02 GMT
|
|
414
|
+
Tue, 14 Sep 2021 20:09:02 GMT
|
|
368
415
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.41..@fluentui/react-popover_v9.0.0-alpha.42)
|
|
369
416
|
|
|
370
417
|
### Changes
|
|
@@ -373,7 +420,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
|
|
|
373
420
|
|
|
374
421
|
## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.41)
|
|
375
422
|
|
|
376
|
-
Tue, 14 Sep 2021 07:38:18 GMT
|
|
423
|
+
Tue, 14 Sep 2021 07:38:18 GMT
|
|
377
424
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.40..@fluentui/react-popover_v9.0.0-alpha.41)
|
|
378
425
|
|
|
379
426
|
### Changes
|
|
@@ -382,7 +429,7 @@ Tue, 14 Sep 2021 07:38:18 GMT
|
|
|
382
429
|
|
|
383
430
|
## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.40)
|
|
384
431
|
|
|
385
|
-
Fri, 10 Sep 2021 16:31:53 GMT
|
|
432
|
+
Fri, 10 Sep 2021 16:31:53 GMT
|
|
386
433
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.39..@fluentui/react-popover_v9.0.0-alpha.40)
|
|
387
434
|
|
|
388
435
|
### Changes
|
|
@@ -392,7 +439,7 @@ Fri, 10 Sep 2021 16:31:53 GMT
|
|
|
392
439
|
|
|
393
440
|
## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.39)
|
|
394
441
|
|
|
395
|
-
Fri, 10 Sep 2021 07:39:51 GMT
|
|
442
|
+
Fri, 10 Sep 2021 07:39:51 GMT
|
|
396
443
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.38..@fluentui/react-popover_v9.0.0-alpha.39)
|
|
397
444
|
|
|
398
445
|
### Changes
|
|
@@ -401,7 +448,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
|
|
|
401
448
|
|
|
402
449
|
## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.38)
|
|
403
450
|
|
|
404
|
-
Wed, 08 Sep 2021 07:34:11 GMT
|
|
451
|
+
Wed, 08 Sep 2021 07:34:11 GMT
|
|
405
452
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.37..@fluentui/react-popover_v9.0.0-alpha.38)
|
|
406
453
|
|
|
407
454
|
### Changes
|
|
@@ -410,7 +457,7 @@ Wed, 08 Sep 2021 07:34:11 GMT
|
|
|
410
457
|
|
|
411
458
|
## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.37)
|
|
412
459
|
|
|
413
|
-
Mon, 06 Sep 2021 07:34:53 GMT
|
|
460
|
+
Mon, 06 Sep 2021 07:34:53 GMT
|
|
414
461
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.36..@fluentui/react-popover_v9.0.0-alpha.37)
|
|
415
462
|
|
|
416
463
|
### Changes
|
|
@@ -419,7 +466,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
|
|
|
419
466
|
|
|
420
467
|
## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.36)
|
|
421
468
|
|
|
422
|
-
Thu, 02 Sep 2021 07:36:46 GMT
|
|
469
|
+
Thu, 02 Sep 2021 07:36:46 GMT
|
|
423
470
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.35..@fluentui/react-popover_v9.0.0-alpha.36)
|
|
424
471
|
|
|
425
472
|
### Patches
|
|
@@ -432,7 +479,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
|
|
|
432
479
|
|
|
433
480
|
## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.35)
|
|
434
481
|
|
|
435
|
-
Wed, 01 Sep 2021 07:39:56 GMT
|
|
482
|
+
Wed, 01 Sep 2021 07:39:56 GMT
|
|
436
483
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.34..@fluentui/react-popover_v9.0.0-alpha.35)
|
|
437
484
|
|
|
438
485
|
### Changes
|
|
@@ -441,7 +488,7 @@ Wed, 01 Sep 2021 07:39:56 GMT
|
|
|
441
488
|
|
|
442
489
|
## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.34)
|
|
443
490
|
|
|
444
|
-
Tue, 31 Aug 2021 07:37:47 GMT
|
|
491
|
+
Tue, 31 Aug 2021 07:37:47 GMT
|
|
445
492
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.33..@fluentui/react-popover_v9.0.0-alpha.34)
|
|
446
493
|
|
|
447
494
|
### Changes
|
|
@@ -450,7 +497,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
|
|
|
450
497
|
|
|
451
498
|
## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.33)
|
|
452
499
|
|
|
453
|
-
Fri, 27 Aug 2021 07:33:32 GMT
|
|
500
|
+
Fri, 27 Aug 2021 07:33:32 GMT
|
|
454
501
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.32..@fluentui/react-popover_v9.0.0-alpha.33)
|
|
455
502
|
|
|
456
503
|
### Changes
|
|
@@ -459,7 +506,7 @@ Fri, 27 Aug 2021 07:33:32 GMT
|
|
|
459
506
|
|
|
460
507
|
## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.32)
|
|
461
508
|
|
|
462
|
-
Thu, 26 Aug 2021 07:35:43 GMT
|
|
509
|
+
Thu, 26 Aug 2021 07:35:43 GMT
|
|
463
510
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.31..@fluentui/react-popover_v9.0.0-alpha.32)
|
|
464
511
|
|
|
465
512
|
### Changes
|
|
@@ -468,7 +515,7 @@ Thu, 26 Aug 2021 07:35:43 GMT
|
|
|
468
515
|
|
|
469
516
|
## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.31)
|
|
470
517
|
|
|
471
|
-
Tue, 24 Aug 2021 07:34:48 GMT
|
|
518
|
+
Tue, 24 Aug 2021 07:34:48 GMT
|
|
472
519
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.30..@fluentui/react-popover_v9.0.0-alpha.31)
|
|
473
520
|
|
|
474
521
|
### Changes
|
|
@@ -477,7 +524,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
|
|
|
477
524
|
|
|
478
525
|
## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.30)
|
|
479
526
|
|
|
480
|
-
Fri, 20 Aug 2021 07:37:28 GMT
|
|
527
|
+
Fri, 20 Aug 2021 07:37:28 GMT
|
|
481
528
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.29..@fluentui/react-popover_v9.0.0-alpha.30)
|
|
482
529
|
|
|
483
530
|
### Changes
|
|
@@ -486,7 +533,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
|
|
|
486
533
|
|
|
487
534
|
## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.29)
|
|
488
535
|
|
|
489
|
-
Thu, 19 Aug 2021 07:41:35 GMT
|
|
536
|
+
Thu, 19 Aug 2021 07:41:35 GMT
|
|
490
537
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.28..@fluentui/react-popover_v9.0.0-alpha.29)
|
|
491
538
|
|
|
492
539
|
### Changes
|
|
@@ -495,7 +542,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
|
|
|
495
542
|
|
|
496
543
|
## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.28)
|
|
497
544
|
|
|
498
|
-
Mon, 16 Aug 2021 07:36:39 GMT
|
|
545
|
+
Mon, 16 Aug 2021 07:36:39 GMT
|
|
499
546
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.27..@fluentui/react-popover_v9.0.0-alpha.28)
|
|
500
547
|
|
|
501
548
|
### Changes
|
|
@@ -504,7 +551,7 @@ Mon, 16 Aug 2021 07:36:39 GMT
|
|
|
504
551
|
|
|
505
552
|
## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.27)
|
|
506
553
|
|
|
507
|
-
Fri, 13 Aug 2021 07:36:34 GMT
|
|
554
|
+
Fri, 13 Aug 2021 07:36:34 GMT
|
|
508
555
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.26..@fluentui/react-popover_v9.0.0-alpha.27)
|
|
509
556
|
|
|
510
557
|
### Changes
|
|
@@ -513,7 +560,7 @@ Fri, 13 Aug 2021 07:36:34 GMT
|
|
|
513
560
|
|
|
514
561
|
## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.26)
|
|
515
562
|
|
|
516
|
-
Wed, 11 Aug 2021 07:34:54 GMT
|
|
563
|
+
Wed, 11 Aug 2021 07:34:54 GMT
|
|
517
564
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.25..@fluentui/react-popover_v9.0.0-alpha.26)
|
|
518
565
|
|
|
519
566
|
### Changes
|
|
@@ -522,7 +569,7 @@ Wed, 11 Aug 2021 07:34:54 GMT
|
|
|
522
569
|
|
|
523
570
|
## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.25)
|
|
524
571
|
|
|
525
|
-
Tue, 10 Aug 2021 07:33:28 GMT
|
|
572
|
+
Tue, 10 Aug 2021 07:33:28 GMT
|
|
526
573
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.24..@fluentui/react-popover_v9.0.0-alpha.25)
|
|
527
574
|
|
|
528
575
|
### Changes
|
|
@@ -531,7 +578,7 @@ Tue, 10 Aug 2021 07:33:28 GMT
|
|
|
531
578
|
|
|
532
579
|
## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.24)
|
|
533
580
|
|
|
534
|
-
Fri, 06 Aug 2021 07:35:14 GMT
|
|
581
|
+
Fri, 06 Aug 2021 07:35:14 GMT
|
|
535
582
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.23..@fluentui/react-popover_v9.0.0-alpha.24)
|
|
536
583
|
|
|
537
584
|
### Changes
|
|
@@ -540,7 +587,7 @@ Fri, 06 Aug 2021 07:35:14 GMT
|
|
|
540
587
|
|
|
541
588
|
## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.23)
|
|
542
589
|
|
|
543
|
-
Tue, 03 Aug 2021 07:39:30 GMT
|
|
590
|
+
Tue, 03 Aug 2021 07:39:30 GMT
|
|
544
591
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.22..@fluentui/react-popover_v9.0.0-alpha.23)
|
|
545
592
|
|
|
546
593
|
### Patches
|
|
@@ -555,7 +602,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
|
|
|
555
602
|
|
|
556
603
|
## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.22)
|
|
557
604
|
|
|
558
|
-
Mon, 02 Aug 2021 07:36:20 GMT
|
|
605
|
+
Mon, 02 Aug 2021 07:36:20 GMT
|
|
559
606
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.21..@fluentui/react-popover_v9.0.0-alpha.22)
|
|
560
607
|
|
|
561
608
|
### Changes
|
|
@@ -564,7 +611,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
|
|
|
564
611
|
|
|
565
612
|
## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.21)
|
|
566
613
|
|
|
567
|
-
Mon, 26 Jul 2021 07:37:30 GMT
|
|
614
|
+
Mon, 26 Jul 2021 07:37:30 GMT
|
|
568
615
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.20..@fluentui/react-popover_v9.0.0-alpha.21)
|
|
569
616
|
|
|
570
617
|
### Changes
|
|
@@ -573,7 +620,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
|
|
|
573
620
|
|
|
574
621
|
## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.20)
|
|
575
622
|
|
|
576
|
-
Fri, 23 Jul 2021 07:38:19 GMT
|
|
623
|
+
Fri, 23 Jul 2021 07:38:19 GMT
|
|
577
624
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.19..@fluentui/react-popover_v9.0.0-alpha.20)
|
|
578
625
|
|
|
579
626
|
### Changes
|
|
@@ -582,7 +629,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
|
|
|
582
629
|
|
|
583
630
|
## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.19)
|
|
584
631
|
|
|
585
|
-
Thu, 22 Jul 2021 07:36:55 GMT
|
|
632
|
+
Thu, 22 Jul 2021 07:36:55 GMT
|
|
586
633
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.18..@fluentui/react-popover_v9.0.0-alpha.19)
|
|
587
634
|
|
|
588
635
|
### Changes
|
|
@@ -591,7 +638,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
|
|
|
591
638
|
|
|
592
639
|
## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.18)
|
|
593
640
|
|
|
594
|
-
Thu, 15 Jul 2021 07:36:18 GMT
|
|
641
|
+
Thu, 15 Jul 2021 07:36:18 GMT
|
|
595
642
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.17..@fluentui/react-popover_v9.0.0-alpha.18)
|
|
596
643
|
|
|
597
644
|
### Changes
|
|
@@ -600,7 +647,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
|
|
|
600
647
|
|
|
601
648
|
## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.17)
|
|
602
649
|
|
|
603
|
-
Tue, 13 Jul 2021 22:32:58 GMT
|
|
650
|
+
Tue, 13 Jul 2021 22:32:58 GMT
|
|
604
651
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.16..@fluentui/react-popover_v9.0.0-alpha.17)
|
|
605
652
|
|
|
606
653
|
### Patches
|
|
@@ -609,7 +656,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
|
|
|
609
656
|
|
|
610
657
|
## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.16)
|
|
611
658
|
|
|
612
|
-
Tue, 13 Jul 2021 07:35:36 GMT
|
|
659
|
+
Tue, 13 Jul 2021 07:35:36 GMT
|
|
613
660
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.15..@fluentui/react-popover_v9.0.0-alpha.16)
|
|
614
661
|
|
|
615
662
|
### Changes
|
|
@@ -618,7 +665,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
|
|
|
618
665
|
|
|
619
666
|
## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.15)
|
|
620
667
|
|
|
621
|
-
Fri, 09 Jul 2021 07:39:31 GMT
|
|
668
|
+
Fri, 09 Jul 2021 07:39:31 GMT
|
|
622
669
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.14..@fluentui/react-popover_v9.0.0-alpha.15)
|
|
623
670
|
|
|
624
671
|
### Patches
|
|
@@ -633,7 +680,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
|
|
|
633
680
|
|
|
634
681
|
## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.14)
|
|
635
682
|
|
|
636
|
-
Fri, 02 Jul 2021 23:15:55 GMT
|
|
683
|
+
Fri, 02 Jul 2021 23:15:55 GMT
|
|
637
684
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.13..@fluentui/react-popover_v9.0.0-alpha.14)
|
|
638
685
|
|
|
639
686
|
### Changes
|
|
@@ -642,7 +689,7 @@ Fri, 02 Jul 2021 23:15:55 GMT
|
|
|
642
689
|
|
|
643
690
|
## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.13)
|
|
644
691
|
|
|
645
|
-
Fri, 02 Jul 2021 07:37:06 GMT
|
|
692
|
+
Fri, 02 Jul 2021 07:37:06 GMT
|
|
646
693
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.12..@fluentui/react-popover_v9.0.0-alpha.13)
|
|
647
694
|
|
|
648
695
|
### Changes
|
|
@@ -651,7 +698,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
|
|
|
651
698
|
|
|
652
699
|
## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.12)
|
|
653
700
|
|
|
654
|
-
Thu, 01 Jul 2021 07:35:05 GMT
|
|
701
|
+
Thu, 01 Jul 2021 07:35:05 GMT
|
|
655
702
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.11..@fluentui/react-popover_v9.0.0-alpha.12)
|
|
656
703
|
|
|
657
704
|
### Changes
|
|
@@ -660,7 +707,7 @@ Thu, 01 Jul 2021 07:35:05 GMT
|
|
|
660
707
|
|
|
661
708
|
## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.11)
|
|
662
709
|
|
|
663
|
-
Wed, 30 Jun 2021 07:38:35 GMT
|
|
710
|
+
Wed, 30 Jun 2021 07:38:35 GMT
|
|
664
711
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.10..@fluentui/react-popover_v9.0.0-alpha.11)
|
|
665
712
|
|
|
666
713
|
### Changes
|
|
@@ -669,7 +716,7 @@ Wed, 30 Jun 2021 07:38:35 GMT
|
|
|
669
716
|
|
|
670
717
|
## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.10)
|
|
671
718
|
|
|
672
|
-
Tue, 29 Jun 2021 07:33:32 GMT
|
|
719
|
+
Tue, 29 Jun 2021 07:33:32 GMT
|
|
673
720
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.9..@fluentui/react-popover_v9.0.0-alpha.10)
|
|
674
721
|
|
|
675
722
|
### Changes
|
|
@@ -678,7 +725,7 @@ Tue, 29 Jun 2021 07:33:32 GMT
|
|
|
678
725
|
|
|
679
726
|
## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.9)
|
|
680
727
|
|
|
681
|
-
Thu, 17 Jun 2021 07:34:11 GMT
|
|
728
|
+
Thu, 17 Jun 2021 07:34:11 GMT
|
|
682
729
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.8..@fluentui/react-popover_v9.0.0-alpha.9)
|
|
683
730
|
|
|
684
731
|
### Changes
|
|
@@ -687,7 +734,7 @@ Thu, 17 Jun 2021 07:34:11 GMT
|
|
|
687
734
|
|
|
688
735
|
## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.8)
|
|
689
736
|
|
|
690
|
-
Wed, 16 Jun 2021 07:34:24 GMT
|
|
737
|
+
Wed, 16 Jun 2021 07:34:24 GMT
|
|
691
738
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.7..@fluentui/react-popover_v9.0.0-alpha.8)
|
|
692
739
|
|
|
693
740
|
### Changes
|
|
@@ -696,7 +743,7 @@ Wed, 16 Jun 2021 07:34:24 GMT
|
|
|
696
743
|
|
|
697
744
|
## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.7)
|
|
698
745
|
|
|
699
|
-
Tue, 15 Jun 2021 07:40:20 GMT
|
|
746
|
+
Tue, 15 Jun 2021 07:40:20 GMT
|
|
700
747
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.6..@fluentui/react-popover_v9.0.0-alpha.7)
|
|
701
748
|
|
|
702
749
|
### Changes
|
|
@@ -705,7 +752,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
|
|
|
705
752
|
|
|
706
753
|
## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.6)
|
|
707
754
|
|
|
708
|
-
Tue, 08 Jun 2021 07:32:44 GMT
|
|
755
|
+
Tue, 08 Jun 2021 07:32:44 GMT
|
|
709
756
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.5..@fluentui/react-popover_v9.0.0-alpha.6)
|
|
710
757
|
|
|
711
758
|
### Changes
|
|
@@ -714,7 +761,7 @@ Tue, 08 Jun 2021 07:32:44 GMT
|
|
|
714
761
|
|
|
715
762
|
## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.5)
|
|
716
763
|
|
|
717
|
-
Mon, 07 Jun 2021 07:38:15 GMT
|
|
764
|
+
Mon, 07 Jun 2021 07:38:15 GMT
|
|
718
765
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.4..@fluentui/react-popover_v9.0.0-alpha.5)
|
|
719
766
|
|
|
720
767
|
### Patches
|
|
@@ -729,7 +776,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
|
|
|
729
776
|
|
|
730
777
|
## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.4)
|
|
731
778
|
|
|
732
|
-
Fri, 04 Jun 2021 07:37:23 GMT
|
|
779
|
+
Fri, 04 Jun 2021 07:37:23 GMT
|
|
733
780
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.3..@fluentui/react-popover_v9.0.0-alpha.4)
|
|
734
781
|
|
|
735
782
|
### Changes
|
|
@@ -738,7 +785,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
|
|
|
738
785
|
|
|
739
786
|
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.3)
|
|
740
787
|
|
|
741
|
-
Thu, 03 Jun 2021 07:36:03 GMT
|
|
788
|
+
Thu, 03 Jun 2021 07:36:03 GMT
|
|
742
789
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.2..@fluentui/react-popover_v9.0.0-alpha.3)
|
|
743
790
|
|
|
744
791
|
### Changes
|
|
@@ -747,7 +794,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
|
|
|
747
794
|
|
|
748
795
|
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.2)
|
|
749
796
|
|
|
750
|
-
Wed, 02 Jun 2021 07:37:15 GMT
|
|
797
|
+
Wed, 02 Jun 2021 07:37:15 GMT
|
|
751
798
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.1..@fluentui/react-popover_v9.0.0-alpha.2)
|
|
752
799
|
|
|
753
800
|
### Changes
|
|
@@ -756,7 +803,7 @@ Wed, 02 Jun 2021 07:37:15 GMT
|
|
|
756
803
|
|
|
757
804
|
## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.1)
|
|
758
805
|
|
|
759
|
-
Tue, 01 Jun 2021 07:31:58 GMT
|
|
806
|
+
Tue, 01 Jun 2021 07:31:58 GMT
|
|
760
807
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.0..@fluentui/react-popover_v9.0.0-alpha.1)
|
|
761
808
|
|
|
762
809
|
### Changes
|
|
@@ -765,7 +812,7 @@ Tue, 01 Jun 2021 07:31:58 GMT
|
|
|
765
812
|
|
|
766
813
|
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.0)
|
|
767
814
|
|
|
768
|
-
Fri, 28 May 2021 07:33:57 GMT
|
|
815
|
+
Fri, 28 May 2021 07:33:57 GMT
|
|
769
816
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.0..@fluentui/react-popover_v9.0.0-alpha.0)
|
|
770
817
|
|
|
771
818
|
### Changes
|
|
@@ -774,7 +821,7 @@ Fri, 28 May 2021 07:33:57 GMT
|
|
|
774
821
|
|
|
775
822
|
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.0)
|
|
776
823
|
|
|
777
|
-
Wed, 26 May 2021 07:35:43 GMT
|
|
824
|
+
Wed, 26 May 2021 07:35:43 GMT
|
|
778
825
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.0..@fluentui/react-popover_v9.0.0-alpha.0)
|
|
779
826
|
|
|
780
827
|
### Changes
|
|
@@ -783,7 +830,7 @@ Wed, 26 May 2021 07:35:43 GMT
|
|
|
783
830
|
|
|
784
831
|
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.0)
|
|
785
832
|
|
|
786
|
-
Fri, 21 May 2021 07:34:54 GMT
|
|
833
|
+
Fri, 21 May 2021 07:34:54 GMT
|
|
787
834
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.0..@fluentui/react-popover_v9.0.0-alpha.0)
|
|
788
835
|
|
|
789
836
|
### Changes
|
|
@@ -792,7 +839,7 @@ Fri, 21 May 2021 07:34:54 GMT
|
|
|
792
839
|
|
|
793
840
|
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.0)
|
|
794
841
|
|
|
795
|
-
Thu, 20 May 2021 07:41:54 GMT
|
|
842
|
+
Thu, 20 May 2021 07:41:54 GMT
|
|
796
843
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.0..@fluentui/react-popover_v9.0.0-alpha.0)
|
|
797
844
|
|
|
798
845
|
### Patches
|
|
@@ -807,7 +854,7 @@ Thu, 20 May 2021 07:41:54 GMT
|
|
|
807
854
|
|
|
808
855
|
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.0)
|
|
809
856
|
|
|
810
|
-
Wed, 19 May 2021 07:34:20 GMT
|
|
857
|
+
Wed, 19 May 2021 07:34:20 GMT
|
|
811
858
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.0..@fluentui/react-popover_v9.0.0-alpha.0)
|
|
812
859
|
|
|
813
860
|
### Patches
|
|
@@ -820,7 +867,7 @@ Wed, 19 May 2021 07:34:20 GMT
|
|
|
820
867
|
|
|
821
868
|
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.0)
|
|
822
869
|
|
|
823
|
-
Tue, 18 May 2021 07:34:38 GMT
|
|
870
|
+
Tue, 18 May 2021 07:34:38 GMT
|
|
824
871
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.0..@fluentui/react-popover_v9.0.0-alpha.0)
|
|
825
872
|
|
|
826
873
|
### Changes
|
|
@@ -829,7 +876,7 @@ Tue, 18 May 2021 07:34:38 GMT
|
|
|
829
876
|
|
|
830
877
|
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.0)
|
|
831
878
|
|
|
832
|
-
Thu, 13 May 2021 07:36:55 GMT
|
|
879
|
+
Thu, 13 May 2021 07:36:55 GMT
|
|
833
880
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.0..@fluentui/react-popover_v9.0.0-alpha.0)
|
|
834
881
|
|
|
835
882
|
### Changes
|
|
@@ -838,7 +885,7 @@ Thu, 13 May 2021 07:36:55 GMT
|
|
|
838
885
|
|
|
839
886
|
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-alpha.0)
|
|
840
887
|
|
|
841
|
-
Wed, 12 May 2021 07:36:20 GMT
|
|
888
|
+
Wed, 12 May 2021 07:36:20 GMT
|
|
842
889
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-alpha.0..@fluentui/react-popover_v9.0.0-alpha.0)
|
|
843
890
|
|
|
844
891
|
### Changes
|