Skip to content

Commit

Permalink
Radial gradient infrastructure (#2277)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewalczak authored Jun 17, 2020
1 parent 031a963 commit 342f224
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
1.31.0
------
* [**] Add support for customizing gradient type and angle in Buttons and Cover blocks.
* [*] Show content information (block, word and characters counts).

1.30.0
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 31 files
+1 −1 packages/base-styles/_variables.scss
+0 −11 packages/block-editor/src/components/block-list-appender/style.scss
+20 −9 packages/block-editor/src/components/block-list/index.js
+15 −2 packages/block-editor/src/components/block-list/style.scss
+4 −8 packages/block-editor/src/components/block-parent-selector/style.scss
+3 −4 packages/block-editor/src/components/block-switcher/style.scss
+186 −71 packages/block-editor/src/components/use-block-drop-zone/index.js
+314 −0 packages/block-editor/src/components/use-block-drop-zone/test/index.js
+13 −14 packages/block-library/src/cover/edit.native.js
+2 −2 packages/block-library/src/cover/overlay-color-settings.native.js
+2 −9 packages/components/src/color-control/index.native.js
+2 −2 packages/components/src/color-indicator/style.native.scss
+112 −12 packages/components/src/color-palette/index.native.js
+19 −0 packages/components/src/color-palette/style.native.scss
+115 −0 packages/components/src/custom-gradient-picker/index.native.js
+3 −0 packages/components/src/custom-gradient-picker/style.native.scss
+1 −0 packages/components/src/index.native.js
+4 −4 packages/components/src/mobile/bottom-sheet/color-cell.native.js
+4 −10 packages/components/src/mobile/bottom-sheet/index.native.js
+8 −1 packages/components/src/mobile/bottom-sheet/navigation-header.native.js
+38 −0 packages/components/src/mobile/bottom-sheet/radio-cell.native.js
+10 −0 packages/components/src/mobile/bottom-sheet/styles.native.scss
+64 −18 packages/components/src/mobile/color-settings/index.native.js
+6 −0 packages/components/src/mobile/color-settings/utils.native.js
+28 −13 packages/components/src/mobile/gradient/index.native.js
+5 −0 packages/components/src/mobile/gradient/style.native.scss
+16 −0 packages/components/src/mobile/layout-animation/index.native.js
+14 −12 packages/components/src/mobile/segmented-control/index.native.js
+24 −0 packages/components/src/radio-control/index.native.js
+7 −5 packages/e2e-test-utils/src/transform-block-to.js
+18 −14 packages/edit-navigation/src/components/menu-locations-editor/index.js
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@
"emotion-theming": "^10.0.27",
"fast-average-color": "^4.3.0",
"gettext-parser": "^4.0.2",
"gradient-parser": "0.1.5",
"hpq": "^1.2.0",
"jed": "^1.1.1",
"jest-serializer-enzyme": "^1.0.0",
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7704,6 +7704,11 @@ graceful-fs@^4.2.0:
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==

[email protected]:
version "0.1.5"
resolved "https://registry.yarnpkg.com/gradient-parser/-/gradient-parser-0.1.5.tgz#0c7e2179559e5ce7d8d71f4423af937100b2248c"
integrity sha1-DH4heVWeXOfY1x9EI6+TcQCyJIw=

grapheme-splitter@^1.0.2:
version "1.0.4"
resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
Expand Down

0 comments on commit 342f224

Please sign in to comment.