@flexiui/svelte-rich-text 0.0.48 → 0.0.50
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.
|
@@ -188,7 +188,6 @@
|
|
|
188
188
|
aria-label="Row options"
|
|
189
189
|
type="button"
|
|
190
190
|
onclick={(e) => {
|
|
191
|
-
editor.commands.deleteSelection();
|
|
192
191
|
editor?.chain().focus().selectRow(getPos()).run();
|
|
193
192
|
showTooltip(e.target as HTMLElement, "row-dropdown");
|
|
194
193
|
}}
|
|
@@ -202,7 +201,6 @@
|
|
|
202
201
|
aria-label="Column options"
|
|
203
202
|
type="button"
|
|
204
203
|
onclick={(e) => {
|
|
205
|
-
editor.commands.deleteSelection();
|
|
206
204
|
editor?.chain().focus().selectColumn(getPos()).run();
|
|
207
205
|
showTooltip(e.target as HTMLElement, "column-dropdown");
|
|
208
206
|
}}
|
package/dist/getExtensions.js
CHANGED