@flexiui/svelte-rich-text 0.0.23 → 0.0.24
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 -0
- package/package.json +1 -1
package/dist/RichText.svelte
CHANGED
|
@@ -811,6 +811,7 @@
|
|
|
811
811
|
<div role="group" class="fl-rich-text-toolbar-group">
|
|
812
812
|
<div class="fl-font-size-editor">
|
|
813
813
|
<button
|
|
814
|
+
type="button"
|
|
814
815
|
aria-label="Decrease font size"
|
|
815
816
|
onclick={decrementFontSize}
|
|
816
817
|
class="fl-font-size-editor-button">
|
|
@@ -819,6 +820,7 @@
|
|
|
819
820
|
>
|
|
820
821
|
<input type="text" bind:value={fontSize} />
|
|
821
822
|
<button
|
|
823
|
+
type="button"
|
|
822
824
|
aria-label="Increase font size"
|
|
823
825
|
onclick={incrementFontSize}
|
|
824
826
|
class="fl-font-size-editor-button">
|