diff --git a/CHANGELOG.md b/CHANGELOG.md index 07128d1455..89121bea7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.20.0] - January 5, 2021 +### Design kit +#### Changed +- Renamed “HDS Pagination” to “HDS Tabs and Pages” +- [Cards] Optimized images to reduce library file size +- [Cards] Updated links to shared typography styles + +#### Added +- New library HDS Tabs and Pages + - [Tabs and Pages] Tab list symbols of two sizes; Default and Small + - [Tabs and Pages] Overflow tab list variant. This can be used in smaller screens and spaces where all tabs do not fit horizontally on the view. + - [Tabs and Pages] Symbols for single tabs. These can be used to build tab lists with custom widths etc. + - Library also includes old pagination symbols but they are not yet implemented into HDS and the design is subject to change +- [Color] Shared style for a lighter (2px) focus border. This style can be used in tight spaces or when the default 3px focus border is too visually distractive. + +### Documentation +#### Added +- Documentation for Tabs component + +#### Changed +- [TextField] Added a note about autocomplete WCAG requirement + +### React +#### Added +- New component: Tabs (in [#343](https://github.com/City-of-Helsinki/helsinki-design-system/pull/343)) + ## [0.19.0] - December 22, 2020 ### Design kit #### Added diff --git a/packages/core/package.json b/packages/core/package.json index 05ffce1373..a1b06b3939 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "hds-core", - "version": "0.19.0", + "version": "0.20.0", "description": "Core styles for the Helsinki Design System", "author": "Anssi Lehtonen ", "contributors": [ @@ -29,7 +29,7 @@ "@storybook/html": "6.0.19", "copyfiles": "2.2.0", "cssnano": "4.1.10", - "hds-design-tokens": "0.19.0", + "hds-design-tokens": "0.20.0", "normalize.css": "8.0.1", "postcss": "7.0.30", "postcss-cli": "7.1.1", diff --git a/packages/design-tokens/package.json b/packages/design-tokens/package.json index 7e474f7214..b7b6d234a9 100644 --- a/packages/design-tokens/package.json +++ b/packages/design-tokens/package.json @@ -1,6 +1,6 @@ { "name": "hds-design-tokens", - "version": "0.19.0", + "version": "0.20.0", "description": "Design tokens for the Helsinki Design System", "author": "Niclas Liimatainen ", "homepage": "https://github.com/City-of-Helsinki/helsinki-design-system#readme", diff --git a/packages/react/package.json b/packages/react/package.json index 1c5da8ee90..d54b27ea92 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "hds-react", - "version": "0.19.0", + "version": "0.20.0", "description": "React components for the Helsinki Design System", "author": "Anssi Lehtonen ", "contributors": [ @@ -103,7 +103,7 @@ "@popperjs/core": "2.5.3", "@react-aria/visually-hidden": "3.2.0", "downshift": "6.0.6", - "hds-core": "0.19.0", + "hds-core": "0.20.0", "lodash.isequal": "4.5.0", "lodash.uniqueid": "4.0.1", "react-merge-refs": "1.1.0", diff --git a/site/docs/about/new.mdx b/site/docs/about/new.mdx index 54aff801d4..cac75798f9 100644 --- a/site/docs/about/new.mdx +++ b/site/docs/about/new.mdx @@ -13,6 +13,10 @@ import Link from "../../src/components/Link"; Here you will find summarized patch notes of major releases of HDS. For full patch notes for each release, please refer to the GitHub releases. +

0.20.0 (beta) - 05.01.2021 - Release notes

+ +- **Added**: New component Tabs +

0.19.0 (beta) - 22.12.2020 - Release notes

- **Added**: New component Accordion diff --git a/site/docs/about/roadmap.mdx b/site/docs/about/roadmap.mdx index 985d5decb7..660a4c7f6f 100644 --- a/site/docs/about/roadmap.mdx +++ b/site/docs/about/roadmap.mdx @@ -65,17 +65,15 @@ import LargeParagraph from "../../src/components/LargeParagraph"; - ~~Component: Search field~~ - ~~Pattern: Form validation~~ - ~~Component: Accordion~~ - - -- Component: Tabs -- Component: Time input field -- Component: Datepicker -- Component: Number input field +- ~~Component: Tabs~~ **Q1 2021** +- Component: Datepicker and date field - Component: Dialog +- Component: Time input field +- Component: Number input field - Component: Error template - Component: Password input field - Component: Phone number input field @@ -89,6 +87,9 @@ import LargeParagraph from "../../src/components/LargeParagraph"; - Tokens: Media queries +- Icons: Next set of icons + + - Update: Better scaling for mobile (typography and components) diff --git a/site/package.json b/site/package.json index 1c4e22f657..e746f66758 100644 --- a/site/package.json +++ b/site/package.json @@ -1,6 +1,6 @@ { "name": "site", - "version": "0.19.0", + "version": "0.20.0", "private": true, "description": "Documentation for Helsinki Design System", "license": "MIT", @@ -22,9 +22,9 @@ "devDependencies": { "gatsby-cli": "2.12.29", "gatsby-plugin-matomo": "0.8.3", - "hds-core": "0.19.0", - "hds-design-tokens": "0.19.0", - "hds-react": "0.19.0", + "hds-core": "0.20.0", + "hds-design-tokens": "0.20.0", + "hds-react": "0.20.0", "react-helmet": "6.0.0", "rimraf": "3.0.2" }