diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b5f40211fd..ae8cd3cece6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### [Unreleased][HEAD] +## [v1.0.0-beta.7] - Aug 30th 2019 + +### Added + +* Adds support for dropdown items as links +* Updates toggle styling and adds props for scale + ## [v1.0.0-beta.6] - Aug 26th 2019 ### Fixed diff --git a/package-lock.json b/package-lock.json index 67f87c438db..6795c860a85 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-components", - "version": "1.0.0-beta.6", + "version": "1.0.0-beta.7", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d03efa4c1be..7c4b5ed11c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-components", - "version": "1.0.0-beta.6", + "version": "1.0.0-beta.7", "description": "Web Components for Esri's Calcite Design System.", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/src/components/calcite-dropdown-item/readme.md b/src/components/calcite-dropdown-item/readme.md index ea62b8a52c7..72dc0f155f3 100644 --- a/src/components/calcite-dropdown-item/readme.md +++ b/src/components/calcite-dropdown-item/readme.md @@ -7,9 +7,11 @@ ## Properties -| Property | Attribute | Description | Type | Default | -| -------- | --------- | ----------- | --------- | ------- | -| `active` | `active` | | `boolean` | `false` | +| Property | Attribute | Description | Type | Default | +| ----------- | ----------- | --------------------------------------------------------------- | --------- | ----------- | +| `active` | `active` | | `boolean` | `false` | +| `href` | `href` | pass an optional href to render an anchor around the link items | `string` | `undefined` | +| `linktitle` | `linktitle` | pass an optional title for rendered href | `string` | `undefined` | ## Events