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

@@ -11,9 +11,9 @@ import { goto, invalidateAll } from '$app/navigation';
import '../app.postcss';
// *** Import other supporting libraries
import { AppShell, AppBar, initializeStores } from '@skeletonlabs/skeleton';
// import { AppShell, AppBar, initializeStores } from '@skeletonlabs/skeleton';
// Initialize the stores for Drawer, Modal, and Toast so they work throughout the app.
initializeStores();
// initializeStores();
// import { Modal } from '@skeletonlabs/skeleton';
// import type {
// ModalComponent
@@ -43,7 +43,7 @@ import hljs from 'highlight.js/lib/core';
import 'highlight.js/styles/github-dark.css';
import { browser } from '$app/environment';
import { localStorageStore, storeHighlightJs } from '@skeletonlabs/skeleton';
// import { storeHighlightJs } from '@skeletonlabs/skeleton';
import xml from 'highlight.js/lib/languages/xml'; // for HTML
import css from 'highlight.js/lib/languages/css';
import javascript from 'highlight.js/lib/languages/javascript';
@@ -53,7 +53,7 @@ hljs.registerLanguage('xml', xml); // for HTML
hljs.registerLanguage('css', css);
hljs.registerLanguage('javascript', javascript);
hljs.registerLanguage('typescript', typescript);
storeHighlightJs.set(hljs);
// storeHighlightJs.set(hljs);
// *** Import Aether specific variables and functions
import Analytics from '$lib/analytics.svelte'

View File

@@ -4,8 +4,8 @@ export let data: any;
import { goto } from '$app/navigation';
import { onMount } from 'svelte';
import type { Writable } from 'svelte/store';
import { localStorageStore } from '@skeletonlabs/skeleton';
// import type { Writable } from 'svelte/store';
// import { localStorageStore } from '@skeletonlabs/skeleton';
import type { key_val } from '$lib/ae_stores';
// import { ae_util } from '$lib/ae_utils/ae_utils';

View File

@@ -6,8 +6,6 @@ export let data: any;
// import { onMount } from 'svelte';
import { goto, invalidate, pushState, replaceState } from '$app/navigation';
// import { clipboard, FileDropzone, getModalStore, localStorageStore, ProgressRadial, RadioGroup, RadioItem, TabGroup, Tab, TabAnchor } from '@skeletonlabs/skeleton';
import type { key_val } from '$lib/ae_stores';
// import { ae_util } from '$lib/ae_utils/ae_utils';
// import { api } from '$lib/api';

View File

@@ -6,7 +6,7 @@ export let data: any;
import { onMount } from 'svelte';
import { goto, invalidate, pushState, replaceState } from '$app/navigation';
import { clipboard, FileDropzone, getModalStore, localStorageStore, ProgressRadial, RadioGroup, RadioItem, TabGroup, Tab, TabAnchor } from '@skeletonlabs/skeleton';
import { clipboard, TabGroup, Tab } from '@skeletonlabs/skeleton';
import type { key_val } from '$lib/ae_stores';
import { ae_util } from '$lib/ae_utils/ae_utils';

View File

@@ -203,7 +203,8 @@ onDestroy(() => {
</div>
{:else if ($lq__post_obj?.full_name)}
<div class="post__posted_by">
Posted by: <span class="fas fa-user"></span> <span class="post__full_name">{$lq__post_obj?.full_name}
Posted by: <span class="fas fa-user"></span>
<span class="post__full_name">{$lq__post_obj?.full_name}</span>
{#if $ae_loc.trusted_access && $lq__post_obj?.email}
<a href="mailto:{$lq__post_obj?.email}?subject=IDAA BB Post">{$lq__post_obj?.email}</a>
{/if}

View File

@@ -3,7 +3,7 @@
export let data: any;
import { onMount } from 'svelte';
import { localStorageStore } from '@skeletonlabs/skeleton';
// import { localStorageStore } from '@skeletonlabs/skeleton';
import { ae_loc, ae_sess, ae_api, slct, slct_trigger } from '$lib/ae_stores';
// Quickly save the data passed from the parent(s) to the Svelte stores, localStorage, and other.