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

Prep layout grid 1.3 #138

Merged
merged 3 commits into from
Sep 2, 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
4 changes: 2 additions & 2 deletions blocks/layout-grid/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function registerBlock() {
title: __( 'Layout Grid', 'layout-grid' ),
description: __( 'Align blocks to a global grid, with support for responsive breakpoints.', 'layout-grid' ),
icon: GridIcon,
category: 'layout',
category: 'design',
supports: {
align: [ 'full' ],
html: false,
Expand Down Expand Up @@ -96,7 +96,7 @@ export function registerBlock() {
description: __( 'A column used inside a Layout Grid block.', 'layout-grid' ),
title: __( 'Column', 'layout-grid' ),
icon: GridColumnIcon,
category: 'layout',
category: 'design',
parent: [ 'jetpack/layout-grid' ],
supports: {
inserter: false,
Expand Down
6 changes: 4 additions & 2 deletions bundler/resources/jetpack-layout-grid/readme.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
=== Layout Grid Block ===
Contributors: automattic, jasmussen, johnny5, mkaz
Stable tag: 1.3
Tested up to: 5.4.2
Requires at least: 5.4
Tested up to: 5.5
Requires at least: 5.5
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: blocks, layout, grid, design

A Gutenberg container block to let you align items consistently across a global grid.

Expand All @@ -26,6 +27,7 @@ You can follow development, file an issue, suggest features, and view the source
= 1.3 - 21st July 2020 =
* Add vertical alignment to grid and grid columns
* Mirror grid device breakpoint with editor preview breakpoint (requires WP 5.5 or Gutenberg plugin)
* Bump minimum WordPress version to 5.5

= 1.2.4 - 14th July 2020 =
* Fix some blocks breaking outside of the grid in Firefox
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,38 +24,38 @@
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@testing-library/react": "^10.4.7",
"@types/jest": "^26.0.7",
"@types/mocha": "^8.0.0",
"@testing-library/react": "^10.4.9",
"@types/jest": "^26.0.12",
"@types/mocha": "^8.0.3",
"@wordpress/env": "^1.6.0",
"@wordpress/icons": "^2.4.0",
"@wordpress/jest-preset-default": "^6.2.0",
"@wordpress/prettier-config": "^0.3.0",
"@wordpress/scripts": "^12.1.1",
"autoprefixer": "^9.8.5",
"autoprefixer": "^9.8.6",
"blockbook-cli": "^0.7.0",
"eslint": "^7.5.0",
"eslint": "^7.8.1",
"eslint-config-wpcalypso": "^6.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.19.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-wpcalypso": "^5.0.0",
"fs-extra": "^9.0.1",
"jest-image-snapshot": "^4.1.0",
"jest-image-snapshot": "^4.2.0",
"jest-puppeteer": "^4.4.0",
"jest-transform-css": "^2.0.0",
"jest-transform-file": "^1.1.1",
"jsdom-screenshot": "^3.2.0",
"node-sass": "^4.14.1",
"postcss-cli": "^7.1.1",
"postcss-cli": "^7.1.2",
"puppeteer": "^5.2.1",
"replace-in-file": "^6.1.0",
"stringcase": "^4.3.1"
},
"dependencies": {
"@wordpress/block-editor": "^4.3.3",
"@wordpress/block-editor": "^4.3.7",
"@wordpress/blocks": "^6.20.3",
"classnames": "^2.2.6",
"fast-average-color": "^6.0.2",
Expand Down
Loading