From 87bdefb806f87fdcb7ae382a6db20eeaff193d56 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 3 Jun 2024 12:39:02 +0000 Subject: [PATCH] ci: version packages --- .changeset/calm-terms-jog.md | 5 ----- .changeset/itchy-guests-retire.md | 6 ------ .changeset/pink-glasses-reply.md | 5 ----- .changeset/tidy-coins-know.md | 5 ----- .changeset/twelve-days-shop.md | 5 ----- .changeset/wicked-hornets-move.md | 6 ------ packages/haring-react-dates/CHANGELOG.md | 8 ++++++++ packages/haring-react-dates/package.json | 6 +++--- packages/haring-react-dropzone/CHANGELOG.md | 8 ++++++++ packages/haring-react-dropzone/package.json | 6 +++--- packages/haring-react-shared/CHANGELOG.md | 2 ++ packages/haring-react-shared/package.json | 2 +- packages/haring-react-table/CHANGELOG.md | 8 ++++++++ packages/haring-react-table/package.json | 6 +++--- packages/haring-react/CHANGELOG.md | 17 +++++++++++++++++ packages/haring-react/package.json | 4 ++-- packages/storybook-pages/CHANGELOG.md | 20 ++++++++++++++++++++ packages/storybook-pages/package.json | 2 +- 18 files changed, 76 insertions(+), 45 deletions(-) delete mode 100644 .changeset/calm-terms-jog.md delete mode 100644 .changeset/itchy-guests-retire.md delete mode 100644 .changeset/pink-glasses-reply.md delete mode 100644 .changeset/tidy-coins-know.md delete mode 100644 .changeset/twelve-days-shop.md delete mode 100644 .changeset/wicked-hornets-move.md diff --git a/.changeset/calm-terms-jog.md b/.changeset/calm-terms-jog.md deleted file mode 100644 index 3bd51212..00000000 --- a/.changeset/calm-terms-jog.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'storybook-pages': minor ---- - -add texts files for pages diff --git a/.changeset/itchy-guests-retire.md b/.changeset/itchy-guests-retire.md deleted file mode 100644 index e39c0563..00000000 --- a/.changeset/itchy-guests-retire.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'storybook-pages': minor -'@smile/haring-react': minor ---- - -Update props names, add exemple with SearchableList on SidebarFilters. Desable options for button, search field and add onChange callback function for SearchableList. Fix Graphic error on SearchableList. diff --git a/.changeset/pink-glasses-reply.md b/.changeset/pink-glasses-reply.md deleted file mode 100644 index 44861164..00000000 --- a/.changeset/pink-glasses-reply.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'storybook-pages': minor ---- - -add modal for name of the new folder diff --git a/.changeset/tidy-coins-know.md b/.changeset/tidy-coins-know.md deleted file mode 100644 index 84657015..00000000 --- a/.changeset/tidy-coins-know.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@smile/haring-react': minor ---- - -Update SearchableList. Add actives props for search input and submit button. diff --git a/.changeset/twelve-days-shop.md b/.changeset/twelve-days-shop.md deleted file mode 100644 index 7c9774e8..00000000 --- a/.changeset/twelve-days-shop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@smile/haring-react': minor ---- - -add errors support for the AddressFields component diff --git a/.changeset/wicked-hornets-move.md b/.changeset/wicked-hornets-move.md deleted file mode 100644 index 90167d40..00000000 --- a/.changeset/wicked-hornets-move.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'storybook-pages': patch -'@smile/haring-react': patch ---- - -fix FoldableColumnLayout and SearchResults styles to apply themes correclty diff --git a/packages/haring-react-dates/CHANGELOG.md b/packages/haring-react-dates/CHANGELOG.md index d9170fd1..b7e35376 100644 --- a/packages/haring-react-dates/CHANGELOG.md +++ b/packages/haring-react-dates/CHANGELOG.md @@ -1,5 +1,13 @@ # @smile/haring-react-dates +## 0.14.0 + +### Patch Changes + +- Updated dependencies [[`25456c718328c0547632e201536595045263015c`](https://github.com/Smile-SA/haring/commit/25456c718328c0547632e201536595045263015c), [`82463c955e41b6483c4cff3acb2459ac93d582c0`](https://github.com/Smile-SA/haring/commit/82463c955e41b6483c4cff3acb2459ac93d582c0), [`fda867d0bb675f159d7a07bb3d23559461a0c6a1`](https://github.com/Smile-SA/haring/commit/fda867d0bb675f159d7a07bb3d23559461a0c6a1), [`2ac4fa2d6426caca6ee646635380814514f2f19e`](https://github.com/Smile-SA/haring/commit/2ac4fa2d6426caca6ee646635380814514f2f19e)]: + - @smile/haring-react@0.14.0 + - @smile/haring-react-shared@0.14.0 + ## 0.13.0 ### Minor Changes diff --git a/packages/haring-react-dates/package.json b/packages/haring-react-dates/package.json index b0845a08..5234b602 100644 --- a/packages/haring-react-dates/package.json +++ b/packages/haring-react-dates/package.json @@ -1,6 +1,6 @@ { "name": "@smile/haring-react-dates", - "version": "0.13.0", + "version": "0.14.0", "description": "Date and Calendar React component library based on mantine", "license": "LGPL-3.0", "homepage": "https://github.com/Smile-SA/haring", @@ -70,8 +70,8 @@ "prepublishOnly": "npm run build && node ../../scripts/prepublish.mjs" }, "dependencies": { - "@smile/haring-react": "0.13.0", - "@smile/haring-react-shared": "0.13.0" + "@smile/haring-react": "0.14.0", + "@smile/haring-react-shared": "0.14.0" }, "devDependencies": { "@babel/preset-env": "^7.22.20", diff --git a/packages/haring-react-dropzone/CHANGELOG.md b/packages/haring-react-dropzone/CHANGELOG.md index fd2424c1..73b267e2 100644 --- a/packages/haring-react-dropzone/CHANGELOG.md +++ b/packages/haring-react-dropzone/CHANGELOG.md @@ -1,5 +1,13 @@ # @smile/haring-react-dropzone +## 0.14.0 + +### Patch Changes + +- Updated dependencies [[`25456c718328c0547632e201536595045263015c`](https://github.com/Smile-SA/haring/commit/25456c718328c0547632e201536595045263015c), [`82463c955e41b6483c4cff3acb2459ac93d582c0`](https://github.com/Smile-SA/haring/commit/82463c955e41b6483c4cff3acb2459ac93d582c0), [`fda867d0bb675f159d7a07bb3d23559461a0c6a1`](https://github.com/Smile-SA/haring/commit/fda867d0bb675f159d7a07bb3d23559461a0c6a1), [`2ac4fa2d6426caca6ee646635380814514f2f19e`](https://github.com/Smile-SA/haring/commit/2ac4fa2d6426caca6ee646635380814514f2f19e)]: + - @smile/haring-react@0.14.0 + - @smile/haring-react-shared@0.14.0 + ## 0.13.0 ### Minor Changes diff --git a/packages/haring-react-dropzone/package.json b/packages/haring-react-dropzone/package.json index a1cd6698..17bccf1c 100644 --- a/packages/haring-react-dropzone/package.json +++ b/packages/haring-react-dropzone/package.json @@ -1,6 +1,6 @@ { "name": "@smile/haring-react-dropzone", - "version": "0.13.0", + "version": "0.14.0", "description": "Dropzone React component library based on mantine", "license": "LGPL-3.0", "homepage": "https://github.com/Smile-SA/haring", @@ -54,8 +54,8 @@ "prepublishOnly": "npm run build && node ../../scripts/prepublish.mjs" }, "dependencies": { - "@smile/haring-react": "0.13.0", - "@smile/haring-react-shared": "0.13.0" + "@smile/haring-react": "0.14.0", + "@smile/haring-react-shared": "0.14.0" }, "devDependencies": { "@babel/preset-env": "^7.22.20", diff --git a/packages/haring-react-shared/CHANGELOG.md b/packages/haring-react-shared/CHANGELOG.md index 890342d4..dd4a1f65 100644 --- a/packages/haring-react-shared/CHANGELOG.md +++ b/packages/haring-react-shared/CHANGELOG.md @@ -1,5 +1,7 @@ # @smile/haring-react-shared +## 0.14.0 + ## 0.13.0 ### Minor Changes diff --git a/packages/haring-react-shared/package.json b/packages/haring-react-shared/package.json index a40a607f..61ce14ac 100644 --- a/packages/haring-react-shared/package.json +++ b/packages/haring-react-shared/package.json @@ -1,6 +1,6 @@ { "name": "@smile/haring-react-shared", - "version": "0.13.0", + "version": "0.14.0", "description": "Shared elements for Haring component library based on mantine", "license": "LGPL-3.0", "homepage": "https://github.com/Smile-SA/haring", diff --git a/packages/haring-react-table/CHANGELOG.md b/packages/haring-react-table/CHANGELOG.md index f9cf64da..6c7cb537 100644 --- a/packages/haring-react-table/CHANGELOG.md +++ b/packages/haring-react-table/CHANGELOG.md @@ -1,5 +1,13 @@ # @smile/haring-react-table +## 0.14.0 + +### Patch Changes + +- Updated dependencies [[`25456c718328c0547632e201536595045263015c`](https://github.com/Smile-SA/haring/commit/25456c718328c0547632e201536595045263015c), [`82463c955e41b6483c4cff3acb2459ac93d582c0`](https://github.com/Smile-SA/haring/commit/82463c955e41b6483c4cff3acb2459ac93d582c0), [`fda867d0bb675f159d7a07bb3d23559461a0c6a1`](https://github.com/Smile-SA/haring/commit/fda867d0bb675f159d7a07bb3d23559461a0c6a1), [`2ac4fa2d6426caca6ee646635380814514f2f19e`](https://github.com/Smile-SA/haring/commit/2ac4fa2d6426caca6ee646635380814514f2f19e)]: + - @smile/haring-react@0.14.0 + - @smile/haring-react-shared@0.14.0 + ## 0.13.0 ### Minor Changes diff --git a/packages/haring-react-table/package.json b/packages/haring-react-table/package.json index b755b0f7..4289ac7a 100644 --- a/packages/haring-react-table/package.json +++ b/packages/haring-react-table/package.json @@ -1,6 +1,6 @@ { "name": "@smile/haring-react-table", - "version": "0.13.0", + "version": "0.14.0", "description": "Table React component library based on mantine", "license": "LGPL-3.0", "homepage": "https://github.com/Smile-SA/haring", @@ -69,8 +69,8 @@ "prepublishOnly": "npm run build && node ../../scripts/prepublish.mjs" }, "dependencies": { - "@smile/haring-react": "0.13.0", - "@smile/haring-react-shared": "0.13.0" + "@smile/haring-react": "0.14.0", + "@smile/haring-react-shared": "0.14.0" }, "devDependencies": { "@babel/preset-env": "^7.22.20", diff --git a/packages/haring-react/CHANGELOG.md b/packages/haring-react/CHANGELOG.md index 5412b7ab..e3e551fe 100644 --- a/packages/haring-react/CHANGELOG.md +++ b/packages/haring-react/CHANGELOG.md @@ -1,5 +1,22 @@ # @smile/haring-react +## 0.14.0 + +### Minor Changes + +- [#186](https://github.com/Smile-SA/haring/pull/186) [`25456c718328c0547632e201536595045263015c`](https://github.com/Smile-SA/haring/commit/25456c718328c0547632e201536595045263015c) Thanks [@vapersmile](https://github.com/vapersmile)! - Update props names, add exemple with SearchableList on SidebarFilters. Desable options for button, search field and add onChange callback function for SearchableList. Fix Graphic error on SearchableList. + +- [#186](https://github.com/Smile-SA/haring/pull/186) [`82463c955e41b6483c4cff3acb2459ac93d582c0`](https://github.com/Smile-SA/haring/commit/82463c955e41b6483c4cff3acb2459ac93d582c0) Thanks [@vapersmile](https://github.com/vapersmile)! - Update SearchableList. Add actives props for search input and submit button. + +- [#181](https://github.com/Smile-SA/haring/pull/181) [`fda867d0bb675f159d7a07bb3d23559461a0c6a1`](https://github.com/Smile-SA/haring/commit/fda867d0bb675f159d7a07bb3d23559461a0c6a1) Thanks [@vapersmile](https://github.com/vapersmile)! - add errors support for the AddressFields component + +### Patch Changes + +- [#185](https://github.com/Smile-SA/haring/pull/185) [`2ac4fa2d6426caca6ee646635380814514f2f19e`](https://github.com/Smile-SA/haring/commit/2ac4fa2d6426caca6ee646635380814514f2f19e) Thanks [@tonai](https://github.com/tonai)! - fix FoldableColumnLayout and SearchResults styles to apply themes correclty + +- Updated dependencies []: + - @smile/haring-react-shared@0.14.0 + ## 0.13.0 ### Minor Changes diff --git a/packages/haring-react/package.json b/packages/haring-react/package.json index 4344ef1f..c81ce77e 100644 --- a/packages/haring-react/package.json +++ b/packages/haring-react/package.json @@ -1,6 +1,6 @@ { "name": "@smile/haring-react", - "version": "0.13.0", + "version": "0.14.0", "description": "React component library based on mantine", "license": "LGPL-3.0", "homepage": "https://github.com/Smile-SA/haring", @@ -69,7 +69,7 @@ "prepublishOnly": "npm run build && node ../../scripts/prepublish.mjs" }, "dependencies": { - "@smile/haring-react-shared": "0.13.0", + "@smile/haring-react-shared": "0.14.0", "pretty-bytes": "^6.1.1" }, "devDependencies": { diff --git a/packages/storybook-pages/CHANGELOG.md b/packages/storybook-pages/CHANGELOG.md index 08d21a4e..094f5d41 100644 --- a/packages/storybook-pages/CHANGELOG.md +++ b/packages/storybook-pages/CHANGELOG.md @@ -1,5 +1,25 @@ # storybook-pages +## 0.14.0 + +### Minor Changes + +- [#184](https://github.com/Smile-SA/haring/pull/184) [`47526140842ff71df59cf151ca6fb39e4921dbbc`](https://github.com/Smile-SA/haring/commit/47526140842ff71df59cf151ca6fb39e4921dbbc) Thanks [@vapersmile](https://github.com/vapersmile)! - add texts files for pages + +- [#186](https://github.com/Smile-SA/haring/pull/186) [`25456c718328c0547632e201536595045263015c`](https://github.com/Smile-SA/haring/commit/25456c718328c0547632e201536595045263015c) Thanks [@vapersmile](https://github.com/vapersmile)! - Update props names, add exemple with SearchableList on SidebarFilters. Desable options for button, search field and add onChange callback function for SearchableList. Fix Graphic error on SearchableList. + +- [#183](https://github.com/Smile-SA/haring/pull/183) [`652bebc56a09bbf07d57b4ef9c3b8fa0b917ce14`](https://github.com/Smile-SA/haring/commit/652bebc56a09bbf07d57b4ef9c3b8fa0b917ce14) Thanks [@vapersmile](https://github.com/vapersmile)! - add modal for name of the new folder + +### Patch Changes + +- [#185](https://github.com/Smile-SA/haring/pull/185) [`2ac4fa2d6426caca6ee646635380814514f2f19e`](https://github.com/Smile-SA/haring/commit/2ac4fa2d6426caca6ee646635380814514f2f19e) Thanks [@tonai](https://github.com/tonai)! - fix FoldableColumnLayout and SearchResults styles to apply themes correclty + +- Updated dependencies [[`25456c718328c0547632e201536595045263015c`](https://github.com/Smile-SA/haring/commit/25456c718328c0547632e201536595045263015c), [`82463c955e41b6483c4cff3acb2459ac93d582c0`](https://github.com/Smile-SA/haring/commit/82463c955e41b6483c4cff3acb2459ac93d582c0), [`fda867d0bb675f159d7a07bb3d23559461a0c6a1`](https://github.com/Smile-SA/haring/commit/fda867d0bb675f159d7a07bb3d23559461a0c6a1), [`2ac4fa2d6426caca6ee646635380814514f2f19e`](https://github.com/Smile-SA/haring/commit/2ac4fa2d6426caca6ee646635380814514f2f19e)]: + - @smile/haring-react@0.14.0 + - @smile/haring-react-dropzone@0.14.0 + - @smile/haring-react-table@0.14.0 + - @smile/haring-react-shared@0.14.0 + ## 0.13.0 ### Minor Changes diff --git a/packages/storybook-pages/package.json b/packages/storybook-pages/package.json index 1dd3cf4d..16197024 100644 --- a/packages/storybook-pages/package.json +++ b/packages/storybook-pages/package.json @@ -1,6 +1,6 @@ { "name": "storybook-pages", - "version": "0.13.0", + "version": "0.14.0", "private": true, "license": "LGPL-3.0", "publishConfig": {