From da7666b65a0085a3a5b34231ba215cd64fa9ef59 Mon Sep 17 00:00:00 2001 From: Jarvis1010 Date: Wed, 22 Jun 2022 22:59:59 +0000 Subject: [PATCH] Publish - @bedrock-layout/bedrock-layout-css@2.0.0 - @bedrock-layout/column-drop@2.0.0 - @bedrock-layout/grid@3.0.0 - @bedrock-layout/inline@3.0.0 - @bedrock-layout/masonry-grid@3.0.0 - @bedrock-layout/primitives@2.0.0 --- packages/bedrock-layout-css/CHANGELOG.md | 20 ++++++++++++++++++++ packages/bedrock-layout-css/package.json | 2 +- packages/column-drop/CHANGELOG.md | 20 ++++++++++++++++++++ packages/column-drop/package.json | 2 +- packages/grid/CHANGELOG.md | 17 +++++++++++++++++ packages/grid/package.json | 2 +- packages/inline/CHANGELOG.md | 17 +++++++++++++++++ packages/inline/package.json | 2 +- packages/masonry-grid/CHANGELOG.md | 17 +++++++++++++++++ packages/masonry-grid/package.json | 4 ++-- packages/primitives/CHANGELOG.md | 20 ++++++++++++++++++++ packages/primitives/package.json | 10 +++++----- 12 files changed, 122 insertions(+), 11 deletions(-) diff --git a/packages/bedrock-layout-css/CHANGELOG.md b/packages/bedrock-layout-css/CHANGELOG.md index be9e82b1fd..b36b380f86 100644 --- a/packages/bedrock-layout-css/CHANGELOG.md +++ b/packages/bedrock-layout-css/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/Bedrock-Layouts/Bedrock/compare/@bedrock-layout/bedrock-layout-css@1.5.10...@bedrock-layout/bedrock-layout-css@2.0.0) (2022-06-22) + + +### Features + +* **columndrop:** change basis prop to be minItemWidth ([68c2a0f](https://github.com/Bedrock-Layouts/Bedrock/commit/68c2a0fbd07f6ea218c1cfe1a4ee05db0f909184)), closes [#1178](https://github.com/Bedrock-Layouts/Bedrock/issues/1178) +* **inline:** add min item width to the inline component ([100a4b7](https://github.com/Bedrock-Layouts/Bedrock/commit/100a4b792b1d412c6939bb38c6a3cc7d26ee7fa8)) + + +### BREAKING CHANGES + +* **inline:** Previously the inline component would attempt to fit all the content when you did +the switchAt prop. This will no longer be the case +* **columndrop:** basis will no longer be a valid prop for column-drop. From now on use +minItemWidth. + + + + + ## [1.5.10](https://github.com/Bedrock-Layouts/Bedrock/compare/@bedrock-layout/bedrock-layout-css@1.5.9...@bedrock-layout/bedrock-layout-css@1.5.10) (2022-06-10) **Note:** Version bump only for package @bedrock-layout/bedrock-layout-css diff --git a/packages/bedrock-layout-css/package.json b/packages/bedrock-layout-css/package.json index 8963ea8591..2479fddf94 100644 --- a/packages/bedrock-layout-css/package.json +++ b/packages/bedrock-layout-css/package.json @@ -1,6 +1,6 @@ { "name": "@bedrock-layout/bedrock-layout-css", - "version": "1.5.10", + "version": "2.0.0", "description": "bedrock-layout css version", "sideEffects": false, "private": false, diff --git a/packages/column-drop/CHANGELOG.md b/packages/column-drop/CHANGELOG.md index fb272e8c48..bafb298bc3 100644 --- a/packages/column-drop/CHANGELOG.md +++ b/packages/column-drop/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/Bedrock-Layouts/Bedrock/compare/@bedrock-layout/column-drop@1.4.4...@bedrock-layout/column-drop@2.0.0) (2022-06-22) + + +### Features + +* **columndrop:** change basis prop to be minItemWidth ([68c2a0f](https://github.com/Bedrock-Layouts/Bedrock/commit/68c2a0fbd07f6ea218c1cfe1a4ee05db0f909184)), closes [#1178](https://github.com/Bedrock-Layouts/Bedrock/issues/1178) +* **inline:** add min item width to the inline component ([100a4b7](https://github.com/Bedrock-Layouts/Bedrock/commit/100a4b792b1d412c6939bb38c6a3cc7d26ee7fa8)) + + +### BREAKING CHANGES + +* **inline:** Previously the inline component would attempt to fit all the content when you did +the switchAt prop. This will no longer be the case +* **columndrop:** basis will no longer be a valid prop for column-drop. From now on use +minItemWidth. + + + + + ## 1.4.4 (2022-06-10) diff --git a/packages/column-drop/package.json b/packages/column-drop/package.json index 526d487512..3b1a2ed73c 100644 --- a/packages/column-drop/package.json +++ b/packages/column-drop/package.json @@ -1,6 +1,6 @@ { "name": "@bedrock-layout/column-drop", - "version": "1.4.4", + "version": "2.0.0", "description": "bedrock-layout column-drop", "sideEffects": false, "private": false, diff --git a/packages/grid/CHANGELOG.md b/packages/grid/CHANGELOG.md index be28c5406d..dd0a1b3ca7 100644 --- a/packages/grid/CHANGELOG.md +++ b/packages/grid/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.0.0](https://github.com/Bedrock-Layouts/Bedrock/compare/@bedrock-layout/grid@2.4.4...@bedrock-layout/grid@3.0.0) (2022-06-22) + + +### Features + +* **inline:** add min item width to the inline component ([100a4b7](https://github.com/Bedrock-Layouts/Bedrock/commit/100a4b792b1d412c6939bb38c6a3cc7d26ee7fa8)) + + +### BREAKING CHANGES + +* **inline:** Previously the inline component would attempt to fit all the content when you did +the switchAt prop. This will no longer be the case + + + + + ## 2.4.4 (2022-06-10) diff --git a/packages/grid/package.json b/packages/grid/package.json index caaa85af01..3d7be8b2ec 100644 --- a/packages/grid/package.json +++ b/packages/grid/package.json @@ -1,6 +1,6 @@ { "name": "@bedrock-layout/grid", - "version": "2.4.4", + "version": "3.0.0", "description": "bedrock-layout grid", "sideEffects": false, "private": false, diff --git a/packages/inline/CHANGELOG.md b/packages/inline/CHANGELOG.md index 758ad0cf31..c5c8256351 100644 --- a/packages/inline/CHANGELOG.md +++ b/packages/inline/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.0.0](https://github.com/Bedrock-Layouts/Bedrock/compare/@bedrock-layout/inline@2.5.4...@bedrock-layout/inline@3.0.0) (2022-06-22) + + +### Features + +* **inline:** add min item width to the inline component ([100a4b7](https://github.com/Bedrock-Layouts/Bedrock/commit/100a4b792b1d412c6939bb38c6a3cc7d26ee7fa8)) + + +### BREAKING CHANGES + +* **inline:** Previously the inline component would attempt to fit all the content when you did +the switchAt prop. This will no longer be the case + + + + + ## 2.5.4 (2022-06-10) diff --git a/packages/inline/package.json b/packages/inline/package.json index 5baf6cab9c..da43ce93af 100644 --- a/packages/inline/package.json +++ b/packages/inline/package.json @@ -1,6 +1,6 @@ { "name": "@bedrock-layout/inline", - "version": "2.5.4", + "version": "3.0.0", "description": "bedrock-layout inline", "sideEffects": false, "private": false, diff --git a/packages/masonry-grid/CHANGELOG.md b/packages/masonry-grid/CHANGELOG.md index b4ca1d76ea..b38d5a8a2c 100644 --- a/packages/masonry-grid/CHANGELOG.md +++ b/packages/masonry-grid/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.0.0](https://github.com/Bedrock-Layouts/Bedrock/compare/@bedrock-layout/masonry-grid@2.6.6...@bedrock-layout/masonry-grid@3.0.0) (2022-06-22) + + +### Features + +* **inline:** add min item width to the inline component ([100a4b7](https://github.com/Bedrock-Layouts/Bedrock/commit/100a4b792b1d412c6939bb38c6a3cc7d26ee7fa8)) + + +### BREAKING CHANGES + +* **inline:** Previously the inline component would attempt to fit all the content when you did +the switchAt prop. This will no longer be the case + + + + + ## 2.6.6 (2022-06-10) diff --git a/packages/masonry-grid/package.json b/packages/masonry-grid/package.json index 701b420be6..6909caf279 100644 --- a/packages/masonry-grid/package.json +++ b/packages/masonry-grid/package.json @@ -1,6 +1,6 @@ { "name": "@bedrock-layout/masonry-grid", - "version": "2.6.6", + "version": "3.0.0", "description": "bedrock-layout masonry-grid", "sideEffects": false, "private": false, @@ -35,7 +35,7 @@ "lib" ], "dependencies": { - "@bedrock-layout/grid": "^2.4.4", + "@bedrock-layout/grid": "^3.0.0", "@bedrock-layout/spacing-constants": "^2.8.3", "@bedrock-layout/use-resize-observer": "^1.2.3" }, diff --git a/packages/primitives/CHANGELOG.md b/packages/primitives/CHANGELOG.md index b967690db1..4917b94f93 100644 --- a/packages/primitives/CHANGELOG.md +++ b/packages/primitives/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/Bedrock-Layouts/Bedrock/compare/@bedrock-layout/primitives@1.4.9...@bedrock-layout/primitives@2.0.0) (2022-06-22) + + +### Features + +* **columndrop:** change basis prop to be minItemWidth ([68c2a0f](https://github.com/Bedrock-Layouts/Bedrock/commit/68c2a0fbd07f6ea218c1cfe1a4ee05db0f909184)), closes [#1178](https://github.com/Bedrock-Layouts/Bedrock/issues/1178) +* **inline:** add min item width to the inline component ([100a4b7](https://github.com/Bedrock-Layouts/Bedrock/commit/100a4b792b1d412c6939bb38c6a3cc7d26ee7fa8)) + + +### BREAKING CHANGES + +* **inline:** Previously the inline component would attempt to fit all the content when you did +the switchAt prop. This will no longer be the case +* **columndrop:** basis will no longer be a valid prop for column-drop. From now on use +minItemWidth. + + + + + ## [1.4.9](https://github.com/Bedrock-Layouts/Bedrock/compare/@bedrock-layout/primitives@1.4.8...@bedrock-layout/primitives@1.4.9) (2022-06-10) diff --git a/packages/primitives/package.json b/packages/primitives/package.json index 189c1371d9..7984dee43f 100644 --- a/packages/primitives/package.json +++ b/packages/primitives/package.json @@ -1,6 +1,6 @@ { "name": "@bedrock-layout/primitives", - "version": "1.4.9", + "version": "2.0.0", "description": "bedrock-layout primitives", "sideEffects": false, "private": false, @@ -41,15 +41,15 @@ "dependencies": { "@bedrock-layout/appboundary": "^2.5.4", "@bedrock-layout/center": "^2.6.4", - "@bedrock-layout/column-drop": "^1.4.4", + "@bedrock-layout/column-drop": "^2.0.0", "@bedrock-layout/columns": "^2.5.7", "@bedrock-layout/cover": "^2.4.4", "@bedrock-layout/css-reset": "^1.3.8", "@bedrock-layout/frame": "^2.4.5", - "@bedrock-layout/grid": "^2.4.4", - "@bedrock-layout/inline": "^2.5.4", + "@bedrock-layout/grid": "^3.0.0", + "@bedrock-layout/inline": "^3.0.0", "@bedrock-layout/inline-cluster": "^2.6.4", - "@bedrock-layout/masonry-grid": "^2.6.6", + "@bedrock-layout/masonry-grid": "^3.0.0", "@bedrock-layout/padbox": "^2.3.4", "@bedrock-layout/reel": "^1.3.4", "@bedrock-layout/register-resize-callback": "^1.1.2",