-
Notifications
You must be signed in to change notification settings - Fork 67
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
Add TypeScript types for <Overlay>, <OverlayTrigger>, <Tooltip>, <IconButton> #3100
Add TypeScript types for <Overlay>, <OverlayTrigger>, <Tooltip>, <IconButton> #3100
Conversation
Thanks for the pull request, @bradenmacdonald! Please note that it may take us up to several weeks or months to complete a review and merge your PR. Feel free to add as much of the following information to the ticket as you can:
All technical communication about the code itself will be done via the GitHub pull request interface. As a reminder, our process documentation is here. Please let us know once your PR is ready for our review and all tests are green. |
✅ Deploy Preview for paragon-openedx ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site configuration. |
bf2b998
to
4cd7029
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3100 +/- ##
==========================================
+ Coverage 93.20% 93.25% +0.04%
==========================================
Files 249 249
Lines 4359 4388 +29
Branches 1034 1037 +3
==========================================
+ Hits 4063 4092 +29
Misses 290 290
Partials 6 6 ☔ View full report in Codecov by Sentry. |
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.
This is wonderful! I'm super happy to see components cleaned up like this!
LGTM!
@@ -37,7 +37,7 @@ const { | |||
|
|||
export type CollapsibleLiveEditorTypes = { | |||
children: React.ReactNode; | |||
clickToCopy: (arg: string) => void; |
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.
@adamstankiewicz do you know why arg: string
was in here before?
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.
Most likely, we previously passed some kind of parameter here, but now this parameter does not exist.
Good catch! 💯
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.
This looks great, left some suggestions
@@ -37,7 +37,7 @@ const { | |||
|
|||
export type CollapsibleLiveEditorTypes = { | |||
children: React.ReactNode; | |||
clickToCopy: (arg: string) => void; |
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.
Most likely, we previously passed some kind of parameter here, but now this parameter does not exist.
Good catch! 💯
@PKulkoRaccoonGang Thanks for the review! I made those suggested changes. |
@brian-smith-tcril or @PKulkoRaccoonGang could one of you please merge this at your convenience? :) |
@bradenmacdonald 🎉 Your pull request was merged! Please take a moment to answer a two question survey so we can improve your experience in the future. |
…, <IconButton> (#3100) * feat: add typings for <Overlay> and <OverlayTrigger> * feat: add typings for <Tooltip> * feat: add typings for <IconButton> * chore: typing cleanups for <Chip> code * feat: slightly more detailed types for <Chip/ChipIcon> - per review
Thanks @PKulkoRaccoonGang ! |
🎉 This PR is included in version 22.7.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
…, <IconButton> (#3100) * feat: add typings for <Overlay> and <OverlayTrigger> * feat: add typings for <Tooltip> * feat: add typings for <IconButton> * chore: typing cleanups for <Chip> code * feat: slightly more detailed types for <Chip/ChipIcon> - per review
…, <IconButton> (#3100) * feat: add typings for <Overlay> and <OverlayTrigger> * feat: add typings for <Tooltip> * feat: add typings for <IconButton> * chore: typing cleanups for <Chip> code * feat: slightly more detailed types for <Chip/ChipIcon> - per review
…, <IconButton> (#3100) * feat: add typings for <Overlay> and <OverlayTrigger> * feat: add typings for <Tooltip> * feat: add typings for <IconButton> * chore: typing cleanups for <Chip> code * feat: slightly more detailed types for <Chip/ChipIcon> - per review
…, <IconButton> (#3100) * feat: add typings for <Overlay> and <OverlayTrigger> * feat: add typings for <Tooltip> * feat: add typings for <IconButton> * chore: typing cleanups for <Chip> code * feat: slightly more detailed types for <Chip/ChipIcon> - per review
…, <IconButton> (#3100) * feat: add typings for <Overlay> and <OverlayTrigger> * feat: add typings for <Tooltip> * feat: add typings for <IconButton> * chore: typing cleanups for <Chip> code * feat: slightly more detailed types for <Chip/ChipIcon> - per review
…, <IconButton> (#3100) * feat: add typings for <Overlay> and <OverlayTrigger> * feat: add typings for <Tooltip> * feat: add typings for <IconButton> * chore: typing cleanups for <Chip> code * feat: slightly more detailed types for <Chip/ChipIcon> - per review
Description
This adds types for
<Overlay>
,<OverlayTrigger>
,<Tooltip>
, and<IconButton>
by converting their implementations from.jsx
to.tsx
.This also fixes a number of random type errors that then showed up in the various test files, and makes some minor cleanups to
<Chip>
related code, such as removing// @ts-ignore
directives now that we have typings available for<IconButton>
.Deploy Preview
https://deploy-preview-3100--paragon-openedx.netlify.app/
Merge Checklist
n/a for this type of internal change.
Post-merge Checklist