NOT FULLY WORKING YET. Still working to upgrade fully to Tailwind CSS v4.

This commit is contained in:
Scott Idem
2025-06-18 14:48:42 -04:00
parent e6394549bf
commit db6e9dd019
16 changed files with 762 additions and 1160 deletions

View File

@@ -1,4 +1,5 @@
import { localStorageStore } from '@skeletonlabs/skeleton';
import { persisted } from 'svelte-persisted-store';
// import { localStorageStore } from '@skeletonlabs/skeleton';
import { writable } from 'svelte/store';
import type { Writable } from 'svelte/store';
@@ -86,7 +87,7 @@ let idaa_local_data_struct: key_val = {
// export let ae_loc = writable(idaa_local_data_struct);
// This works and uses *local* storage:
export let idaa_loc: Writable<key_val> = localStorageStore('ae_idaa_loc', idaa_local_data_struct);
export let idaa_loc: Writable<key_val> = persisted('ae_idaa_loc', idaa_local_data_struct);
// console.log(`AE Stores - App Local Storage Data:`, get(ae_loc));
@@ -152,7 +153,7 @@ let idaa_slct_obj_template: key_val = {
export let idaa_slct = writable(idaa_slct_obj_template);
// This works and uses *local* storage:
// export let idaa_slct: Writable<key_val> = localStorageStore('ae_idaa_slct', idaa_slct_obj_template);
// export let idaa_slct: Writable<key_val> = persisted('ae_idaa_slct', idaa_slct_obj_template);
/* *** BEGIN *** Initialize idaa_trig */