mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
v0.12.3
This commit is contained in:
parent
fd79a5ce87
commit
6567a68a54
3 changed files with 12 additions and 0 deletions
|
@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
- Selectable/expandable `DataTable`
|
- Selectable/expandable `DataTable`
|
||||||
|
|
||||||
|
## [0.12.3](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.3) - 2020-09-16
|
||||||
|
|
||||||
|
**Fixes**
|
||||||
|
|
||||||
|
- ClickableTile: add missing `href` ([PR #254](https://github.com/IBM/carbon-components-svelte/pull/254), thanks [@josefaidt](https://github.com/josefaidt))
|
||||||
|
|
||||||
## [0.12.2](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.2) - 2020-09-14
|
## [0.12.2](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.2) - 2020-09-14
|
||||||
|
|
||||||
**Fixes**
|
**Fixes**
|
||||||
|
|
|
@ -566,6 +566,7 @@ import { ClickableTile } from "carbon-components-svelte";
|
||||||
| :-------- | :------------------- | :------------ |
|
| :-------- | :------------------- | :------------ |
|
||||||
| clicked | <code>boolean</code> | false |
|
| clicked | <code>boolean</code> | false |
|
||||||
| light | <code>boolean</code> | false |
|
| light | <code>boolean</code> | false |
|
||||||
|
| href | <code>string</code> | -- |
|
||||||
|
|
||||||
### Slots
|
### Slots
|
||||||
|
|
||||||
|
|
5
types/index.d.ts
vendored
5
types/index.d.ts
vendored
|
@ -317,6 +317,11 @@ export class ClickableTile extends CarbonSvelteComponent {
|
||||||
* @default false
|
* @default false
|
||||||
*/
|
*/
|
||||||
light?: boolean;
|
light?: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the `href`
|
||||||
|
*/
|
||||||
|
href?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
$$slot_def: { default: {} };
|
$$slot_def: { default: {} };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue