@factorialco/f0-react 1.322.1 → 1.323.0

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.
@@ -6406,6 +6406,23 @@ declare global {
6406
6406
  }
6407
6407
  }
6408
6408
 
6409
+ declare module "gridstack" {
6410
+ interface GridStackWidget {
6411
+ id?: string;
6412
+ allowedSizes?: Array<{
6413
+ w: number;
6414
+ h: number;
6415
+ }>;
6416
+ meta?: Record<string, unknown>;
6417
+ }
6418
+ interface GridStackNode {
6419
+ allowedSizes?: Array<{
6420
+ w: number;
6421
+ h: number;
6422
+ }>;
6423
+ }
6424
+ }
6425
+
6409
6426
 
6410
6427
  declare module "@tiptap/core" {
6411
6428
  interface Commands<ReturnType> {
@@ -6433,21 +6450,9 @@ declare module "@tiptap/core" {
6433
6450
  }
6434
6451
  }
6435
6452
 
6436
- declare module "gridstack" {
6437
- interface GridStackWidget {
6438
- id?: string;
6439
- allowedSizes?: Array<{
6440
- w: number;
6441
- h: number;
6442
- }>;
6443
- meta?: Record<string, unknown>;
6444
- }
6445
- interface GridStackNode {
6446
- allowedSizes?: Array<{
6447
- w: number;
6448
- h: number;
6449
- }>;
6450
- }
6453
+
6454
+ declare namespace Calendar {
6455
+ var displayName: string;
6451
6456
  }
6452
6457
 
6453
6458
 
@@ -6458,8 +6463,3 @@ declare module "@tiptap/core" {
6458
6463
  };
6459
6464
  }
6460
6465
  }
6461
-
6462
-
6463
- declare namespace Calendar {
6464
- var displayName: string;
6465
- }