@factorialco/f0-react 1.303.2 → 1.303.3

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.
@@ -6374,6 +6374,23 @@ declare global {
6374
6374
  }
6375
6375
  }
6376
6376
 
6377
+ declare module "gridstack" {
6378
+ interface GridStackWidget {
6379
+ id?: string;
6380
+ allowedSizes?: Array<{
6381
+ w: number;
6382
+ h: number;
6383
+ }>;
6384
+ meta?: Record<string, unknown>;
6385
+ }
6386
+ interface GridStackNode {
6387
+ allowedSizes?: Array<{
6388
+ w: number;
6389
+ h: number;
6390
+ }>;
6391
+ }
6392
+ }
6393
+
6377
6394
 
6378
6395
  declare module "@tiptap/core" {
6379
6396
  interface Commands<ReturnType> {
@@ -6401,28 +6418,6 @@ declare module "@tiptap/core" {
6401
6418
  }
6402
6419
  }
6403
6420
 
6404
- declare module "gridstack" {
6405
- interface GridStackWidget {
6406
- id?: string;
6407
- allowedSizes?: Array<{
6408
- w: number;
6409
- h: number;
6410
- }>;
6411
- meta?: Record<string, unknown>;
6412
- }
6413
- interface GridStackNode {
6414
- allowedSizes?: Array<{
6415
- w: number;
6416
- h: number;
6417
- }>;
6418
- }
6419
- }
6420
-
6421
-
6422
- declare namespace Calendar {
6423
- var displayName: string;
6424
- }
6425
-
6426
6421
 
6427
6422
  declare module "@tiptap/core" {
6428
6423
  interface Commands<ReturnType> {
@@ -6431,3 +6426,8 @@ declare module "@tiptap/core" {
6431
6426
  };
6432
6427
  }
6433
6428
  }
6429
+
6430
+
6431
+ declare namespace Calendar {
6432
+ var displayName: string;
6433
+ }