General clean up. Also changed everything over to data store element version 2. Seems to be working well...

This commit is contained in:
Scott Idem
2024-09-17 17:17:20 -04:00
parent 527d1f82b7
commit 77b14a387e
39 changed files with 42 additions and 67 deletions

View File

@@ -6,12 +6,10 @@ import { fade } from 'svelte/transition';
// This works and uses local storage:
// store_current_tab must be prefixed with $ to be reactive.
import { clipboard, FileDropzone, getModalStore, localStorageStore, ProgressRadial, TabGroup, Tab, TabAnchor } from '@skeletonlabs/skeleton';
import { clipboard, FileDropzone, getModalStore, localStorageStore, TabGroup, Tab } from '@skeletonlabs/skeleton';
import type { Writable } from 'svelte/store';
import Element_data_store from '$lib/element_data_store.svelte';
const store_current_tab: Writable<string> = localStorageStore('ae_events_speakers_current_tab', 'start');
console.log(`store_current_tab:`, $store_current_tab);