sprintify-ui 0.11.14 → 0.11.16

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;
@@ -42,7 +42,7 @@ type __VLS_Slots = {} & {
42
42
  declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
43
43
  modelValue: {
44
44
  default: undefined;
45
- type: PropType<string[] | string | number | null | undefined>;
45
+ type: PropType<(string | number)[] | string | number | null | undefined>;
46
46
  };
47
47
  options: {
48
48
  required: true;
@@ -103,7 +103,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
103
103
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
104
104
  modelValue: {
105
105
  default: undefined;
106
- type: PropType<string[] | string | number | null | undefined>;
106
+ type: PropType<(string | number)[] | string | number | null | undefined>;
107
107
  };
108
108
  options: {
109
109
  required: true;
@@ -161,7 +161,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
161
161
  required: boolean;
162
162
  disabled: boolean;
163
163
  name: string;
164
- modelValue: string | number | string[] | null | undefined;
164
+ modelValue: string | number | (string | number)[] | null | undefined;
165
165
  hasError: boolean;
166
166
  max: number;
167
167
  primaryKey: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.11.14",
3
+ "version": "0.11.16",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -56,7 +56,7 @@ import { Size } from '@/utils/sizes';
56
56
  const props = defineProps({
57
57
  modelValue: {
58
58
  default: undefined,
59
- type: [Array, String, Number, null, undefined] as PropType<string[] | string | number | null | undefined>,
59
+ type: [Array, String, Number, null, undefined] as PropType<(string | number)[] | string | number | null | undefined>,
60
60
  },
61
61
  options: {
62
62
  required: true,
@@ -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
  });