nuxt-studio 1.1.0 → 1.1.1

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.
@@ -450,8 +450,8 @@ declare module '@tiptap/core' {
450
450
 
451
451
  declare module '@tiptap/vue-3' {
452
452
  interface Commands<ReturnType> {
453
- videoPicker: {
454
- insertVideoPicker: () => ReturnType;
453
+ imagePicker: {
454
+ insertImagePicker: () => ReturnType;
455
455
  };
456
456
  }
457
457
  }
@@ -459,8 +459,8 @@ declare module '@tiptap/vue-3' {
459
459
 
460
460
  declare module '@tiptap/vue-3' {
461
461
  interface Commands<ReturnType> {
462
- imagePicker: {
463
- insertImagePicker: () => ReturnType;
462
+ videoPicker: {
463
+ insertVideoPicker: () => ReturnType;
464
464
  };
465
465
  }
466
466
  }
@@ -490,18 +490,6 @@ declare module '@tiptap/core' {
490
490
  }
491
491
 
492
492
 
493
- declare module '@tiptap/core' {
494
- interface Commands<ReturnType> {
495
- InlineElement: {
496
- /**
497
- * Toggle a InlineElement
498
- */
499
- setInlineElement: (tag: string) => ReturnType;
500
- };
501
- }
502
- }
503
-
504
-
505
493
  declare module '@tiptap/core' {
506
494
  interface Commands<ReturnType> {
507
495
  SpanStyle: {
@@ -522,6 +510,18 @@ declare module '@tiptap/core' {
522
510
  }
523
511
 
524
512
 
513
+ declare module '@tiptap/core' {
514
+ interface Commands<ReturnType> {
515
+ InlineElement: {
516
+ /**
517
+ * Toggle a InlineElement
518
+ */
519
+ setInlineElement: (tag: string) => ReturnType;
520
+ };
521
+ }
522
+ }
523
+
524
+
525
525
  declare module '@tiptap/core' {
526
526
  interface Commands<ReturnType> {
527
527
  Binding: {