From 0d579d7febf0abd894e008ce27a6cab10106e314 Mon Sep 17 00:00:00 2001 From: Mark Anthony Cianfrani Date: Tue, 12 Oct 2021 10:32:31 -0400 Subject: [PATCH] chore: bump version, changelog (#43) --- packages/web-components/CHANGELOG.md | 39 ++++++++++++++++------------ packages/web-components/package.json | 2 +- 2 files changed, 24 insertions(+), 17 deletions(-) diff --git a/packages/web-components/CHANGELOG.md b/packages/web-components/CHANGELOG.md index 7d41d3526..e09cc1106 100644 --- a/packages/web-components/CHANGELOG.md +++ b/packages/web-components/CHANGELOG.md @@ -1,27 +1,18 @@ # Change Log -## [0.0.18] (unreleased) +## [0.0.18] (2021-10-12) +### Breaking Changes -### Input +#### Events -- Inputs with `type="password"` now support toggle show/hide by including the `visibility` and `visibility-off` rux-icons as clickable. -- Password inputs now swap types between `password` and `text` to show/hide the password. +- Globally updated event names from camel case to lower case to be compatible with angular event name formats. You can do a find/replace for 'rux-{eventname}' -> 'rux{eventname}' -* `small` property has been removed. Use `size=small` instead. +#### Input -### Textarea +* `small` property has been removed. Use `size=small` instead. +#### Textarea - `small` property has been removed. Use `rows` property instead to control the height of the element. - -### Event names - -- Gloably updated event names from camel case to lower case to be compatible with angular event name formats -- Updated unit tests, e2e tests, and stories to use lowercase event names `rux{$eventName}` -- Updated documentation for frameworks to reflect event name change -- Updated react tests to use lowercase event names `onRux{$eventName}` - -### Breaking Changes - #### Select Select has had a significant rewrite and is now a full Shadow DOM component. Instead of using the native `` elements, you should now use the new Astro versions: `` and ``. This should be a simple find and replace. @@ -40,6 +31,22 @@ should now become: ``` +### Features +#### Input + +- Inputs with `type="password"` now support toggle show/hide by including the `visibility` and `visibility-off` rux-icons as clickable. +- Password inputs now swap types between `password` and `text` to show/hide the password. + + + +#### Event names + +- Updated unit tests, e2e tests, and stories to use lowercase event names `rux{$eventName}` +- Updated documentation for frameworks to reflect event name change +- Updated react tests to use lowercase event names `onRux{$eventName}` + + + ## [0.0.17] 2021-09-24 ### Switch diff --git a/packages/web-components/package.json b/packages/web-components/package.json index 49dc44bc8..727c82c01 100644 --- a/packages/web-components/package.json +++ b/packages/web-components/package.json @@ -1,6 +1,6 @@ { "name": "@astrouxds/astro-web-components", - "version": "0.0.16", + "version": "0.0.18", "description": "Astro Web Components", "main": "dist/index.cjs.js", "module": "dist/custom-elements/index.js",