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

Update to latest gutenberg #2317

Merged
merged 3 commits into from
May 26, 2020
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
3 changes: 1 addition & 2 deletions __device-tests__/gutenberg-editor-lists.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ describe( 'Gutenberg Editor tests for List block @canary', () => {
} );

// Prevent regression of https://github.com/wordpress-mobile/gutenberg-mobile/issues/871
// Commented out because it started failing. This is being tracked by https://github.com/wordpress-mobile/gutenberg-mobile/issues/2315.
it.skip( 'should handle spaces in a list', async () => {
it( 'should handle spaces in a list', async () => {
await editorPage.addNewBlock( listBlockName );
let listBlockElement = await editorPage.getBlockAtPosition( listBlockName );
// Click List block on Android to force EditText focus
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 35 files
+475 −0 lib/class-wp-rest-block-types-controller.php
+3 −0 lib/load.php
+8 −0 lib/rest-api.php
+2 −4 packages/block-editor/src/components/block-mobile-toolbar/block-actions-menu.native.js
+2 −2 packages/block-library/src/button/color-background.native.js
+5 −1 packages/block-library/src/button/color-edit.js
+6 −2 packages/block-library/src/button/edit.native.js
+2 −2 packages/block-library/src/cover/edit.native.js
+1 −1 packages/block-library/src/cover/overlay-color-settings.native.js
+4 −4 packages/components/src/color-indicator/index.native.js
+1 −0 packages/components/src/color-palette/index.native.js
+1 −1 packages/components/src/index.native.js
+4 −3 packages/components/src/mobile/color-settings/index.native.js
+17 −1 packages/components/src/mobile/color-settings/utils.native.js
+99 −0 packages/components/src/mobile/gradient/index.native.js
+3 −0 packages/components/src/mobile/gradient/style.native.scss
+0 −42 packages/components/src/mobile/linear-gradient/index.native.js
+0 −2 packages/edit-post/src/components/editor-initialization/index.js
+0 −45 packages/edit-post/src/components/editor-initialization/listener-hooks.js
+1 −136 packages/edit-post/src/components/editor-initialization/test/listener-hooks.js
+2 −44 packages/edit-post/src/components/header/index.js
+7 −15 packages/edit-post/src/components/layout/index.js
+29 −13 packages/edit-post/src/components/sidebar/settings-sidebar/index.js
+3 −3 packages/edit-site/src/components/block-editor/index.js
+26 −12 packages/edit-site/src/components/editor/index.js
+2 −6 packages/edit-site/src/components/sidebar/index.js
+4 −0 packages/edit-widgets/src/components/customizer-edit-widgets-initializer/index.js
+10 −1 packages/edit-widgets/src/components/customizer-edit-widgets-initializer/style.scss
+7 −9 packages/edit-widgets/src/components/header/index.js
+9 −9 packages/edit-widgets/src/components/layout/index.js
+61 −2 packages/interface/src/components/complementary-area/index.js
+1 −5 packages/interface/src/components/pinned-items/style.scss
+21 −66 packages/rich-text/src/component/index.native.js
+0 −34 packages/rich-text/src/component/test/index.native.js
+318 −0 phpunit/class-wp-rest-block-types-controller-test.php