@factorialco/f0-react 1.239.3 → 1.240.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 +10 -10
- package/dist/experimental.js +3693 -3686
- package/dist/f0.d.ts +9 -9
- package/dist/styles.css +1 -1
- package/package.json +2 -1
package/dist/f0.d.ts
CHANGED
|
@@ -3401,8 +3401,8 @@ declare global {
|
|
|
3401
3401
|
|
|
3402
3402
|
declare module "@tiptap/core" {
|
|
3403
3403
|
interface Commands<ReturnType> {
|
|
3404
|
-
|
|
3405
|
-
|
|
3404
|
+
liveCompanion: {
|
|
3405
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
3406
3406
|
};
|
|
3407
3407
|
}
|
|
3408
3408
|
}
|
|
@@ -3410,8 +3410,8 @@ declare module "@tiptap/core" {
|
|
|
3410
3410
|
|
|
3411
3411
|
declare module "@tiptap/core" {
|
|
3412
3412
|
interface Commands<ReturnType> {
|
|
3413
|
-
|
|
3414
|
-
|
|
3413
|
+
aiBlock: {
|
|
3414
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
3415
3415
|
};
|
|
3416
3416
|
}
|
|
3417
3417
|
}
|
|
@@ -3426,11 +3426,6 @@ declare module "@tiptap/core" {
|
|
|
3426
3426
|
}
|
|
3427
3427
|
|
|
3428
3428
|
|
|
3429
|
-
declare namespace Calendar {
|
|
3430
|
-
var displayName: string;
|
|
3431
|
-
}
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
3429
|
declare module "@tiptap/core" {
|
|
3435
3430
|
interface Commands<ReturnType> {
|
|
3436
3431
|
moodTracker: {
|
|
@@ -3438,3 +3433,8 @@ declare module "@tiptap/core" {
|
|
|
3438
3433
|
};
|
|
3439
3434
|
}
|
|
3440
3435
|
}
|
|
3436
|
+
|
|
3437
|
+
|
|
3438
|
+
declare namespace Calendar {
|
|
3439
|
+
var displayName: string;
|
|
3440
|
+
}
|