Skip to content

Commit fe0c3b5

Browse files
committed
v0.17.1
1 parent 0dc6cf8 commit fe0c3b5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- add isAccessor field to API
1111
- update Markdown writer to generate a separate table for accessors -->
1212

13+
## [0.17.1](https://github.com/carbon-design-system/sveld/releases/tag/v0.17.1) - 2022-06-02
14+
15+
- use correct type for forwarded cut/copy/paste events
16+
1317
## [0.17.0](https://github.com/carbon-design-system/sveld/releases/tag/v0.17.0) - 2022-05-21
1418

1519
- remove `@required` tag; directly infer if a prop is required

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The generated definition extends the official `SvelteComponentTyped` interface e
3939

4040
```ts
4141
/// <reference types="svelte" />
42-
import { SvelteComponentTyped } from "svelte";
42+
import type { SvelteComponentTyped } from "svelte";
4343

4444
export interface ButtonProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["button"]> {
4545
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sveld",
3-
"version": "0.17.0",
3+
"version": "0.17.1",
44
"license": "Apache-2.0",
55
"description": "Generate TypeScript definitions for your Svelte components.",
66
"main": "./lib/index.js",

0 commit comments

Comments
 (0)