diff --git a/CHANGELOG.md b/CHANGELOG.md index c1e1717d34..85dd0a5ad0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,57 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.3.0] - Aug, 9, 2021 + +### Core + +#### Added +- Link + +### React Components + +#### Added +- Link + +#### Fixed +- [Form Components] Tooltip focus style +- [Form Components] Incorrect error icon +- [Notification] Inline notification z-index +- [TimeInput] Time input value on clear + +### Design kit + +#### Breaking +- Updated all HDS libraries to the Sketch version 74 (74.1) + +#### Added +- [Links] New Link symbols +- Two main link variants + - Inline links are positioned within a text element + - Standalone links are used without an accompanying text element (similarly to buttons) +- Variants for different link types + - Internal/External + - File + - Phone number + - Email address +- [Color] Shared style for a visited link +- [Typography] Shared styles for a visited link + +### Documentation + +#### Added +- Link component documentation +- Upcoming breaking changes page which lists near future changes that may be considered breaking +- Guideline page for contributing for implementation +- Tutorial page for getting started with Abstract +- Links to Abstract collections to the Designers Getting started page + +#### Changed +- Updated Roadmap +- Added a small note about Sketch Assistant link requiring Sketch to be installed +- Typo fixes +- Fixes to broken links + ## [1.2.0] - June, 21, 2021 ### Core diff --git a/packages/core/package.json b/packages/core/package.json index ee6a63b953..e733ba53f6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "hds-core", - "version": "1.2.0", + "version": "1.3.0", "description": "Core styles for the Helsinki Design System", "homepage": "https://github.com/City-of-Helsinki/helsinki-design-system#readme", "license": "MIT", @@ -25,7 +25,7 @@ "@storybook/html": "6.0.19", "copyfiles": "2.2.0", "cssnano": "4.1.10", - "hds-design-tokens": "1.2.0", + "hds-design-tokens": "1.3.0", "normalize.css": "8.0.1", "postcss": "8.2.15", "postcss-cli": "8.3.1", diff --git a/packages/design-tokens/package.json b/packages/design-tokens/package.json index 6d28b63fb9..4e2c3b0a4f 100644 --- a/packages/design-tokens/package.json +++ b/packages/design-tokens/package.json @@ -1,6 +1,6 @@ { "name": "hds-design-tokens", - "version": "1.2.0", + "version": "1.3.0", "description": "Design tokens for the Helsinki Design System", "homepage": "https://github.com/City-of-Helsinki/helsinki-design-system#readme", "license": "MIT", diff --git a/packages/react/package.json b/packages/react/package.json index 51cd987632..b7f37a9074 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "hds-react", - "version": "1.2.0", + "version": "1.3.0", "description": "React components for the Helsinki Design System", "homepage": "https://github.com/City-of-Helsinki/helsinki-design-system#readme", "license": "MIT", @@ -105,7 +105,7 @@ "@react-aria/visually-hidden": "3.2.0", "date-fns": "2.16.1", "downshift": "6.0.6", - "hds-core": "1.2.0", + "hds-core": "1.3.0", "lodash.isequal": "4.5.0", "lodash.isfunction": "3.0.9", "lodash.uniqueid": "4.0.1", diff --git a/site/docs/about/new.mdx b/site/docs/about/new.mdx index 18b8cb0aa8..4cbc42f7d7 100644 --- a/site/docs/about/new.mdx +++ b/site/docs/about/new.mdx @@ -13,6 +13,14 @@ 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. +

1.3.0 - 9.8.2021 - Release notes

+ +- **Added**: Link +- **Added**: Upcoming breaking changes page which lists near future changes that may be considered breaking +- **Added**: Guideline page for contributing for implementation +- **Added**: Tutorial page for getting started with Abstract +- **Fixed**: Multiple bug fixes +

1.2.0 - 21.6.2021 - Release notes

- **Added**: Fieldset diff --git a/site/docs/about/roadmap.mdx b/site/docs/about/roadmap.mdx index 74736e8c11..aa0ac39c38 100644 --- a/site/docs/about/roadmap.mdx +++ b/site/docs/about/roadmap.mdx @@ -39,7 +39,7 @@ For previously released features, see changelogs in the [What is new section](/a ~~- Component: Password input field~~
~~- Component: Fieldset~~
~~- Component: Toggle Button~~
-- Component: Link +~~- Component: Link~~
- Component: Side navigation diff --git a/site/docs/components/component_overview.mdx b/site/docs/components/component_overview.mdx index 9e3d514e6a..818c0bb47d 100644 --- a/site/docs/components/component_overview.mdx +++ b/site/docs/components/component_overview.mdx @@ -61,6 +61,7 @@ Component | Status [Fieldset](/components/fieldset) | Draft | [](/storybook/core/?path=/story/components-fieldset--default) | [](/storybook/react/?path=/story/components-fieldset--default) [Footer](/components/footer) | Draft | | [](/storybook/react/?path=/story/components-footer--default) [Icon](/components/icons) | Stable | [](/storybook/core/?path=/story/icons-icons--discord) | [](/storybook/react/?path=/story/icons-some--icondiscord) +[Link](/components/link) | Draft | [](/storybook/core/?path=/story/components-link--default) | [](/storybook/react/?path=/story/components-link--default) [Loading spinner](/components/spinner) | Stable | [](/storybook/core/?path=/story/components-loading-spinner--default) | [](/storybook/react/?path=/story/components-loadingspinner--default) [Logo](/components/logo) | Stable | | [](/storybook/react/?path=/story/components-logo--playground) [Navigation](/components/navigation) | Draft | | [](/storybook/react/?path=/story/components-navigation) diff --git a/site/docs/components/link.mdx b/site/docs/components/link.mdx index 7fe02450ec..a32aabb367 100644 --- a/site/docs/components/link.mdx +++ b/site/docs/components/link.mdx @@ -1,7 +1,7 @@ --- name: Link menu: Components -route: /components/link> +route: /components/link --- import { Playground } from "docz"; diff --git a/site/package.json b/site/package.json index a12092e1f9..9ad7b2ae9d 100644 --- a/site/package.json +++ b/site/package.json @@ -1,6 +1,6 @@ { "name": "site", - "version": "1.2.0", + "version": "1.3.0", "private": true, "description": "Documentation for Helsinki Design System", "license": "MIT", @@ -23,9 +23,9 @@ "date-fns": "^2.23.0", "gatsby-cli": "2.12.29", "gatsby-plugin-matomo": "0.8.3", - "hds-core": "1.2.0", - "hds-design-tokens": "1.2.0", - "hds-react": "1.2.0", + "hds-core": "1.3.0", + "hds-design-tokens": "1.3.0", + "hds-react": "1.3.0", "react-helmet": "6.0.0", "react-markdown": "^6.0.3", "rimraf": "3.0.2"