Skip to content

Commit 51594de

Browse files
committed
v0.9.25
1 parent 9c94d9d commit 51594de

29 files changed

+15
-51
lines changed

CHANGELOG.md

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

3+
## 0.9.25
4+
5+
### Patch Changes
6+
7+
- fix: lint fixes
8+
39
## 0.9.24
410

511
### 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.9.24",
3+
"version": "0.9.25",
44
"description": "Svelte 5 UI Lib is a UI library built from scratch to leverage Svelte 5's runes system, creating smooth, reactive components.",
55
"license": "MIT",
66
"main": "dist/index.js",

src/generatedFileList.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,4 @@ export const fileList = [
130130
"src/lib/typography/span/Span.svelte",
131131
"src/lib/utils/CloseButton.svelte",
132132
"src/lib/video/Video.svelte"
133-
] as const;
133+
] as const;

src/lib/accordion/Accordion.svelte

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,4 @@
3030
@props:inactiveClass: string;
3131
@props:isSingle: boolean = true;
3232
@props:class: string;
33-
@props:transition: TransitionFunc;
34-
@props:params: ParamsType;
3533
-->

src/lib/buttons/GradientButton.svelte

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@
3434
@props:shadow: boolean;
3535
@props:class: string;
3636
@props:href: string;
37-
@props:target: any;
38-
@props:rel: any;
39-
@props:type: any;
4037
@props:disabled: boolean;
4138
@props:size: "sm" | "md" | "lg" | "xl" | "xs" | undefined;
42-
@props:name: any;
4339
-->

src/lib/drawer/Drawerhead.svelte

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
## Props
2929
@props: closeIcon: Snippet;
3030
@props:children: Snippet;
31-
@props:tag: string = "h5";
32-
@props:headClass: string;
3331
@props:buttonClass: string;
3432
@props:svgClass: string;
3533
@props:class: string;

src/lib/mega-menu/MegaMenu.svelte

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,4 @@
3939
@props:full: any;
4040
@props:dropdownStatus: any = $bindable();
4141
@props:class: string;
42-
@props:backdropClass: any;
43-
@props:params: any;
44-
@props:transition: any = fly;
4542
-->

src/lib/modal/Modal.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,4 @@
9898
@props:easing: any;
9999
@props:transition: TransitionFunc = fade;
100100
@props:rounded: boolean = true;
101-
@props:shadow: boolean = true;
102101
-->

src/lib/nav/NavLi.svelte

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,5 @@
3434
@props:href: string;
3535
@props:children: Snippet;
3636
@props:aClass: string;
37-
@props:activeClass: string;
38-
@props:nonActiveClass: string;
3937
@props:class: string;
4038
-->

src/lib/table/Table.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,5 @@
6161
@props:noborder: boolean;
6262
@props:shadow: boolean;
6363
@props:color: "primary" | "gray" | "red" | "yellow" | "green" | "indigo" | "purple" | "pink" | "blue" | "orange" | "amber" | "lime" | "emerald" | "teal" | "cyan" | "sky" | "violet" | "fuchsia" | "rose" | "secondary" | "default" | undefined = "default";
64-
@props:customeColor: string;
6564
@props:class: string;
6665
-->

0 commit comments

Comments
 (0)