-
Notifications
You must be signed in to change notification settings - Fork 261
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
Fix/remove finddomnode #308
Open
ianchanning
wants to merge
17
commits into
sanniassin:master
Choose a base branch
from
mona-health:fix/remove-finddomnode
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+18,468
−3,485
Open
Changes from 15 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
a5a8150
build: Get npm install working again with npm v8.19.3
f1d66ef
build: ignore vim sessions
e8992f2
build: update chrome launcher
63fad9b
refactor: use node instead of ref, move refCallback out of inputProps
c12a59f
fix: remove findDOMNode and add wrapper div with ref
9d9d721
build: update libraries
dea4937
style: eslint jsx-no-bind
eb1e3f7
Version 3.0.0-alpha.3
0096454
build: fix JSON
0f95759
Version 3.0.0-alpha.3
cb7559a
fix: put ChildrenWrapper back to avoid new react warning
93dbe39
fix: use wrapper div to prevent some tests from failing
d4e5a5d
build
ef4e234
Version 3.0.0-alpha.4
76ba1fd
fix: replace ChildrenWrapper with direct cloneElement
24aae93
docs: add notes about children components
6eb6fdb
docs: better explanation around findDOMNode
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ node_modules | |
lib | ||
dist | ||
npm-debug.log | ||
browserStack.json | ||
browserStack.json | ||
Session.vim |
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,22 +1,22 @@ | ||
{ | ||
"dist/react-input-mask.js": { | ||
"bundled": 79669, | ||
"minified": 26008, | ||
"gzipped": 8342 | ||
"bundled": 72731, | ||
"minified": 23443, | ||
"gzipped": 7886 | ||
}, | ||
"lib/react-input-mask.development.js": { | ||
"bundled": 30278, | ||
"minified": 12895, | ||
"gzipped": 4267 | ||
"bundled": 29131, | ||
"minified": 12358, | ||
"gzipped": 4109 | ||
}, | ||
"dist/react-input-mask.min.js": { | ||
"bundled": 44160, | ||
"minified": 15279, | ||
"gzipped": 5298 | ||
"bundled": 30580, | ||
"minified": 10544, | ||
"gzipped": 3782 | ||
}, | ||
"lib/react-input-mask.production.min.js": { | ||
"bundled": 28947, | ||
"minified": 11818, | ||
"gzipped": 3931 | ||
"bundled": 28000, | ||
"minified": 11281, | ||
"gzipped": 3783 | ||
} | ||
} |
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,7 +1,7 @@ | ||
/* eslint-disable import/no-unresolved */ | ||
|
||
if (process.env.NODE_ENV === "production") { | ||
module.exports = require("./lib/react-input-mask.production.min.js"); | ||
module.exports = require("./lib/react-input-mask.production.min"); | ||
} else { | ||
module.exports = require("./lib/react-input-mask.development.js"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fix eslint errors |
||
module.exports = require("./lib/react-input-mask.development"); | ||
} |
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.
fix eslint error