refactor(src): root-level clutter cleanup (Group 4)

- Move 10 theme CSS files from src/ root to src/styles/ — update app.css
  @import paths from ./ae-*.css to ./styles/ae-*.css. Keeps src/ root tidy
  without changing how the themes are bundled.
- Trash aeclci_v1.css — not imported anywhere, dead file.
- Move pwa_install.svelte.ts from lib/pwa/ (single-file dir) into lib/elements/
  alongside element_pwa_install_prompt.svelte; update 2 imports.
- Move src/types/temporary-svelte-augments.d.ts into src/lib/types/ (canonical
  type location); trash empty src/types/ dir.
- idaa/clear-caches/ route slug NOT renamed — URL is embedded in Novi portal
  iframe config; requires coordinated portal update outside this repo.

svelte-check: 0 errors, 0 warnings.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Scott Idem
2026-06-22 21:39:17 -04:00
parent 7fa9e107b8
commit b1c2438867
16 changed files with 12 additions and 217 deletions

View File

@@ -34,16 +34,16 @@ html.light {
/* @import '@skeletonlabs/skeleton/themes/ae_c_osit'; */
/* @import '@skeletonlabs/skeleton/themes/ae_c_lci'; */
@import './ae-osit-default.css';
@import './ae-c-lci.css';
@import './ae-c-lci-new.css';
@import './ae-c-idaa-light.css';
@import './ae-firefly.css';
@import './ae-firefly-steelblue.css';
@import './ae-firefly-indigo.css';
@import './ae-firefly-rainbow.css';
@import './ae-firefly-axonius.css';
@import './ae-firefly-bgh.css';
@import './styles/ae-osit-default.css';
@import './styles/ae-c-lci.css';
@import './styles/ae-c-lci-new.css';
@import './styles/ae-c-idaa-light.css';
@import './styles/ae-firefly.css';
@import './styles/ae-firefly-steelblue.css';
@import './styles/ae-firefly-indigo.css';
@import './styles/ae-firefly-rainbow.css';
@import './styles/ae-firefly-axonius.css';
@import './styles/ae-firefly-bgh.css';
@source '../node_modules/@skeletonlabs/skeleton-svelte/dist';