Skip to content

Commit e197178

Browse files
committed
v0.12.3
1 parent 894a145 commit e197178

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

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

1010
- Selectable/expandable `DataTable`
1111

12+
## [0.12.3](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.3) - 2020-09-16
13+
14+
**Fixes**
15+
16+
- ClickableTile: add missing `href` ([PR #254](https://github.com/IBM/carbon-components-svelte/pull/254), thanks [@josefaidt](https://github.com/josefaidt))
17+
1218
## [0.12.2](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.2) - 2020-09-14
1319

1420
**Fixes**

COMPONENT_INDEX.md

Lines changed: 2 additions & 1 deletion
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.2
3+
> 144 components exported from carbon-components-svelte 0.12.3
44
55
- Accordion
66
- [AccordionSkeleton](#accordionskeleton)
@@ -566,6 +566,7 @@ import { ClickableTile } from "carbon-components-svelte";
566566
| :-------- | :------------------- | :------------ |
567567
| clicked | <code>boolean</code> | false |
568568
| light | <code>boolean</code> | false |
569+
| href | <code>string</code> | -- |
569570

570571
### Slots
571572

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.2",
3+
"version": "0.12.3",
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: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for carbon-components-svelte 0.12.2
1+
// Type definitions for carbon-components-svelte 0.12.3
22
// Project: https://github.com/IBM/carbon-components-svelte
33

44
export class CarbonSvelteComponent {
@@ -317,6 +317,11 @@ export class ClickableTile extends CarbonSvelteComponent {
317317
* @default false
318318
*/
319319
light?: boolean;
320+
321+
/**
322+
* Set the `href`
323+
*/
324+
href?: string;
320325
};
321326

322327
$$slot_def: { default: {} };

0 commit comments

Comments
 (0)