From 2d31d3dd7532994eb81a1fd5caa3680467972910 Mon Sep 17 00:00:00 2001 From: "@dhis2-bot" Date: Wed, 1 Apr 2020 11:37:25 +0000 Subject: [PATCH] chore(release): cut 5.0.0-alpha.3 [skip ci] # [5.0.0-alpha.3](https://github.com/dhis2/ui/compare/v5.0.0-alpha.2...v5.0.0-alpha.3) (2020-04-01) ### Code Refactoring * use string based selection in multi- and single-select ([e3627a4](https://github.com/dhis2/ui/commit/e3627a479577a7bbd3d78e86f5fbf93e2ca57971)) ### BREAKING CHANGES * - SingleSelect selection is now a string instead of an object with a value and label property - MultiSelect selection is now an array of strings instead of an array of objects with a value and label property --- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- packages/constants/package.json | 2 +- packages/core/package.json | 6 +++--- packages/forms/package.json | 6 +++--- packages/icons/package.json | 2 +- packages/ui/package.json | 12 ++++++------ packages/widgets/package.json | 8 ++++---- storybook/package.json | 14 +++++++------- 9 files changed, 39 insertions(+), 26 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 427ec3e0b5..56271cf7f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# [5.0.0-alpha.3](https://github.com/dhis2/ui/compare/v5.0.0-alpha.2...v5.0.0-alpha.3) (2020-04-01) + + +### Code Refactoring + +* use string based selection in multi- and single-select ([e3627a4](https://github.com/dhis2/ui/commit/e3627a479577a7bbd3d78e86f5fbf93e2ca57971)) + + +### BREAKING CHANGES + +* - SingleSelect selection is now a string instead of an object with a value and label property +- MultiSelect selection is now an array of strings instead of an array of objects with a value and label property + # [5.0.0-alpha.2](https://github.com/dhis2/ui/compare/v5.0.0-alpha.1...v5.0.0-alpha.2) (2020-03-24) diff --git a/package.json b/package.json index 224fdec3ae..900ca656df 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "root", - "version": "5.0.0-alpha.2", + "version": "5.0.0-alpha.3", "repository": "git@github.com:dhis2/ui.git", "author": "Viktor Varland ", "license": "BSD-3-Clause", diff --git a/packages/constants/package.json b/packages/constants/package.json index f06a6a54f2..b587f96a06 100644 --- a/packages/constants/package.json +++ b/packages/constants/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/ui-constants", - "version": "5.0.0-alpha.2", + "version": "5.0.0-alpha.3", "description": "Constants used in the UI libs", "main": "build/cjs/lib.js", "module": "build/es/lib.js", diff --git a/packages/core/package.json b/packages/core/package.json index c5876675ed..fe2f8116f6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@dhis2/ui-core", "description": "Component primitives for DHIS2 user interfaces", - "version": "5.0.0-alpha.2", + "version": "5.0.0-alpha.3", "main": "build/cjs/lib.js", "module": "build/es/lib.js", "sideEffects": false, @@ -25,8 +25,8 @@ }, "dependencies": { "@dhis2/prop-types": "^1.5.0", - "@dhis2/ui-constants": "5.0.0-alpha.2", - "@dhis2/ui-icons": "5.0.0-alpha.2", + "@dhis2/ui-constants": "5.0.0-alpha.3", + "@dhis2/ui-icons": "5.0.0-alpha.3", "@popperjs/core": "^2.1.0", "classnames": "^2.2.6" }, diff --git a/packages/forms/package.json b/packages/forms/package.json index e4b0166bfb..e0a9ba1475 100644 --- a/packages/forms/package.json +++ b/packages/forms/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/ui-forms", - "version": "5.0.0-alpha.2", + "version": "5.0.0-alpha.3", "main": "./build/cjs/lib.js", "module": "./build/es/lib.js", "sideEffects": false, @@ -21,8 +21,8 @@ }, "dependencies": { "@dhis2/prop-types": "^1.5", - "@dhis2/ui-core": "5.0.0-alpha.2", - "@dhis2/ui-widgets": "5.0.0-alpha.2", + "@dhis2/ui-core": "5.0.0-alpha.3", + "@dhis2/ui-widgets": "5.0.0-alpha.3", "classnames": "^2.2.6", "final-form": "^4.18.5", "react-final-form": "^6.3.0" diff --git a/packages/icons/package.json b/packages/icons/package.json index 721f1e046b..6ef3764995 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/ui-icons", - "version": "5.0.0-alpha.2", + "version": "5.0.0-alpha.3", "description": "Icons used in the UI libs", "main": "build/cjs/lib.js", "module": "build/es/lib.js", diff --git a/packages/ui/package.json b/packages/ui/package.json index 2c91f2b5a5..61455f22e6 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/ui", - "version": "5.0.0-alpha.2", + "version": "5.0.0-alpha.3", "main": "build/cjs/lib.js", "module": "build/es/lib.js", "author": "Viktor Varland ", @@ -10,10 +10,10 @@ "build": "d2-app-scripts build" }, "dependencies": { - "@dhis2/ui-constants": "5.0.0-alpha.2", - "@dhis2/ui-icons": "5.0.0-alpha.2", - "@dhis2/ui-core": "5.0.0-alpha.2", - "@dhis2/ui-forms": "5.0.0-alpha.2", - "@dhis2/ui-widgets": "5.0.0-alpha.2" + "@dhis2/ui-constants": "5.0.0-alpha.3", + "@dhis2/ui-icons": "5.0.0-alpha.3", + "@dhis2/ui-core": "5.0.0-alpha.3", + "@dhis2/ui-forms": "5.0.0-alpha.3", + "@dhis2/ui-widgets": "5.0.0-alpha.3" } } diff --git a/packages/widgets/package.json b/packages/widgets/package.json index fae4754cf2..07ab15fc92 100644 --- a/packages/widgets/package.json +++ b/packages/widgets/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/ui-widgets", - "version": "5.0.0-alpha.2", + "version": "5.0.0-alpha.3", "main": "build/cjs/lib.js", "module": "build/es/lib.js", "sideEffects": false, @@ -26,9 +26,9 @@ "@dhis2/app-runtime": "^2.1.0", "@dhis2/d2-i18n": "^1", "@dhis2/prop-types": "^1.5", - "@dhis2/ui-constants": "5.0.0-alpha.2", - "@dhis2/ui-icons": "5.0.0-alpha.2", - "@dhis2/ui-core": "5.0.0-alpha.2", + "@dhis2/ui-constants": "5.0.0-alpha.3", + "@dhis2/ui-icons": "5.0.0-alpha.3", + "@dhis2/ui-core": "5.0.0-alpha.3", "classnames": "^2.2.6" }, "files": [ diff --git a/storybook/package.json b/storybook/package.json index afdccdcedf..f26d9a6fae 100644 --- a/storybook/package.json +++ b/storybook/package.json @@ -1,6 +1,6 @@ { "name": "storybook", - "version": "5.0.0-alpha.2", + "version": "5.0.0-alpha.3", "description": "Stories for DHIS2 UI", "main": "index.js", "license": "BSD-3-Clause", @@ -21,11 +21,11 @@ "typeface-roboto": "^0.0.75" }, "dependencies": { - "@dhis2/ui": "5.0.0-alpha.2", - "@dhis2/ui-constants": "5.0.0-alpha.2", - "@dhis2/ui-core": "5.0.0-alpha.2", - "@dhis2/ui-forms": "5.0.0-alpha.2", - "@dhis2/ui-icons": "5.0.0-alpha.2", - "@dhis2/ui-widgets": "5.0.0-alpha.2" + "@dhis2/ui": "5.0.0-alpha.3", + "@dhis2/ui-constants": "5.0.0-alpha.3", + "@dhis2/ui-core": "5.0.0-alpha.3", + "@dhis2/ui-forms": "5.0.0-alpha.3", + "@dhis2/ui-icons": "5.0.0-alpha.3", + "@dhis2/ui-widgets": "5.0.0-alpha.3" } }