Skip to content
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
Expand Up @@ -3,6 +3,7 @@ Unreleased
* [**] Add media inserter buttons to editor toolbar [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5900]
* [**] Update native BlockOutline component styles to remove blue border from blocks [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5833]
* [**] Move the undo/redo buttons to the navigation bar [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5889]
* [**] Update Editor block inserter button styles and default text input placeholder/selection styles [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5941]

1.99.0
---
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 71 files
+1 −1 docs/reference-guides/core-blocks.md
+25 −0 lib/compat/wordpress-6.3/footnotes.php
+31 −0 lib/experimental/interactivity-api/class-wp-directive-processor.php
+3 −3 lib/experimental/interactivity-api/directive-processing.php
+1 −0 lib/load.php
+6 −0 package-lock.json
+13 −4 packages/block-editor/src/components/block-draggable/index.js
+17 −5 packages/block-editor/src/components/global-styles/typography-panel.js
+17 −36 packages/block-editor/src/components/inserter/index.native.js
+10 −15 packages/block-editor/src/components/inserter/style.native.scss
+7 −1 packages/block-editor/src/components/link-control/style.scss
+12 −5 packages/block-editor/src/components/use-block-display-information/index.js
+10 −1 packages/block-editor/src/store/selectors.js
+1 −0 packages/block-library/package.json
+2 −0 packages/block-library/src/audio/test/__snapshots__/edit.native.js.snap
+1 −0 packages/block-library/src/avatar/edit.js
+1 −1 packages/block-library/src/block/block.json
+1 −0 packages/block-library/src/columns/edit.js
+1 −0 packages/block-library/src/comment-author-avatar/edit.js
+17 −0 packages/block-library/src/file/index.php
+1 −0 packages/block-library/src/file/inspector.js
+2 −0 packages/block-library/src/file/test/__snapshots__/edit.native.js.snap
+18 −0 packages/block-library/src/file/view-interactivity.js
+5 −14 packages/block-library/src/file/view.js
+21 −15 packages/block-library/src/footnotes/format.js
+1 −1 packages/block-library/src/gallery/edit.js
+1 −0 packages/block-library/src/latest-comments/edit.js
+2 −0 packages/block-library/src/latest-posts/edit.js
+129 −33 packages/block-library/src/list/test/edit.native.js
+1 −1 packages/block-library/src/navigation/block.json
+18 −3 packages/block-library/src/navigation/index.php
+196 −0 packages/block-library/src/navigation/view-interactivity.js
+78 −0 packages/block-library/src/navigation/view-modal.js
+67 −189 packages/block-library/src/navigation/view.js
+1 −0 packages/block-library/src/paragraph/test/__snapshots__/edit.native.js.snap
+26 −0 packages/block-library/src/paragraph/test/edit.native.js
+2 −0 packages/block-library/src/preformatted/test/__snapshots__/edit.native.js.snap
+3 −0 packages/block-library/src/rss/edit.js
+7 −0 packages/block-library/src/search/test/__snapshots__/edit.native.js.snap
+1 −0 packages/block-library/src/site-logo/edit.js
+1 −0 packages/block-library/src/tag-cloud/edit.js
+1 −0 packages/block-library/src/text-columns/edit.js
+2 −0 packages/components/src/button/index.native.js
+1 −0 packages/components/src/query-controls/index.native.js
+1 −0 packages/components/src/query-controls/index.tsx
+9 −13 packages/e2e-tests/plugins/block-context.php
+1 −1 packages/e2e-tests/specs/editor/various/reusable-blocks.test.js
+8 −32 packages/edit-post/src/components/header/header-toolbar/index.native.js
+0 −4 packages/edit-site/src/components/block-editor/index.js
+14 −10 packages/edit-site/src/components/block-editor/use-site-editor-settings.js
+1 −0 packages/edit-site/src/components/layout/style.scss
+17 −0 packages/edit-site/src/components/resizable-frame/style.scss
+10 −1 packages/edit-site/src/components/sidebar-navigation-item/style.scss
+4 −3 packages/edit-site/src/components/sidebar-navigation-screen-navigation-menu/index.js
+3 −3 packages/edit-site/src/components/sidebar-navigation-screen-page/index.js
+5 −2 packages/edit-site/src/components/sidebar-navigation-screen-pattern/index.js
+2 −1 packages/edit-site/src/components/sidebar-navigation-screen-pattern/template-part-navigation-menu.js
+2 −1 packages/edit-site/src/components/sidebar-navigation-screen-pattern/template-part-navigation-menus.js
+3 −0 packages/edit-site/src/components/sidebar-navigation-screen-pattern/use-pattern-details.js
+20 −18 packages/edit-site/src/components/sidebar-navigation-screen-patterns/index.js
+5 −1 packages/edit-site/src/components/site-hub/index.js
+5 −0 packages/edit-site/src/components/site-hub/style.scss
+8 −2 packages/edit-site/src/components/sync-state-with-url/use-init-edited-entity-from-url.js
+6 −1 packages/edit-site/src/components/use-edited-entity-record/index.js
+11 −0 packages/edit-site/src/utils/normalize-record-key.js
+1 −0 packages/react-native-editor/CHANGELOG.md
+41 −1 packages/rich-text/src/component/index.native.js
+9 −1 packages/rich-text/src/component/style.native.scss
+98 −38 schemas/json/theme.json
+3 −0 test/native/__mocks__/styleMock.js
+36 −11 test/native/integration/editor-history.native.js