@flexiui/svelte-rich-text 0.0.20 → 0.0.21
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 +4 -0
- package/package.json +1 -1
package/dist/RichText.svelte
CHANGED
|
@@ -825,11 +825,15 @@
|
|
|
825
825
|
<div role="group" class="fl-rich-text-toolbar-group flex-auto">
|
|
826
826
|
<div class="fl-font-size-editor flex-auto">
|
|
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
|
>
|