feat: migration to Svelte 5
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -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}`);
|
||||
|
||||
Reference in New Issue
Block a user