mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
v0.12.1
This commit is contained in:
parent
cbe4572b06
commit
df67e84401
4 changed files with 17 additions and 4 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- Selectable/expandable `DataTable`
|
||||
|
||||
## [0.12.1](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.1) - 2020-09-14
|
||||
|
||||
**Fixes**
|
||||
|
||||
- Pagination: ensure `page`, `pageSize` values are numbers (0138910)
|
||||
- Pagination: dispatch "update" event only when `pageSize` or `page` values update (458d1b5)
|
||||
- Pagination: use correct size carbon icons for buttons (size `16` instead of `24`) (192f98d)
|
||||
- ProgressStep: use button element; set negative `tabindex` if `disabled` is `true` (3202f39)
|
||||
- ProgressStep: forward click event (6cb877e)
|
||||
- SideNavMenu, SideNavMenuItem: remove "role", "aria-haspopup" attributes causing a11y warnings
|
||||
- RadioTile: move `keydown`, `tabindex` to input element (17d97d1)
|
||||
|
||||
## [0.12.0](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.0) - 2020-09-13
|
||||
|
||||
**Features**
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Component Index
|
||||
|
||||
> 144 components exported from carbon-components-svelte 0.12.0
|
||||
> 144 components exported from carbon-components-svelte 0.12.1
|
||||
|
||||
- Accordion
|
||||
- [AccordionSkeleton](#accordionskeleton)
|
||||
|
@ -3158,6 +3158,7 @@ import { ProgressStep } from "carbon-components-svelte";
|
|||
|
||||
### Forwarded events
|
||||
|
||||
- `on:click`
|
||||
- `on:mouseover`
|
||||
- `on:mouseenter`
|
||||
- `on:mouseleave`
|
||||
|
@ -3295,11 +3296,11 @@ import { RadioTile } from "carbon-components-svelte";
|
|||
### Forwarded events
|
||||
|
||||
- `on:change`
|
||||
- `on:keydown`
|
||||
- `on:click`
|
||||
- `on:mouseover`
|
||||
- `on:mouseenter`
|
||||
- `on:mouseleave`
|
||||
- `on:keydown`
|
||||
|
||||
### Dispatched events
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "carbon-components-svelte",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Svelte implementation of the Carbon Design System",
|
||||
"svelte": "./src/index.js",
|
||||
|
|
2
types/index.d.ts
vendored
2
types/index.d.ts
vendored
|
@ -1,4 +1,4 @@
|
|||
// Type definitions for carbon-components-svelte 0.12.0
|
||||
// Type definitions for carbon-components-svelte 0.12.1
|
||||
// Project: https://github.com/IBM/carbon-components-svelte
|
||||
|
||||
export class CarbonSvelteComponent {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue