@factorialco/f0-react 1.255.1 → 1.256.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 +3412 -3398
- package/dist/f0.d.ts +9 -9
- package/icons/app/Group.d.ts +4 -0
- package/icons/app/Group.d.ts.map +1 -0
- package/icons/app/Group.js +5 -0
- package/icons/app/index.d.ts +1 -0
- package/icons/app/index.d.ts.map +1 -1
- package/icons/app/index.js +1 -0
- package/package.json +2 -2
package/dist/experimental.d.ts
CHANGED
|
@@ -5668,8 +5668,8 @@ declare module "@tiptap/core" {
|
|
|
5668
5668
|
|
|
5669
5669
|
declare module "@tiptap/core" {
|
|
5670
5670
|
interface Commands<ReturnType> {
|
|
5671
|
-
|
|
5672
|
-
|
|
5671
|
+
liveCompanion: {
|
|
5672
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
5673
5673
|
};
|
|
5674
5674
|
}
|
|
5675
5675
|
}
|
|
@@ -5677,13 +5677,18 @@ declare module "@tiptap/core" {
|
|
|
5677
5677
|
|
|
5678
5678
|
declare module "@tiptap/core" {
|
|
5679
5679
|
interface Commands<ReturnType> {
|
|
5680
|
-
|
|
5681
|
-
|
|
5680
|
+
transcript: {
|
|
5681
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
5682
5682
|
};
|
|
5683
5683
|
}
|
|
5684
5684
|
}
|
|
5685
5685
|
|
|
5686
5686
|
|
|
5687
|
+
declare namespace Calendar {
|
|
5688
|
+
var displayName: string;
|
|
5689
|
+
}
|
|
5690
|
+
|
|
5691
|
+
|
|
5687
5692
|
declare module "@tiptap/core" {
|
|
5688
5693
|
interface Commands<ReturnType> {
|
|
5689
5694
|
moodTracker: {
|
|
@@ -5691,8 +5696,3 @@ declare module "@tiptap/core" {
|
|
|
5691
5696
|
};
|
|
5692
5697
|
}
|
|
5693
5698
|
}
|
|
5694
|
-
|
|
5695
|
-
|
|
5696
|
-
declare namespace Calendar {
|
|
5697
|
-
var displayName: string;
|
|
5698
|
-
}
|