@factorialco/f0-react 1.309.0 → 1.310.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.
@@ -6438,6 +6438,23 @@ declare global {
6438
6438
  }
6439
6439
  }
6440
6440
 
6441
+ declare module "gridstack" {
6442
+ interface GridStackWidget {
6443
+ id?: string;
6444
+ allowedSizes?: Array<{
6445
+ w: number;
6446
+ h: number;
6447
+ }>;
6448
+ meta?: Record<string, unknown>;
6449
+ }
6450
+ interface GridStackNode {
6451
+ allowedSizes?: Array<{
6452
+ w: number;
6453
+ h: number;
6454
+ }>;
6455
+ }
6456
+ }
6457
+
6441
6458
 
6442
6459
  declare module "@tiptap/core" {
6443
6460
  interface Commands<ReturnType> {
@@ -6465,23 +6482,6 @@ declare module "@tiptap/core" {
6465
6482
  }
6466
6483
  }
6467
6484
 
6468
- declare module "gridstack" {
6469
- interface GridStackWidget {
6470
- id?: string;
6471
- allowedSizes?: Array<{
6472
- w: number;
6473
- h: number;
6474
- }>;
6475
- meta?: Record<string, unknown>;
6476
- }
6477
- interface GridStackNode {
6478
- allowedSizes?: Array<{
6479
- w: number;
6480
- h: number;
6481
- }>;
6482
- }
6483
- }
6484
-
6485
6485
 
6486
6486
  declare module "@tiptap/core" {
6487
6487
  interface Commands<ReturnType> {