Skip to content

Commit

Permalink
Add selectionStart and selectionEnd to transientEdits (#2285)
Browse files Browse the repository at this point in the history
  • Loading branch information
dratwas authored May 25, 2020
1 parent b193c71 commit 9ecd115
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
Expand Up @@ -6,6 +6,7 @@
* [*] Fix merging of text blocks when text had active formatting (bold, italic, strike, link)
* [***] Trash icon that is used to remove blocks is moved to the new menu reachable via ellipsis button in the block toolbar
* [**] Block toolbar can now collapse when the block width is smaller than the toolbar content
* [**] Creating undo levels less frequently

1.28.0
------
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 84 files
+1 −1 bin/api-docs/are-api-docs-unstaged.js
+2 −2 bin/api-docs/update-api-docs.js
+8 −0 bin/generate-public-grammar.js
+2 −2 bin/plugin/commands/changelog.js
+1 −1 bin/plugin/commands/common.js
+1 −1 bin/plugin/lib/utils.js
+1 −1 docs/tool/index.js
+1 −1 docs/tool/manifest.js
+18 −0 package-lock.json
+3 −1 package.json
+29 −0 packages/README.md
+5 −2 packages/block-editor/src/components/inner-blocks/README.md
+37 −29 packages/block-editor/src/components/link-control/index.js
+2 −1 packages/block-editor/src/components/link-control/search-input.js
+5 −0 packages/block-editor/src/components/link-control/style.scss
+12 −9 packages/block-editor/src/components/use-moving-animation/index.js
+1 −1 packages/block-library/src/buttons/style.scss
+405 −505 packages/block-library/src/image/edit.js
+8 −9 packages/block-library/src/image/image-size.js
+1 −4 packages/block-library/src/index.js
+3 −0 packages/block-serialization-spec-parser/bin/create-php-parser.js
+7 −4 packages/core-data/src/entity-provider.js
+1 −1 packages/create-block/lib/templates/es5/readme.txt.mustache
+1 −1 packages/create-block/lib/templates/esnext/readme.txt.mustache
+1 −3 packages/custom-templated-path-webpack-plugin/test/fixtures/webpack.config.js
+3 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/combine-assets/webpack.config.js
+3 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/dynamic-import/webpack.config.js
+3 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/function-output-filename/webpack.config.js
+3 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/no-default/webpack.config.js
+3 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/no-deps/webpack.config.js
+3 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/output-format-json/webpack.config.js
+3 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/overrides/webpack.config.js
+3 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/with-externs/webpack.config.js
+3 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/wordpress-require/webpack.config.js
+3 −0 packages/docgen/bin/cli.js
+2 −2 packages/docgen/src/engine.js
+2 −2 packages/docgen/src/get-intermediate-representation.js
+2 −2 packages/docgen/src/get-jsdoc-from-token.js
+1 −1 packages/docgen/src/get-leading-comments.js
+2 −2 packages/docgen/src/markdown/index.js
+1 −1 packages/docgen/src/test/engine.js
+1 −1 packages/docgen/src/test/formatter-markdown.js
+2 −2 packages/docgen/src/test/get-export-entries.js
+2 −2 packages/docgen/src/test/get-intermediate-representation.js
+1 −1 packages/docgen/src/test/get-jsdoc-from-token.js
+1 −1 packages/docgen/src/test/get-type-as-string.js
+3 −0 packages/e2e-tests/config/performance-reporter.js
+2 −0 packages/edit-site/package.json
+9 −7 packages/edit-site/src/components/block-editor/index.js
+1 −0 packages/edit-site/src/components/header/index.js
+35 −27 packages/edit-site/src/components/header/more-menu/index.js
+26 −0 packages/edit-site/src/components/header/tools-more-menu-group/index.js
+47 −17 packages/edit-site/src/components/navigate-to-link/index.js
+19 −3 packages/edit-site/src/components/page-switcher/index.js
+20 −0 packages/edit-site/src/components/page-switcher/style.scss
+23 −0 packages/edit-site/src/index.js
+41 −0 packages/edit-site/src/plugins/index.js
+1 −0 packages/edit-site/src/style.scss
+2 −0 packages/editor/src/components/provider/index.native.js
+9 −5 packages/env/lib/config.js
+47 −0 packages/env/test/config.js
+5 −1 packages/eslint-plugin/CHANGELOG.md
+56 −0 packages/eslint-plugin/rules/__tests__/dependency-group.js
+68 −33 packages/eslint-plugin/rules/dependency-group.js
+13 −0 packages/eslint-plugin/tsconfig.json
+3 −0 packages/eslint-plugin/utils/index.js
+2 −0 packages/format-library/src/link/index.js
+7 −0 packages/format-library/src/link/inline.js
+6 −1 packages/format-library/src/link/utils.js
+7 −0 packages/hooks/benchmark/index.js
+7 −0 packages/i18n/benchmark/index.js
+3 −0 packages/i18n/tools/pot-to-php.js
+1 −1 packages/library-export-default-webpack-plugin/test/fixtures/webpack.config.js
+1 −1 packages/project-management-automation/lib/index.js
+3 −3 packages/rich-text/src/component/index.native.js
+1 −1 packages/scripts/scripts/env/cli.js
+1 −1 packages/scripts/scripts/env/docker-run.js
+1 −1 packages/scripts/scripts/env/lint-php.js
+1 −1 packages/scripts/scripts/env/reinstall.js
+1 −1 packages/scripts/scripts/env/stop.js
+1 −1 packages/scripts/scripts/env/test-php.js
+1 −1 packages/scripts/scripts/format-js.js
+3 −0 test/unit/scripts/babel-transformer.js
+1 −0 tsconfig.json

0 comments on commit 9ecd115

Please sign in to comment.