fix(deps): update typescript-projects (#19939)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Zack Pollard <zackpollard@ymail.com>
Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
This commit is contained in:
renovate[bot] 2025-07-22 17:42:07 +00:00 committed by GitHub
parent ac44f6d1e0
commit 250548dea6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 783 additions and 613 deletions

View file

@ -12,6 +12,7 @@
import { goto } from '$app/navigation';
import type { Snippet } from 'svelte';
import { handlePromiseError } from '$lib/utils';
import { SvelteURLSearchParams } from 'svelte/reactivity';
const getParamValues = (param: string) => {
return new Set((page.url.searchParams.get(param) || '').split(' ').filter((x) => x !== ''));
@ -26,7 +27,7 @@
let { queryParam, state = writable(getParamValues(queryParam)), children }: Props = $props();
setAccordionState(state);
const searchParams = new URLSearchParams(page.url.searchParams);
const searchParams = new SvelteURLSearchParams(page.url.searchParams);
$effect(() => {
if ($state.size > 0) {

View file

@ -17,6 +17,7 @@
import { mdiClose, mdiInformationOutline } from '@mdi/js';
import { t } from 'svelte-i18n';
import { fade } from 'svelte/transition';
import { SvelteDate } from 'svelte/reactivity';
let showMessage = $state(false);
let hoverMessage = $state(false);
@ -37,7 +38,7 @@
};
const hideButton = async (always: boolean) => {
const hideBuyButtonUntil = new Date();
const hideBuyButtonUntil = new SvelteDate();
if (always) {
hideBuyButtonUntil.setFullYear(2124); // see ya in 100 years