chore: rename editor components and analytics to follow element_* convention

- AE_Comp_Editor_CodeMirror.svelte → element_editor_codemirror.svelte
- AE_Comp_Editor_TipTap.svelte → element_editor_tiptap.svelte
- analytics.svelte → e_app_analytics.svelte (matches e_app_* prefix of siblings)
- Updated all import paths; import variable names unchanged

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Scott Idem
2026-03-20 09:49:57 -04:00
parent 0d960435f8
commit bf834aa165
20 changed files with 20 additions and 20 deletions

View File

@@ -7,7 +7,7 @@
*/
import { Modal } from 'flowbite-svelte';
import { Brain, CodeXml, ExternalLink, Globe, Mail, Minus, Palette, Plus, Save, ShieldCheck, Timer } from '@lucide/svelte';
import AE_Comp_Editor_CodeMirror from '$lib/elements/AE_Comp_Editor_CodeMirror.svelte';
import AE_Comp_Editor_CodeMirror from '$lib/elements/element_editor_codemirror.svelte';
import { ae_loc } from '$lib/stores/ae_stores';
interface Props {

View File

@@ -12,7 +12,7 @@
RefreshCcw, Globe, Copy
} from '@lucide/svelte';
import { ae_loc, ae_api } from '$lib/stores/ae_stores';
import AE_Comp_Editor_CodeMirror from '$lib/elements/AE_Comp_Editor_CodeMirror.svelte';
import AE_Comp_Editor_CodeMirror from '$lib/elements/element_editor_codemirror.svelte';
interface Props {
// Core Props

View File

@@ -101,7 +101,7 @@
// import { ae_loc, ae_sess, ae_api, ae_trig, slct, slct_trigger } from '$lib/ae_stores';
// *** Import Aether core components
import AE_Comp_Editor_TipTap from '$lib/elements/AE_Comp_Editor_TipTap.svelte';
import AE_Comp_Editor_TipTap from '$lib/elements/element_editor_tiptap.svelte';
import { Check, LoaderCircle, Pencil, Save, X } from '@lucide/svelte';
// *** Import Aether module variables and functions
// *** Import Aether module components

View File

@@ -6,7 +6,7 @@
import type { key_val } from '$lib/stores/ae_stores';
import { ae_api, ae_loc } from '$lib/stores/ae_stores';
import { api } from '$lib/api/api';
import AE_Comp_Editor_TipTap from '$lib/elements/AE_Comp_Editor_TipTap.svelte';
import AE_Comp_Editor_TipTap from '$lib/elements/element_editor_tiptap.svelte';
interface Props {
// Core Identifiers

View File

@@ -1,5 +1,5 @@
<script lang="ts">
import AE_Comp_Editor_CodeMirror from './AE_Comp_Editor_CodeMirror.svelte';
import AE_Comp_Editor_CodeMirror from './element_editor_codemirror.svelte';
import { browser } from '$app/environment';
interface Props {

View File

@@ -1,6 +1,6 @@
<script lang="ts">
/**
* AE_Comp_Editor_CodeMirror.svelte
* element_editor_codemirror.svelte
* Consolidated CodeMirror 6 Editor for Aether Platform.
* Combines technical power with a user-friendly Markdown toolbar.
* Uses strictly snake_case and Svelte 5 Runes.

View File

@@ -1,6 +1,6 @@
<script lang="ts">
/**
* AE_Comp_Editor_TipTap.svelte
* element_editor_tiptap.svelte
* Zero-Dependency Rich Text Editor for Aether Platform.
* Uses native contenteditable to avoid TipTap/ProseMirror library conflicts.
* Styles aligned with existing .tiptap SCSS definitions.