Skip to content

Commit a5da522

Browse files
committed
chore: changeset version and lib-helpers
1 parent d4c8b51 commit a5da522

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

.changeset/healthy-tables-protect.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.4.2
4+
5+
### Patch Changes
6+
7+
- fix: SidebarItem: change icon snippet to iconSlot ([`d4c8b51c4a14fb56e7b768942b909aa792ea4022`](https://github.com/shinokada/svelte-5-ui-lib/commit/d4c8b51c4a14fb56e7b768942b909aa792ea4022))
8+
9+
- fix: add aclass to SidebarItem
10+
311
## 0.4.1
412

513
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte-5-ui-lib",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "A UI library for Svelte 5.",
55
"license": "MIT",
66
"main": "dist/index.js",

src/lib/sidebar/SidebarItem.svelte

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@
6262
## Props
6363
@props: iconSlot?: Snippet;
6464
@props:subtext?: Snippet;
65-
@props:href?: string | undefined;
66-
@props:label?: string | undefined;
67-
@props:spanclass?: string | undefined;
68-
@props:activeClass?: string | undefined;
69-
@props:nonActiveClass?: string | undefined;
65+
@props:href?: string ;
66+
@props:label?: string ;
67+
@props:spanclass?: string ;
68+
@props:activeClass?: string ;
69+
@props:nonActiveClass?: string ;
70+
@props:aclass?: string;
7071
-->

0 commit comments

Comments
 (0)