@factorialco/f0-react 1.299.4 → 1.301.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 -38
- package/dist/experimental.js +3 -3
- package/dist/f0.css +1 -1
- package/dist/f0.d.ts +35 -90
- package/dist/f0.js +1213 -958
- package/dist/{hooks-CZ8ydA4T.js → hooks-CKH69X_Y.js} +107988 -107978
- package/dist/i18n-provider-defaults.d.ts +24 -31
- package/dist/i18n-provider-defaults.js +2 -1
- package/dist/styles.css +1 -1
- package/package.json +7 -2
|
@@ -365,6 +365,7 @@ export declare const defaultTranslations: {
|
|
|
365
365
|
readonly placeholder: "Share what didn’t work";
|
|
366
366
|
};
|
|
367
367
|
};
|
|
368
|
+
readonly ask: "Ask One";
|
|
368
369
|
};
|
|
369
370
|
readonly select: {
|
|
370
371
|
readonly noResults: "No results found";
|
|
@@ -448,11 +449,28 @@ declare global {
|
|
|
448
449
|
}
|
|
449
450
|
}
|
|
450
451
|
|
|
452
|
+
declare module "gridstack" {
|
|
453
|
+
interface GridStackWidget {
|
|
454
|
+
id?: string;
|
|
455
|
+
allowedSizes?: Array<{
|
|
456
|
+
w: number;
|
|
457
|
+
h: number;
|
|
458
|
+
}>;
|
|
459
|
+
meta?: Record<string, unknown>;
|
|
460
|
+
}
|
|
461
|
+
interface GridStackNode {
|
|
462
|
+
allowedSizes?: Array<{
|
|
463
|
+
w: number;
|
|
464
|
+
h: number;
|
|
465
|
+
}>;
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
|
|
451
469
|
|
|
452
470
|
declare module "@tiptap/core" {
|
|
453
471
|
interface Commands<ReturnType> {
|
|
454
|
-
|
|
455
|
-
|
|
472
|
+
aiBlock: {
|
|
473
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
456
474
|
};
|
|
457
475
|
}
|
|
458
476
|
}
|
|
@@ -460,8 +478,8 @@ declare module "@tiptap/core" {
|
|
|
460
478
|
|
|
461
479
|
declare module "@tiptap/core" {
|
|
462
480
|
interface Commands<ReturnType> {
|
|
463
|
-
|
|
464
|
-
|
|
481
|
+
liveCompanion: {
|
|
482
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
465
483
|
};
|
|
466
484
|
}
|
|
467
485
|
}
|
|
@@ -476,28 +494,8 @@ declare module "@tiptap/core" {
|
|
|
476
494
|
}
|
|
477
495
|
|
|
478
496
|
|
|
479
|
-
declare
|
|
480
|
-
|
|
481
|
-
id?: string;
|
|
482
|
-
allowedSizes?: Array<{
|
|
483
|
-
w: number;
|
|
484
|
-
h: number;
|
|
485
|
-
}>;
|
|
486
|
-
renderFn?: () => React.ReactElement | null;
|
|
487
|
-
meta?: Record<string, unknown>;
|
|
488
|
-
}
|
|
489
|
-
interface GridStackNode {
|
|
490
|
-
id?: string;
|
|
491
|
-
w?: number;
|
|
492
|
-
h?: number;
|
|
493
|
-
x?: number;
|
|
494
|
-
y?: number;
|
|
495
|
-
allowedSizes?: Array<{
|
|
496
|
-
w: number;
|
|
497
|
-
h: number;
|
|
498
|
-
}>;
|
|
499
|
-
renderFn?: () => React.ReactElement | null;
|
|
500
|
-
}
|
|
497
|
+
declare namespace Calendar {
|
|
498
|
+
var displayName: string;
|
|
501
499
|
}
|
|
502
500
|
|
|
503
501
|
|
|
@@ -508,8 +506,3 @@ declare module "@tiptap/core" {
|
|
|
508
506
|
};
|
|
509
507
|
}
|
|
510
508
|
}
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
declare namespace Calendar {
|
|
514
|
-
var displayName: string;
|
|
515
|
-
}
|