@fluentui/react-positioning 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.
- package/CHANGELOG.json +1614 -0
- package/CHANGELOG.md +719 -0
- package/LICENSE +15 -0
- package/README.md +25 -0
- package/dist/react-positioning.d.ts +221 -0
- package/lib/createArrowStyles.d.ts +64 -0
- package/lib/createArrowStyles.js +87 -0
- package/lib/createArrowStyles.js.map +1 -0
- package/lib/createVirtualElementFromClick.d.ts +6 -0
- package/lib/createVirtualElementFromClick.js +26 -0
- package/lib/createVirtualElementFromClick.js.map +1 -0
- package/lib/index.d.ts +6 -0
- package/lib/index.js +7 -0
- package/lib/index.js.map +1 -0
- package/lib/isIntersectingModifier.d.ts +4 -0
- package/lib/isIntersectingModifier.js +26 -0
- package/lib/isIntersectingModifier.js.map +1 -0
- package/lib/tsdoc-metadata.json +11 -0
- package/lib/types.d.ts +89 -0
- package/lib/types.js +2 -0
- package/lib/types.js.map +1 -0
- package/lib/usePopper.d.ts +23 -0
- package/lib/usePopper.js +407 -0
- package/lib/usePopper.js.map +1 -0
- package/lib/usePopperMouseTarget.d.ts +11 -0
- package/lib/usePopperMouseTarget.js +40 -0
- package/lib/usePopperMouseTarget.js.map +1 -0
- package/lib/utils/getBasePlacement.d.ts +8 -0
- package/lib/utils/getBasePlacement.js +10 -0
- package/lib/utils/getBasePlacement.js.map +1 -0
- package/lib/utils/getBoundary.d.ts +6 -0
- package/lib/utils/getBoundary.js +23 -0
- package/lib/utils/getBoundary.js.map +1 -0
- package/lib/utils/getReactFiberFromNode.d.ts +108 -0
- package/lib/utils/getReactFiberFromNode.js +46 -0
- package/lib/utils/getReactFiberFromNode.js.map +1 -0
- package/lib/utils/getScrollParent.d.ts +12 -0
- package/lib/utils/getScrollParent.js +65 -0
- package/lib/utils/getScrollParent.js.map +1 -0
- package/lib/utils/index.d.ts +8 -0
- package/lib/utils/index.js +9 -0
- package/lib/utils/index.js.map +1 -0
- package/lib/utils/mergeArrowOffset.d.ts +10 -0
- package/lib/utils/mergeArrowOffset.js +42 -0
- package/lib/utils/mergeArrowOffset.js.map +1 -0
- package/lib/utils/positioningHelper.d.ts +7 -0
- package/lib/utils/positioningHelper.js +49 -0
- package/lib/utils/positioningHelper.js.map +1 -0
- package/lib/utils/resolvePositioningShorthand.d.ts +2 -0
- package/lib/utils/resolvePositioningShorthand.js +63 -0
- package/lib/utils/resolvePositioningShorthand.js.map +1 -0
- package/lib/utils/useCallbackRef.d.ts +19 -0
- package/lib/utils/useCallbackRef.js +57 -0
- package/lib/utils/useCallbackRef.js.map +1 -0
- package/lib-commonjs/createArrowStyles.d.ts +64 -0
- package/lib-commonjs/createArrowStyles.js +100 -0
- package/lib-commonjs/createArrowStyles.js.map +1 -0
- package/lib-commonjs/createVirtualElementFromClick.d.ts +6 -0
- package/lib-commonjs/createVirtualElementFromClick.js +35 -0
- package/lib-commonjs/createVirtualElementFromClick.js.map +1 -0
- package/lib-commonjs/index.d.ts +6 -0
- package/lib-commonjs/index.js +34 -0
- package/lib-commonjs/index.js.map +1 -0
- package/lib-commonjs/isIntersectingModifier.d.ts +4 -0
- package/lib-commonjs/isIntersectingModifier.js +34 -0
- package/lib-commonjs/isIntersectingModifier.js.map +1 -0
- package/lib-commonjs/types.d.ts +89 -0
- package/lib-commonjs/types.js +6 -0
- package/lib-commonjs/types.js.map +1 -0
- package/lib-commonjs/usePopper.d.ts +23 -0
- package/lib-commonjs/usePopper.js +422 -0
- package/lib-commonjs/usePopper.js.map +1 -0
- package/lib-commonjs/usePopperMouseTarget.d.ts +11 -0
- package/lib-commonjs/usePopperMouseTarget.js +51 -0
- package/lib-commonjs/usePopperMouseTarget.js.map +1 -0
- package/lib-commonjs/utils/getBasePlacement.d.ts +8 -0
- package/lib-commonjs/utils/getBasePlacement.js +19 -0
- package/lib-commonjs/utils/getBasePlacement.js.map +1 -0
- package/lib-commonjs/utils/getBoundary.d.ts +6 -0
- package/lib-commonjs/utils/getBoundary.js +33 -0
- package/lib-commonjs/utils/getBoundary.js.map +1 -0
- package/lib-commonjs/utils/getReactFiberFromNode.d.ts +108 -0
- package/lib-commonjs/utils/getReactFiberFromNode.js +54 -0
- package/lib-commonjs/utils/getReactFiberFromNode.js.map +1 -0
- package/lib-commonjs/utils/getScrollParent.d.ts +12 -0
- package/lib-commonjs/utils/getScrollParent.js +76 -0
- package/lib-commonjs/utils/getScrollParent.js.map +1 -0
- package/lib-commonjs/utils/index.d.ts +8 -0
- package/lib-commonjs/utils/index.js +24 -0
- package/lib-commonjs/utils/index.js.map +1 -0
- package/lib-commonjs/utils/mergeArrowOffset.d.ts +10 -0
- package/lib-commonjs/utils/mergeArrowOffset.js +51 -0
- package/lib-commonjs/utils/mergeArrowOffset.js.map +1 -0
- package/lib-commonjs/utils/positioningHelper.d.ts +7 -0
- package/lib-commonjs/utils/positioningHelper.js +61 -0
- package/lib-commonjs/utils/positioningHelper.js.map +1 -0
- package/lib-commonjs/utils/resolvePositioningShorthand.d.ts +2 -0
- package/lib-commonjs/utils/resolvePositioningShorthand.js +72 -0
- package/lib-commonjs/utils/resolvePositioningShorthand.js.map +1 -0
- package/lib-commonjs/utils/useCallbackRef.d.ts +19 -0
- package/lib-commonjs/utils/useCallbackRef.js +68 -0
- package/lib-commonjs/utils/useCallbackRef.js.map +1 -0
- package/package.json +55 -0
package/CHANGELOG.json
ADDED
@@ -0,0 +1,1614 @@
|
|
1
|
+
{
|
2
|
+
"name": "@fluentui/react-positioning",
|
3
|
+
"entries": [
|
4
|
+
{
|
5
|
+
"date": "Wed, 02 Mar 2022 04:14:56 GMT",
|
6
|
+
"tag": "@fluentui/react-positioning_v0.0.0-nightly-20220302-0405.1",
|
7
|
+
"version": "0.0.0-nightly-20220302-0405.1",
|
8
|
+
"comments": {
|
9
|
+
"prerelease": [
|
10
|
+
{
|
11
|
+
"author": "email not defined",
|
12
|
+
"package": "@fluentui/react-positioning",
|
13
|
+
"commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec",
|
14
|
+
"comment": "Release nightly v9"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"author": "lingfangao@hotmail.com",
|
18
|
+
"package": "@fluentui/react-positioning",
|
19
|
+
"commit": "2267ad0de9d6f6bf3aa776016da3d03f5400cbd1",
|
20
|
+
"comment": "fix: `popperRef.setTarget` should accept virtual element type"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"author": "beachball",
|
24
|
+
"package": "@fluentui/react-positioning",
|
25
|
+
"comment": "Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20220302-0405.1",
|
26
|
+
"commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"author": "beachball",
|
30
|
+
"package": "@fluentui/react-positioning",
|
31
|
+
"comment": "Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1",
|
32
|
+
"commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"author": "beachball",
|
36
|
+
"package": "@fluentui/react-positioning",
|
37
|
+
"comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1",
|
38
|
+
"commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
|
39
|
+
}
|
40
|
+
]
|
41
|
+
}
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"date": "Tue, 01 Mar 2022 02:17:38 GMT",
|
45
|
+
"tag": "@fluentui/react-positioning_v9.0.0-rc.4",
|
46
|
+
"version": "9.0.0-rc.4",
|
47
|
+
"comments": {
|
48
|
+
"prerelease": [
|
49
|
+
{
|
50
|
+
"author": "olfedias@microsoft.com",
|
51
|
+
"package": "@fluentui/react-positioning",
|
52
|
+
"commit": "def76fff08777fcd5492f47824b943bab22d4515",
|
53
|
+
"comment": "feat: add isIntersectingModifier to usePopper"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"author": "olfedias@microsoft.com",
|
57
|
+
"package": "@fluentui/react-positioning",
|
58
|
+
"commit": "084d7408855f3e52b67cbca172da1acef9dcb98f",
|
59
|
+
"comment": "fix: Add react-theme as dependency"
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"author": "beachball",
|
63
|
+
"package": "@fluentui/react-positioning",
|
64
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
|
65
|
+
"commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
|
66
|
+
}
|
67
|
+
]
|
68
|
+
}
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"date": "Fri, 18 Feb 2022 13:35:33 GMT",
|
72
|
+
"tag": "@fluentui/react-positioning_v9.0.0-rc.3",
|
73
|
+
"version": "9.0.0-rc.3",
|
74
|
+
"comments": {
|
75
|
+
"prerelease": [
|
76
|
+
{
|
77
|
+
"author": "lingfangao@hotmail.com",
|
78
|
+
"package": "@fluentui/react-positioning",
|
79
|
+
"commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
|
80
|
+
"comment": "fix: Source maps contain original source code"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"author": "beachball",
|
84
|
+
"package": "@fluentui/react-positioning",
|
85
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.3",
|
86
|
+
"commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"author": "beachball",
|
90
|
+
"package": "@fluentui/react-positioning",
|
91
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
|
92
|
+
"commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
|
93
|
+
}
|
94
|
+
]
|
95
|
+
}
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"date": "Thu, 10 Feb 2022 08:50:40 GMT",
|
99
|
+
"tag": "@fluentui/react-positioning_v9.0.0-rc.1",
|
100
|
+
"version": "9.0.0-rc.1",
|
101
|
+
"comments": {
|
102
|
+
"prerelease": [
|
103
|
+
{
|
104
|
+
"author": "olfedias@microsoft.com",
|
105
|
+
"package": "@fluentui/react-positioning",
|
106
|
+
"commit": "a76afe26daad901ff5458ffdda7e66e600d5bcac",
|
107
|
+
"comment": "use new types from makeStyles core"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
111
|
+
"package": "@fluentui/react-positioning",
|
112
|
+
"commit": "db6526ee2d04991e4473174969e3795299b52f9e",
|
113
|
+
"comment": "Replacing use of functions in makeStyles with direct use of tokens."
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"author": "behowell@microsoft.com",
|
117
|
+
"package": "@fluentui/react-positioning",
|
118
|
+
"commit": "2e34c026a354af1bbfe6a5ead1ade41348d5488f",
|
119
|
+
"comment": "Fix tooltip arrow's high contrast border in RTL"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"author": "olfedias@microsoft.com",
|
123
|
+
"package": "@fluentui/react-positioning",
|
124
|
+
"commit": "523b5785eafd28cf56b677af40274cefe5d42dcb",
|
125
|
+
"comment": "use Griffel packages"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"author": "lingfangao@hotmail.com",
|
129
|
+
"package": "@fluentui/react-positioning",
|
130
|
+
"commit": "a548a59bd94f9c4b656da3bdd149db7ac2de726f",
|
131
|
+
"comment": "feat: Imperative `setTarget` for `usePopper` and `positioning`"
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"author": "bsunderhus@microsoft.com",
|
135
|
+
"package": "@fluentui/react-positioning",
|
136
|
+
"commit": "e382ad22539fc97bb283ca4ed856e126c7477e89",
|
137
|
+
"comment": "Adds @noflip annotation to data-popper-placement styles"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"author": "olfedias@microsoft.com",
|
141
|
+
"package": "@fluentui/react-positioning",
|
142
|
+
"commit": "967d6b74cf0507685a24e0cfaa8c7b9d52a351e1",
|
143
|
+
"comment": "update styles to not use CSS shorthands"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"author": "lingfangao@hotmail.com",
|
147
|
+
"package": "@fluentui/react-positioning",
|
148
|
+
"commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
|
149
|
+
"comment": "Bump Fluent UI packages to 9.0.0-rc"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"author": "behowell@microsoft.com",
|
153
|
+
"package": "@fluentui/react-positioning",
|
154
|
+
"commit": "09804275c7f346db54c33d4ff347bffc33676014",
|
155
|
+
"comment": "Fix popover arrow styling"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"author": "beachball",
|
159
|
+
"package": "@fluentui/react-positioning",
|
160
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.1",
|
161
|
+
"commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"author": "beachball",
|
165
|
+
"package": "@fluentui/react-positioning",
|
166
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
|
167
|
+
"commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"none": [
|
171
|
+
{
|
172
|
+
"author": "olfedias@microsoft.com",
|
173
|
+
"package": "@fluentui/react-positioning",
|
174
|
+
"commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
|
175
|
+
"comment": "remove inline-style-expand-shorthand from tsconfigs"
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"author": "martinhochel@microsoft.com",
|
179
|
+
"package": "@fluentui/react-positioning",
|
180
|
+
"commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
|
181
|
+
"comment": "chore: use storybook runner for all vNext packages"
|
182
|
+
}
|
183
|
+
]
|
184
|
+
}
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"date": "Thu, 25 Nov 2021 08:34:15 GMT",
|
188
|
+
"tag": "@fluentui/react-positioning_v9.0.0-beta.4",
|
189
|
+
"version": "9.0.0-beta.4",
|
190
|
+
"comments": {
|
191
|
+
"none": [
|
192
|
+
{
|
193
|
+
"author": "lingfangao@hotmail.com",
|
194
|
+
"package": "@fluentui/react-positioning",
|
195
|
+
"commit": "718e63006d8d07d24efab9c32942041963d78dc7",
|
196
|
+
"comment": "Migrate package to use solution style ts-configs"
|
197
|
+
}
|
198
|
+
],
|
199
|
+
"prerelease": [
|
200
|
+
{
|
201
|
+
"author": "lingfangao@hotmail.com",
|
202
|
+
"package": "@fluentui/react-positioning",
|
203
|
+
"commit": "58db204f28af1d68df7260ff580cf91f0adcfb66",
|
204
|
+
"comment": "Add utility function to create styles for an arrow element"
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"author": "beachball",
|
208
|
+
"package": "@fluentui/react-positioning",
|
209
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
|
210
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"author": "beachball",
|
214
|
+
"package": "@fluentui/react-positioning",
|
215
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.4",
|
216
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
217
|
+
},
|
218
|
+
{
|
219
|
+
"author": "beachball",
|
220
|
+
"package": "@fluentui/react-positioning",
|
221
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
|
222
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
223
|
+
},
|
224
|
+
{
|
225
|
+
"author": "beachball",
|
226
|
+
"package": "@fluentui/react-positioning",
|
227
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
|
228
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
229
|
+
}
|
230
|
+
]
|
231
|
+
}
|
232
|
+
},
|
233
|
+
{
|
234
|
+
"date": "Fri, 12 Nov 2021 13:25:30 GMT",
|
235
|
+
"tag": "@fluentui/react-positioning_v9.0.0-beta.3",
|
236
|
+
"version": "9.0.0-beta.3",
|
237
|
+
"comments": {
|
238
|
+
"prerelease": [
|
239
|
+
{
|
240
|
+
"author": "gcox@microsoft.com",
|
241
|
+
"package": "@fluentui/react-positioning",
|
242
|
+
"commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
|
243
|
+
"comment": "Updated beta and RC components to ES2019"
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"author": "beachball",
|
247
|
+
"package": "@fluentui/react-positioning",
|
248
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.3",
|
249
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"author": "beachball",
|
253
|
+
"package": "@fluentui/react-positioning",
|
254
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
|
255
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
256
|
+
}
|
257
|
+
],
|
258
|
+
"none": [
|
259
|
+
{
|
260
|
+
"author": "lingfangao@hotmail.com",
|
261
|
+
"package": "@fluentui/react-positioning",
|
262
|
+
"commit": "00f70581480b536e723fb69edf0ae617beac4807",
|
263
|
+
"comment": "Remove beta release tag"
|
264
|
+
}
|
265
|
+
]
|
266
|
+
}
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"date": "Wed, 27 Oct 2021 12:14:21 GMT",
|
270
|
+
"tag": "@fluentui/react-positioning_v9.0.0-beta.2",
|
271
|
+
"version": "9.0.0-beta.2",
|
272
|
+
"comments": {
|
273
|
+
"prerelease": [
|
274
|
+
{
|
275
|
+
"author": "peter@draxler.ml",
|
276
|
+
"package": "@fluentui/react-positioning",
|
277
|
+
"commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
|
278
|
+
"comment": "added styling of documentation"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"author": "beachball",
|
282
|
+
"package": "@fluentui/react-positioning",
|
283
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.2",
|
284
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
285
|
+
},
|
286
|
+
{
|
287
|
+
"author": "beachball",
|
288
|
+
"package": "@fluentui/react-positioning",
|
289
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.2",
|
290
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
291
|
+
}
|
292
|
+
]
|
293
|
+
}
|
294
|
+
},
|
295
|
+
{
|
296
|
+
"date": "Wed, 06 Oct 2021 10:37:22 GMT",
|
297
|
+
"tag": "@fluentui/react-positioning_v9.0.0-beta.1",
|
298
|
+
"version": "9.0.0-beta.1",
|
299
|
+
"comments": {
|
300
|
+
"prerelease": [
|
301
|
+
{
|
302
|
+
"author": "lingfangao@hotmail.com",
|
303
|
+
"package": "@fluentui/react-positioning",
|
304
|
+
"comment": "Bump all v9 components to beta prerelease tag",
|
305
|
+
"commit": "5553164c190a4beb4780745d0e6403109e057913"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"author": "beachball",
|
309
|
+
"package": "@fluentui/react-positioning",
|
310
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.1",
|
311
|
+
"commit": "5553164c190a4beb4780745d0e6403109e057913"
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"author": "beachball",
|
315
|
+
"package": "@fluentui/react-positioning",
|
316
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.1",
|
317
|
+
"commit": "5553164c190a4beb4780745d0e6403109e057913"
|
318
|
+
}
|
319
|
+
]
|
320
|
+
}
|
321
|
+
},
|
322
|
+
{
|
323
|
+
"date": "Tue, 05 Oct 2021 09:28:07 GMT",
|
324
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.65",
|
325
|
+
"version": "9.0.0-alpha.65",
|
326
|
+
"comments": {
|
327
|
+
"prerelease": [
|
328
|
+
{
|
329
|
+
"author": "beachball",
|
330
|
+
"package": "@fluentui/react-positioning",
|
331
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.56",
|
332
|
+
"commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
|
333
|
+
}
|
334
|
+
]
|
335
|
+
}
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"date": "Fri, 01 Oct 2021 14:13:08 GMT",
|
339
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.64",
|
340
|
+
"version": "9.0.0-alpha.64",
|
341
|
+
"comments": {
|
342
|
+
"prerelease": [
|
343
|
+
{
|
344
|
+
"author": "lingfangao@hotmail.com",
|
345
|
+
"package": "@fluentui/react-positioning",
|
346
|
+
"comment": "Bump v9 prerelease versions to rerelease",
|
347
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
348
|
+
},
|
349
|
+
{
|
350
|
+
"author": "beachball",
|
351
|
+
"package": "@fluentui/react-positioning",
|
352
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.28",
|
353
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"author": "beachball",
|
357
|
+
"package": "@fluentui/react-positioning",
|
358
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.55",
|
359
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
360
|
+
}
|
361
|
+
]
|
362
|
+
}
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"date": "Wed, 29 Sep 2021 08:06:11 GMT",
|
366
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.62",
|
367
|
+
"version": "9.0.0-alpha.62",
|
368
|
+
"comments": {
|
369
|
+
"prerelease": [
|
370
|
+
{
|
371
|
+
"author": "beachball",
|
372
|
+
"package": "@fluentui/react-positioning",
|
373
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.26",
|
374
|
+
"commit": "ede1575b3a5c8f893124af9415c53968564fb923"
|
375
|
+
}
|
376
|
+
]
|
377
|
+
}
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"date": "Mon, 27 Sep 2021 08:06:00 GMT",
|
381
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.61",
|
382
|
+
"version": "9.0.0-alpha.61",
|
383
|
+
"comments": {
|
384
|
+
"prerelease": [
|
385
|
+
{
|
386
|
+
"author": "beachball",
|
387
|
+
"package": "@fluentui/react-positioning",
|
388
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.53",
|
389
|
+
"commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
|
390
|
+
}
|
391
|
+
]
|
392
|
+
}
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"date": "Fri, 24 Sep 2021 09:17:17 GMT",
|
396
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.60",
|
397
|
+
"version": "9.0.0-alpha.60",
|
398
|
+
"comments": {
|
399
|
+
"prerelease": [
|
400
|
+
{
|
401
|
+
"author": "beachball",
|
402
|
+
"package": "@fluentui/react-positioning",
|
403
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.52",
|
404
|
+
"commit": "0d26909912889432060fd4c87b2f4a45017e1532"
|
405
|
+
}
|
406
|
+
]
|
407
|
+
}
|
408
|
+
},
|
409
|
+
{
|
410
|
+
"date": "Thu, 23 Sep 2021 08:21:34 GMT",
|
411
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.59",
|
412
|
+
"version": "9.0.0-alpha.59",
|
413
|
+
"comments": {
|
414
|
+
"prerelease": [
|
415
|
+
{
|
416
|
+
"author": "beachball",
|
417
|
+
"package": "@fluentui/react-positioning",
|
418
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.51",
|
419
|
+
"commit": "95682da34c48813f7658032ae490d21d2f363b90"
|
420
|
+
}
|
421
|
+
]
|
422
|
+
}
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"date": "Wed, 22 Sep 2021 10:10:07 GMT",
|
426
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.58",
|
427
|
+
"version": "9.0.0-alpha.58",
|
428
|
+
"comments": {
|
429
|
+
"prerelease": [
|
430
|
+
{
|
431
|
+
"author": "beachball",
|
432
|
+
"package": "@fluentui/react-positioning",
|
433
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.50",
|
434
|
+
"commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
|
435
|
+
}
|
436
|
+
]
|
437
|
+
}
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"date": "Tue, 21 Sep 2021 07:42:34 GMT",
|
441
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.57",
|
442
|
+
"version": "9.0.0-alpha.57",
|
443
|
+
"comments": {
|
444
|
+
"prerelease": [
|
445
|
+
{
|
446
|
+
"author": "beachball",
|
447
|
+
"package": "@fluentui/react-positioning",
|
448
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.25",
|
449
|
+
"commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
|
450
|
+
}
|
451
|
+
]
|
452
|
+
}
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"date": "Mon, 20 Sep 2021 07:36:26 GMT",
|
456
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.56",
|
457
|
+
"version": "9.0.0-alpha.56",
|
458
|
+
"comments": {
|
459
|
+
"none": [
|
460
|
+
{
|
461
|
+
"author": "lingfangao@hotmail.com",
|
462
|
+
"package": "@fluentui/react-positioning",
|
463
|
+
"comment": "chore: use versioon eslint-plugin and react-conformance in dev dependencies",
|
464
|
+
"commit": "b8a304770f77c0353553a152dad34421070400a6"
|
465
|
+
}
|
466
|
+
],
|
467
|
+
"prerelease": [
|
468
|
+
{
|
469
|
+
"author": "lingfangao@hotmail.com",
|
470
|
+
"package": "@fluentui/react-positioning",
|
471
|
+
"commit": "b8a304770f77c0353553a152dad34421070400a6",
|
472
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0-alpha.56"
|
473
|
+
}
|
474
|
+
]
|
475
|
+
}
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"date": "Fri, 17 Sep 2021 07:35:26 GMT",
|
479
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.55",
|
480
|
+
"version": "9.0.0-alpha.55",
|
481
|
+
"comments": {
|
482
|
+
"prerelease": [
|
483
|
+
{
|
484
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
485
|
+
"package": "@fluentui/react-positioning",
|
486
|
+
"commit": "90d71a0914acbb73a0365d60a85237e3d58ef575",
|
487
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0-alpha.55"
|
488
|
+
}
|
489
|
+
]
|
490
|
+
}
|
491
|
+
},
|
492
|
+
{
|
493
|
+
"date": "Thu, 16 Sep 2021 07:38:39 GMT",
|
494
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.54",
|
495
|
+
"version": "9.0.0-alpha.54",
|
496
|
+
"comments": {
|
497
|
+
"prerelease": [
|
498
|
+
{
|
499
|
+
"author": "behowell@microsoft.com",
|
500
|
+
"package": "@fluentui/react-positioning",
|
501
|
+
"commit": "fbe41e2877a20ce0f3c01b5188e17c12f941cc4c",
|
502
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0-alpha.54"
|
503
|
+
}
|
504
|
+
]
|
505
|
+
}
|
506
|
+
},
|
507
|
+
{
|
508
|
+
"date": "Tue, 14 Sep 2021 20:09:02 GMT",
|
509
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.53",
|
510
|
+
"version": "9.0.0-alpha.53",
|
511
|
+
"comments": {
|
512
|
+
"prerelease": [
|
513
|
+
{
|
514
|
+
"author": "bsunderhus@microsoft.com",
|
515
|
+
"package": "@fluentui/react-positioning",
|
516
|
+
"commit": "10495c31fb5c5cf48b4665601a75a0cfabb6a03c",
|
517
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0-alpha.53"
|
518
|
+
}
|
519
|
+
]
|
520
|
+
}
|
521
|
+
},
|
522
|
+
{
|
523
|
+
"date": "Fri, 10 Sep 2021 16:31:53 GMT",
|
524
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.52",
|
525
|
+
"version": "9.0.0-alpha.52",
|
526
|
+
"comments": {
|
527
|
+
"prerelease": [
|
528
|
+
{
|
529
|
+
"author": "lingfangao@hotmail.com",
|
530
|
+
"package": "@fluentui/react-positioning",
|
531
|
+
"comment": "chore(v9): Move all internal v9 dependencies from caret to fixed version",
|
532
|
+
"commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0"
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"author": "lingfangao@hotmail.com",
|
536
|
+
"package": "@fluentui/react-positioning",
|
537
|
+
"commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0",
|
538
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0-alpha.52"
|
539
|
+
}
|
540
|
+
]
|
541
|
+
}
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"date": "Fri, 10 Sep 2021 07:39:51 GMT",
|
545
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.51",
|
546
|
+
"version": "9.0.0-alpha.51",
|
547
|
+
"comments": {
|
548
|
+
"prerelease": [
|
549
|
+
{
|
550
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.45",
|
551
|
+
"author": "behowell@microsoft.com",
|
552
|
+
"commit": "8700a515c7f2659761c5b53f55c32453bc3510b1",
|
553
|
+
"package": "@fluentui/react-positioning"
|
554
|
+
}
|
555
|
+
]
|
556
|
+
}
|
557
|
+
},
|
558
|
+
{
|
559
|
+
"date": "Wed, 08 Sep 2021 07:34:11 GMT",
|
560
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.50",
|
561
|
+
"version": "9.0.0-alpha.50",
|
562
|
+
"comments": {
|
563
|
+
"prerelease": [
|
564
|
+
{
|
565
|
+
"comment": "chore(usePopper): Document that `align` does not work without `position`",
|
566
|
+
"author": "lingfangao@hotmail.com",
|
567
|
+
"commit": "21f67e9922763bc9b50c9be8e5cc690d0ee3dac1",
|
568
|
+
"package": "@fluentui/react-positioning"
|
569
|
+
}
|
570
|
+
]
|
571
|
+
}
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"date": "Mon, 06 Sep 2021 07:34:53 GMT",
|
575
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.49",
|
576
|
+
"version": "9.0.0-alpha.49",
|
577
|
+
"comments": {
|
578
|
+
"prerelease": [
|
579
|
+
{
|
580
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.44",
|
581
|
+
"author": "lingfangao@hotmail.com",
|
582
|
+
"commit": "cd22a603bb20947e7d23a3357b9a535afdb5ee1d",
|
583
|
+
"package": "@fluentui/react-positioning"
|
584
|
+
}
|
585
|
+
]
|
586
|
+
}
|
587
|
+
},
|
588
|
+
{
|
589
|
+
"date": "Wed, 01 Sep 2021 07:39:56 GMT",
|
590
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.48",
|
591
|
+
"version": "9.0.0-alpha.48",
|
592
|
+
"comments": {
|
593
|
+
"prerelease": [
|
594
|
+
{
|
595
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.43",
|
596
|
+
"author": "bsunderhus@microsoft.com",
|
597
|
+
"commit": "40254a1b07bd51affd276e51af0b1d517714b45c",
|
598
|
+
"package": "@fluentui/react-positioning"
|
599
|
+
}
|
600
|
+
]
|
601
|
+
}
|
602
|
+
},
|
603
|
+
{
|
604
|
+
"date": "Tue, 31 Aug 2021 07:37:47 GMT",
|
605
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.47",
|
606
|
+
"version": "9.0.0-alpha.47",
|
607
|
+
"comments": {
|
608
|
+
"prerelease": [
|
609
|
+
{
|
610
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.42",
|
611
|
+
"author": "lingfan.gao@microsoft.com",
|
612
|
+
"commit": "7a53d85571212d2f5b56a84fd84e29f5e1985daa",
|
613
|
+
"package": "@fluentui/react-positioning"
|
614
|
+
}
|
615
|
+
]
|
616
|
+
}
|
617
|
+
},
|
618
|
+
{
|
619
|
+
"date": "Tue, 24 Aug 2021 07:34:48 GMT",
|
620
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.46",
|
621
|
+
"version": "9.0.0-alpha.46",
|
622
|
+
"comments": {
|
623
|
+
"prerelease": [
|
624
|
+
{
|
625
|
+
"comment": "Updating TypeScript type-only imports/exports to use import/export syntax.",
|
626
|
+
"author": "dzearing@hotmail.com",
|
627
|
+
"commit": "4eec618fe480b129e08914b1f091a8509af60379",
|
628
|
+
"package": "@fluentui/react-positioning"
|
629
|
+
}
|
630
|
+
],
|
631
|
+
"none": [
|
632
|
+
{
|
633
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.4.1",
|
634
|
+
"author": "dzearing@hotmail.com",
|
635
|
+
"commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
|
636
|
+
"package": "@fluentui/react-positioning"
|
637
|
+
},
|
638
|
+
{
|
639
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.41",
|
640
|
+
"author": "dzearing@hotmail.com",
|
641
|
+
"commit": "789a3733b128569190319fce3fe2b46900b24896",
|
642
|
+
"package": "@fluentui/react-positioning"
|
643
|
+
},
|
644
|
+
{
|
645
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.23",
|
646
|
+
"author": "dzearing@hotmail.com",
|
647
|
+
"commit": "789a3733b128569190319fce3fe2b46900b24896",
|
648
|
+
"package": "@fluentui/react-positioning"
|
649
|
+
},
|
650
|
+
{
|
651
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
652
|
+
"author": "dzearing@hotmail.com",
|
653
|
+
"commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
|
654
|
+
"package": "@fluentui/react-positioning"
|
655
|
+
}
|
656
|
+
]
|
657
|
+
}
|
658
|
+
},
|
659
|
+
{
|
660
|
+
"date": "Fri, 20 Aug 2021 07:37:28 GMT",
|
661
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.45",
|
662
|
+
"version": "9.0.0-alpha.45",
|
663
|
+
"comments": {
|
664
|
+
"prerelease": [
|
665
|
+
{
|
666
|
+
"comment": "Update .npmignore",
|
667
|
+
"author": "elcraig@microsoft.com",
|
668
|
+
"commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
|
669
|
+
"package": "@fluentui/react-positioning"
|
670
|
+
}
|
671
|
+
],
|
672
|
+
"none": [
|
673
|
+
{
|
674
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.4.0",
|
675
|
+
"author": "behowell@microsoft.com",
|
676
|
+
"commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
|
677
|
+
"package": "@fluentui/react-positioning"
|
678
|
+
},
|
679
|
+
{
|
680
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.40",
|
681
|
+
"author": "elcraig@microsoft.com",
|
682
|
+
"commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
|
683
|
+
"package": "@fluentui/react-positioning"
|
684
|
+
},
|
685
|
+
{
|
686
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.22",
|
687
|
+
"author": "elcraig@microsoft.com",
|
688
|
+
"commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
|
689
|
+
"package": "@fluentui/react-positioning"
|
690
|
+
},
|
691
|
+
{
|
692
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
693
|
+
"author": "behowell@microsoft.com",
|
694
|
+
"commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
|
695
|
+
"package": "@fluentui/react-positioning"
|
696
|
+
}
|
697
|
+
]
|
698
|
+
}
|
699
|
+
},
|
700
|
+
{
|
701
|
+
"date": "Thu, 19 Aug 2021 07:41:35 GMT",
|
702
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.44",
|
703
|
+
"version": "9.0.0-alpha.44",
|
704
|
+
"comments": {
|
705
|
+
"prerelease": [
|
706
|
+
{
|
707
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.39",
|
708
|
+
"author": "bsunderhus@microsoft.com",
|
709
|
+
"commit": "e467d64e7d3edb2512a81efdaeca5813269039b4",
|
710
|
+
"package": "@fluentui/react-positioning"
|
711
|
+
}
|
712
|
+
]
|
713
|
+
}
|
714
|
+
},
|
715
|
+
{
|
716
|
+
"date": "Mon, 16 Aug 2021 07:36:39 GMT",
|
717
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.43",
|
718
|
+
"version": "9.0.0-alpha.43",
|
719
|
+
"comments": {
|
720
|
+
"prerelease": [
|
721
|
+
{
|
722
|
+
"comment": "feat(positioning): implement shorthand positioning option and shorthand parsing utility",
|
723
|
+
"author": "lingfan.gao@microsoft.com",
|
724
|
+
"commit": "9a29ba46e28735f7e10d06627a90931ec5a250c8",
|
725
|
+
"package": "@fluentui/react-positioning"
|
726
|
+
}
|
727
|
+
]
|
728
|
+
}
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"date": "Fri, 13 Aug 2021 07:36:34 GMT",
|
732
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.42",
|
733
|
+
"version": "9.0.0-alpha.42",
|
734
|
+
"comments": {
|
735
|
+
"prerelease": [
|
736
|
+
{
|
737
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.21",
|
738
|
+
"author": "olfedias@microsoft.com",
|
739
|
+
"commit": "284da7c9d57b33abce253aed5fc19b02898f6e0c",
|
740
|
+
"package": "@fluentui/react-positioning"
|
741
|
+
}
|
742
|
+
]
|
743
|
+
}
|
744
|
+
},
|
745
|
+
{
|
746
|
+
"date": "Tue, 10 Aug 2021 07:33:28 GMT",
|
747
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.41",
|
748
|
+
"version": "9.0.0-alpha.41",
|
749
|
+
"comments": {
|
750
|
+
"prerelease": [
|
751
|
+
{
|
752
|
+
"comment": "cleanup types, do not export PopperOptions",
|
753
|
+
"author": "olfedias@microsoft.com",
|
754
|
+
"commit": "57a2bc1f8a6ec7859bf4a3509696681d39602561",
|
755
|
+
"package": "@fluentui/react-positioning"
|
756
|
+
}
|
757
|
+
]
|
758
|
+
}
|
759
|
+
},
|
760
|
+
{
|
761
|
+
"date": "Fri, 06 Aug 2021 07:35:14 GMT",
|
762
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.40",
|
763
|
+
"version": "9.0.0-alpha.40",
|
764
|
+
"comments": {
|
765
|
+
"prerelease": [
|
766
|
+
{
|
767
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.38",
|
768
|
+
"author": "bsunderhus@microsoft.com",
|
769
|
+
"commit": "9ac8b044a6a524d6ce55f3f801ce0189a8087e85",
|
770
|
+
"package": "@fluentui/react-positioning"
|
771
|
+
}
|
772
|
+
]
|
773
|
+
}
|
774
|
+
},
|
775
|
+
{
|
776
|
+
"date": "Wed, 04 Aug 2021 07:34:12 GMT",
|
777
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.39",
|
778
|
+
"version": "9.0.0-alpha.39",
|
779
|
+
"comments": {
|
780
|
+
"none": [
|
781
|
+
{
|
782
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.37",
|
783
|
+
"author": "czearing@outlook.com",
|
784
|
+
"commit": "109e85b19d8ee37a9c31ddf8e2083471bab64526",
|
785
|
+
"package": "@fluentui/react-positioning"
|
786
|
+
}
|
787
|
+
]
|
788
|
+
}
|
789
|
+
},
|
790
|
+
{
|
791
|
+
"date": "Tue, 03 Aug 2021 07:39:30 GMT",
|
792
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.39",
|
793
|
+
"version": "9.0.0-alpha.39",
|
794
|
+
"comments": {
|
795
|
+
"prerelease": [
|
796
|
+
{
|
797
|
+
"comment": "Fix issues flagged by the exhaustive-deps rule in usePopper",
|
798
|
+
"author": "behowell@microsoft.com",
|
799
|
+
"commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
|
800
|
+
"package": "@fluentui/react-positioning"
|
801
|
+
}
|
802
|
+
],
|
803
|
+
"patch": [
|
804
|
+
{
|
805
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.3.3",
|
806
|
+
"author": "behowell@microsoft.com",
|
807
|
+
"commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
|
808
|
+
"package": "@fluentui/react-positioning"
|
809
|
+
},
|
810
|
+
{
|
811
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
812
|
+
"author": "behowell@microsoft.com",
|
813
|
+
"commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
|
814
|
+
"package": "@fluentui/react-positioning"
|
815
|
+
}
|
816
|
+
]
|
817
|
+
}
|
818
|
+
},
|
819
|
+
{
|
820
|
+
"date": "Mon, 02 Aug 2021 07:36:20 GMT",
|
821
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.38",
|
822
|
+
"version": "9.0.0-alpha.38",
|
823
|
+
"comments": {
|
824
|
+
"prerelease": [
|
825
|
+
{
|
826
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.36",
|
827
|
+
"author": "lingfan.gao@microsoft.com",
|
828
|
+
"commit": "ab0e1bafdd9ace2974b3362cd2300fb32af466fb",
|
829
|
+
"package": "@fluentui/react-positioning"
|
830
|
+
}
|
831
|
+
]
|
832
|
+
}
|
833
|
+
},
|
834
|
+
{
|
835
|
+
"date": "Mon, 26 Jul 2021 07:37:30 GMT",
|
836
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.37",
|
837
|
+
"version": "9.0.0-alpha.37",
|
838
|
+
"comments": {
|
839
|
+
"prerelease": [
|
840
|
+
{
|
841
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.19",
|
842
|
+
"author": "miroslav.stastny@microsoft.com",
|
843
|
+
"commit": "aa570c511fdcef015696f07182af8bb251311406",
|
844
|
+
"package": "@fluentui/react-positioning"
|
845
|
+
}
|
846
|
+
]
|
847
|
+
}
|
848
|
+
},
|
849
|
+
{
|
850
|
+
"date": "Fri, 23 Jul 2021 07:38:19 GMT",
|
851
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.36",
|
852
|
+
"version": "9.0.0-alpha.36",
|
853
|
+
"comments": {
|
854
|
+
"prerelease": [
|
855
|
+
{
|
856
|
+
"comment": "Update Popper to use options.target whenever it is defined (even if null)",
|
857
|
+
"author": "behowell@microsoft.com",
|
858
|
+
"commit": "d38109a7fd40e187aca862046219cf9a7ca66131",
|
859
|
+
"package": "@fluentui/react-positioning"
|
860
|
+
}
|
861
|
+
]
|
862
|
+
}
|
863
|
+
},
|
864
|
+
{
|
865
|
+
"date": "Thu, 22 Jul 2021 07:36:55 GMT",
|
866
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.35",
|
867
|
+
"version": "9.0.0-alpha.35",
|
868
|
+
"comments": {
|
869
|
+
"prerelease": [
|
870
|
+
{
|
871
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.34",
|
872
|
+
"author": "behowell@microsoft.com",
|
873
|
+
"commit": "2e257154d0448b8d4fd64142f93fcc9a225995cc",
|
874
|
+
"package": "@fluentui/react-positioning"
|
875
|
+
}
|
876
|
+
]
|
877
|
+
}
|
878
|
+
},
|
879
|
+
{
|
880
|
+
"date": "Tue, 20 Jul 2021 22:23:17 GMT",
|
881
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.34",
|
882
|
+
"version": "9.0.0-alpha.34",
|
883
|
+
"comments": {
|
884
|
+
"none": [
|
885
|
+
{
|
886
|
+
"comment": "add bundle size fixtures",
|
887
|
+
"author": "olfedias@microsoft.com",
|
888
|
+
"commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
|
889
|
+
"package": "@fluentui/react-positioning"
|
890
|
+
}
|
891
|
+
]
|
892
|
+
}
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"date": "Thu, 15 Jul 2021 07:36:18 GMT",
|
896
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.34",
|
897
|
+
"version": "9.0.0-alpha.34",
|
898
|
+
"comments": {
|
899
|
+
"prerelease": [
|
900
|
+
{
|
901
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.33",
|
902
|
+
"author": "bsunderhus@microsoft.com",
|
903
|
+
"commit": "b60234948eacb8c6fa9d08ab8e98d963f583d475",
|
904
|
+
"package": "@fluentui/react-positioning"
|
905
|
+
}
|
906
|
+
]
|
907
|
+
}
|
908
|
+
},
|
909
|
+
{
|
910
|
+
"date": "Fri, 09 Jul 2021 07:39:31 GMT",
|
911
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.33",
|
912
|
+
"version": "9.0.0-alpha.33",
|
913
|
+
"comments": {
|
914
|
+
"patch": [
|
915
|
+
{
|
916
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.3.2",
|
917
|
+
"author": "martinhochel@microsoft.com",
|
918
|
+
"commit": "18902eb64710aa6253a79781357b8390bb13665c",
|
919
|
+
"package": "@fluentui/react-positioning"
|
920
|
+
},
|
921
|
+
{
|
922
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
923
|
+
"author": "martinhochel@microsoft.com",
|
924
|
+
"commit": "18902eb64710aa6253a79781357b8390bb13665c",
|
925
|
+
"package": "@fluentui/react-positioning"
|
926
|
+
}
|
927
|
+
],
|
928
|
+
"prerelease": [
|
929
|
+
{
|
930
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.32",
|
931
|
+
"author": "martinhochel@microsoft.com",
|
932
|
+
"commit": "18902eb64710aa6253a79781357b8390bb13665c",
|
933
|
+
"package": "@fluentui/react-positioning"
|
934
|
+
}
|
935
|
+
]
|
936
|
+
}
|
937
|
+
},
|
938
|
+
{
|
939
|
+
"date": "Fri, 02 Jul 2021 23:15:55 GMT",
|
940
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.32",
|
941
|
+
"version": "9.0.0-alpha.32",
|
942
|
+
"comments": {
|
943
|
+
"prerelease": [
|
944
|
+
{
|
945
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.31",
|
946
|
+
"author": "bsunderhus@microsoft.com",
|
947
|
+
"commit": "6c37a1cb5c312d4be8b239bfd9f6c9f28e9f0d24",
|
948
|
+
"package": "@fluentui/react-positioning"
|
949
|
+
}
|
950
|
+
]
|
951
|
+
}
|
952
|
+
},
|
953
|
+
{
|
954
|
+
"date": "Fri, 02 Jul 2021 07:37:06 GMT",
|
955
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.31",
|
956
|
+
"version": "9.0.0-alpha.31",
|
957
|
+
"comments": {
|
958
|
+
"prerelease": [
|
959
|
+
{
|
960
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.16",
|
961
|
+
"author": "miroslav.stastny@microsoft.com",
|
962
|
+
"commit": "7222c057ece8a528431a1860223d9d920685f975",
|
963
|
+
"package": "@fluentui/react-positioning"
|
964
|
+
}
|
965
|
+
]
|
966
|
+
}
|
967
|
+
},
|
968
|
+
{
|
969
|
+
"date": "Thu, 01 Jul 2021 07:35:05 GMT",
|
970
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.30",
|
971
|
+
"version": "9.0.0-alpha.30",
|
972
|
+
"comments": {
|
973
|
+
"prerelease": [
|
974
|
+
{
|
975
|
+
"comment": "Fixing bug in start script of converged packages.",
|
976
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
977
|
+
"commit": "c7eff2580a6fe159bbb3c4e77e549925187f3150",
|
978
|
+
"package": "@fluentui/react-positioning"
|
979
|
+
}
|
980
|
+
]
|
981
|
+
}
|
982
|
+
},
|
983
|
+
{
|
984
|
+
"date": "Wed, 23 Jun 2021 07:31:49 GMT",
|
985
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.29",
|
986
|
+
"version": "9.0.0-alpha.29",
|
987
|
+
"comments": {
|
988
|
+
"none": [
|
989
|
+
{
|
990
|
+
"comment": "Update build:local output path",
|
991
|
+
"author": "miroslav.stastny@microsoft.com",
|
992
|
+
"commit": "e4b6b9a9cbc90d5de498a85aeb793678b48f649b",
|
993
|
+
"package": "@fluentui/react-positioning"
|
994
|
+
}
|
995
|
+
]
|
996
|
+
}
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"date": "Mon, 21 Jun 2021 07:34:33 GMT",
|
1000
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.29",
|
1001
|
+
"version": "9.0.0-alpha.29",
|
1002
|
+
"comments": {
|
1003
|
+
"none": [
|
1004
|
+
{
|
1005
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.15",
|
1006
|
+
"author": "miroslav.stastny@microsoft.com",
|
1007
|
+
"commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
|
1008
|
+
"package": "@fluentui/react-positioning"
|
1009
|
+
}
|
1010
|
+
]
|
1011
|
+
}
|
1012
|
+
},
|
1013
|
+
{
|
1014
|
+
"date": "Fri, 18 Jun 2021 07:30:58 GMT",
|
1015
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.29",
|
1016
|
+
"version": "9.0.0-alpha.29",
|
1017
|
+
"comments": {
|
1018
|
+
"none": [
|
1019
|
+
{
|
1020
|
+
"comment": "chore(usePopper): Migrate react-positioning to new DX",
|
1021
|
+
"author": "lingfan.gao@microsoft.com",
|
1022
|
+
"commit": "1817a5e193448ab6f456e3bd9445e537fd64348c",
|
1023
|
+
"package": "@fluentui/react-positioning"
|
1024
|
+
}
|
1025
|
+
]
|
1026
|
+
}
|
1027
|
+
},
|
1028
|
+
{
|
1029
|
+
"date": "Wed, 16 Jun 2021 07:34:24 GMT",
|
1030
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.29",
|
1031
|
+
"version": "9.0.0-alpha.29",
|
1032
|
+
"comments": {
|
1033
|
+
"prerelease": [
|
1034
|
+
{
|
1035
|
+
"comment": "feat(usePopperMouseTarget): Reusable hook to manage the state of a virtual popper element",
|
1036
|
+
"author": "lingfan.gao@microsoft.com",
|
1037
|
+
"commit": "823b75aaf95a5324a8ef0e504f65706c5769fb85",
|
1038
|
+
"package": "@fluentui/react-positioning"
|
1039
|
+
}
|
1040
|
+
]
|
1041
|
+
}
|
1042
|
+
},
|
1043
|
+
{
|
1044
|
+
"date": "Tue, 15 Jun 2021 07:40:20 GMT",
|
1045
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.28",
|
1046
|
+
"version": "9.0.0-alpha.28",
|
1047
|
+
"comments": {
|
1048
|
+
"prerelease": [
|
1049
|
+
{
|
1050
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.29",
|
1051
|
+
"author": "behowell@microsoft.com",
|
1052
|
+
"commit": "10b1e17acaa01675866f7a623be1a61b1478d7d7",
|
1053
|
+
"package": "@fluentui/react-positioning"
|
1054
|
+
}
|
1055
|
+
]
|
1056
|
+
}
|
1057
|
+
},
|
1058
|
+
{
|
1059
|
+
"date": "Mon, 07 Jun 2021 07:38:15 GMT",
|
1060
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.27",
|
1061
|
+
"version": "9.0.0-alpha.27",
|
1062
|
+
"comments": {
|
1063
|
+
"patch": [
|
1064
|
+
{
|
1065
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.3.1",
|
1066
|
+
"author": "martinhochel@microsoft.com",
|
1067
|
+
"commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
|
1068
|
+
"package": "@fluentui/react-positioning"
|
1069
|
+
},
|
1070
|
+
{
|
1071
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
1072
|
+
"author": "martinhochel@microsoft.com",
|
1073
|
+
"commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
|
1074
|
+
"package": "@fluentui/react-positioning"
|
1075
|
+
}
|
1076
|
+
],
|
1077
|
+
"prerelease": [
|
1078
|
+
{
|
1079
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.28",
|
1080
|
+
"author": "martinhochel@microsoft.com",
|
1081
|
+
"commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
|
1082
|
+
"package": "@fluentui/react-positioning"
|
1083
|
+
}
|
1084
|
+
]
|
1085
|
+
}
|
1086
|
+
},
|
1087
|
+
{
|
1088
|
+
"date": "Fri, 04 Jun 2021 07:37:23 GMT",
|
1089
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.26",
|
1090
|
+
"version": "9.0.0-alpha.26",
|
1091
|
+
"comments": {
|
1092
|
+
"prerelease": [
|
1093
|
+
{
|
1094
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.14",
|
1095
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
1096
|
+
"commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb",
|
1097
|
+
"package": "@fluentui/react-positioning"
|
1098
|
+
}
|
1099
|
+
]
|
1100
|
+
}
|
1101
|
+
},
|
1102
|
+
{
|
1103
|
+
"date": "Thu, 03 Jun 2021 07:36:03 GMT",
|
1104
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.25",
|
1105
|
+
"version": "9.0.0-alpha.25",
|
1106
|
+
"comments": {
|
1107
|
+
"prerelease": [
|
1108
|
+
{
|
1109
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.13",
|
1110
|
+
"author": "miroslav.stastny@microsoft.com",
|
1111
|
+
"commit": "32aed1a91b19ac1beb161a7a2ab43e78b51f53d1",
|
1112
|
+
"package": "@fluentui/react-positioning"
|
1113
|
+
}
|
1114
|
+
],
|
1115
|
+
"none": [
|
1116
|
+
{
|
1117
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.26",
|
1118
|
+
"author": "martinhochel@microsoft.com",
|
1119
|
+
"commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
|
1120
|
+
"package": "@fluentui/react-positioning"
|
1121
|
+
}
|
1122
|
+
]
|
1123
|
+
}
|
1124
|
+
},
|
1125
|
+
{
|
1126
|
+
"date": "Tue, 01 Jun 2021 07:31:58 GMT",
|
1127
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.24",
|
1128
|
+
"version": "9.0.0-alpha.24",
|
1129
|
+
"comments": {
|
1130
|
+
"none": [
|
1131
|
+
{
|
1132
|
+
"comment": "Revert \"chore: enable Jest aliases for converged packages (#18337)\"",
|
1133
|
+
"author": "olfedias@microsoft.com",
|
1134
|
+
"commit": "b5f2a02b37c8ea394a65f7a22bff057de93370dd",
|
1135
|
+
"package": "@fluentui/react-positioning"
|
1136
|
+
}
|
1137
|
+
]
|
1138
|
+
}
|
1139
|
+
},
|
1140
|
+
{
|
1141
|
+
"date": "Fri, 28 May 2021 07:33:57 GMT",
|
1142
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.24",
|
1143
|
+
"version": "9.0.0-alpha.24",
|
1144
|
+
"comments": {
|
1145
|
+
"none": [
|
1146
|
+
{
|
1147
|
+
"comment": "enable Jest aliases",
|
1148
|
+
"author": "olfedias@microsoft.com",
|
1149
|
+
"commit": "5379823a6f53bd36a936806153d228b9a0ef0543",
|
1150
|
+
"package": "@fluentui/react-positioning"
|
1151
|
+
},
|
1152
|
+
{
|
1153
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.12",
|
1154
|
+
"author": "olfedias@microsoft.com",
|
1155
|
+
"commit": "5379823a6f53bd36a936806153d228b9a0ef0543",
|
1156
|
+
"package": "@fluentui/react-positioning"
|
1157
|
+
},
|
1158
|
+
{
|
1159
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.26",
|
1160
|
+
"author": "lingfan.gao@microsoft.com",
|
1161
|
+
"commit": "53145c8f329f92f25d1ce2cd132e6dc4ee4ce43a",
|
1162
|
+
"package": "@fluentui/react-positioning"
|
1163
|
+
}
|
1164
|
+
],
|
1165
|
+
"prerelease": [
|
1166
|
+
{
|
1167
|
+
"comment": "createTargetFromClick utility to anchor popper to mouse position",
|
1168
|
+
"author": "lingfan.gao@microsoft.com",
|
1169
|
+
"commit": "53145c8f329f92f25d1ce2cd132e6dc4ee4ce43a",
|
1170
|
+
"package": "@fluentui/react-positioning"
|
1171
|
+
}
|
1172
|
+
]
|
1173
|
+
}
|
1174
|
+
},
|
1175
|
+
{
|
1176
|
+
"date": "Wed, 26 May 2021 07:35:43 GMT",
|
1177
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.23",
|
1178
|
+
"version": "9.0.0-alpha.23",
|
1179
|
+
"comments": {
|
1180
|
+
"prerelease": [
|
1181
|
+
{
|
1182
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.25",
|
1183
|
+
"author": "lingfan.gao@microsoft.com",
|
1184
|
+
"commit": "6ffca36c9537a1852d8ec26478b8b7aeb059e17c",
|
1185
|
+
"package": "@fluentui/react-positioning"
|
1186
|
+
}
|
1187
|
+
]
|
1188
|
+
}
|
1189
|
+
},
|
1190
|
+
{
|
1191
|
+
"date": "Fri, 21 May 2021 07:34:54 GMT",
|
1192
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.22",
|
1193
|
+
"version": "9.0.0-alpha.22",
|
1194
|
+
"comments": {
|
1195
|
+
"prerelease": [
|
1196
|
+
{
|
1197
|
+
"comment": "Add `coverTarget` modifier and option",
|
1198
|
+
"author": "lingfan.gao@microsoft.com",
|
1199
|
+
"commit": "557f2e8a08fd762e5164e2a8c26a378afa8f6594",
|
1200
|
+
"package": "@fluentui/react-positioning"
|
1201
|
+
}
|
1202
|
+
],
|
1203
|
+
"none": [
|
1204
|
+
{
|
1205
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.12",
|
1206
|
+
"author": "miroslav.stastny@microsoft.com",
|
1207
|
+
"commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279",
|
1208
|
+
"package": "@fluentui/react-positioning"
|
1209
|
+
}
|
1210
|
+
]
|
1211
|
+
}
|
1212
|
+
},
|
1213
|
+
{
|
1214
|
+
"date": "Thu, 20 May 2021 07:41:54 GMT",
|
1215
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.21",
|
1216
|
+
"version": "9.0.0-alpha.21",
|
1217
|
+
"comments": {
|
1218
|
+
"none": [
|
1219
|
+
{
|
1220
|
+
"comment": "Remove unused eslint-disable",
|
1221
|
+
"author": "elcraig@microsoft.com",
|
1222
|
+
"commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
|
1223
|
+
"package": "@fluentui/react-positioning"
|
1224
|
+
}
|
1225
|
+
],
|
1226
|
+
"patch": [
|
1227
|
+
{
|
1228
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.3.0",
|
1229
|
+
"author": "elcraig@microsoft.com",
|
1230
|
+
"commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
|
1231
|
+
"package": "@fluentui/react-positioning"
|
1232
|
+
},
|
1233
|
+
{
|
1234
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
1235
|
+
"author": "elcraig@microsoft.com",
|
1236
|
+
"commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
|
1237
|
+
"package": "@fluentui/react-positioning"
|
1238
|
+
}
|
1239
|
+
],
|
1240
|
+
"prerelease": [
|
1241
|
+
{
|
1242
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.23",
|
1243
|
+
"author": "elcraig@microsoft.com",
|
1244
|
+
"commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
|
1245
|
+
"package": "@fluentui/react-positioning"
|
1246
|
+
}
|
1247
|
+
]
|
1248
|
+
}
|
1249
|
+
},
|
1250
|
+
{
|
1251
|
+
"date": "Wed, 19 May 2021 07:34:20 GMT",
|
1252
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.20",
|
1253
|
+
"version": "9.0.0-alpha.20",
|
1254
|
+
"comments": {
|
1255
|
+
"prerelease": [
|
1256
|
+
{
|
1257
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.11",
|
1258
|
+
"author": "olfedias@microsoft.com",
|
1259
|
+
"commit": "975140887c6ad2391f8db63003ed440239ec9c25",
|
1260
|
+
"package": "@fluentui/react-positioning"
|
1261
|
+
}
|
1262
|
+
]
|
1263
|
+
}
|
1264
|
+
},
|
1265
|
+
{
|
1266
|
+
"date": "Thu, 13 May 2021 07:36:55 GMT",
|
1267
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.19",
|
1268
|
+
"version": "9.0.0-alpha.19",
|
1269
|
+
"comments": {
|
1270
|
+
"prerelease": [
|
1271
|
+
{
|
1272
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.10",
|
1273
|
+
"author": "olfedias@microsoft.com",
|
1274
|
+
"commit": "d1d73e5ea7be50ad93077fad7d3b05af4db1cc94",
|
1275
|
+
"package": "@fluentui/react-positioning"
|
1276
|
+
}
|
1277
|
+
]
|
1278
|
+
}
|
1279
|
+
},
|
1280
|
+
{
|
1281
|
+
"date": "Wed, 12 May 2021 07:36:20 GMT",
|
1282
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.18",
|
1283
|
+
"version": "9.0.0-alpha.18",
|
1284
|
+
"comments": {
|
1285
|
+
"prerelease": [
|
1286
|
+
{
|
1287
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.9",
|
1288
|
+
"author": "behowell@microsoft.com",
|
1289
|
+
"commit": "e0b7d62f54c1b6e7ff8847ec60307ebac692ff7e",
|
1290
|
+
"package": "@fluentui/react-positioning"
|
1291
|
+
}
|
1292
|
+
]
|
1293
|
+
}
|
1294
|
+
},
|
1295
|
+
{
|
1296
|
+
"date": "Tue, 04 May 2021 07:36:35 GMT",
|
1297
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.17",
|
1298
|
+
"version": "9.0.0-alpha.17",
|
1299
|
+
"comments": {
|
1300
|
+
"prerelease": [
|
1301
|
+
{
|
1302
|
+
"comment": "Support popper target override",
|
1303
|
+
"author": "lingfan.gao@microsoft.com",
|
1304
|
+
"commit": "2aa0cde53c7bfda08651bc9e5bbe9a31d3a40b4f",
|
1305
|
+
"package": "@fluentui/react-positioning"
|
1306
|
+
}
|
1307
|
+
]
|
1308
|
+
}
|
1309
|
+
},
|
1310
|
+
{
|
1311
|
+
"date": "Mon, 03 May 2021 07:45:19 GMT",
|
1312
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.16",
|
1313
|
+
"version": "9.0.0-alpha.16",
|
1314
|
+
"comments": {
|
1315
|
+
"prerelease": [
|
1316
|
+
{
|
1317
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.21",
|
1318
|
+
"author": "lingfan.gao@microsoft.com",
|
1319
|
+
"commit": "5e6aa4df0c03051e59d686d24b35f01c721a3b4e",
|
1320
|
+
"package": "@fluentui/react-positioning"
|
1321
|
+
}
|
1322
|
+
]
|
1323
|
+
}
|
1324
|
+
},
|
1325
|
+
{
|
1326
|
+
"date": "Fri, 30 Apr 2021 07:42:23 GMT",
|
1327
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.15",
|
1328
|
+
"version": "9.0.0-alpha.15",
|
1329
|
+
"comments": {
|
1330
|
+
"prerelease": [
|
1331
|
+
{
|
1332
|
+
"comment": "AutoSize modifier - add options to apply max sizes always",
|
1333
|
+
"author": "yuanboxue@microsoft.com",
|
1334
|
+
"commit": "8c3a5aa1d2c24b7bb08d688180abbd80979e99e7",
|
1335
|
+
"package": "@fluentui/react-positioning"
|
1336
|
+
},
|
1337
|
+
{
|
1338
|
+
"comment": "Upgrade to ts 4.0",
|
1339
|
+
"author": "joschect@microsoft.com",
|
1340
|
+
"commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
|
1341
|
+
"package": "@fluentui/react-positioning"
|
1342
|
+
}
|
1343
|
+
],
|
1344
|
+
"patch": [
|
1345
|
+
{
|
1346
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.2.0",
|
1347
|
+
"author": "joschect@microsoft.com",
|
1348
|
+
"commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
|
1349
|
+
"package": "@fluentui/react-positioning"
|
1350
|
+
},
|
1351
|
+
{
|
1352
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
1353
|
+
"author": "joschect@microsoft.com",
|
1354
|
+
"commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
|
1355
|
+
"package": "@fluentui/react-positioning"
|
1356
|
+
}
|
1357
|
+
]
|
1358
|
+
}
|
1359
|
+
},
|
1360
|
+
{
|
1361
|
+
"date": "Fri, 23 Apr 2021 07:37:10 GMT",
|
1362
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.14",
|
1363
|
+
"version": "9.0.0-alpha.14",
|
1364
|
+
"comments": {
|
1365
|
+
"patch": [
|
1366
|
+
{
|
1367
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.1.1",
|
1368
|
+
"author": "olfedias@microsoft.com",
|
1369
|
+
"commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
|
1370
|
+
"package": "@fluentui/react-positioning"
|
1371
|
+
},
|
1372
|
+
{
|
1373
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
1374
|
+
"author": "olfedias@microsoft.com",
|
1375
|
+
"commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
|
1376
|
+
"package": "@fluentui/react-positioning"
|
1377
|
+
}
|
1378
|
+
],
|
1379
|
+
"prerelease": [
|
1380
|
+
{
|
1381
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.19",
|
1382
|
+
"author": "olfedias@microsoft.com",
|
1383
|
+
"commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
|
1384
|
+
"package": "@fluentui/react-positioning"
|
1385
|
+
}
|
1386
|
+
]
|
1387
|
+
}
|
1388
|
+
},
|
1389
|
+
{
|
1390
|
+
"date": "Thu, 22 Apr 2021 07:33:28 GMT",
|
1391
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.13",
|
1392
|
+
"version": "9.0.0-alpha.13",
|
1393
|
+
"comments": {
|
1394
|
+
"prerelease": [
|
1395
|
+
{
|
1396
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.18",
|
1397
|
+
"author": "olfedias@microsoft.com",
|
1398
|
+
"commit": "7feded422987e9c82f3250f419ab62118a52f9d4",
|
1399
|
+
"package": "@fluentui/react-positioning"
|
1400
|
+
}
|
1401
|
+
]
|
1402
|
+
}
|
1403
|
+
},
|
1404
|
+
{
|
1405
|
+
"date": "Wed, 21 Apr 2021 07:31:50 GMT",
|
1406
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.12",
|
1407
|
+
"version": "9.0.0-alpha.12",
|
1408
|
+
"comments": {
|
1409
|
+
"prerelease": [
|
1410
|
+
{
|
1411
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.17",
|
1412
|
+
"author": "miroslav.stastny@microsoft.com",
|
1413
|
+
"commit": "64da065944467537d8f23a97ef4c19c3d60a529b",
|
1414
|
+
"package": "@fluentui/react-positioning"
|
1415
|
+
}
|
1416
|
+
]
|
1417
|
+
}
|
1418
|
+
},
|
1419
|
+
{
|
1420
|
+
"date": "Tue, 20 Apr 2021 07:31:35 GMT",
|
1421
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.11",
|
1422
|
+
"version": "9.0.0-alpha.11",
|
1423
|
+
"comments": {
|
1424
|
+
"prerelease": [
|
1425
|
+
{
|
1426
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.6",
|
1427
|
+
"author": "lingfan.gao@microsoft.com",
|
1428
|
+
"commit": "01e2e2ce7b042308c503e642a1bb94ff371b7dd1",
|
1429
|
+
"package": "@fluentui/react-positioning"
|
1430
|
+
}
|
1431
|
+
]
|
1432
|
+
}
|
1433
|
+
},
|
1434
|
+
{
|
1435
|
+
"date": "Mon, 19 Apr 2021 07:33:33 GMT",
|
1436
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.10",
|
1437
|
+
"version": "9.0.0-alpha.10",
|
1438
|
+
"comments": {
|
1439
|
+
"none": [
|
1440
|
+
{
|
1441
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.5",
|
1442
|
+
"author": "elcraig@microsoft.com",
|
1443
|
+
"commit": "fdc32557d49e5d70ea7e4af8957102d415b44547",
|
1444
|
+
"package": "@fluentui/react-positioning"
|
1445
|
+
}
|
1446
|
+
]
|
1447
|
+
}
|
1448
|
+
},
|
1449
|
+
{
|
1450
|
+
"date": "Fri, 16 Apr 2021 18:08:21 GMT",
|
1451
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.10",
|
1452
|
+
"version": "9.0.0-alpha.10",
|
1453
|
+
"comments": {
|
1454
|
+
"prerelease": [
|
1455
|
+
{
|
1456
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-alpha.5",
|
1457
|
+
"author": "lingfan.gao@microsoft.com",
|
1458
|
+
"commit": "202f547fef3255f5c59ff4ad912c67b4978ef457",
|
1459
|
+
"package": "@fluentui/react-positioning"
|
1460
|
+
}
|
1461
|
+
]
|
1462
|
+
}
|
1463
|
+
},
|
1464
|
+
{
|
1465
|
+
"date": "Fri, 16 Apr 2021 07:32:08 GMT",
|
1466
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.9",
|
1467
|
+
"version": "9.0.0-alpha.9",
|
1468
|
+
"comments": {
|
1469
|
+
"prerelease": [
|
1470
|
+
{
|
1471
|
+
"comment": "Add support for arrowPadding",
|
1472
|
+
"author": "behowell@microsoft.com",
|
1473
|
+
"commit": "cd0cdb18546e8f62d07a5807f77ccd6cc16c23d5",
|
1474
|
+
"package": "@fluentui/react-positioning"
|
1475
|
+
}
|
1476
|
+
]
|
1477
|
+
}
|
1478
|
+
},
|
1479
|
+
{
|
1480
|
+
"date": "Wed, 14 Apr 2021 07:34:12 GMT",
|
1481
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.8",
|
1482
|
+
"version": "9.0.0-alpha.8",
|
1483
|
+
"comments": {
|
1484
|
+
"prerelease": [
|
1485
|
+
{
|
1486
|
+
"comment": "Bump @fluentui/react-provider to v9.0.0-alpha.20",
|
1487
|
+
"author": "bsunderhus@microsoft.com",
|
1488
|
+
"commit": "1b2e9185653032fed3dce7d3a919f8d6e95550c7",
|
1489
|
+
"package": "@fluentui/react-positioning"
|
1490
|
+
}
|
1491
|
+
]
|
1492
|
+
}
|
1493
|
+
},
|
1494
|
+
{
|
1495
|
+
"date": "Thu, 08 Apr 2021 07:33:06 GMT",
|
1496
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.7",
|
1497
|
+
"version": "9.0.0-alpha.7",
|
1498
|
+
"comments": {
|
1499
|
+
"prerelease": [
|
1500
|
+
{
|
1501
|
+
"comment": "Bump @fluentui/react-provider to v9.0.0-alpha.19",
|
1502
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
1503
|
+
"commit": "25e841e469f1a7b33278f8a5dccd2f7865b3a557",
|
1504
|
+
"package": "@fluentui/react-positioning"
|
1505
|
+
}
|
1506
|
+
]
|
1507
|
+
}
|
1508
|
+
},
|
1509
|
+
{
|
1510
|
+
"date": "Thu, 01 Apr 2021 20:13:37 GMT",
|
1511
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.6",
|
1512
|
+
"version": "9.0.0-alpha.6",
|
1513
|
+
"comments": {
|
1514
|
+
"prerelease": [
|
1515
|
+
{
|
1516
|
+
"comment": "Bump @fluentui/react-provider to v9.0.0-alpha.18",
|
1517
|
+
"author": "bsunderhus@microsoft.com",
|
1518
|
+
"commit": "dec60bc3ea87901ff8c2c52989301ae8f4229721",
|
1519
|
+
"package": "@fluentui/react-positioning"
|
1520
|
+
}
|
1521
|
+
]
|
1522
|
+
}
|
1523
|
+
},
|
1524
|
+
{
|
1525
|
+
"date": "Wed, 31 Mar 2021 00:53:43 GMT",
|
1526
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.5",
|
1527
|
+
"version": "9.0.0-alpha.5",
|
1528
|
+
"comments": {
|
1529
|
+
"patch": [
|
1530
|
+
{
|
1531
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.1.0",
|
1532
|
+
"author": "elcraig@microsoft.com",
|
1533
|
+
"commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
|
1534
|
+
"package": "@fluentui/react-positioning"
|
1535
|
+
},
|
1536
|
+
{
|
1537
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
1538
|
+
"author": "elcraig@microsoft.com",
|
1539
|
+
"commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
|
1540
|
+
"package": "@fluentui/react-positioning"
|
1541
|
+
}
|
1542
|
+
],
|
1543
|
+
"prerelease": [
|
1544
|
+
{
|
1545
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.14",
|
1546
|
+
"author": "elcraig@microsoft.com",
|
1547
|
+
"commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
|
1548
|
+
"package": "@fluentui/react-positioning"
|
1549
|
+
}
|
1550
|
+
]
|
1551
|
+
}
|
1552
|
+
},
|
1553
|
+
{
|
1554
|
+
"date": "Tue, 30 Mar 2021 07:34:45 GMT",
|
1555
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.4",
|
1556
|
+
"version": "9.0.0-alpha.4",
|
1557
|
+
"comments": {
|
1558
|
+
"prerelease": [
|
1559
|
+
{
|
1560
|
+
"comment": "chore: restore \"sideEffects\" to enable treeshaking",
|
1561
|
+
"author": "olfedias@microsoft.com",
|
1562
|
+
"commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3",
|
1563
|
+
"package": "@fluentui/react-positioning"
|
1564
|
+
}
|
1565
|
+
]
|
1566
|
+
}
|
1567
|
+
},
|
1568
|
+
{
|
1569
|
+
"date": "Fri, 26 Mar 2021 07:32:34 GMT",
|
1570
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.3",
|
1571
|
+
"version": "9.0.0-alpha.3",
|
1572
|
+
"comments": {
|
1573
|
+
"prerelease": [
|
1574
|
+
{
|
1575
|
+
"comment": "Bump @fluentui/react-provider to v9.0.0-alpha.15",
|
1576
|
+
"author": "lingfan.gao@microsoft.com",
|
1577
|
+
"commit": "8b5295e082e07dbe428bff7b9548c80c338f07c8",
|
1578
|
+
"package": "@fluentui/react-positioning"
|
1579
|
+
}
|
1580
|
+
]
|
1581
|
+
}
|
1582
|
+
},
|
1583
|
+
{
|
1584
|
+
"date": "Thu, 25 Mar 2021 07:33:24 GMT",
|
1585
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.2",
|
1586
|
+
"version": "9.0.0-alpha.2",
|
1587
|
+
"comments": {
|
1588
|
+
"prerelease": [
|
1589
|
+
{
|
1590
|
+
"comment": "Bump @fluentui/react-provider to v9.0.0-alpha.14",
|
1591
|
+
"author": "lingfan.gao@microsoft.com",
|
1592
|
+
"commit": "31b7b0d625e40f818d33c5df0890b584caaf0e6c",
|
1593
|
+
"package": "@fluentui/react-positioning"
|
1594
|
+
}
|
1595
|
+
]
|
1596
|
+
}
|
1597
|
+
},
|
1598
|
+
{
|
1599
|
+
"date": "Tue, 23 Mar 2021 07:31:43 GMT",
|
1600
|
+
"tag": "@fluentui/react-positioning_v9.0.0-alpha.1",
|
1601
|
+
"version": "9.0.0-alpha.1",
|
1602
|
+
"comments": {
|
1603
|
+
"prerelease": [
|
1604
|
+
{
|
1605
|
+
"comment": "Initial package",
|
1606
|
+
"author": "lingfan.gao@microsoft.com",
|
1607
|
+
"commit": "fc0d87258337229e59ec1c1fec87dc91193858f1",
|
1608
|
+
"package": "@fluentui/react-positioning"
|
1609
|
+
}
|
1610
|
+
]
|
1611
|
+
}
|
1612
|
+
}
|
1613
|
+
]
|
1614
|
+
}
|