@factorialco/f0-react 1.303.2 → 1.303.4

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