@flexiui/svelte-rich-text 0.0.13 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RichText.svelte +2 -2
- package/package.json +1 -1
package/dist/RichText.svelte
CHANGED
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
let tooltipVisible = $state(false);
|
|
100
100
|
let tooltipX = $state(0);
|
|
101
101
|
let tooltipY = $state(0);
|
|
102
|
-
let tooltip: HTMLDivElement =
|
|
102
|
+
let tooltip: HTMLDivElement = null as HTMLDivElement;
|
|
103
103
|
let cleanup: () => void;
|
|
104
104
|
let currentTriggerEl: HTMLElement | null = null;
|
|
105
105
|
let activeDropdownType = $state(null);
|
|
@@ -725,6 +725,7 @@
|
|
|
725
725
|
{/if}
|
|
726
726
|
|
|
727
727
|
<EditorContent editor={$editor} class="fl-rich-text-content" />
|
|
728
|
+
</div>
|
|
728
729
|
|
|
729
730
|
<div
|
|
730
731
|
class="fl-toolbar-dropdown-panel"
|
|
@@ -825,7 +826,6 @@
|
|
|
825
826
|
|
|
826
827
|
{/if}
|
|
827
828
|
</div>
|
|
828
|
-
</div>
|
|
829
829
|
|
|
830
830
|
<style>
|
|
831
831
|
.flex-auto {
|