@factorialco/f0-react 1.311.0 → 1.311.2

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,6 +450,23 @@ declare global {
450
450
  }
451
451
  }
452
452
 
453
+ declare module "gridstack" {
454
+ interface GridStackWidget {
455
+ id?: string;
456
+ allowedSizes?: Array<{
457
+ w: number;
458
+ h: number;
459
+ }>;
460
+ meta?: Record<string, unknown>;
461
+ }
462
+ interface GridStackNode {
463
+ allowedSizes?: Array<{
464
+ w: number;
465
+ h: number;
466
+ }>;
467
+ }
468
+ }
469
+
453
470
 
454
471
  declare module "@tiptap/core" {
455
472
  interface Commands<ReturnType> {
@@ -462,8 +479,8 @@ declare module "@tiptap/core" {
462
479
 
463
480
  declare module "@tiptap/core" {
464
481
  interface Commands<ReturnType> {
465
- liveCompanion: {
466
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
482
+ transcript: {
483
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
467
484
  };
468
485
  }
469
486
  }
@@ -471,34 +488,12 @@ declare module "@tiptap/core" {
471
488
 
472
489
  declare module "@tiptap/core" {
473
490
  interface Commands<ReturnType> {
474
- transcript: {
475
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
491
+ liveCompanion: {
492
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
476
493
  };
477
494
  }
478
495
  }
479
496
 
480
- declare module "gridstack" {
481
- interface GridStackWidget {
482
- id?: string;
483
- allowedSizes?: Array<{
484
- w: number;
485
- h: number;
486
- }>;
487
- meta?: Record<string, unknown>;
488
- }
489
- interface GridStackNode {
490
- allowedSizes?: Array<{
491
- w: number;
492
- h: number;
493
- }>;
494
- }
495
- }
496
-
497
-
498
- declare namespace Calendar {
499
- var displayName: string;
500
- }
501
-
502
497
 
503
498
  declare module "@tiptap/core" {
504
499
  interface Commands<ReturnType> {
@@ -507,3 +502,8 @@ declare module "@tiptap/core" {
507
502
  };
508
503
  }
509
504
  }
505
+
506
+
507
+ declare namespace Calendar {
508
+ var displayName: string;
509
+ }