@factorialco/f0-react 1.203.4 → 1.204.1
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 +7 -5
- package/dist/experimental.js +3963 -3958
- package/dist/f0.d.ts +5 -5
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -246,6 +246,7 @@ declare type AIButton = {
|
|
|
246
246
|
emoji: string;
|
|
247
247
|
label: string;
|
|
248
248
|
icon: IconType;
|
|
249
|
+
editable?: boolean;
|
|
249
250
|
};
|
|
250
251
|
|
|
251
252
|
/**
|
|
@@ -3053,6 +3054,7 @@ export declare type NotesTextEditorHandle = {
|
|
|
3053
3054
|
setContent: (content: string) => void;
|
|
3054
3055
|
insertAIBlock: () => void;
|
|
3055
3056
|
insertTranscript: (title: string, users: User[], messages: Message[]) => void;
|
|
3057
|
+
pushContent: (content: string) => void;
|
|
3056
3058
|
};
|
|
3057
3059
|
|
|
3058
3060
|
export declare interface NotesTextEditorProps {
|
|
@@ -5042,6 +5044,11 @@ declare module "@tiptap/core" {
|
|
|
5042
5044
|
}
|
|
5043
5045
|
|
|
5044
5046
|
|
|
5047
|
+
declare namespace Calendar {
|
|
5048
|
+
var displayName: string;
|
|
5049
|
+
}
|
|
5050
|
+
|
|
5051
|
+
|
|
5045
5052
|
declare module "@tiptap/core" {
|
|
5046
5053
|
interface Commands<ReturnType> {
|
|
5047
5054
|
moodTracker: {
|
|
@@ -5049,8 +5056,3 @@ declare module "@tiptap/core" {
|
|
|
5049
5056
|
};
|
|
5050
5057
|
}
|
|
5051
5058
|
}
|
|
5052
|
-
|
|
5053
|
-
|
|
5054
|
-
declare namespace Calendar {
|
|
5055
|
-
var displayName: string;
|
|
5056
|
-
}
|