@factorialco/f0-react 1.311.1 → 1.311.2
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 +9 -9
- package/dist/experimental.js +2 -2
- package/dist/f0.d.ts +9 -9
- package/dist/f0.js +2 -2
- package/dist/{hooks-BivGRF9G.js → hooks-B57P57y7.js} +9935 -9936
- package/dist/i18n-provider-defaults.d.ts +9 -9
- package/package.json +1 -1
|
@@ -479,8 +479,8 @@ declare module "@tiptap/core" {
|
|
|
479
479
|
|
|
480
480
|
declare module "@tiptap/core" {
|
|
481
481
|
interface Commands<ReturnType> {
|
|
482
|
-
|
|
483
|
-
|
|
482
|
+
transcript: {
|
|
483
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
484
484
|
};
|
|
485
485
|
}
|
|
486
486
|
}
|
|
@@ -488,18 +488,13 @@ declare module "@tiptap/core" {
|
|
|
488
488
|
|
|
489
489
|
declare module "@tiptap/core" {
|
|
490
490
|
interface Commands<ReturnType> {
|
|
491
|
-
|
|
492
|
-
|
|
491
|
+
liveCompanion: {
|
|
492
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
493
493
|
};
|
|
494
494
|
}
|
|
495
495
|
}
|
|
496
496
|
|
|
497
497
|
|
|
498
|
-
declare namespace Calendar {
|
|
499
|
-
var displayName: string;
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
|
|
503
498
|
declare module "@tiptap/core" {
|
|
504
499
|
interface Commands<ReturnType> {
|
|
505
500
|
moodTracker: {
|
|
@@ -507,3 +502,8 @@ declare module "@tiptap/core" {
|
|
|
507
502
|
};
|
|
508
503
|
}
|
|
509
504
|
}
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
declare namespace Calendar {
|
|
508
|
+
var displayName: string;
|
|
509
|
+
}
|