-
Notifications
You must be signed in to change notification settings - Fork 146
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
Update animations functionality to only support the native popover approach #970
Conversation
🦋 Changeset detectedLatest commit: 3ea0620 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
commit: |
@@ -7,6 +7,7 @@ on: | |||
jobs: | |||
test: | |||
runs-on: ubuntu-latest | |||
name: Test NodeJS ${{ matrix.node_version }} |
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.
Adding this to make the actions page a bit more readable.
@@ -39,7 +39,7 @@ | |||
"test.utils": "nx test utils" | |||
}, | |||
"simple-git-hooks": { | |||
"pre-commit": "pnpm format.staged" | |||
"pre-commit": "pnpm format.staged && pnpm lint" |
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.
Added this so that linting errors are caught before creating a PR. Let me know if this was intentionally excluded.
41a1503
to
92bdf79
Compare
What is it?
Why is it needed?
This closes out #913. The existing shimming to support animations has been removed and only native popover animations will be supported. We now have full documentation along with warnings for how animations should be used with the popover API.
I also updated the modal animation documentation to reflect the current state of support.
Checklist:
pnpm change
and documented my changes