@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.md
ADDED
@@ -0,0 +1,719 @@
|
|
1
|
+
# Change Log - @fluentui/react-positioning
|
2
|
+
|
3
|
+
This log was last generated on Wed, 02 Mar 2022 04:14:56 GMT and should not be manually modified.
|
4
|
+
|
5
|
+
<!-- Start content -->
|
6
|
+
|
7
|
+
## [0.0.0-nightly-20220302-0405.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v0.0.0-nightly-20220302-0405.1)
|
8
|
+
|
9
|
+
Wed, 02 Mar 2022 04:14:56 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-rc.4..@fluentui/react-positioning_v0.0.0-nightly-20220302-0405.1)
|
11
|
+
|
12
|
+
### Changes
|
13
|
+
|
14
|
+
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by email not defined)
|
15
|
+
- fix: `popperRef.setTarget` should accept virtual element type ([PR #21875](https://github.com/microsoft/fluentui/pull/21875) by lingfangao@hotmail.com)
|
16
|
+
- Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
|
17
|
+
- Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
|
18
|
+
- Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
|
19
|
+
|
20
|
+
## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-rc.4)
|
21
|
+
|
22
|
+
Tue, 01 Mar 2022 02:17:38 GMT
|
23
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-rc.3..@fluentui/react-positioning_v9.0.0-rc.4)
|
24
|
+
|
25
|
+
### Changes
|
26
|
+
|
27
|
+
- feat: add isIntersectingModifier to usePopper ([PR #21855](https://github.com/microsoft/fluentui/pull/21855) by olfedias@microsoft.com)
|
28
|
+
- fix: Add react-theme as dependency ([PR #21825](https://github.com/microsoft/fluentui/pull/21825) by olfedias@microsoft.com)
|
29
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
|
30
|
+
|
31
|
+
## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-rc.3)
|
32
|
+
|
33
|
+
Fri, 18 Feb 2022 13:35:33 GMT
|
34
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-rc.1..@fluentui/react-positioning_v9.0.0-rc.3)
|
35
|
+
|
36
|
+
### Changes
|
37
|
+
|
38
|
+
- fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
|
39
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
40
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
41
|
+
|
42
|
+
## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-rc.1)
|
43
|
+
|
44
|
+
Thu, 10 Feb 2022 08:50:40 GMT
|
45
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-beta.4..@fluentui/react-positioning_v9.0.0-rc.1)
|
46
|
+
|
47
|
+
### Changes
|
48
|
+
|
49
|
+
- use new types from makeStyles core ([PR #20786](https://github.com/microsoft/fluentui/pull/20786) by olfedias@microsoft.com)
|
50
|
+
- Replacing use of functions in makeStyles with direct use of tokens. ([PR #21051](https://github.com/microsoft/fluentui/pull/21051) by Humberto.Morimoto@microsoft.com)
|
51
|
+
- Fix tooltip arrow's high contrast border in RTL ([PR #21354](https://github.com/microsoft/fluentui/pull/21354) by behowell@microsoft.com)
|
52
|
+
- use Griffel packages ([PR #21421](https://github.com/microsoft/fluentui/pull/21421) by olfedias@microsoft.com)
|
53
|
+
- feat: Imperative `setTarget` for `usePopper` and `positioning` ([PR #21632](https://github.com/microsoft/fluentui/pull/21632) by lingfangao@hotmail.com)
|
54
|
+
- Adds @noflip annotation to data-popper-placement styles ([PR #20845](https://github.com/microsoft/fluentui/pull/20845) by bsunderhus@microsoft.com)
|
55
|
+
- update styles to not use CSS shorthands ([PR #20842](https://github.com/microsoft/fluentui/pull/20842) by olfedias@microsoft.com)
|
56
|
+
- Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
|
57
|
+
- Fix popover arrow styling ([PR #21086](https://github.com/microsoft/fluentui/pull/21086) by behowell@microsoft.com)
|
58
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
|
59
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
|
60
|
+
|
61
|
+
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-beta.4)
|
62
|
+
|
63
|
+
Thu, 25 Nov 2021 08:34:15 GMT
|
64
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-beta.3..@fluentui/react-positioning_v9.0.0-beta.4)
|
65
|
+
|
66
|
+
### Changes
|
67
|
+
|
68
|
+
- Add utility function to create styles for an arrow element ([PR #20541](https://github.com/microsoft/fluentui/pull/20541) by lingfangao@hotmail.com)
|
69
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
70
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
71
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
72
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
73
|
+
|
74
|
+
## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-beta.3)
|
75
|
+
|
76
|
+
Fri, 12 Nov 2021 13:25:30 GMT
|
77
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-beta.2..@fluentui/react-positioning_v9.0.0-beta.3)
|
78
|
+
|
79
|
+
### Changes
|
80
|
+
|
81
|
+
- Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
|
82
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
83
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
84
|
+
|
85
|
+
## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-beta.2)
|
86
|
+
|
87
|
+
Wed, 27 Oct 2021 12:14:21 GMT
|
88
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-beta.1..@fluentui/react-positioning_v9.0.0-beta.2)
|
89
|
+
|
90
|
+
### Changes
|
91
|
+
|
92
|
+
- added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
|
93
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
94
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
95
|
+
|
96
|
+
## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-beta.1)
|
97
|
+
|
98
|
+
Wed, 06 Oct 2021 10:37:22 GMT
|
99
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.65..@fluentui/react-positioning_v9.0.0-beta.1)
|
100
|
+
|
101
|
+
### Changes
|
102
|
+
|
103
|
+
- Bump all v9 components to beta prerelease tag ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by lingfangao@hotmail.com)
|
104
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
|
105
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
|
106
|
+
|
107
|
+
## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.65)
|
108
|
+
|
109
|
+
Tue, 05 Oct 2021 09:28:07 GMT
|
110
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.64..@fluentui/react-positioning_v9.0.0-alpha.65)
|
111
|
+
|
112
|
+
### Changes
|
113
|
+
|
114
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
|
115
|
+
|
116
|
+
## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.64)
|
117
|
+
|
118
|
+
Fri, 01 Oct 2021 14:13:08 GMT
|
119
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.62..@fluentui/react-positioning_v9.0.0-alpha.64)
|
120
|
+
|
121
|
+
### Changes
|
122
|
+
|
123
|
+
- Bump v9 prerelease versions to rerelease ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by lingfangao@hotmail.com)
|
124
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.28 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
|
125
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.55 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
|
126
|
+
|
127
|
+
## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.62)
|
128
|
+
|
129
|
+
Wed, 29 Sep 2021 08:06:11 GMT
|
130
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.61..@fluentui/react-positioning_v9.0.0-alpha.62)
|
131
|
+
|
132
|
+
### Changes
|
133
|
+
|
134
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.26 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
|
135
|
+
|
136
|
+
## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.61)
|
137
|
+
|
138
|
+
Mon, 27 Sep 2021 08:06:00 GMT
|
139
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.60..@fluentui/react-positioning_v9.0.0-alpha.61)
|
140
|
+
|
141
|
+
### Changes
|
142
|
+
|
143
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
|
144
|
+
|
145
|
+
## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.60)
|
146
|
+
|
147
|
+
Fri, 24 Sep 2021 09:17:17 GMT
|
148
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.59..@fluentui/react-positioning_v9.0.0-alpha.60)
|
149
|
+
|
150
|
+
### Changes
|
151
|
+
|
152
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.52 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
153
|
+
|
154
|
+
## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.59)
|
155
|
+
|
156
|
+
Thu, 23 Sep 2021 08:21:34 GMT
|
157
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.58..@fluentui/react-positioning_v9.0.0-alpha.59)
|
158
|
+
|
159
|
+
### Changes
|
160
|
+
|
161
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.51 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
162
|
+
|
163
|
+
## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.58)
|
164
|
+
|
165
|
+
Wed, 22 Sep 2021 10:10:07 GMT
|
166
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.57..@fluentui/react-positioning_v9.0.0-alpha.58)
|
167
|
+
|
168
|
+
### Changes
|
169
|
+
|
170
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.50 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
171
|
+
|
172
|
+
## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.57)
|
173
|
+
|
174
|
+
Tue, 21 Sep 2021 07:42:34 GMT
|
175
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.56..@fluentui/react-positioning_v9.0.0-alpha.57)
|
176
|
+
|
177
|
+
### Changes
|
178
|
+
|
179
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.25 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
180
|
+
|
181
|
+
## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.56)
|
182
|
+
|
183
|
+
Mon, 20 Sep 2021 07:36:26 GMT
|
184
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.55..@fluentui/react-positioning_v9.0.0-alpha.56)
|
185
|
+
|
186
|
+
### Changes
|
187
|
+
|
188
|
+
- Bump @fluentui/react-positioning to v9.0.0-alpha.56 ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by lingfangao@hotmail.com)
|
189
|
+
|
190
|
+
## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.55)
|
191
|
+
|
192
|
+
Fri, 17 Sep 2021 07:35:26 GMT
|
193
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.54..@fluentui/react-positioning_v9.0.0-alpha.55)
|
194
|
+
|
195
|
+
### Changes
|
196
|
+
|
197
|
+
- Bump @fluentui/react-positioning to v9.0.0-alpha.55 ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
|
198
|
+
|
199
|
+
## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.54)
|
200
|
+
|
201
|
+
Thu, 16 Sep 2021 07:38:39 GMT
|
202
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.53..@fluentui/react-positioning_v9.0.0-alpha.54)
|
203
|
+
|
204
|
+
### Changes
|
205
|
+
|
206
|
+
- Bump @fluentui/react-positioning to v9.0.0-alpha.54 ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
|
207
|
+
|
208
|
+
## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.53)
|
209
|
+
|
210
|
+
Tue, 14 Sep 2021 20:09:02 GMT
|
211
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.52..@fluentui/react-positioning_v9.0.0-alpha.53)
|
212
|
+
|
213
|
+
### Changes
|
214
|
+
|
215
|
+
- Bump @fluentui/react-positioning to v9.0.0-alpha.53 ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by bsunderhus@microsoft.com)
|
216
|
+
|
217
|
+
## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.52)
|
218
|
+
|
219
|
+
Fri, 10 Sep 2021 16:31:53 GMT
|
220
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.51..@fluentui/react-positioning_v9.0.0-alpha.52)
|
221
|
+
|
222
|
+
### Changes
|
223
|
+
|
224
|
+
- chore(v9): Move all internal v9 dependencies from caret to fixed version ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
|
225
|
+
- Bump @fluentui/react-positioning to v9.0.0-alpha.52 ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
|
226
|
+
|
227
|
+
## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.51)
|
228
|
+
|
229
|
+
Fri, 10 Sep 2021 07:39:51 GMT
|
230
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.50..@fluentui/react-positioning_v9.0.0-alpha.51)
|
231
|
+
|
232
|
+
### Changes
|
233
|
+
|
234
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.45 ([PR #19642](https://github.com/microsoft/fluentui/pull/19642) by behowell@microsoft.com)
|
235
|
+
|
236
|
+
## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.50)
|
237
|
+
|
238
|
+
Wed, 08 Sep 2021 07:34:11 GMT
|
239
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.49..@fluentui/react-positioning_v9.0.0-alpha.50)
|
240
|
+
|
241
|
+
### Changes
|
242
|
+
|
243
|
+
- chore(usePopper): Document that `align` does not work without `position` ([PR #19659](https://github.com/microsoft/fluentui/pull/19659) by lingfangao@hotmail.com)
|
244
|
+
|
245
|
+
## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.49)
|
246
|
+
|
247
|
+
Mon, 06 Sep 2021 07:34:53 GMT
|
248
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.48..@fluentui/react-positioning_v9.0.0-alpha.49)
|
249
|
+
|
250
|
+
### Changes
|
251
|
+
|
252
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.44 ([PR #19640](https://github.com/microsoft/fluentui/pull/19640) by lingfangao@hotmail.com)
|
253
|
+
|
254
|
+
## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.48)
|
255
|
+
|
256
|
+
Wed, 01 Sep 2021 07:39:56 GMT
|
257
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.47..@fluentui/react-positioning_v9.0.0-alpha.48)
|
258
|
+
|
259
|
+
### Changes
|
260
|
+
|
261
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.43 ([PR #19483](https://github.com/microsoft/fluentui/pull/19483) by bsunderhus@microsoft.com)
|
262
|
+
|
263
|
+
## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.47)
|
264
|
+
|
265
|
+
Tue, 31 Aug 2021 07:37:47 GMT
|
266
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.46..@fluentui/react-positioning_v9.0.0-alpha.47)
|
267
|
+
|
268
|
+
### Changes
|
269
|
+
|
270
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.42 ([PR #19556](https://github.com/microsoft/fluentui/pull/19556) by lingfan.gao@microsoft.com)
|
271
|
+
|
272
|
+
## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.46)
|
273
|
+
|
274
|
+
Tue, 24 Aug 2021 07:34:48 GMT
|
275
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.45..@fluentui/react-positioning_v9.0.0-alpha.46)
|
276
|
+
|
277
|
+
### Changes
|
278
|
+
|
279
|
+
- Updating TypeScript type-only imports/exports to use import/export syntax. ([PR #19473](https://github.com/microsoft/fluentui/pull/19473) by dzearing@hotmail.com)
|
280
|
+
|
281
|
+
## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.45)
|
282
|
+
|
283
|
+
Fri, 20 Aug 2021 07:37:28 GMT
|
284
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.44..@fluentui/react-positioning_v9.0.0-alpha.45)
|
285
|
+
|
286
|
+
### Changes
|
287
|
+
|
288
|
+
- Update .npmignore ([PR #19441](https://github.com/microsoft/fluentui/pull/19441) by elcraig@microsoft.com)
|
289
|
+
|
290
|
+
## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.44)
|
291
|
+
|
292
|
+
Thu, 19 Aug 2021 07:41:35 GMT
|
293
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.43..@fluentui/react-positioning_v9.0.0-alpha.44)
|
294
|
+
|
295
|
+
### Changes
|
296
|
+
|
297
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.39 ([PR #19273](https://github.com/microsoft/fluentui/pull/19273) by bsunderhus@microsoft.com)
|
298
|
+
|
299
|
+
## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.43)
|
300
|
+
|
301
|
+
Mon, 16 Aug 2021 07:36:39 GMT
|
302
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.42..@fluentui/react-positioning_v9.0.0-alpha.43)
|
303
|
+
|
304
|
+
### Changes
|
305
|
+
|
306
|
+
- feat(positioning): implement shorthand positioning option and shorthand parsing utility ([PR #19364](https://github.com/microsoft/fluentui/pull/19364) by lingfan.gao@microsoft.com)
|
307
|
+
|
308
|
+
## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.42)
|
309
|
+
|
310
|
+
Fri, 13 Aug 2021 07:36:34 GMT
|
311
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.41..@fluentui/react-positioning_v9.0.0-alpha.42)
|
312
|
+
|
313
|
+
### Changes
|
314
|
+
|
315
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.21 ([PR #19341](https://github.com/microsoft/fluentui/pull/19341) by olfedias@microsoft.com)
|
316
|
+
|
317
|
+
## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.41)
|
318
|
+
|
319
|
+
Tue, 10 Aug 2021 07:33:28 GMT
|
320
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.40..@fluentui/react-positioning_v9.0.0-alpha.41)
|
321
|
+
|
322
|
+
### Changes
|
323
|
+
|
324
|
+
- cleanup types, do not export PopperOptions ([PR #19230](https://github.com/microsoft/fluentui/pull/19230) by olfedias@microsoft.com)
|
325
|
+
|
326
|
+
## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.40)
|
327
|
+
|
328
|
+
Fri, 06 Aug 2021 07:35:14 GMT
|
329
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.39..@fluentui/react-positioning_v9.0.0-alpha.40)
|
330
|
+
|
331
|
+
### Changes
|
332
|
+
|
333
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.38 ([PR #19189](https://github.com/microsoft/fluentui/pull/19189) by bsunderhus@microsoft.com)
|
334
|
+
|
335
|
+
## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.39)
|
336
|
+
|
337
|
+
Tue, 03 Aug 2021 07:39:30 GMT
|
338
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.38..@fluentui/react-positioning_v9.0.0-alpha.39)
|
339
|
+
|
340
|
+
### Patches
|
341
|
+
|
342
|
+
- Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
|
343
|
+
- Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
|
344
|
+
|
345
|
+
### Changes
|
346
|
+
|
347
|
+
- Fix issues flagged by the exhaustive-deps rule in usePopper ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
|
348
|
+
|
349
|
+
## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.38)
|
350
|
+
|
351
|
+
Mon, 02 Aug 2021 07:36:20 GMT
|
352
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.37..@fluentui/react-positioning_v9.0.0-alpha.38)
|
353
|
+
|
354
|
+
### Changes
|
355
|
+
|
356
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.36 ([PR #19204](https://github.com/microsoft/fluentui/pull/19204) by lingfan.gao@microsoft.com)
|
357
|
+
|
358
|
+
## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.37)
|
359
|
+
|
360
|
+
Mon, 26 Jul 2021 07:37:30 GMT
|
361
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.36..@fluentui/react-positioning_v9.0.0-alpha.37)
|
362
|
+
|
363
|
+
### Changes
|
364
|
+
|
365
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.19 ([PR #19060](https://github.com/microsoft/fluentui/pull/19060) by miroslav.stastny@microsoft.com)
|
366
|
+
|
367
|
+
## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.36)
|
368
|
+
|
369
|
+
Fri, 23 Jul 2021 07:38:19 GMT
|
370
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.35..@fluentui/react-positioning_v9.0.0-alpha.36)
|
371
|
+
|
372
|
+
### Changes
|
373
|
+
|
374
|
+
- Update Popper to use options.target whenever it is defined (even if null) ([PR #18610](https://github.com/microsoft/fluentui/pull/18610) by behowell@microsoft.com)
|
375
|
+
|
376
|
+
## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.35)
|
377
|
+
|
378
|
+
Thu, 22 Jul 2021 07:36:55 GMT
|
379
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.34..@fluentui/react-positioning_v9.0.0-alpha.35)
|
380
|
+
|
381
|
+
### Changes
|
382
|
+
|
383
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.34 ([PR #19023](https://github.com/microsoft/fluentui/pull/19023) by behowell@microsoft.com)
|
384
|
+
|
385
|
+
## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.34)
|
386
|
+
|
387
|
+
Thu, 15 Jul 2021 07:36:18 GMT
|
388
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.33..@fluentui/react-positioning_v9.0.0-alpha.34)
|
389
|
+
|
390
|
+
### Changes
|
391
|
+
|
392
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.33 ([PR #18861](https://github.com/microsoft/fluentui/pull/18861) by bsunderhus@microsoft.com)
|
393
|
+
|
394
|
+
## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.33)
|
395
|
+
|
396
|
+
Fri, 09 Jul 2021 07:39:31 GMT
|
397
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.32..@fluentui/react-positioning_v9.0.0-alpha.33)
|
398
|
+
|
399
|
+
### Patches
|
400
|
+
|
401
|
+
- Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
402
|
+
- Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
403
|
+
|
404
|
+
### Changes
|
405
|
+
|
406
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.32 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
407
|
+
|
408
|
+
## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.32)
|
409
|
+
|
410
|
+
Fri, 02 Jul 2021 23:15:55 GMT
|
411
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.31..@fluentui/react-positioning_v9.0.0-alpha.32)
|
412
|
+
|
413
|
+
### Changes
|
414
|
+
|
415
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.31 ([PR #18721](https://github.com/microsoft/fluentui/pull/18721) by bsunderhus@microsoft.com)
|
416
|
+
|
417
|
+
## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.31)
|
418
|
+
|
419
|
+
Fri, 02 Jul 2021 07:37:06 GMT
|
420
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.30..@fluentui/react-positioning_v9.0.0-alpha.31)
|
421
|
+
|
422
|
+
### Changes
|
423
|
+
|
424
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.16 ([PR #18655](https://github.com/microsoft/fluentui/pull/18655) by miroslav.stastny@microsoft.com)
|
425
|
+
|
426
|
+
## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.30)
|
427
|
+
|
428
|
+
Thu, 01 Jul 2021 07:35:05 GMT
|
429
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.29..@fluentui/react-positioning_v9.0.0-alpha.30)
|
430
|
+
|
431
|
+
### Changes
|
432
|
+
|
433
|
+
- Fixing bug in start script of converged packages. ([PR #18768](https://github.com/microsoft/fluentui/pull/18768) by Humberto.Morimoto@microsoft.com)
|
434
|
+
|
435
|
+
## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.29)
|
436
|
+
|
437
|
+
Wed, 16 Jun 2021 07:34:24 GMT
|
438
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.28..@fluentui/react-positioning_v9.0.0-alpha.29)
|
439
|
+
|
440
|
+
### Changes
|
441
|
+
|
442
|
+
- feat(usePopperMouseTarget): Reusable hook to manage the state of a virtual popper element ([PR #18565](https://github.com/microsoft/fluentui/pull/18565) by lingfan.gao@microsoft.com)
|
443
|
+
|
444
|
+
## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.28)
|
445
|
+
|
446
|
+
Tue, 15 Jun 2021 07:40:20 GMT
|
447
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.27..@fluentui/react-positioning_v9.0.0-alpha.28)
|
448
|
+
|
449
|
+
### Changes
|
450
|
+
|
451
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.29 ([PR #18521](https://github.com/microsoft/fluentui/pull/18521) by behowell@microsoft.com)
|
452
|
+
|
453
|
+
## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.27)
|
454
|
+
|
455
|
+
Mon, 07 Jun 2021 07:38:15 GMT
|
456
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.26..@fluentui/react-positioning_v9.0.0-alpha.27)
|
457
|
+
|
458
|
+
### Patches
|
459
|
+
|
460
|
+
- Bump @fluentui/eslint-plugin to v1.3.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
|
461
|
+
- Bump @fluentui/scripts to v1.0.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
|
462
|
+
|
463
|
+
### Changes
|
464
|
+
|
465
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.28 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
|
466
|
+
|
467
|
+
## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.26)
|
468
|
+
|
469
|
+
Fri, 04 Jun 2021 07:37:23 GMT
|
470
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.25..@fluentui/react-positioning_v9.0.0-alpha.26)
|
471
|
+
|
472
|
+
### Changes
|
473
|
+
|
474
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.14 ([PR #18168](https://github.com/microsoft/fluentui/pull/18168) by Humberto.Morimoto@microsoft.com)
|
475
|
+
|
476
|
+
## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.25)
|
477
|
+
|
478
|
+
Thu, 03 Jun 2021 07:36:03 GMT
|
479
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.24..@fluentui/react-positioning_v9.0.0-alpha.25)
|
480
|
+
|
481
|
+
### Changes
|
482
|
+
|
483
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.13 ([PR #18321](https://github.com/microsoft/fluentui/pull/18321) by miroslav.stastny@microsoft.com)
|
484
|
+
|
485
|
+
## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.24)
|
486
|
+
|
487
|
+
Fri, 28 May 2021 07:33:57 GMT
|
488
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.23..@fluentui/react-positioning_v9.0.0-alpha.24)
|
489
|
+
|
490
|
+
### Changes
|
491
|
+
|
492
|
+
- createTargetFromClick utility to anchor popper to mouse position ([PR #18312](https://github.com/microsoft/fluentui/pull/18312) by lingfan.gao@microsoft.com)
|
493
|
+
|
494
|
+
## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.23)
|
495
|
+
|
496
|
+
Wed, 26 May 2021 07:35:43 GMT
|
497
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.22..@fluentui/react-positioning_v9.0.0-alpha.23)
|
498
|
+
|
499
|
+
### Changes
|
500
|
+
|
501
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.25 ([PR #18323](https://github.com/microsoft/fluentui/pull/18323) by lingfan.gao@microsoft.com)
|
502
|
+
|
503
|
+
## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.22)
|
504
|
+
|
505
|
+
Fri, 21 May 2021 07:34:54 GMT
|
506
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.21..@fluentui/react-positioning_v9.0.0-alpha.22)
|
507
|
+
|
508
|
+
### Changes
|
509
|
+
|
510
|
+
- Add `coverTarget` modifier and option ([PR #18254](https://github.com/microsoft/fluentui/pull/18254) by lingfan.gao@microsoft.com)
|
511
|
+
|
512
|
+
## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.21)
|
513
|
+
|
514
|
+
Thu, 20 May 2021 07:41:54 GMT
|
515
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.20..@fluentui/react-positioning_v9.0.0-alpha.21)
|
516
|
+
|
517
|
+
### Patches
|
518
|
+
|
519
|
+
- Bump @fluentui/eslint-plugin to v1.3.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
|
520
|
+
- Bump @fluentui/scripts to v1.0.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
|
521
|
+
|
522
|
+
### Changes
|
523
|
+
|
524
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.23 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
|
525
|
+
|
526
|
+
## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.20)
|
527
|
+
|
528
|
+
Wed, 19 May 2021 07:34:20 GMT
|
529
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.19..@fluentui/react-positioning_v9.0.0-alpha.20)
|
530
|
+
|
531
|
+
### Changes
|
532
|
+
|
533
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.11 ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com)
|
534
|
+
|
535
|
+
## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.19)
|
536
|
+
|
537
|
+
Thu, 13 May 2021 07:36:55 GMT
|
538
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.18..@fluentui/react-positioning_v9.0.0-alpha.19)
|
539
|
+
|
540
|
+
### Changes
|
541
|
+
|
542
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.10 ([PR #18156](https://github.com/microsoft/fluentui/pull/18156) by olfedias@microsoft.com)
|
543
|
+
|
544
|
+
## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.18)
|
545
|
+
|
546
|
+
Wed, 12 May 2021 07:36:20 GMT
|
547
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.17..@fluentui/react-positioning_v9.0.0-alpha.18)
|
548
|
+
|
549
|
+
### Changes
|
550
|
+
|
551
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.9 ([PR #18043](https://github.com/microsoft/fluentui/pull/18043) by behowell@microsoft.com)
|
552
|
+
|
553
|
+
## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.17)
|
554
|
+
|
555
|
+
Tue, 04 May 2021 07:36:35 GMT
|
556
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.16..@fluentui/react-positioning_v9.0.0-alpha.17)
|
557
|
+
|
558
|
+
### Changes
|
559
|
+
|
560
|
+
- Support popper target override ([PR #18015](https://github.com/microsoft/fluentui/pull/18015) by lingfan.gao@microsoft.com)
|
561
|
+
|
562
|
+
## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.16)
|
563
|
+
|
564
|
+
Mon, 03 May 2021 07:45:19 GMT
|
565
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.15..@fluentui/react-positioning_v9.0.0-alpha.16)
|
566
|
+
|
567
|
+
### Changes
|
568
|
+
|
569
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.21 ([PR #18005](https://github.com/microsoft/fluentui/pull/18005) by lingfan.gao@microsoft.com)
|
570
|
+
|
571
|
+
## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.15)
|
572
|
+
|
573
|
+
Fri, 30 Apr 2021 07:42:23 GMT
|
574
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.14..@fluentui/react-positioning_v9.0.0-alpha.15)
|
575
|
+
|
576
|
+
### Patches
|
577
|
+
|
578
|
+
- Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
|
579
|
+
- Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
|
580
|
+
|
581
|
+
### Changes
|
582
|
+
|
583
|
+
- AutoSize modifier - add options to apply max sizes always ([PR #17994](https://github.com/microsoft/fluentui/pull/17994) by yuanboxue@microsoft.com)
|
584
|
+
- Upgrade to ts 4.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
|
585
|
+
|
586
|
+
## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.14)
|
587
|
+
|
588
|
+
Fri, 23 Apr 2021 07:37:10 GMT
|
589
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.13..@fluentui/react-positioning_v9.0.0-alpha.14)
|
590
|
+
|
591
|
+
### Patches
|
592
|
+
|
593
|
+
- Bump @fluentui/eslint-plugin to v1.1.1 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
|
594
|
+
- Bump @fluentui/scripts to v1.0.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
|
595
|
+
|
596
|
+
### Changes
|
597
|
+
|
598
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.19 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
|
599
|
+
|
600
|
+
## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.13)
|
601
|
+
|
602
|
+
Thu, 22 Apr 2021 07:33:28 GMT
|
603
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.12..@fluentui/react-positioning_v9.0.0-alpha.13)
|
604
|
+
|
605
|
+
### Changes
|
606
|
+
|
607
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.18 ([PR #17897](https://github.com/microsoft/fluentui/pull/17897) by olfedias@microsoft.com)
|
608
|
+
|
609
|
+
## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.12)
|
610
|
+
|
611
|
+
Wed, 21 Apr 2021 07:31:50 GMT
|
612
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.11..@fluentui/react-positioning_v9.0.0-alpha.12)
|
613
|
+
|
614
|
+
### Changes
|
615
|
+
|
616
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.17 ([PR #17875](https://github.com/microsoft/fluentui/pull/17875) by miroslav.stastny@microsoft.com)
|
617
|
+
|
618
|
+
## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.11)
|
619
|
+
|
620
|
+
Tue, 20 Apr 2021 07:31:35 GMT
|
621
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.10..@fluentui/react-positioning_v9.0.0-alpha.11)
|
622
|
+
|
623
|
+
### Changes
|
624
|
+
|
625
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.6 ([PR #17827](https://github.com/microsoft/fluentui/pull/17827) by lingfan.gao@microsoft.com)
|
626
|
+
|
627
|
+
## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.10)
|
628
|
+
|
629
|
+
Fri, 16 Apr 2021 18:08:21 GMT
|
630
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.9..@fluentui/react-positioning_v9.0.0-alpha.10)
|
631
|
+
|
632
|
+
### Changes
|
633
|
+
|
634
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.5 ([PR #17794](https://github.com/microsoft/fluentui/pull/17794) by lingfan.gao@microsoft.com)
|
635
|
+
|
636
|
+
## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.9)
|
637
|
+
|
638
|
+
Fri, 16 Apr 2021 07:32:08 GMT
|
639
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.8..@fluentui/react-positioning_v9.0.0-alpha.9)
|
640
|
+
|
641
|
+
### Changes
|
642
|
+
|
643
|
+
- Add support for arrowPadding ([PR #17812](https://github.com/microsoft/fluentui/pull/17812) by behowell@microsoft.com)
|
644
|
+
|
645
|
+
## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.8)
|
646
|
+
|
647
|
+
Wed, 14 Apr 2021 07:34:12 GMT
|
648
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.7..@fluentui/react-positioning_v9.0.0-alpha.8)
|
649
|
+
|
650
|
+
### Changes
|
651
|
+
|
652
|
+
- Bump @fluentui/react-provider to v9.0.0-alpha.20 ([PR #17707](https://github.com/microsoft/fluentui/pull/17707) by bsunderhus@microsoft.com)
|
653
|
+
|
654
|
+
## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.7)
|
655
|
+
|
656
|
+
Thu, 08 Apr 2021 07:33:06 GMT
|
657
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.6..@fluentui/react-positioning_v9.0.0-alpha.7)
|
658
|
+
|
659
|
+
### Changes
|
660
|
+
|
661
|
+
- Bump @fluentui/react-provider to v9.0.0-alpha.19 ([PR #17676](https://github.com/microsoft/fluentui/pull/17676) by Humberto.Morimoto@microsoft.com)
|
662
|
+
|
663
|
+
## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.6)
|
664
|
+
|
665
|
+
Thu, 01 Apr 2021 20:13:37 GMT
|
666
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.5..@fluentui/react-positioning_v9.0.0-alpha.6)
|
667
|
+
|
668
|
+
### Changes
|
669
|
+
|
670
|
+
- Bump @fluentui/react-provider to v9.0.0-alpha.18 ([PR #17651](https://github.com/microsoft/fluentui/pull/17651) by bsunderhus@microsoft.com)
|
671
|
+
|
672
|
+
## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.5)
|
673
|
+
|
674
|
+
Wed, 31 Mar 2021 00:53:43 GMT
|
675
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.4..@fluentui/react-positioning_v9.0.0-alpha.5)
|
676
|
+
|
677
|
+
### Patches
|
678
|
+
|
679
|
+
- Bump @fluentui/eslint-plugin to v1.1.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
|
680
|
+
- Bump @fluentui/scripts to v1.0.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
|
681
|
+
|
682
|
+
### Changes
|
683
|
+
|
684
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.14 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
|
685
|
+
|
686
|
+
## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.4)
|
687
|
+
|
688
|
+
Tue, 30 Mar 2021 07:34:45 GMT
|
689
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.3..@fluentui/react-positioning_v9.0.0-alpha.4)
|
690
|
+
|
691
|
+
### Changes
|
692
|
+
|
693
|
+
- chore: restore "sideEffects" to enable treeshaking ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
|
694
|
+
|
695
|
+
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.3)
|
696
|
+
|
697
|
+
Fri, 26 Mar 2021 07:32:34 GMT
|
698
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.2..@fluentui/react-positioning_v9.0.0-alpha.3)
|
699
|
+
|
700
|
+
### Changes
|
701
|
+
|
702
|
+
- Bump @fluentui/react-provider to v9.0.0-alpha.15 ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com)
|
703
|
+
|
704
|
+
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.2)
|
705
|
+
|
706
|
+
Thu, 25 Mar 2021 07:33:24 GMT
|
707
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.0.0-alpha.1..@fluentui/react-positioning_v9.0.0-alpha.2)
|
708
|
+
|
709
|
+
### Changes
|
710
|
+
|
711
|
+
- Bump @fluentui/react-provider to v9.0.0-alpha.14 ([PR #17528](https://github.com/microsoft/fluentui/pull/17528) by lingfan.gao@microsoft.com)
|
712
|
+
|
713
|
+
## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.0.0-alpha.1)
|
714
|
+
|
715
|
+
Tue, 23 Mar 2021 07:31:43 GMT
|
716
|
+
|
717
|
+
### Changes
|
718
|
+
|
719
|
+
- Initial package ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com)
|