@factorialco/f0-react 1.316.3 → 1.317.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.
- package/dist/experimental.d.ts +31 -20
- package/dist/experimental.js +1599 -1590
- package/dist/f0.d.ts +46 -20
- package/dist/f0.js +27 -25
- package/dist/{hooks-B_uo0_lI.js → hooks-CUFsqUWT.js} +5862 -5833
- package/dist/i18n-provider-defaults.d.ts +20 -20
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -458,6 +458,23 @@ declare global {
|
|
|
458
458
|
}
|
|
459
459
|
}
|
|
460
460
|
|
|
461
|
+
declare module "gridstack" {
|
|
462
|
+
interface GridStackWidget {
|
|
463
|
+
id?: string;
|
|
464
|
+
allowedSizes?: Array<{
|
|
465
|
+
w: number;
|
|
466
|
+
h: number;
|
|
467
|
+
}>;
|
|
468
|
+
meta?: Record<string, unknown>;
|
|
469
|
+
}
|
|
470
|
+
interface GridStackNode {
|
|
471
|
+
allowedSizes?: Array<{
|
|
472
|
+
w: number;
|
|
473
|
+
h: number;
|
|
474
|
+
}>;
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
|
|
461
478
|
|
|
462
479
|
declare module "@tiptap/core" {
|
|
463
480
|
interface Commands<ReturnType> {
|
|
@@ -485,21 +502,9 @@ declare module "@tiptap/core" {
|
|
|
485
502
|
}
|
|
486
503
|
}
|
|
487
504
|
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
allowedSizes?: Array<{
|
|
492
|
-
w: number;
|
|
493
|
-
h: number;
|
|
494
|
-
}>;
|
|
495
|
-
meta?: Record<string, unknown>;
|
|
496
|
-
}
|
|
497
|
-
interface GridStackNode {
|
|
498
|
-
allowedSizes?: Array<{
|
|
499
|
-
w: number;
|
|
500
|
-
h: number;
|
|
501
|
-
}>;
|
|
502
|
-
}
|
|
505
|
+
|
|
506
|
+
declare namespace Calendar {
|
|
507
|
+
var displayName: string;
|
|
503
508
|
}
|
|
504
509
|
|
|
505
510
|
|
|
@@ -510,8 +515,3 @@ declare module "@tiptap/core" {
|
|
|
510
515
|
};
|
|
511
516
|
}
|
|
512
517
|
}
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
declare namespace Calendar {
|
|
516
|
-
var displayName: string;
|
|
517
|
-
}
|