Skip to content
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

Centrally Align Multiline Block Titles in the Inserter #4343

Merged
merged 3 commits into from
Dec 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Unreleased
---
* [*] Give multi-line block names central alignment in inserter [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4343]
* [**] Fix undo/redo functionality in links when applying text format [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4290]
* [**] [iOS] Fix scroll update when typing in RichText component [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4299]
* [*] [Preformatted block] Fix an issue where the background color is not showing up for standard themes. [#4292]
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 48 files
+7 −0 docs/how-to-guides/themes/block-theme-overview.md
+1 −1 docs/reference-guides/block-api/block-transforms.md
+1 −14 lib/compat/wordpress-5.9/admin-menu.php
+20 −4 lib/compat/wordpress-5.9/class-wp-theme-json-gutenberg.php
+39 −29 lib/compat/wordpress-5.9/register-global-styles-cpt.php
+9 −11 lib/full-site-editing/edit-site-page.php
+0 −21 lib/global-styles.php
+1 −1 lib/init.php
+1 −1 lib/load.php
+3 −2 packages/block-editor/src/components/border-style-control/style.scss
+2 −0 packages/block-editor/src/components/inner-blocks/README.md
+1 −1 packages/block-editor/src/components/link-control/README.md
+30 −32 packages/block-editor/src/hooks/border-width.js
+37 −7 packages/block-editor/src/store/selectors.js
+4 −1 packages/block-library/src/button/block.json
+5 −1 packages/block-library/src/code/block.json
+7 −1 packages/block-library/src/group/block.json
+4 −1 packages/block-library/src/image/block.json
+18 −0 packages/block-library/src/image/editor.scss
+4 −0 packages/block-library/src/navigation-link/edit.js
+7 −5 packages/block-library/src/post-comments-form/style.scss
+5 −1 packages/block-library/src/post-comments/block.json
+15 −0 packages/block-library/src/post-comments/index.php
+7 −3 packages/block-library/src/post-comments/style.scss
+7 −1 packages/block-library/src/pullquote/block.json
+1 −0 packages/block-library/src/pullquote/style.scss
+7 −1 packages/block-library/src/search/block.json
+2 −0 packages/block-library/src/search/edit.js
+20 −10 packages/block-library/src/search/index.php
+6 −1 packages/block-library/src/table/block.json
+1 −0 packages/block-library/src/table/style.scss
+28 −0 packages/block-library/src/template-part/index.js
+1 −1 packages/components/src/card/card/README.md
+1 −1 packages/components/src/dimension-control/README.md
+1 −1 packages/components/src/duotone-picker/README.md
+2 −2 packages/components/src/menu-item/README.md
+1 −0 packages/components/src/mobile/inserter-button/style.native.scss
+138 −6 packages/components/src/query-controls/README.md
+4 −1 packages/components/src/radio-group/README.md
+3 −0 packages/e2e-tests/specs/editor/blocks/cover.test.js
+3 −2 packages/e2e-tests/specs/editor/blocks/image.test.js
+5 −5 packages/e2e-tests/specs/site-editor/document-settings.test.js
+2 −2 packages/e2e-tests/specs/site-editor/multi-entity-saving.test.js
+2 −1 packages/e2e-tests/specs/site-editor/template-part.test.js
+19 −1 packages/edit-post/src/index.js
+3 −9 packages/edit-site/src/components/header/document-actions/index.js
+1 −0 packages/react-native-editor/CHANGELOG.md
+59 −5 phpunit/class-wp-theme-json-test.php