@fluentui/react-popover 9.0.0-rc.9 → 9.0.0
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 +397 -1
- package/CHANGELOG.md +106 -2
- package/Spec.md +5 -5
- package/dist/index.d.ts +93 -71
- package/lib/components/Popover/Popover.js.map +1 -1
- package/lib/components/Popover/Popover.types.js.map +1 -1
- package/lib/components/Popover/constants.js +10 -0
- package/lib/components/Popover/constants.js.map +1 -0
- package/lib/components/Popover/renderPopover.js +20 -16
- package/lib/components/Popover/renderPopover.js.map +1 -1
- package/lib/components/Popover/usePopover.js +18 -16
- package/lib/components/Popover/usePopover.js.map +1 -1
- package/lib/components/PopoverSurface/PopoverSurface.js.map +1 -1
- package/lib/components/PopoverSurface/PopoverSurface.types.js.map +1 -1
- package/lib/components/PopoverSurface/renderPopoverSurface.js +1 -1
- package/lib/components/PopoverSurface/renderPopoverSurface.js.map +1 -1
- package/lib/components/PopoverSurface/usePopoverSurface.js +5 -3
- package/lib/components/PopoverSurface/usePopoverSurface.js.map +1 -1
- package/lib/components/PopoverSurface/usePopoverSurfaceStyles.js +20 -25
- package/lib/components/PopoverSurface/usePopoverSurfaceStyles.js.map +1 -1
- package/lib/components/PopoverTrigger/PopoverTrigger.js.map +1 -1
- package/lib/components/PopoverTrigger/PopoverTrigger.types.js.map +1 -1
- package/lib/components/PopoverTrigger/renderPopoverTrigger.js.map +1 -1
- package/lib/components/PopoverTrigger/usePopoverTrigger.js +2 -2
- package/lib/components/PopoverTrigger/usePopoverTrigger.js.map +1 -1
- package/lib/index.js +2 -3
- package/lib/index.js.map +1 -1
- package/lib/popoverContext.js +2 -0
- package/lib/popoverContext.js.map +1 -1
- package/lib-commonjs/components/Popover/Popover.js.map +1 -1
- package/lib-commonjs/components/Popover/constants.js +17 -0
- package/lib-commonjs/components/Popover/constants.js.map +1 -0
- package/lib-commonjs/components/Popover/renderPopover.js +20 -16
- package/lib-commonjs/components/Popover/renderPopover.js.map +1 -1
- package/lib-commonjs/components/Popover/usePopover.js +18 -15
- package/lib-commonjs/components/Popover/usePopover.js.map +1 -1
- package/lib-commonjs/components/PopoverSurface/PopoverSurface.js.map +1 -1
- package/lib-commonjs/components/PopoverSurface/renderPopoverSurface.js +1 -1
- package/lib-commonjs/components/PopoverSurface/renderPopoverSurface.js.map +1 -1
- package/lib-commonjs/components/PopoverSurface/usePopoverSurface.js +5 -3
- package/lib-commonjs/components/PopoverSurface/usePopoverSurface.js.map +1 -1
- package/lib-commonjs/components/PopoverSurface/usePopoverSurfaceStyles.js +21 -26
- package/lib-commonjs/components/PopoverSurface/usePopoverSurfaceStyles.js.map +1 -1
- package/lib-commonjs/components/PopoverTrigger/PopoverTrigger.js.map +1 -1
- package/lib-commonjs/components/PopoverTrigger/renderPopoverTrigger.js.map +1 -1
- package/lib-commonjs/components/PopoverTrigger/usePopoverTrigger.js +2 -2
- package/lib-commonjs/components/PopoverTrigger/usePopoverTrigger.js.map +1 -1
- package/lib-commonjs/index.js +3 -10
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/popoverContext.js +3 -1
- package/lib-commonjs/popoverContext.js.map +1 -1
- package/package.json +15 -15
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,403 @@
|
|
|
2
2
|
"name": "@fluentui/react-popover",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Tue, 28 Jun 2022 15:08:57 GMT",
|
|
6
|
+
"tag": "@fluentui/react-popover_v9.0.0",
|
|
7
|
+
"version": "9.0.0",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"author": "tristan.watanabe@gmail.com",
|
|
12
|
+
"package": "@fluentui/react-popover",
|
|
13
|
+
"commit": "4d8b8d731abd8d9d293b724dc760a021ee10be43",
|
|
14
|
+
"comment": "chore: Move Popover stories to folder with index entry."
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "lingfangao@hotmail.com",
|
|
18
|
+
"package": "@fluentui/react-popover",
|
|
19
|
+
"commit": "2da2d47e3dac6f8f4396ab112ab80b1dd34cc9ac",
|
|
20
|
+
"comment": "Bump cypress to v10"
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"prerelease": [
|
|
24
|
+
{
|
|
25
|
+
"author": "lingfangao@hotmail.com",
|
|
26
|
+
"package": "@fluentui/react-popover",
|
|
27
|
+
"commit": "02ee30f8ef173f3a1d2c0c73bcdaef8abae5c055",
|
|
28
|
+
"comment": "feat: Adds `legacyTrapFocus` prop"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"author": "bernardo.sunderhus@gmail.com",
|
|
32
|
+
"package": "@fluentui/react-popover",
|
|
33
|
+
"commit": "ab7380ea15a9a8f0b33b2d31454044d3bb255a63",
|
|
34
|
+
"comment": "Updates getTriggerChild internal usage"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
38
|
+
"package": "@fluentui/react-popover",
|
|
39
|
+
"commit": "ddf16d80c50d80bc07331b478f567629775f2898",
|
|
40
|
+
"comment": "chore: Adding scheduler as a peer dependency since this package has a dependency on @fluentui/react-context-selector."
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"author": "lingfangao@hotmail.com",
|
|
44
|
+
"package": "@fluentui/react-popover",
|
|
45
|
+
"commit": "49c53f4d840db961602513e61482a93a5f83a9c3",
|
|
46
|
+
"comment": "fix: Add arrow padding to Popover arrrow"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"author": "lingfangao@hotmail.com",
|
|
50
|
+
"package": "@fluentui/react-popover",
|
|
51
|
+
"commit": "e0aabd850b15adf9c151ebd4e332f7c50ad6cfdf",
|
|
52
|
+
"comment": "Update 9.0.0-rc dependencies to use caret range"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"author": "lingfangao@hotmail.com",
|
|
56
|
+
"package": "@fluentui/react-popover",
|
|
57
|
+
"commit": "675acea49c97f10837ddee9b8c4350ca27750125",
|
|
58
|
+
"comment": "Bump Griffel dependencies"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"patch": [
|
|
62
|
+
{
|
|
63
|
+
"author": "lingfangao@hotmail.com",
|
|
64
|
+
"package": "@fluentui/react-popover",
|
|
65
|
+
"commit": "c7b1348bdad7aa883c29bfbc96ef2a32e6ebc7dd",
|
|
66
|
+
"comment": "feat: Initial 9.0.0 release"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"author": "beachball",
|
|
70
|
+
"package": "@fluentui/react-popover",
|
|
71
|
+
"comment": "Bump @fluentui/react-context-selector to v9.0.0",
|
|
72
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"author": "beachball",
|
|
76
|
+
"package": "@fluentui/react-popover",
|
|
77
|
+
"comment": "Bump @fluentui/react-portal to v9.0.0",
|
|
78
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"author": "beachball",
|
|
82
|
+
"package": "@fluentui/react-popover",
|
|
83
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0",
|
|
84
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"author": "beachball",
|
|
88
|
+
"package": "@fluentui/react-popover",
|
|
89
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0",
|
|
90
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"author": "beachball",
|
|
94
|
+
"package": "@fluentui/react-popover",
|
|
95
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0",
|
|
96
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"author": "beachball",
|
|
100
|
+
"package": "@fluentui/react-popover",
|
|
101
|
+
"comment": "Bump @fluentui/react-theme to v9.0.0",
|
|
102
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"author": "beachball",
|
|
106
|
+
"package": "@fluentui/react-popover",
|
|
107
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0",
|
|
108
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"author": "beachball",
|
|
112
|
+
"package": "@fluentui/react-popover",
|
|
113
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.9",
|
|
114
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"date": "Thu, 23 Jun 2022 14:25:31 GMT",
|
|
121
|
+
"tag": "@fluentui/react-popover_v9.0.0-rc.14",
|
|
122
|
+
"version": "9.0.0-rc.14",
|
|
123
|
+
"comments": {
|
|
124
|
+
"prerelease": [
|
|
125
|
+
{
|
|
126
|
+
"author": "beachball",
|
|
127
|
+
"package": "@fluentui/react-popover",
|
|
128
|
+
"comment": "Bump @fluentui/react-portal to v9.0.0-rc.14",
|
|
129
|
+
"commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"author": "beachball",
|
|
133
|
+
"package": "@fluentui/react-popover",
|
|
134
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0-rc.12",
|
|
135
|
+
"commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"author": "beachball",
|
|
139
|
+
"package": "@fluentui/react-popover",
|
|
140
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.11",
|
|
141
|
+
"commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"author": "beachball",
|
|
145
|
+
"package": "@fluentui/react-popover",
|
|
146
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-rc.14",
|
|
147
|
+
"commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"author": "beachball",
|
|
151
|
+
"package": "@fluentui/react-popover",
|
|
152
|
+
"comment": "Bump @fluentui/react-theme to v9.0.0-rc.10",
|
|
153
|
+
"commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
|
|
154
|
+
}
|
|
155
|
+
]
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"date": "Tue, 31 May 2022 21:28:41 GMT",
|
|
160
|
+
"tag": "@fluentui/react-popover_v9.0.0-rc.13",
|
|
161
|
+
"version": "9.0.0-rc.13",
|
|
162
|
+
"comments": {
|
|
163
|
+
"prerelease": [
|
|
164
|
+
{
|
|
165
|
+
"author": "olfedias@microsoft.com",
|
|
166
|
+
"package": "@fluentui/react-popover",
|
|
167
|
+
"commit": "0a5e9fa77a72eecafdd07034ccdc0b95fd49877c",
|
|
168
|
+
"comment": "chore: Update Griffel to latest version"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"author": "sarah.higley@microsoft.com",
|
|
172
|
+
"package": "@fluentui/react-popover",
|
|
173
|
+
"commit": "c55c7d9d1141ae09542a78970416a8bbb344f623",
|
|
174
|
+
"comment": "update popover trigger to use aria-expanded instead of aria-haspopup"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"author": "bernardo.sunderhus@gmail.com",
|
|
178
|
+
"package": "@fluentui/react-popover",
|
|
179
|
+
"commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd",
|
|
180
|
+
"comment": "updates import to react-shared-components"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"author": "beachball",
|
|
184
|
+
"package": "@fluentui/react-popover",
|
|
185
|
+
"comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.10",
|
|
186
|
+
"commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"author": "beachball",
|
|
190
|
+
"package": "@fluentui/react-popover",
|
|
191
|
+
"comment": "Bump @fluentui/react-portal to v9.0.0-rc.13",
|
|
192
|
+
"commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"author": "beachball",
|
|
196
|
+
"package": "@fluentui/react-popover",
|
|
197
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0-rc.11",
|
|
198
|
+
"commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"author": "beachball",
|
|
202
|
+
"package": "@fluentui/react-popover",
|
|
203
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.10",
|
|
204
|
+
"commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"author": "beachball",
|
|
208
|
+
"package": "@fluentui/react-popover",
|
|
209
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-rc.13",
|
|
210
|
+
"commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"author": "beachball",
|
|
214
|
+
"package": "@fluentui/react-popover",
|
|
215
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-rc.10",
|
|
216
|
+
"commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"author": "beachball",
|
|
220
|
+
"package": "@fluentui/react-popover",
|
|
221
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8",
|
|
222
|
+
"commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
|
|
223
|
+
}
|
|
224
|
+
]
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"date": "Thu, 26 May 2022 21:01:27 GMT",
|
|
229
|
+
"tag": "@fluentui/react-popover_v9.0.0-rc.12",
|
|
230
|
+
"version": "9.0.0-rc.12",
|
|
231
|
+
"comments": {
|
|
232
|
+
"none": [
|
|
233
|
+
{
|
|
234
|
+
"author": "olfedias@microsoft.com",
|
|
235
|
+
"package": "@fluentui/react-popover",
|
|
236
|
+
"commit": "ca6d248d3b70b893a0d857c4c4759b95651572aa",
|
|
237
|
+
"comment": "use \"useId\" in stories for id generation"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"prerelease": [
|
|
241
|
+
{
|
|
242
|
+
"author": "behowell@microsoft.com",
|
|
243
|
+
"package": "@fluentui/react-popover",
|
|
244
|
+
"commit": "2bed5a599f10435dfa95be96f0bab5e4f71b4202",
|
|
245
|
+
"comment": "BREAKING: Popover no longer has an arrow by default. The `noArrow` prop is replaced by `withArrow`."
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"author": "beachball",
|
|
249
|
+
"package": "@fluentui/react-popover",
|
|
250
|
+
"comment": "Bump @fluentui/react-portal to v9.0.0-rc.12",
|
|
251
|
+
"commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"author": "beachball",
|
|
255
|
+
"package": "@fluentui/react-popover",
|
|
256
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-rc.12",
|
|
257
|
+
"commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
|
|
258
|
+
}
|
|
259
|
+
]
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"date": "Mon, 23 May 2022 18:56:46 GMT",
|
|
264
|
+
"tag": "@fluentui/react-popover_v9.0.0-rc.11",
|
|
265
|
+
"version": "9.0.0-rc.11",
|
|
266
|
+
"comments": {
|
|
267
|
+
"prerelease": [
|
|
268
|
+
{
|
|
269
|
+
"author": "lingfangao@hotmail.com",
|
|
270
|
+
"package": "@fluentui/react-popover",
|
|
271
|
+
"commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
|
|
272
|
+
"comment": "BREAKING: changes to positioning prop"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"author": "lingfangao@hotmail.com",
|
|
276
|
+
"package": "@fluentui/react-popover",
|
|
277
|
+
"commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
|
|
278
|
+
"comment": "BREAKING: stop exporting PopoverContext"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"author": "esteban.230@hotmail.com",
|
|
282
|
+
"package": "@fluentui/react-popover",
|
|
283
|
+
"commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
|
|
284
|
+
"comment": "Removing <componentName>ClassName exports."
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"author": "beachball",
|
|
288
|
+
"package": "@fluentui/react-popover",
|
|
289
|
+
"comment": "Bump @fluentui/react-portal to v9.0.0-rc.11",
|
|
290
|
+
"commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"author": "beachball",
|
|
294
|
+
"package": "@fluentui/react-popover",
|
|
295
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0-rc.10",
|
|
296
|
+
"commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"author": "beachball",
|
|
300
|
+
"package": "@fluentui/react-popover",
|
|
301
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.9",
|
|
302
|
+
"commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"author": "beachball",
|
|
306
|
+
"package": "@fluentui/react-popover",
|
|
307
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-rc.11",
|
|
308
|
+
"commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"author": "beachball",
|
|
312
|
+
"package": "@fluentui/react-popover",
|
|
313
|
+
"comment": "Bump @fluentui/react-theme to v9.0.0-rc.9",
|
|
314
|
+
"commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"author": "beachball",
|
|
318
|
+
"package": "@fluentui/react-popover",
|
|
319
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7",
|
|
320
|
+
"commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
|
|
321
|
+
}
|
|
322
|
+
]
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"date": "Mon, 23 May 2022 12:13:32 GMT",
|
|
327
|
+
"tag": "@fluentui/react-popover_v9.0.0-rc.10",
|
|
328
|
+
"version": "9.0.0-rc.10",
|
|
329
|
+
"comments": {
|
|
330
|
+
"prerelease": [
|
|
331
|
+
{
|
|
332
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
333
|
+
"package": "@fluentui/react-popover",
|
|
334
|
+
"commit": "af874b8a88494c3d3c13daa483348d386fef3736",
|
|
335
|
+
"comment": "Removing PopoverCommons type."
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"author": "olfedias@microsoft.com",
|
|
339
|
+
"package": "@fluentui/react-popover",
|
|
340
|
+
"commit": "f120fe9160ad7311a87af0cfacd8d2fb26275e34",
|
|
341
|
+
"comment": "chore: Update Griffel to latest version"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"author": "olfedias@microsoft.com",
|
|
345
|
+
"package": "@fluentui/react-popover",
|
|
346
|
+
"commit": "60804cec07a495b8a5d1fc66338bf0443b212144",
|
|
347
|
+
"comment": "chore: Update Griffel to latest version"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"author": "beachball",
|
|
351
|
+
"package": "@fluentui/react-popover",
|
|
352
|
+
"comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.9",
|
|
353
|
+
"commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"author": "beachball",
|
|
357
|
+
"package": "@fluentui/react-popover",
|
|
358
|
+
"comment": "Bump @fluentui/react-portal to v9.0.0-rc.10",
|
|
359
|
+
"commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"author": "beachball",
|
|
363
|
+
"package": "@fluentui/react-popover",
|
|
364
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0-rc.9",
|
|
365
|
+
"commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"author": "beachball",
|
|
369
|
+
"package": "@fluentui/react-popover",
|
|
370
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.8",
|
|
371
|
+
"commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"author": "beachball",
|
|
375
|
+
"package": "@fluentui/react-popover",
|
|
376
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-rc.10",
|
|
377
|
+
"commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"author": "beachball",
|
|
381
|
+
"package": "@fluentui/react-popover",
|
|
382
|
+
"comment": "Bump @fluentui/react-theme to v9.0.0-rc.8",
|
|
383
|
+
"commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"author": "beachball",
|
|
387
|
+
"package": "@fluentui/react-popover",
|
|
388
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-rc.9",
|
|
389
|
+
"commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"author": "beachball",
|
|
393
|
+
"package": "@fluentui/react-popover",
|
|
394
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6",
|
|
395
|
+
"commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
|
|
396
|
+
}
|
|
397
|
+
]
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"date": "Thu, 05 May 2022 18:26:24 GMT",
|
|
6
402
|
"tag": "@fluentui/react-popover_v9.0.0-rc.9",
|
|
7
403
|
"version": "9.0.0-rc.9",
|
|
8
404
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,116 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-popover
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 28 Jun 2022 15:08:57 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0)
|
|
8
|
+
|
|
9
|
+
Tue, 28 Jun 2022 15:08:57 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.14..@fluentui/react-popover_v9.0.0)
|
|
11
|
+
|
|
12
|
+
### Patches
|
|
13
|
+
|
|
14
|
+
- feat: Initial 9.0.0 release ([PR #23733](https://github.com/microsoft/fluentui/pull/23733) by lingfangao@hotmail.com)
|
|
15
|
+
- Bump @fluentui/react-context-selector to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
16
|
+
- Bump @fluentui/react-portal to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
17
|
+
- Bump @fluentui/react-positioning to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
18
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
19
|
+
- Bump @fluentui/react-tabster to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
20
|
+
- Bump @fluentui/react-theme to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
21
|
+
- Bump @fluentui/react-utilities to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
22
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.9 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
23
|
+
|
|
24
|
+
### Changes
|
|
25
|
+
|
|
26
|
+
- feat: Adds `legacyTrapFocus` prop ([PR #23598](https://github.com/microsoft/fluentui/pull/23598) by lingfangao@hotmail.com)
|
|
27
|
+
- Updates getTriggerChild internal usage ([PR #23574](https://github.com/microsoft/fluentui/pull/23574) by bernardo.sunderhus@gmail.com)
|
|
28
|
+
- chore: Adding scheduler as a peer dependency since this package has a dependency on @fluentui/react-context-selector. ([PR #23681](https://github.com/microsoft/fluentui/pull/23681) by Humberto.Morimoto@microsoft.com)
|
|
29
|
+
- fix: Add arrow padding to Popover arrrow ([PR #23607](https://github.com/microsoft/fluentui/pull/23607) by lingfangao@hotmail.com)
|
|
30
|
+
- Update 9.0.0-rc dependencies to use caret range ([PR #23732](https://github.com/microsoft/fluentui/pull/23732) by lingfangao@hotmail.com)
|
|
31
|
+
- Bump Griffel dependencies ([PR #23688](https://github.com/microsoft/fluentui/pull/23688) by lingfangao@hotmail.com)
|
|
32
|
+
|
|
33
|
+
## [9.0.0-rc.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.14)
|
|
34
|
+
|
|
35
|
+
Thu, 23 Jun 2022 14:25:31 GMT
|
|
36
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.13..@fluentui/react-popover_v9.0.0-rc.14)
|
|
37
|
+
|
|
38
|
+
### Changes
|
|
39
|
+
|
|
40
|
+
- Bump @fluentui/react-portal to v9.0.0-rc.14 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
41
|
+
- Bump @fluentui/react-positioning to v9.0.0-rc.12 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
42
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.11 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
43
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.14 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
44
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.10 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
45
|
+
|
|
46
|
+
## [9.0.0-rc.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.13)
|
|
47
|
+
|
|
48
|
+
Tue, 31 May 2022 21:28:41 GMT
|
|
49
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.12..@fluentui/react-popover_v9.0.0-rc.13)
|
|
50
|
+
|
|
51
|
+
### Changes
|
|
52
|
+
|
|
53
|
+
- chore: Update Griffel to latest version ([PR #23275](https://github.com/microsoft/fluentui/pull/23275) by olfedias@microsoft.com)
|
|
54
|
+
- update popover trigger to use aria-expanded instead of aria-haspopup ([PR #23127](https://github.com/microsoft/fluentui/pull/23127) by sarah.higley@microsoft.com)
|
|
55
|
+
- updates import to react-shared-components ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by bernardo.sunderhus@gmail.com)
|
|
56
|
+
- Bump @fluentui/react-context-selector to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
57
|
+
- Bump @fluentui/react-portal to v9.0.0-rc.13 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
58
|
+
- Bump @fluentui/react-positioning to v9.0.0-rc.11 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
59
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
60
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.13 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
61
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
62
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
63
|
+
|
|
64
|
+
## [9.0.0-rc.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.12)
|
|
65
|
+
|
|
66
|
+
Thu, 26 May 2022 21:01:27 GMT
|
|
67
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.11..@fluentui/react-popover_v9.0.0-rc.12)
|
|
68
|
+
|
|
69
|
+
### Changes
|
|
70
|
+
|
|
71
|
+
- BREAKING: Popover no longer has an arrow by default. The `noArrow` prop is replaced by `withArrow`. ([PR #23205](https://github.com/microsoft/fluentui/pull/23205) by behowell@microsoft.com)
|
|
72
|
+
- Bump @fluentui/react-portal to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
|
|
73
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
|
|
74
|
+
|
|
75
|
+
## [9.0.0-rc.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.11)
|
|
76
|
+
|
|
77
|
+
Mon, 23 May 2022 18:56:46 GMT
|
|
78
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.10..@fluentui/react-popover_v9.0.0-rc.11)
|
|
79
|
+
|
|
80
|
+
### Changes
|
|
81
|
+
|
|
82
|
+
- BREAKING: changes to positioning prop ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by lingfangao@hotmail.com)
|
|
83
|
+
- BREAKING: stop exporting PopoverContext ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by lingfangao@hotmail.com)
|
|
84
|
+
- Removing <componentName>ClassName exports. ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by esteban.230@hotmail.com)
|
|
85
|
+
- Bump @fluentui/react-portal to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
86
|
+
- Bump @fluentui/react-positioning to v9.0.0-rc.10 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
87
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
88
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
89
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
90
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
91
|
+
|
|
92
|
+
## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.10)
|
|
93
|
+
|
|
94
|
+
Mon, 23 May 2022 12:13:32 GMT
|
|
95
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.9..@fluentui/react-popover_v9.0.0-rc.10)
|
|
96
|
+
|
|
97
|
+
### Changes
|
|
98
|
+
|
|
99
|
+
- Removing PopoverCommons type. ([PR #22968](https://github.com/microsoft/fluentui/pull/22968) by Humberto.Morimoto@microsoft.com)
|
|
100
|
+
- chore: Update Griffel to latest version ([PR #22894](https://github.com/microsoft/fluentui/pull/22894) by olfedias@microsoft.com)
|
|
101
|
+
- chore: Update Griffel to latest version ([PR #23029](https://github.com/microsoft/fluentui/pull/23029) by olfedias@microsoft.com)
|
|
102
|
+
- Bump @fluentui/react-context-selector to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
103
|
+
- Bump @fluentui/react-portal to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
104
|
+
- Bump @fluentui/react-positioning to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
105
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
106
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
107
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
108
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
109
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
110
|
+
|
|
7
111
|
## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.0.0-rc.9)
|
|
8
112
|
|
|
9
|
-
Thu, 05 May 2022 18:24
|
|
113
|
+
Thu, 05 May 2022 18:26:24 GMT
|
|
10
114
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.0.0-rc.8..@fluentui/react-popover_v9.0.0-rc.9)
|
|
11
115
|
|
|
12
116
|
### Changes
|
package/Spec.md
CHANGED
|
@@ -344,7 +344,7 @@ Default popover
|
|
|
344
344
|
|
|
345
345
|
// Expected Markup
|
|
346
346
|
<div id="container">
|
|
347
|
-
<button aria-
|
|
347
|
+
<button aria-expanded="false">Trigger</button>
|
|
348
348
|
</div>
|
|
349
349
|
|
|
350
350
|
// on document.body
|
|
@@ -370,7 +370,7 @@ Popover that traps focus
|
|
|
370
370
|
|
|
371
371
|
// Expected Markup
|
|
372
372
|
<div id="container">
|
|
373
|
-
<button aria-
|
|
373
|
+
<button aria-expanded="false">Trigger</button>
|
|
374
374
|
</div>
|
|
375
375
|
|
|
376
376
|
// on document.body
|
|
@@ -396,7 +396,7 @@ Inline popover
|
|
|
396
396
|
|
|
397
397
|
// Expected Markup
|
|
398
398
|
<div id="container">
|
|
399
|
-
<button aria-
|
|
399
|
+
<button aria-expanded="false">Trigger</button>
|
|
400
400
|
<div>
|
|
401
401
|
{/** content */}
|
|
402
402
|
</div>
|
|
@@ -498,7 +498,7 @@ Accessible markup is divided into two scenarios:
|
|
|
498
498
|
|
|
499
499
|
```tsx
|
|
500
500
|
// Popover that does not trap focus
|
|
501
|
-
<button aria-
|
|
501
|
+
<button aria-expanded="false">Trigger</button>
|
|
502
502
|
<div role="complementary">
|
|
503
503
|
No focus trap
|
|
504
504
|
</div>
|
|
@@ -507,7 +507,7 @@ Accessible markup is divided into two scenarios:
|
|
|
507
507
|
<div aria-hidden="true" /> // other content
|
|
508
508
|
<div aria-hidden="true" /> // other content
|
|
509
509
|
<div aria-hidden="true" className='fui-provider'>
|
|
510
|
-
<button aria-
|
|
510
|
+
<button aria-expanded="false">Trigger</button>
|
|
511
511
|
</div>
|
|
512
512
|
|
|
513
513
|
<div role="dialog" aria-modal="true">
|