Skip to content

Commit df67e84

Browse files
committed
v0.12.1
1 parent cbe4572 commit df67e84

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- Selectable/expandable `DataTable`
1111

12+
## [0.12.1](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.1) - 2020-09-14
13+
14+
**Fixes**
15+
16+
- Pagination: ensure `page`, `pageSize` values are numbers (0138910)
17+
- Pagination: dispatch "update" event only when `pageSize` or `page` values update (458d1b5)
18+
- Pagination: use correct size carbon icons for buttons (size `16` instead of `24`) (192f98d)
19+
- ProgressStep: use button element; set negative `tabindex` if `disabled` is `true` (3202f39)
20+
- ProgressStep: forward click event (6cb877e)
21+
- SideNavMenu, SideNavMenuItem: remove "role", "aria-haspopup" attributes causing a11y warnings
22+
- RadioTile: move `keydown`, `tabindex` to input element (17d97d1)
23+
1224
## [0.12.0](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.0) - 2020-09-13
1325

1426
**Features**

COMPONENT_INDEX.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Component Index
22

3-
> 144 components exported from carbon-components-svelte 0.12.0
3+
> 144 components exported from carbon-components-svelte 0.12.1
44
55
- Accordion
66
- [AccordionSkeleton](#accordionskeleton)
@@ -3158,6 +3158,7 @@ import { ProgressStep } from "carbon-components-svelte";
31583158

31593159
### Forwarded events
31603160

3161+
- `on:click`
31613162
- `on:mouseover`
31623163
- `on:mouseenter`
31633164
- `on:mouseleave`
@@ -3295,11 +3296,11 @@ import { RadioTile } from "carbon-components-svelte";
32953296
### Forwarded events
32963297

32973298
- `on:change`
3299+
- `on:keydown`
32983300
- `on:click`
32993301
- `on:mouseover`
33003302
- `on:mouseenter`
33013303
- `on:mouseleave`
3302-
- `on:keydown`
33033304

33043305
### Dispatched events
33053306

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "carbon-components-svelte",
3-
"version": "0.12.0",
3+
"version": "0.12.1",
44
"license": "Apache-2.0",
55
"description": "Svelte implementation of the Carbon Design System",
66
"svelte": "./src/index.js",

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for carbon-components-svelte 0.12.0
1+
// Type definitions for carbon-components-svelte 0.12.1
22
// Project: https://github.com/IBM/carbon-components-svelte
33

44
export class CarbonSvelteComponent {

0 commit comments

Comments
 (0)