Skip to content

Commit

Permalink
Merge pull request #4519 from wordpress-mobile/version-toolkit/gutenb…
Browse files Browse the repository at this point in the history
…erg/rnmobile/fix/line-height-android-block-based-themes

[Mobile] - Enable font size and line height support and addresses Android issues
  • Loading branch information
Gerardo Pacheco authored Jan 31, 2022
2 parents 77e79b1 + 56ba837 commit 867d2ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Unreleased
---
* [**] [Gallery block] Fix crash when adding images and selecting a gallery item [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4515]
* [***] Font size and line-height support for text-based blocks used in block-based themes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4519]

1.70.0
---
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 78 files
+3 −3 docs/contributors/code/react-native/integration-test-guide.md
+2 −0 docs/how-to-guides/block-tutorial/block-controls-toolbar-and-sidebar.md
+217 −0 docs/how-to-guides/block-tutorial/block-supports-in-dynamic-blocks.md
+153 −0 docs/how-to-guides/block-tutorial/block-supports.md
+2 −0 docs/how-to-guides/block-tutorial/creating-dynamic-blocks.md
+12 −0 docs/manifest.json
+1 −1 docs/reference-guides/core-blocks.md
+1 −1 docs/reference-guides/theme-json-reference/theme-json-living.md
+6 −0 docs/toc.json
+1 −1 lib/compat.php
+1 −1 lib/compat/wordpress-5.9/get-global-styles-and-settings.php
+13 −12 package-lock.json
+2 −1 packages/block-editor/src/components/line-height-control/index.native.js
+36 −6 packages/block-editor/src/hooks/color.js
+29 −1 packages/block-editor/src/hooks/font-size.js
+1 −3 packages/block-editor/src/hooks/typography.native.js
+69 −1 packages/block-editor/src/hooks/utils.js
+2 −0 packages/block-library/src/gallery/constants.js
+8 −8 packages/block-library/src/gallery/edit.js
+7 −3 packages/block-library/src/gallery/utils.js
+0 −19 packages/block-library/src/navigation/edit/placeholder/index.js
+8 −10 packages/block-library/src/navigation/edit/placeholder/placeholder-preview.js
+68 −93 packages/block-library/src/navigation/editor.scss
+1 −2 packages/block-library/src/quote/block.json
+0 −1 packages/block-library/src/quote/index.js
+3 −3 packages/block-library/src/quote/style.scss
+1 −1 packages/block-library/src/quote/theme.scss
+4 −8 packages/block-library/src/site-logo/edit.js
+1 −0 packages/block-library/src/social-link/block.json
+14 −2 packages/block-library/src/social-link/edit.js
+13 −10 packages/block-library/src/social-link/index.php
+5 −0 packages/block-library/src/social-links/block.json
+8 −1 packages/block-library/src/social-links/edit.js
+7 −1 packages/block-library/src/social-links/save.js
+8 −1 packages/block-library/src/social-links/style.scss
+6 −2 packages/blocks/src/api/factory.js
+5 −0 packages/components/CHANGELOG.md
+12 −1 packages/components/src/slot-fill/bubbles-virtually/fill.js
+20 −1 packages/components/src/tools-panel/stories/index.js
+31 −1 packages/components/src/tools-panel/test/index.js
+13 −9 packages/components/src/tools-panel/tools-panel/hook.ts
+74 −46 packages/components/src/utils/hooks/stories/use-cx.js
+1 −1 packages/e2e-tests/package.json
+0 −2 packages/e2e-tests/specs/editor/blocks/__snapshots__/navigation.test.js.snap
+6 −1 packages/e2e-tests/specs/editor/blocks/gallery.test.js
+0 −50 packages/e2e-tests/specs/editor/blocks/navigation.test.js
+1 −7 packages/e2e-tests/specs/editor/plugins/templates.test.js
+35 −0 packages/e2e-tests/specs/editor/various/__snapshots__/keep-styles-on-block-transforms.test.js.snap
+0 −7 packages/e2e-tests/specs/editor/various/__snapshots__/style-variation.test.js.snap
+85 −0 packages/e2e-tests/specs/editor/various/keep-styles-on-block-transforms.test.js
+9 −5 packages/e2e-tests/specs/editor/various/style-variation.test.js
+1 −0 packages/edit-navigation/package.json
+7 −1 packages/edit-navigation/src/components/header/more-menu.js
+14 −0 packages/edit-navigation/src/components/header/tools-more-menu-group.js
+2 −0 packages/edit-navigation/src/components/layout/index.js
+35 −21 packages/edit-navigation/src/components/sidebar/delete-menu.js
+8 −10 packages/edit-post/src/components/sidebar/template/index.js
+5 −1 packages/edit-widgets/src/components/more-menu/index.js
+21 −0 packages/edit-widgets/src/components/more-menu/tools-more-menu-group.js
+9 −10 packages/editor/src/components/post-format/index.js
+1 −0 packages/editor/src/components/post-title/index.native.js
+3 −3 packages/react-native-aztec/android/build.gradle
+57 −3 packages/react-native-aztec/android/src/main/java/org/wordpress/mobile/ReactNativeAztec/ReactAztecManager.java
+14 −3 packages/react-native-bridge/android/react-native-bridge/build.gradle
+1 −0 packages/react-native-editor/CHANGELOG.md
+17 −5 packages/react-native-editor/android/app/build.gradle
+1 −1 packages/react-native-editor/src/test/index.test.js
+39 −14 packages/rich-text/src/component/index.native.js
+31 −2 packages/rich-text/src/test/index.native.js
+14 −1 packages/scripts/CHANGELOG.md
+2 −2 packages/scripts/README.md
+4 −2 packages/scripts/config/webpack.config.js
+1 −1 packages/scripts/package.json
+7 −2 packages/scripts/utils/config.js
+1 −0 test/native/jest.config.js
+63 −0 test/native/matchers/to-be-visible.js
+62 −0 test/native/matchers/utils.js
+9 −0 test/native/setup-after-env.js

0 comments on commit 867d2ba

Please sign in to comment.