Skip to content

Commit

Permalink
chore: bump version, changelog (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
markacianfrani authored Oct 12, 2021
1 parent 342de22 commit 0d579d7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 17 deletions.
39 changes: 23 additions & 16 deletions packages/web-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 `<option>` and `<optgroup>` elements, you should now use the new Astro versions: `<rux-option>` and `<rux-option-group>`. This should be a simple find and replace.
Expand All @@ -40,6 +31,22 @@ should now become:
<rux-option value="1" label="One"></rux-option>
```

### 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
Expand Down
2 changes: 1 addition & 1 deletion packages/web-components/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 0d579d7

Please sign in to comment.