-
Notifications
You must be signed in to change notification settings - Fork 314
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
feat(react): BREAKING CHANGE Upgrade to React 18 #3556
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
f426141
WIP
greg-in-a-box 520014e
chore(react): unit tests
greg-in-a-box 39df245
chore(react): types and unit tests
greg-in-a-box 61b3766
chore(react): fix component tests
tjiang-box 5f1e986
chore(react): unit tests
greg-in-a-box 000851f
chore(react): unit tests
greg-in-a-box f6c1bd3
chore(react): storybook
greg-in-a-box ec4cb6c
feat(react-18): fix lint ts issue
tjiang-box 991e08c
chore(react): storybook
greg-in-a-box 25b062d
chore(react): storybook
greg-in-a-box 5a63ad7
chore(react): storybook
greg-in-a-box 1637bd0
chore(react): flow
greg-in-a-box 6ee6e89
chore(react): element test
tjiang-box cf372ba
chore(react): undo makeDroppable changes
tjiang-box 66cf44a
chore(react): unit tests
greg-in-a-box 5a7b8b0
chore(react): unit tests
greg-in-a-box 696a695
chore(react): unit tests
greg-in-a-box 96defb5
chore(react): clean up
greg-in-a-box abc4309
chore(react): clean up
greg-in-a-box dc13c71
chore(react): rebase
greg-in-a-box f2b47ec
chore(react): clean up
greg-in-a-box f40ee07
chore(react): eslint
greg-in-a-box 8855ab2
chore(react): linter ts
greg-in-a-box 8a0ec9d
chore(react): snaps
greg-in-a-box 8af6c71
chore(react): add missing isDisabled in dropdown menu
tjiang-box bb261c7
chore(react): deps
greg-in-a-box File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
/* eslint-disable */ | ||
// @ts-nocheck | ||
|
||
declare module '*.md' { | ||
const content: string; | ||
export = content; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
// @ts-nocheck override setImmediate to use setTimeout | ||
import '@testing-library/jest-dom'; | ||
import util from 'util'; | ||
|
||
global.setImmediate = cb => { | ||
setTimeout(cb, 0); | ||
}; | ||
|
||
Object.defineProperty(global, 'TextEncoder', { | ||
value: util.TextEncoder, | ||
}); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
error was thrown and said to add this to the setup