@factorialco/f0-react 1.306.3 → 1.306.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.
- package/dist/experimental.d.ts +20 -20
- package/dist/experimental.js +3804 -3829
- package/dist/f0.d.ts +20 -20
- package/dist/f0.js +2 -2
- package/dist/{hooks-B2RzD_VX.js → hooks-DRjrmneu.js} +10576 -10550
- package/dist/i18n-provider-defaults.d.ts +20 -20
- package/package.json +1 -1
|
@@ -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> {
|
|
@@ -477,21 +494,9 @@ declare module "@tiptap/core" {
|
|
|
477
494
|
}
|
|
478
495
|
}
|
|
479
496
|
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
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
|
-
}
|
|
497
|
+
|
|
498
|
+
declare namespace Calendar {
|
|
499
|
+
var displayName: string;
|
|
495
500
|
}
|
|
496
501
|
|
|
497
502
|
|
|
@@ -502,8 +507,3 @@ declare module "@tiptap/core" {
|
|
|
502
507
|
};
|
|
503
508
|
}
|
|
504
509
|
}
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
declare namespace Calendar {
|
|
508
|
-
var displayName: string;
|
|
509
|
-
}
|