@flexiui/svelte-rich-text 0.0.20 → 0.0.22
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 +6 -2
- package/package.json +1 -1
package/dist/RichText.svelte
CHANGED
|
@@ -822,14 +822,18 @@
|
|
|
822
822
|
</div>
|
|
823
823
|
|
|
824
824
|
<!-- Font size editor -->
|
|
825
|
-
<div role="group" class="fl-rich-text-toolbar-group
|
|
826
|
-
<div class="fl-font-size-editor
|
|
825
|
+
<div role="group" class="fl-rich-text-toolbar-group">
|
|
826
|
+
<div class="fl-font-size-editor">
|
|
827
827
|
<button
|
|
828
|
+
type="button"
|
|
829
|
+
aria-label="Decrease font size"
|
|
828
830
|
onclick={decrementFontSize}
|
|
829
831
|
class="fl-font-size-editor-button">-</button
|
|
830
832
|
>
|
|
831
833
|
<input type="text" bind:value={fontSize} />
|
|
832
834
|
<button
|
|
835
|
+
type="button"
|
|
836
|
+
aria-label="Increase font size"
|
|
833
837
|
onclick={incrementFontSize}
|
|
834
838
|
class="fl-font-size-editor-button">+</button
|
|
835
839
|
>
|