@factorialco/f0-react 1.241.0 → 1.241.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 +4229 -4213
- package/dist/f0.d.ts +9 -9
- package/dist/f0.js +2 -2
- package/dist/{hooks-fkUFAzc1.js → hooks-CF7n8whp.js} +9 -8
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -5401,8 +5401,8 @@ declare module "@tiptap/core" {
|
|
|
5401
5401
|
|
|
5402
5402
|
declare module "@tiptap/core" {
|
|
5403
5403
|
interface Commands<ReturnType> {
|
|
5404
|
-
|
|
5405
|
-
|
|
5404
|
+
transcript: {
|
|
5405
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
5406
5406
|
};
|
|
5407
5407
|
}
|
|
5408
5408
|
}
|
|
@@ -5410,13 +5410,18 @@ declare module "@tiptap/core" {
|
|
|
5410
5410
|
|
|
5411
5411
|
declare module "@tiptap/core" {
|
|
5412
5412
|
interface Commands<ReturnType> {
|
|
5413
|
-
|
|
5414
|
-
|
|
5413
|
+
liveCompanion: {
|
|
5414
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
5415
5415
|
};
|
|
5416
5416
|
}
|
|
5417
5417
|
}
|
|
5418
5418
|
|
|
5419
5419
|
|
|
5420
|
+
declare namespace Calendar {
|
|
5421
|
+
var displayName: string;
|
|
5422
|
+
}
|
|
5423
|
+
|
|
5424
|
+
|
|
5420
5425
|
declare module "@tiptap/core" {
|
|
5421
5426
|
interface Commands<ReturnType> {
|
|
5422
5427
|
moodTracker: {
|
|
@@ -5424,8 +5429,3 @@ declare module "@tiptap/core" {
|
|
|
5424
5429
|
};
|
|
5425
5430
|
}
|
|
5426
5431
|
}
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
declare namespace Calendar {
|
|
5430
|
-
var displayName: string;
|
|
5431
|
-
}
|