feat: migration to Svelte 5

This commit is contained in:
Scott Idem
2025-11-19 12:38:03 -05:00
parent d99e9ee1b0
commit f25b9ccd8f
46 changed files with 9578 additions and 9095 deletions

View File

@@ -1,6 +1,5 @@
<script lang="ts">
/** @type {import('./$types').PageData} */
export let data: any;
let log_lvl: number = 0;
// *** Import Svelte core
@@ -20,7 +19,13 @@
} from '$lib/stores/ae_stores';
import { idaa_loc, idaa_sess, idaa_slct } from '$lib/stores/ae_idaa_stores';
export let lq__post_obj_li: any;
interface Props {
/** @type {import('./$types').PageData} */
data: any;
lq__post_obj_li: any;
}
let { data, lq__post_obj_li }: Props = $props();
onMount(() => {
if (log_lvl) {

View File

@@ -16,7 +16,11 @@
import { idaa_loc, idaa_sess, idaa_slct, idaa_trig } from '$lib/stores/ae_idaa_stores';
import MyClipboard from '$lib/app_components/e_app_clipboard.svelte';
export let lq__event_obj: any;
interface Props {
lq__event_obj: any;
}
let { lq__event_obj }: Props = $props();
if ($idaa_slct.event_id) {
console.log(`Event ID selected: ${$idaa_slct.event_id}`);