Skip to content

Commit 8e93ae4

Browse files
committed
chore: changeset version and lib-helpers
1 parent b3d65dd commit 8e93ae4

File tree

4 files changed

+18
-13
lines changed

4 files changed

+18
-13
lines changed

.changeset/fluffy-toes-begin.md

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

CHANGELOG.md

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

3+
## 0.4.9
4+
5+
### Patch Changes
6+
7+
- feat: dropdown components update ([`b3d65dd9b7ff0de0bc62ac7bdc7a9480449c936f`](https://github.com/shinokada/svelte-5-ui-lib/commit/b3d65dd9b7ff0de0bc62ac7bdc7a9480449c936f))
8+
docs: dropdown page update
9+
310
## 0.4.8
411

512
### 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.8",
3+
"version": "0.4.9",
44
"description": "A UI library for Svelte 5.",
55
"license": "MIT",
66
"main": "dist/index.js",

src/lib/dropdown/Dropdown.svelte

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,21 @@
100100
<div role="presentation" class={backdropDivClass} onclick={closeDropdown} />
101101
{/if}
102102

103-
104103
<!--
105104
@component
106105
[Go to docs](https://svelte-5-ui-lib.codewithshin.com/)
107106
## Props
108107
@props: children: Snippet;
109-
@props:divclass?: string | undefined;
110108
@props:header?: Snippet;
111-
@props:headerclass?: string | undefined;
112-
@props:isOpen: boolean;
113109
@props:footer?: Snippet;
114-
@props:footerclass?: string | undefined;
115-
@props:ulclass?: string | undefined;
110+
@props:dropdownStatus: boolean;
111+
@props:toggleDropdown?: () => void;
112+
@props:closeDropdown?: () => void;
113+
@props:activateClickOutside?: boolean ; = true;
114+
@props:divclass?: string ;
115+
@props:footerclass?: string ;
116+
@props:headerclass?: string ;
117+
@props:ulclass?: string ;
118+
@props:transitionParams?: TransitionParamTypes;
119+
@props:transitionType?: TransitionTypes; = 'fly';
116120
-->

0 commit comments

Comments
 (0)