@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
package/dist/experimental.d.ts
CHANGED
|
@@ -6423,6 +6423,23 @@ declare global {
|
|
|
6423
6423
|
}
|
|
6424
6424
|
}
|
|
6425
6425
|
|
|
6426
|
+
declare module "gridstack" {
|
|
6427
|
+
interface GridStackWidget {
|
|
6428
|
+
id?: string;
|
|
6429
|
+
allowedSizes?: Array<{
|
|
6430
|
+
w: number;
|
|
6431
|
+
h: number;
|
|
6432
|
+
}>;
|
|
6433
|
+
meta?: Record<string, unknown>;
|
|
6434
|
+
}
|
|
6435
|
+
interface GridStackNode {
|
|
6436
|
+
allowedSizes?: Array<{
|
|
6437
|
+
w: number;
|
|
6438
|
+
h: number;
|
|
6439
|
+
}>;
|
|
6440
|
+
}
|
|
6441
|
+
}
|
|
6442
|
+
|
|
6426
6443
|
|
|
6427
6444
|
declare module "@tiptap/core" {
|
|
6428
6445
|
interface Commands<ReturnType> {
|
|
@@ -6450,21 +6467,9 @@ declare module "@tiptap/core" {
|
|
|
6450
6467
|
}
|
|
6451
6468
|
}
|
|
6452
6469
|
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6456
|
-
allowedSizes?: Array<{
|
|
6457
|
-
w: number;
|
|
6458
|
-
h: number;
|
|
6459
|
-
}>;
|
|
6460
|
-
meta?: Record<string, unknown>;
|
|
6461
|
-
}
|
|
6462
|
-
interface GridStackNode {
|
|
6463
|
-
allowedSizes?: Array<{
|
|
6464
|
-
w: number;
|
|
6465
|
-
h: number;
|
|
6466
|
-
}>;
|
|
6467
|
-
}
|
|
6470
|
+
|
|
6471
|
+
declare namespace Calendar {
|
|
6472
|
+
var displayName: string;
|
|
6468
6473
|
}
|
|
6469
6474
|
|
|
6470
6475
|
|
|
@@ -6475,8 +6480,3 @@ declare module "@tiptap/core" {
|
|
|
6475
6480
|
};
|
|
6476
6481
|
}
|
|
6477
6482
|
}
|
|
6478
|
-
|
|
6479
|
-
|
|
6480
|
-
declare namespace Calendar {
|
|
6481
|
-
var displayName: string;
|
|
6482
|
-
}
|