-
Notifications
You must be signed in to change notification settings - Fork 585
Add new method to dialogs snap #3173
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
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3173 +/- ##
=======================================
Coverage 94.98% 94.98%
=======================================
Files 511 511
Lines 11313 11313
Branches 1741 1741
=======================================
Hits 10746 10746
Misses 567 567 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
packages/examples/packages/dialogs/src/components/require-scroll-content.tsx
Outdated
Show resolved
Hide resolved
packages/examples/packages/dialogs/src/components/require-scroll-content.tsx
Outdated
Show resolved
Hide resolved
packages/examples/packages/dialogs/src/components/require-scroll-content.tsx
Show resolved
Hide resolved
@@ -90,6 +90,12 @@ export const onRpcRequest: OnRpcRequestHandler = async ({ request }) => { | |||
}, | |||
}); | |||
|
|||
case 'showRequireScrollContent': |
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.
case 'showRequireScrollContent': | |
case 'showLongContent': |
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.
Need to update the JSDoc too.
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.
Can we use this naming instead ?
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.
Yup, updated: 98d4964
Added a method to show require scroll content to allow for e2e testing of the new
requireScroll
footer prop.