Skip to content

Commit 7542cde

Browse files
committed
chore: changeset version and lib-helpers
1 parent 6b8a82f commit 7542cde

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

.changeset/cuddly-rats-march.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.10
4+
5+
### Patch Changes
6+
7+
- fix: add </div> for closing tag for [email protected] ([`6b8a82f0b22f7767eb2f07ff4ccaba8fe584189b`](https://github.com/shinokada/svelte-5-ui-lib/commit/6b8a82f0b22f7767eb2f07ff4ccaba8fe584189b))
8+
tests: add components.test.ts and home.test.ts
9+
fix: update meta tags
10+
311
## 0.4.9
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.9",
3+
"version": "0.4.10",
44
"description": "A UI library for Svelte 5.",
55
"license": "MIT",
66
"main": "dist/index.js",

src/lib/forms/Select.svelte

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,7 @@
9393
@props:size?: 'sm' | 'md' | 'lg'; = 'md';
9494
@props:selectclass?: string | undefined;
9595
@props:underlineClass?: string | undefined;
96+
@props:onchange?: () => void;
97+
@props:oninput?: () => void;
98+
@props:oncontextmenu?: () => void;
9699
-->

src/lib/rating/Thumbup.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,5 @@
7474
@props:id?: string; = idGenerator();
7575
@props:role?: string; = 'img';
7676
@props:svgclass?: string;
77+
@props:onclick?: () => void;
7778
-->

0 commit comments

Comments
 (0)