@factorialco/f0-react 1.245.0 → 1.246.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 +9 -9
- package/dist/experimental.js +1519 -1513
- package/dist/f0.d.ts +9 -9
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -5576,8 +5576,8 @@ declare global {
|
|
|
5576
5576
|
|
|
5577
5577
|
declare module "@tiptap/core" {
|
|
5578
5578
|
interface Commands<ReturnType> {
|
|
5579
|
-
|
|
5580
|
-
|
|
5579
|
+
aiBlock: {
|
|
5580
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
5581
5581
|
};
|
|
5582
5582
|
}
|
|
5583
5583
|
}
|
|
@@ -5585,8 +5585,8 @@ declare module "@tiptap/core" {
|
|
|
5585
5585
|
|
|
5586
5586
|
declare module "@tiptap/core" {
|
|
5587
5587
|
interface Commands<ReturnType> {
|
|
5588
|
-
|
|
5589
|
-
|
|
5588
|
+
liveCompanion: {
|
|
5589
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
5590
5590
|
};
|
|
5591
5591
|
}
|
|
5592
5592
|
}
|
|
@@ -5601,6 +5601,11 @@ declare module "@tiptap/core" {
|
|
|
5601
5601
|
}
|
|
5602
5602
|
|
|
5603
5603
|
|
|
5604
|
+
declare namespace Calendar {
|
|
5605
|
+
var displayName: string;
|
|
5606
|
+
}
|
|
5607
|
+
|
|
5608
|
+
|
|
5604
5609
|
declare module "@tiptap/core" {
|
|
5605
5610
|
interface Commands<ReturnType> {
|
|
5606
5611
|
moodTracker: {
|
|
@@ -5608,8 +5613,3 @@ declare module "@tiptap/core" {
|
|
|
5608
5613
|
};
|
|
5609
5614
|
}
|
|
5610
5615
|
}
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
declare namespace Calendar {
|
|
5614
|
-
var displayName: string;
|
|
5615
|
-
}
|