From 2e7d5e47d5b46b64282f8dd0ecc15a4a590fae41 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 10:14:52 +0100 Subject: [PATCH] ci: version packages (#78) --- .changeset/brown-foxes-exist.md | 8 -------- .changeset/slow-rivers-confess.md | 6 ------ .changeset/tender-buckets-attack.md | 5 ----- .changeset/wet-walls-promise.md | 8 -------- .../react-front-kit-dropzone/CHANGELOG.md | 8 ++++++++ .../react-front-kit-dropzone/package.json | 6 +++--- packages/react-front-kit-shared/CHANGELOG.md | 6 ++++++ packages/react-front-kit-shared/package.json | 2 +- packages/react-front-kit-table/CHANGELOG.md | 12 +++++++++++ packages/react-front-kit-table/package.json | 6 +++--- packages/react-front-kit/CHANGELOG.md | 19 ++++++++++++++++++ packages/react-front-kit/package.json | 4 ++-- packages/storybook-pages/CHANGELOG.md | 20 +++++++++++++++++++ packages/storybook-pages/package.json | 2 +- 14 files changed, 75 insertions(+), 37 deletions(-) delete mode 100644 .changeset/brown-foxes-exist.md delete mode 100644 .changeset/slow-rivers-confess.md delete mode 100644 .changeset/tender-buckets-attack.md delete mode 100644 .changeset/wet-walls-promise.md diff --git a/.changeset/brown-foxes-exist.md b/.changeset/brown-foxes-exist.md deleted file mode 100644 index f8ce9dee..00000000 --- a/.changeset/brown-foxes-exist.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@smile/react-front-kit': minor -'storybook-pages': minor ---- - -Extracted action bar from `ThumbnailGrid` into new component. -Added `ActionBar`, `SelectableList` and `DocumentList` components. -Updated `SearchPage` example page. diff --git a/.changeset/slow-rivers-confess.md b/.changeset/slow-rivers-confess.md deleted file mode 100644 index 2c7d63d1..00000000 --- a/.changeset/slow-rivers-confess.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@smile/react-front-kit': minor -'storybook-pages': minor ---- - -Add the filtersBar component and add it to the searchResult page diff --git a/.changeset/tender-buckets-attack.md b/.changeset/tender-buckets-attack.md deleted file mode 100644 index a8c1b863..00000000 --- a/.changeset/tender-buckets-attack.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@smile/react-front-kit': minor ---- - -Added `defaultOpened` prop to `CollapseButton` diff --git a/.changeset/wet-walls-promise.md b/.changeset/wet-walls-promise.md deleted file mode 100644 index 2a5a37a4..00000000 --- a/.changeset/wet-walls-promise.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@smile/react-front-kit-shared': minor -'@smile/react-front-kit-table': minor -'@smile/react-front-kit': minor -'storybook-pages': minor ---- - -Refactored actions in `ThumbnailGrid` and `TableGridView` components, moved `typeGuard` helper to shared package, added `typeGuardInterface` function, added tests diff --git a/packages/react-front-kit-dropzone/CHANGELOG.md b/packages/react-front-kit-dropzone/CHANGELOG.md index a87feaad..0e52790b 100644 --- a/packages/react-front-kit-dropzone/CHANGELOG.md +++ b/packages/react-front-kit-dropzone/CHANGELOG.md @@ -1,5 +1,13 @@ # @smile/react-front-kit-dropzone +## 0.6.0 + +### Patch Changes + +- Updated dependencies [[`0e819ee`](https://github.com/Smile-SA/react-front-kit/commit/0e819eebaa3b8feeb9ce1d1ae1ac37358c383d2e), [`7f276b2`](https://github.com/Smile-SA/react-front-kit/commit/7f276b27e9c2ca2b746ad0f39deaee49cbf8bb90), [`a0aa52b`](https://github.com/Smile-SA/react-front-kit/commit/a0aa52b8f10f264600704ec4aeee8a146d17cc9d), [`0ad5377`](https://github.com/Smile-SA/react-front-kit/commit/0ad5377535e7c19941da301e8a2ee7298ab70f91)]: + - @smile/react-front-kit@0.6.0 + - @smile/react-front-kit-shared@0.6.0 + ## 0.5.0 ### Patch Changes diff --git a/packages/react-front-kit-dropzone/package.json b/packages/react-front-kit-dropzone/package.json index 715cb593..573285b4 100644 --- a/packages/react-front-kit-dropzone/package.json +++ b/packages/react-front-kit-dropzone/package.json @@ -1,6 +1,6 @@ { "name": "@smile/react-front-kit-dropzone", - "version": "0.5.0", + "version": "0.6.0", "description": "Dropzone React component library based on mantine", "license": "MIT", "homepage": "https://github.com/Smile-SA/react-front-kit", @@ -47,8 +47,8 @@ "prepublishOnly": "npm run build && node ../../scripts/prepublish.mjs" }, "dependencies": { - "@smile/react-front-kit": "0.5.0", - "@smile/react-front-kit-shared": "0.5.0" + "@smile/react-front-kit": "0.6.0", + "@smile/react-front-kit-shared": "0.6.0" }, "devDependencies": { "@babel/preset-env": "^7.22.20", diff --git a/packages/react-front-kit-shared/CHANGELOG.md b/packages/react-front-kit-shared/CHANGELOG.md index c15acfbe..f74a1012 100644 --- a/packages/react-front-kit-shared/CHANGELOG.md +++ b/packages/react-front-kit-shared/CHANGELOG.md @@ -1,5 +1,11 @@ # @smile/react-front-kit-shared +## 0.6.0 + +### Minor Changes + +- [#74](https://github.com/Smile-SA/react-front-kit/pull/74) [`0ad5377`](https://github.com/Smile-SA/react-front-kit/commit/0ad5377535e7c19941da301e8a2ee7298ab70f91) Thanks [@QuentinLeCaignec](https://github.com/QuentinLeCaignec)! - Refactored actions in `ThumbnailGrid` and `TableGridView` components, moved `typeGuard` helper to shared package, added `typeGuardInterface` function, added tests + ## 0.5.0 ### Minor Changes diff --git a/packages/react-front-kit-shared/package.json b/packages/react-front-kit-shared/package.json index 67dcd659..f29570f0 100644 --- a/packages/react-front-kit-shared/package.json +++ b/packages/react-front-kit-shared/package.json @@ -1,6 +1,6 @@ { "name": "@smile/react-front-kit-shared", - "version": "0.5.0", + "version": "0.6.0", "description": "Shared elements for react-front-kit component library based on mantine", "license": "MIT", "homepage": "https://github.com/Smile-SA/react-front-kit", diff --git a/packages/react-front-kit-table/CHANGELOG.md b/packages/react-front-kit-table/CHANGELOG.md index f1b8b2c8..825f8ca9 100644 --- a/packages/react-front-kit-table/CHANGELOG.md +++ b/packages/react-front-kit-table/CHANGELOG.md @@ -1,5 +1,17 @@ # @smile/react-front-kit-table +## 0.6.0 + +### Minor Changes + +- [#74](https://github.com/Smile-SA/react-front-kit/pull/74) [`0ad5377`](https://github.com/Smile-SA/react-front-kit/commit/0ad5377535e7c19941da301e8a2ee7298ab70f91) Thanks [@QuentinLeCaignec](https://github.com/QuentinLeCaignec)! - Refactored actions in `ThumbnailGrid` and `TableGridView` components, moved `typeGuard` helper to shared package, added `typeGuardInterface` function, added tests + +### Patch Changes + +- Updated dependencies [[`0e819ee`](https://github.com/Smile-SA/react-front-kit/commit/0e819eebaa3b8feeb9ce1d1ae1ac37358c383d2e), [`7f276b2`](https://github.com/Smile-SA/react-front-kit/commit/7f276b27e9c2ca2b746ad0f39deaee49cbf8bb90), [`a0aa52b`](https://github.com/Smile-SA/react-front-kit/commit/a0aa52b8f10f264600704ec4aeee8a146d17cc9d), [`0ad5377`](https://github.com/Smile-SA/react-front-kit/commit/0ad5377535e7c19941da301e8a2ee7298ab70f91)]: + - @smile/react-front-kit@0.6.0 + - @smile/react-front-kit-shared@0.6.0 + ## 0.5.0 ### Minor Changes diff --git a/packages/react-front-kit-table/package.json b/packages/react-front-kit-table/package.json index 535b54c1..e0fa25ff 100644 --- a/packages/react-front-kit-table/package.json +++ b/packages/react-front-kit-table/package.json @@ -1,6 +1,6 @@ { "name": "@smile/react-front-kit-table", - "version": "0.5.0", + "version": "0.6.0", "description": "Table React component library based on mantine", "license": "MIT", "homepage": "https://github.com/Smile-SA/react-front-kit", @@ -61,8 +61,8 @@ "prepublishOnly": "npm run build && node ../../scripts/prepublish.mjs" }, "dependencies": { - "@smile/react-front-kit": "0.5.0", - "@smile/react-front-kit-shared": "0.5.0" + "@smile/react-front-kit": "0.6.0", + "@smile/react-front-kit-shared": "0.6.0" }, "devDependencies": { "@babel/preset-env": "^7.22.20", diff --git a/packages/react-front-kit/CHANGELOG.md b/packages/react-front-kit/CHANGELOG.md index d84a008b..2e7a31d6 100644 --- a/packages/react-front-kit/CHANGELOG.md +++ b/packages/react-front-kit/CHANGELOG.md @@ -1,5 +1,24 @@ # @smile/react-front-kit +## 0.6.0 + +### Minor Changes + +- [#80](https://github.com/Smile-SA/react-front-kit/pull/80) [`0e819ee`](https://github.com/Smile-SA/react-front-kit/commit/0e819eebaa3b8feeb9ce1d1ae1ac37358c383d2e) Thanks [@QuentinLeCaignec](https://github.com/QuentinLeCaignec)! - Extracted action bar from `ThumbnailGrid` into new component. + Added `ActionBar`, `SelectableList` and `DocumentList` components. + Updated `SearchPage` example page. + +- [#81](https://github.com/Smile-SA/react-front-kit/pull/81) [`7f276b2`](https://github.com/Smile-SA/react-front-kit/commit/7f276b27e9c2ca2b746ad0f39deaee49cbf8bb90) Thanks [@vapersmile](https://github.com/vapersmile)! - Add the filtersBar component and add it to the searchResult page + +- [#79](https://github.com/Smile-SA/react-front-kit/pull/79) [`a0aa52b`](https://github.com/Smile-SA/react-front-kit/commit/a0aa52b8f10f264600704ec4aeee8a146d17cc9d) Thanks [@QuentinLeCaignec](https://github.com/QuentinLeCaignec)! - Added `defaultOpened` prop to `CollapseButton` + +- [#74](https://github.com/Smile-SA/react-front-kit/pull/74) [`0ad5377`](https://github.com/Smile-SA/react-front-kit/commit/0ad5377535e7c19941da301e8a2ee7298ab70f91) Thanks [@QuentinLeCaignec](https://github.com/QuentinLeCaignec)! - Refactored actions in `ThumbnailGrid` and `TableGridView` components, moved `typeGuard` helper to shared package, added `typeGuardInterface` function, added tests + +### Patch Changes + +- Updated dependencies [[`0ad5377`](https://github.com/Smile-SA/react-front-kit/commit/0ad5377535e7c19941da301e8a2ee7298ab70f91)]: + - @smile/react-front-kit-shared@0.6.0 + ## 0.5.0 ### Minor Changes diff --git a/packages/react-front-kit/package.json b/packages/react-front-kit/package.json index 649b57a2..7360cb0f 100644 --- a/packages/react-front-kit/package.json +++ b/packages/react-front-kit/package.json @@ -1,6 +1,6 @@ { "name": "@smile/react-front-kit", - "version": "0.5.0", + "version": "0.6.0", "description": "React component library based on mantine", "license": "MIT", "homepage": "https://github.com/Smile-SA/react-front-kit", @@ -62,7 +62,7 @@ "prepublishOnly": "npm run build && node ../../scripts/prepublish.mjs" }, "dependencies": { - "@smile/react-front-kit-shared": "0.5.0", + "@smile/react-front-kit-shared": "0.6.0", "pretty-bytes": "^6.1.1" }, "devDependencies": { diff --git a/packages/storybook-pages/CHANGELOG.md b/packages/storybook-pages/CHANGELOG.md index 91d3cf11..6c4adcf7 100644 --- a/packages/storybook-pages/CHANGELOG.md +++ b/packages/storybook-pages/CHANGELOG.md @@ -1,5 +1,25 @@ # storybook-pages +## 0.6.0 + +### Minor Changes + +- [#80](https://github.com/Smile-SA/react-front-kit/pull/80) [`0e819ee`](https://github.com/Smile-SA/react-front-kit/commit/0e819eebaa3b8feeb9ce1d1ae1ac37358c383d2e) Thanks [@QuentinLeCaignec](https://github.com/QuentinLeCaignec)! - Extracted action bar from `ThumbnailGrid` into new component. + Added `ActionBar`, `SelectableList` and `DocumentList` components. + Updated `SearchPage` example page. + +- [#81](https://github.com/Smile-SA/react-front-kit/pull/81) [`7f276b2`](https://github.com/Smile-SA/react-front-kit/commit/7f276b27e9c2ca2b746ad0f39deaee49cbf8bb90) Thanks [@vapersmile](https://github.com/vapersmile)! - Add the filtersBar component and add it to the searchResult page + +- [#74](https://github.com/Smile-SA/react-front-kit/pull/74) [`0ad5377`](https://github.com/Smile-SA/react-front-kit/commit/0ad5377535e7c19941da301e8a2ee7298ab70f91) Thanks [@QuentinLeCaignec](https://github.com/QuentinLeCaignec)! - Refactored actions in `ThumbnailGrid` and `TableGridView` components, moved `typeGuard` helper to shared package, added `typeGuardInterface` function, added tests + +### Patch Changes + +- Updated dependencies [[`0e819ee`](https://github.com/Smile-SA/react-front-kit/commit/0e819eebaa3b8feeb9ce1d1ae1ac37358c383d2e), [`7f276b2`](https://github.com/Smile-SA/react-front-kit/commit/7f276b27e9c2ca2b746ad0f39deaee49cbf8bb90), [`a0aa52b`](https://github.com/Smile-SA/react-front-kit/commit/a0aa52b8f10f264600704ec4aeee8a146d17cc9d), [`0ad5377`](https://github.com/Smile-SA/react-front-kit/commit/0ad5377535e7c19941da301e8a2ee7298ab70f91)]: + - @smile/react-front-kit@0.6.0 + - @smile/react-front-kit-shared@0.6.0 + - @smile/react-front-kit-table@0.6.0 + - @smile/react-front-kit-dropzone@0.6.0 + ## 0.1.0 ### Minor Changes diff --git a/packages/storybook-pages/package.json b/packages/storybook-pages/package.json index 58776520..cbb4dd93 100644 --- a/packages/storybook-pages/package.json +++ b/packages/storybook-pages/package.json @@ -1,6 +1,6 @@ { "name": "storybook-pages", - "version": "0.1.0", + "version": "0.6.0", "private": true, "license": "MIT", "publishConfig": {