Update to React 16.2.0 for Fragments, Replace Unnecessary <div /> on HOC.#292
Open
notadamking wants to merge 3 commits intofullstackreact:masterfrom
Open
Update to React 16.2.0 for Fragments, Replace Unnecessary <div /> on HOC.#292notadamking wants to merge 3 commits intofullstackreact:masterfrom
notadamking wants to merge 3 commits intofullstackreact:masterfrom
Conversation
> google-maps-react@2.0.3 prepublish /Users/adam/Desktop/Projects/google-maps-react > ./scripts/prepublish.sh => Transpiling... src/GoogleApiComponent.js -> dist/GoogleApiComponent.js src/components/Circle.js -> dist/components/Circle.js src/components/HeatMap.js -> dist/components/HeatMap.js src/components/InfoWindow.js -> dist/components/InfoWindow.js src/components/Marker.js -> dist/components/Marker.js src/components/Polygon.js -> dist/components/Polygon.js src/components/Polyline.js -> dist/components/Polyline.js src/index.js -> dist/index.js src/lib/GoogleApi.js -> dist/lib/GoogleApi.js src/lib/ScriptCache.js -> dist/lib/ScriptCache.js src/lib/String.js -> dist/lib/String.js src/lib/arePathsEqual.js -> dist/lib/arePathsEqual.js src/lib/cancelablePromise.js -> dist/lib/cancelablePromise.js src/lib/windowOrGlobal.js -> dist/lib/windowOrGlobal.js => Complete
Author
|
Solves #227 |
Author
|
Any reason this hasn't been merged? |
|
Please merge with PR! |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
The
<div />surrounding the<WrappedComponent />causes styles to render incorrectly on the wrapped component.Fix
Replace the
<div />with<React.Fragment />to prevent stylistic changes.I also removed unused lines of code from the GoogleApiComponent, and then ran
make buildto update the dist folder.