-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Introduces RichText component for mobile and ports Para block for mobile #8231
Merged
daniloercoli
merged 21 commits into
master
from
rnmobile/port-para-block-use-latest-gb-master-july
Aug 1, 2018
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
3318475
Introduce RichText component for mobile, and port the Paragraph block…
daniloercoli 1ffdf7c
Fix lint
daniloercoli 73d1a38
Use an edit file to share more common code with the main Paragraph we…
SergioEstevao 1669996
Fix lint
daniloercoli ec0f897
Remove log calls
daniloercoli 20d7082
Revert renaming of custom-class-name.native.js → custom-class-name-na…
daniloercoli b918423
Cleaning the code / Refactoring by "nativizing" `utils.js` (& `index.…
daniloercoli 3348926
Remove any extra P.
SergioEstevao 804b52a
Replace <p> by <br>
SergioEstevao 8e75df3
Merge branch 'master' into rnmobile/port-para-block-use-latest-gb-mas…
SergioEstevao bed493b
The RichText mobile component now returns plain HTML, and the transfo…
daniloercoli c9373d2
Merge remote-tracking branch 'origin/master' into rnmobile/port-para-…
gziolo f0e83ec
Update code to work with the lastest master changes
gziolo b275731
Correctly check if minHeight is undefined when setting the style of m…
daniloercoli f214c76
Blocks: Extract phrasing content to its own file to allow reuse with …
gziolo 762b582
Merge branch 'rnmobile/port-para-block-use-latest-gb-master-july' of …
gziolo 9651c70
Remove method `setForceUpdate` that is not used. Also remove the conv…
daniloercoli 248a2c8
Remove `aria-label` that is not used in RichText mobile
daniloercoli b34049a
Convert private instance variable `lastContentSizeHeight`, to local m…
daniloercoli 131e3e7
Use built-in `forceUpdate` method call, instead of using a private bo…
daniloercoli 3351260
Add comment for P replacement for BR
SergioEstevao 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
import { | ||
getPhrasingContentSchema, | ||
} from './utils'; | ||
|
||
export { getPhrasingContentSchema }; | ||
export { getPhrasingContentSchema } from './phrasing-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
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.
I noticed that this already get out of sync so I moved it to its own file.