-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: update react-popper
to v2
#3947
chore: update react-popper
to v2
#3947
Conversation
💖 Thanks for opening this pull request! 💖 Here is a list of things that will help get it across the finish line:
We get a lot of pull requests on this repo, so please be patient and we will get back to you as soon as we can. |
Codecov Report
@@ Coverage Diff @@
## next-v2 #3947 +/- ##
==========================================
Coverage ? 99.75%
==========================================
Files ? 183
Lines ? 3279
Branches ? 0
==========================================
Hits ? 3271
Misses ? 8
Partials ? 0 Continue to review full report at Codecov.
|
c13cda1
to
f1c7051
Compare
@ayasakov this is great, love it ❤️ But, as you mentioned this is a breaking change. I will think how we can stage it, probably this will be for a next release as in a current I would like to remove warnings related to |
f1c7051
to
3aa91e1
Compare
I rebased my PR to the last master code. There is a console warning from the Popper.js regarding
Looks need to add an additional change in another Semantic repo. @layershifter are there any updates? That would be great to merge it in the next release :) |
@ayasakov just to clarify what is blocking there 🤔
To conclude: I don't want to block the progress there as Popper v2 is really awesome. There will be also another small release with few deprecations and then we can go to v2. To give you ETA I expect that this can be released in two-three weeks. Please let me know that do you think 🙏 |
@layershifter sounds great! I'm waiting. |
* update Popup module * update docs
3aa91e1
to
a918d91
Compare
react-popper
to v2
@@ -375,8 +372,7 @@ Popup.propTypes = { | |||
|
|||
Popup.defaultProps = { | |||
disabled: false, | |||
eventsEnabled: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As eventListeners
is available via modifier
I decided to keep prop to avoid an additional breaking change
src/modules/Popup/Popup.js
Outdated
*/ | ||
offset: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), | ||
offset: PropTypes.arrayOf(PropTypes.number), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
offset
can be also a function, I added an example for this
src/modules/Popup/Popup.js
Outdated
{ name: 'offset', options: { offset } }, | ||
] | ||
const modifiers = popperModifiers | ||
? _.unionBy(popperModifiers, defaultModifiers, 'name') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Merge there is not required as Popper will do it for us 😺
I like it! Great work! |
One drop of poison infects the whole tun of wine 🤦 @ayasakov Definitely this is the worst part there as we don't have control over SUI/FUI CSS. I don't have any better ideas that 1236630 as we definitely cannot go with warnings. @ayasakov It will also not fix #3771 as Popper does not take |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ayasakov great work there 👍 I pushed few minor changes & update PR's description.
If I missed something please let me know 🙏
Co-authored-by: Oleksandr Fediashov <[email protected]>
Released in |
Popper.js v1 is out of date, v2 was released in Dec 2019, time to upgrade 🚀
Popup
component will use@popperjs/core
v2. As result, there are two breaking changes inPopup
component itself.offset
can't be specified asstring
anymorePreviously it was possible to pass different units to the
offset
prop as units. This behavior was changed andoffset
accepts a tuple or a function. Examples in our docs were also updated.Before
After
popperModifiers
are defined as arrays nowThe
popperModifiers
prop should be present as anarray
with changed format (see Popper docs).Before
After
a wrapping element around
.popup
To avoid warnings from Popper.js about
margin
s (https://popper.js.org/docs/v2/migration-guide/#4-remove-all-css-margins) we added a wrapping element around.popup
:In #4094 the automatic transfer of
zIndex
was added.