Skip to content

Commit 835b597

Browse files
committed
chore: update dependencies
1 parent 01d3ffd commit 835b597

15 files changed

Lines changed: 400 additions & 565 deletions

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@
1818
"regen-api": "node scripts/regenerate-api.js"
1919
},
2020
"devDependencies": {
21-
"@eslint/compat": "^2.0.4",
21+
"@eslint/compat": "^2.0.5",
2222
"@eslint/js": "latest",
2323
"@internationalized/date": "^3.12.0",
24-
"@lucide/svelte": "^1.7.0",
24+
"@lucide/svelte": "^1.8.0",
2525
"@microsoft/signalr": "^10.0.0",
2626
"@playwright/test": "^1.59.1",
2727
"@sveltejs/adapter-cloudflare": "^7.2.8",
2828
"@sveltejs/adapter-node": "^5.5.4",
29-
"@sveltejs/kit": "^2.57.0",
29+
"@sveltejs/kit": "^2.57.1",
3030
"@sveltejs/vite-plugin-svelte": "^7.0.0",
3131
"@tailwindcss/vite": "^4.2.2",
3232
"@tanstack/table-core": "^8.21.3",
33-
"@types/node": "^25.5.2",
33+
"@types/node": "^25.6.0",
3434
"@types/semver": "^7.7.1",
3535
"@types/w3c-web-serial": "^1.0.8",
36-
"bits-ui": "2.17.2",
36+
"bits-ui": "2.17.3",
3737
"boxen": "^8.0.1",
3838
"chalk": "^5.6.2",
3939
"clsx": "^2.1.1",
@@ -43,15 +43,15 @@
4343
"eslint-plugin-svelte": "^3.17.0",
4444
"esptool-js": "0.6.0",
4545
"formsnap": "^2.0.1",
46-
"globals": "^17.4.0",
46+
"globals": "^17.5.0",
4747
"husky": "^9.1.7",
48-
"prettier": "^3.8.1",
48+
"prettier": "^3.8.2",
4949
"prettier-plugin-organize-imports": "^4.3.0",
5050
"prettier-plugin-svelte": "^3.5.1",
5151
"prettier-plugin-tailwindcss": "^0.7.2",
52-
"rollup-plugin-license": "^3.7.0",
52+
"rollup-plugin-license": "^3.7.1",
5353
"semver": "^7.7.4",
54-
"svelte": "^5.55.2",
54+
"svelte": "^5.55.3",
5555
"svelte-check": "^4.4.6",
5656
"svelte-sonner": "^1.1.0",
5757
"sveltekit-superforms": "^2.30.1",
@@ -64,11 +64,11 @@
6464
"ua-parser-js": "2.0.9",
6565
"vaul-svelte": "1.0.0-next.7",
6666
"vite-plugin-devtools-json": "^1.0.0",
67-
"vite-plugin-mkcert": "^1.17.10",
68-
"vitest": "^4.1.3"
67+
"vite-plugin-mkcert": "^2.0.0",
68+
"vitest": "^4.1.4"
6969
},
7070
"dependencies": {
71-
"vite": "^8.0.7"
71+
"vite": "^8.0.8"
7272
},
7373
"engines": {
7474
"node": ">=24 <25",

pnpm-lock.yaml

Lines changed: 360 additions & 530 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/components/ui/calendar/calendar-month-select.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts">
22
import { Calendar as CalendarPrimitive } from "bits-ui";
33
import { cn, type WithoutChildrenOrChild } from "$lib/utils/shadcn.js";
4-
import ChevronDownIcon from "@lucide/svelte/icons/chevron-down";
4+
import ChevronDownIcon from '@lucide/svelte/icons/chevron-down';
55
66
let {
77
ref = $bindable(null),
@@ -41,7 +41,7 @@
4141
aria-hidden="true"
4242
>
4343
{monthItems.find((item) => item.value === value)?.label || selectedMonthItem.label}
44-
<ChevronDownIcon class="size-4" />
44+
<ChevronDownIcon class={cn("size-4", className)} />
4545
</span>
4646
{/snippet}
4747
</CalendarPrimitive.MonthSelect>

src/lib/components/ui/calendar/calendar-next-button.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import { Calendar as CalendarPrimitive } from "bits-ui";
3-
import ChevronRightIcon from "@lucide/svelte/icons/chevron-right";
3+
import ChevronRightIcon from '@lucide/svelte/icons/chevron-right';
44
import { buttonVariants, type ButtonVariant } from "$lib/components/ui/button/index.js";
55
import { cn } from "$lib/utils/shadcn.js";
66
@@ -16,7 +16,7 @@
1616
</script>
1717

1818
{#snippet Fallback()}
19-
<ChevronRightIcon class="size-4" />
19+
<ChevronRightIcon class={cn("size-4", className)} />
2020
{/snippet}
2121

2222
<CalendarPrimitive.NextButton

src/lib/components/ui/calendar/calendar-prev-button.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import { Calendar as CalendarPrimitive } from "bits-ui";
3-
import ChevronLeftIcon from "@lucide/svelte/icons/chevron-left";
3+
import ChevronLeftIcon from '@lucide/svelte/icons/chevron-left';
44
import { buttonVariants, type ButtonVariant } from "$lib/components/ui/button/index.js";
55
import { cn } from "$lib/utils/shadcn.js";
66
@@ -16,7 +16,7 @@
1616
</script>
1717

1818
{#snippet Fallback()}
19-
<ChevronLeftIcon class="size-4" />
19+
<ChevronLeftIcon class={cn("size-4", className)} />
2020
{/snippet}
2121

2222
<CalendarPrimitive.PrevButton

src/lib/components/ui/calendar/calendar-year-select.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts">
22
import { Calendar as CalendarPrimitive } from "bits-ui";
33
import { cn, type WithoutChildrenOrChild } from "$lib/utils/shadcn.js";
4-
import ChevronDownIcon from "@lucide/svelte/icons/chevron-down";
4+
import ChevronDownIcon from '@lucide/svelte/icons/chevron-down';
55
66
let {
77
ref = $bindable(null),
@@ -40,7 +40,7 @@
4040
aria-hidden="true"
4141
>
4242
{yearItems.find((item) => item.value === value)?.label || selectedYearItem.label}
43-
<ChevronDownIcon class="size-4" />
43+
<ChevronDownIcon class={cn("size-4", className)} />
4444
</span>
4545
{/snippet}
4646
</CalendarPrimitive.YearSelect>

src/lib/components/ui/calendar/calendar.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ get along, so we shut typescript up by casting `value` to `never`.
8282
<Calendar.Grid>
8383
<Calendar.GridHead>
8484
<Calendar.GridRow class="select-none">
85-
{#each weekdays as weekday (weekday)}
85+
{#each weekdays as weekday, i (i)}
8686
<Calendar.HeadCell>
8787
{weekday.slice(0, 2)}
8888
</Calendar.HeadCell>

src/lib/components/ui/card/card-title.svelte

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
1111
</script>
1212

13-
<div bind:this={ref} data-slot="card-title" class={cn("text-base leading-snug font-medium group-data-[size=sm]/card:text-sm", className)} {...restProps}>
13+
<div
14+
bind:this={ref}
15+
data-slot="card-title"
16+
class={cn("text-base leading-snug font-medium group-data-[size=sm]/card:text-sm", className)}
17+
{...restProps}
18+
>
1419
{@render children?.()}
1520
</div>

src/lib/components/ui/pagination/pagination-next-button.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import { Pagination as PaginationPrimitive } from "bits-ui";
3-
import ChevronRightIcon from "@lucide/svelte/icons/chevron-right";
3+
import ChevronRightIcon from '@lucide/svelte/icons/chevron-right';
44
import { cn } from "$lib/utils/shadcn.js";
55
import { buttonVariants } from "../button/index.js";
66
@@ -14,7 +14,7 @@
1414

1515
{#snippet Fallback()}
1616
<span>Next</span>
17-
<ChevronRightIcon class="size-4" />
17+
<ChevronRightIcon class={cn("size-4", className)} />
1818
{/snippet}
1919

2020
<PaginationPrimitive.NextButton

src/lib/components/ui/pagination/pagination-prev-button.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import { Pagination as PaginationPrimitive } from "bits-ui";
3-
import ChevronLeftIcon from "@lucide/svelte/icons/chevron-left";
3+
import ChevronLeftIcon from '@lucide/svelte/icons/chevron-left';
44
import { cn } from "$lib/utils/shadcn.js";
55
import { buttonVariants } from "../button/index.js";
66
@@ -13,7 +13,7 @@
1313
</script>
1414

1515
{#snippet Fallback()}
16-
<ChevronLeftIcon class="size-4" />
16+
<ChevronLeftIcon class={cn("size-4", className)} />
1717
<span>Previous</span>
1818
{/snippet}
1919

0 commit comments

Comments
 (0)