Skip to content

Commit

Permalink
Refactor: Fixed position of FloatingToolbar on the bottom of the sc…
Browse files Browse the repository at this point in the history
…reen (#2118)

* update ref to master

* update RELEASE-NOTES.txt
  • Loading branch information
jbinda authored Apr 22, 2020
1 parent dd36f68 commit 8acfb12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
* Prefill caption for image blocks when available on the Media library
* New block: Buttons. From now you’ll be able to add the individual Button block only inside the Buttons block
* [iOS]: Video in video blocks can now be played inline on the editor.
* [iOS]: Move FloatingToolbar for nested blocks to appears of the bottom of the screen
* [Android] Floating toolbar, previously located above nested blocks, is now placed at the top of the screen
* [iOS] Floating toolbar, previously located above nested blocks, is now placed at the bottom of the screen
* Fix the icons in FloatingToolbar on RTL mode

1.26.0
------
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 60 files
+2 −2 docs/contributors/managing-packages.md
+1 −1 docs/contributors/testing-overview.md
+1 −1 docs/designers-developers/designers/block-design.md
+2 −2 docs/designers-developers/developers/backward-compatibility/deprecations.md
+1 −1 docs/designers-developers/developers/block-api/block-deprecation.md
+1 −1 docs/designers-developers/developers/block-api/block-templates.md
+1 −1 docs/designers-developers/developers/platform/README.md
+1 −1 docs/designers-developers/developers/tutorials/block-tutorial/creating-dynamic-blocks.md
+2 −2 docs/designers-developers/developers/tutorials/block-tutorial/nested-blocks-inner-blocks.md
+1 −1 docs/designers-developers/developers/tutorials/format-api/2-toolbar-button.md
+1 −1 docs/designers-developers/developers/tutorials/metabox/meta-block-3-add.md
+1 −0 package-lock.json
+1 −0 packages/api-fetch/package.json
+7 −0 packages/api-fetch/src/index.js
+4 −4 packages/base-styles/_mixins.scss
+2 −0 packages/base-styles/_variables.scss
+0 −19 packages/block-editor/src/components/block-list/block-mobile-floating-toolbar.native.js
+0 −24 packages/block-editor/src/components/block-list/block-mobile-floating-toolbar.native.scss
+0 −33 packages/block-editor/src/components/block-list/block.native.js
+0 −17 packages/block-editor/src/components/block-list/block.native.scss
+7 −4 packages/block-editor/src/components/block-list/breadcrumb.native.js
+23 −2 packages/block-editor/src/components/block-list/index.native.js
+4 −0 packages/block-editor/src/components/block-list/style.native.scss
+5 −2 packages/block-editor/src/components/block-list/subdirectory-icon.js
+4 −0 packages/block-editor/src/components/floating-toolbar/floatingToolbar.android.scss
+3 −0 packages/block-editor/src/components/floating-toolbar/floatingToolbar.ios.scss
+77 −0 packages/block-editor/src/components/floating-toolbar/index.native.js
+2 −1 packages/block-editor/src/components/floating-toolbar/nav-up-icon.js
+43 −0 packages/block-editor/src/components/floating-toolbar/styles.native.scss
+1 −0 packages/block-editor/src/components/index.native.js
+1 −0 packages/block-library/src/archives/index.js
+3 −3 packages/block-library/src/audio/edit.js
+1 −0 packages/block-library/src/categories/index.js
+1 −0 packages/block-library/src/latest-comments/index.js
+1 −0 packages/block-library/src/latest-posts/index.js
+31 −25 packages/block-library/src/navigation/edit.js
+1 −0 packages/block-library/src/tag-cloud/index.js
+5 −1 packages/components/src/custom-gradient-picker/control-points.js
+6 −2 packages/components/src/custom-gradient-picker/custom-gradient-bar.js
+3 −0 packages/e2e-tests/specs/experiments/multi-entity-saving.test.js
+13 −0 packages/e2e-tests/specs/experiments/navigation.test.js
+5 −0 packages/edit-post/src/components/layout/index.native.js
+11 −0 packages/icons/src/index.js
+16 −0 packages/icons/src/library/box.js
+12 −0 packages/icons/src/library/currency-dollar.js
+12 −0 packages/icons/src/library/currency-euro.js
+15 −0 packages/icons/src/library/currency-pound.js
+16 −0 packages/icons/src/library/inbox.js
+16 −0 packages/icons/src/library/institution.js
+2 −2 packages/icons/src/library/page.js
+16 −0 packages/icons/src/library/payment.js
+16 −0 packages/icons/src/library/percent.js
+16 −0 packages/icons/src/library/receipt.js
+12 −0 packages/icons/src/library/shipping.js
+12 −0 packages/icons/src/library/star.js
+12 −0 packages/icons/src/library/trending-down.js
+12 −0 packages/icons/src/library/trending-up.js
+1 −1 packages/interface/src/components/interface-skeleton/style.scss
+1 −0 packages/scripts/CHANGELOG.md
+56 −31 packages/scripts/scripts/check-licenses.js

0 comments on commit 8acfb12

Please sign in to comment.