diff --git a/.changeset/better-turkeys-give.md b/.changeset/better-turkeys-give.md deleted file mode 100644 index 818ccc7..0000000 --- a/.changeset/better-turkeys-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@scouterna/ui-webc": minor ---- - -Add support for checkbox and radio button to list view item diff --git a/.changeset/chatty-kings-tan.md b/.changeset/chatty-kings-tan.md deleted file mode 100644 index 8c6684b..0000000 --- a/.changeset/chatty-kings-tan.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@scouterna/ui-react": minor -"@scouterna/ui-webc": minor ---- - -Added list view subheader diff --git a/.changeset/funky-ants-beg.md b/.changeset/funky-ants-beg.md deleted file mode 100644 index 6950462..0000000 --- a/.changeset/funky-ants-beg.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@scouterna/ui-react": minor -"@scouterna/ui-webc": minor ---- - -Add iconOnly option to button diff --git a/.changeset/new-ghosts-itch.md b/.changeset/new-ghosts-itch.md deleted file mode 100644 index 8dfe547..0000000 --- a/.changeset/new-ghosts-itch.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@scouterna/ui-react": minor -"@scouterna/ui-webc": minor ---- - -Add app bar component diff --git a/.changeset/tender-chairs-doubt.md b/.changeset/tender-chairs-doubt.md deleted file mode 100644 index a841bab..0000000 --- a/.changeset/tender-chairs-doubt.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@scouterna/ui-react": patch -"@scouterna/ui-webc": patch ---- - -Align all input components diff --git a/.changeset/wicked-books-peel.md b/.changeset/wicked-books-peel.md deleted file mode 100644 index 7749924..0000000 --- a/.changeset/wicked-books-peel.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@scouterna/ui-react": minor -"@scouterna/ui-webc": minor ---- - -Add radio button component diff --git a/packages/ui-react/CHANGELOG.md b/packages/ui-react/CHANGELOG.md index 19254e4..0e7ce1d 100644 --- a/packages/ui-react/CHANGELOG.md +++ b/packages/ui-react/CHANGELOG.md @@ -1,5 +1,24 @@ # @scouterna/ui-react +## 2.2.0 + +### Minor Changes + +- [#73](https://github.com/Scouterna/j26-components/pull/73) [`6809433`](https://github.com/Scouterna/j26-components/commit/680943319672245a54532e3cc9010bac2a606994) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Added list view subheader + +- [#77](https://github.com/Scouterna/j26-components/pull/77) [`f2e4ab2`](https://github.com/Scouterna/j26-components/commit/f2e4ab23f967cdb86e9b4649b2ca0f057ba24060) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Add iconOnly option to button + +- [#77](https://github.com/Scouterna/j26-components/pull/77) [`f2e4ab2`](https://github.com/Scouterna/j26-components/commit/f2e4ab23f967cdb86e9b4649b2ca0f057ba24060) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Add app bar component + +- [#81](https://github.com/Scouterna/j26-components/pull/81) [`2fcac32`](https://github.com/Scouterna/j26-components/commit/2fcac325abb76033d03f65e470022d0c1f469a2f) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Add radio button component + +### Patch Changes + +- [#81](https://github.com/Scouterna/j26-components/pull/81) [`2fcac32`](https://github.com/Scouterna/j26-components/commit/2fcac325abb76033d03f65e470022d0c1f469a2f) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Align all input components + +- Updated dependencies [[`d85c9e6`](https://github.com/Scouterna/j26-components/commit/d85c9e60588c9b35b0093eeccb08241c9f1e7924), [`6809433`](https://github.com/Scouterna/j26-components/commit/680943319672245a54532e3cc9010bac2a606994), [`f2e4ab2`](https://github.com/Scouterna/j26-components/commit/f2e4ab23f967cdb86e9b4649b2ca0f057ba24060), [`f2e4ab2`](https://github.com/Scouterna/j26-components/commit/f2e4ab23f967cdb86e9b4649b2ca0f057ba24060), [`2fcac32`](https://github.com/Scouterna/j26-components/commit/2fcac325abb76033d03f65e470022d0c1f469a2f), [`2fcac32`](https://github.com/Scouterna/j26-components/commit/2fcac325abb76033d03f65e470022d0c1f469a2f)]: + - @scouterna/ui-webc@2.2.0 + ## 2.1.0 ### Minor Changes diff --git a/packages/ui-react/package.json b/packages/ui-react/package.json index 38ead03..a3ea6d4 100644 --- a/packages/ui-react/package.json +++ b/packages/ui-react/package.json @@ -1,6 +1,6 @@ { "name": "@scouterna/ui-react", - "version": "2.1.0", + "version": "2.2.0", "description": "Scouterna Design System React Components", "main": "dist/index.js", "module": "dist/index.js", diff --git a/packages/ui-webc/CHANGELOG.md b/packages/ui-webc/CHANGELOG.md index e51a419..3b03a42 100644 --- a/packages/ui-webc/CHANGELOG.md +++ b/packages/ui-webc/CHANGELOG.md @@ -1,5 +1,23 @@ # @scouterna/ui-webc +## 2.2.0 + +### Minor Changes + +- [#82](https://github.com/Scouterna/j26-components/pull/82) [`d85c9e6`](https://github.com/Scouterna/j26-components/commit/d85c9e60588c9b35b0093eeccb08241c9f1e7924) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Add support for checkbox and radio button to list view item + +- [#73](https://github.com/Scouterna/j26-components/pull/73) [`6809433`](https://github.com/Scouterna/j26-components/commit/680943319672245a54532e3cc9010bac2a606994) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Added list view subheader + +- [#77](https://github.com/Scouterna/j26-components/pull/77) [`f2e4ab2`](https://github.com/Scouterna/j26-components/commit/f2e4ab23f967cdb86e9b4649b2ca0f057ba24060) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Add iconOnly option to button + +- [#77](https://github.com/Scouterna/j26-components/pull/77) [`f2e4ab2`](https://github.com/Scouterna/j26-components/commit/f2e4ab23f967cdb86e9b4649b2ca0f057ba24060) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Add app bar component + +- [#81](https://github.com/Scouterna/j26-components/pull/81) [`2fcac32`](https://github.com/Scouterna/j26-components/commit/2fcac325abb76033d03f65e470022d0c1f469a2f) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Add radio button component + +### Patch Changes + +- [#81](https://github.com/Scouterna/j26-components/pull/81) [`2fcac32`](https://github.com/Scouterna/j26-components/commit/2fcac325abb76033d03f65e470022d0c1f469a2f) Thanks [@scriptcoded](https://github.com/scriptcoded)! - Align all input components + ## 2.1.0 ### Minor Changes diff --git a/packages/ui-webc/package.json b/packages/ui-webc/package.json index fe294e3..b7a77a9 100644 --- a/packages/ui-webc/package.json +++ b/packages/ui-webc/package.json @@ -1,6 +1,6 @@ { "name": "@scouterna/ui-webc", - "version": "2.1.0", + "version": "2.2.0", "type": "module", "description": "Scouterna Design System Web Components", "main": "dist/index.cjs.js",