sprintify-ui 0.11.14 → 0.11.15

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.
@@ -43371,6 +43371,11 @@ const XL = { class: "divide-x px-1 py-1 border-b flex" }, QL = ["disabled", "onC
43371
43371
  name: "footnote",
43372
43372
  icon: "material-symbols:edit-note-outline",
43373
43373
  command: () => o == null ? void 0 : o.commands.addFootnote()
43374
+ },
43375
+ {
43376
+ name: "nonBreakingSpace",
43377
+ icon: "material-symbols:space-bar",
43378
+ command: () => o.chain().focus().insertContent(" ").run()
43374
43379
  }
43375
43380
  ]), a = S(() => !r.toolbar || r.toolbar.length === 0 ? l.value : l.value.filter((u) => {
43376
43381
  var c;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.11.14",
3
+ "version": "0.11.15",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -244,6 +244,11 @@ const actions = computed<Action[]>(() => {
244
244
  icon: 'material-symbols:edit-note-outline',
245
245
  command: () => editor?.commands.addFootnote(),
246
246
  },
247
+ {
248
+ name: 'nonBreakingSpace',
249
+ icon: 'material-symbols:space-bar',
250
+ command: () => editor.chain().focus().insertContent('\u00A0').run(),
251
+ },
247
252
 
248
253
  ];
249
254
  });