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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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.
|
||||
@@ -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.
|
||||
Reference in New Issue
Block a user