@factorialco/f0-react 1.329.1 → 1.330.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/AiChatTranslationsProvider-DsMg11gX.js +22149 -0
- package/dist/AiChatTranslationsProvider.css +1 -0
- package/dist/ai.d.ts +705 -0
- package/dist/ai.js +17 -0
- package/dist/experimental.css +1 -1
- package/dist/experimental.d.ts +62 -10
- package/dist/experimental.js +15598 -37323
- package/dist/f0.d.ts +10 -10
- package/dist/f0.js +338 -336
- package/dist/hooks-oOrCwtSB.js +26663 -0
- package/dist/i18n-provider-defaults.d.ts +10 -10
- package/dist/i18n-provider-defaults.js +1 -1
- package/dist/{hooks-BV8m26OP.js → index-ematjx0Y.js} +35078 -61734
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -1875,7 +1875,7 @@ export declare const defaultTranslations: {
|
|
|
1875
1875
|
readonly scrollToBottom: "Scroll to bottom";
|
|
1876
1876
|
readonly welcome: "Ask or create with One";
|
|
1877
1877
|
readonly defaultInitialMessage: "How can I help you today?";
|
|
1878
|
-
readonly inputPlaceholder: "Ask about time, people, or company info
|
|
1878
|
+
readonly inputPlaceholder: "Ask about time, people, or company info and a lot of other things...";
|
|
1879
1879
|
readonly stopAnswerGeneration: "Stop generating";
|
|
1880
1880
|
readonly sendMessage: "Send message";
|
|
1881
1881
|
readonly thoughtsGroupTitle: "Reflection";
|
|
@@ -5144,8 +5144,8 @@ declare module "gridstack" {
|
|
|
5144
5144
|
|
|
5145
5145
|
declare module "@tiptap/core" {
|
|
5146
5146
|
interface Commands<ReturnType> {
|
|
5147
|
-
|
|
5148
|
-
|
|
5147
|
+
liveCompanion: {
|
|
5148
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
5149
5149
|
};
|
|
5150
5150
|
}
|
|
5151
5151
|
}
|
|
@@ -5153,8 +5153,8 @@ declare module "@tiptap/core" {
|
|
|
5153
5153
|
|
|
5154
5154
|
declare module "@tiptap/core" {
|
|
5155
5155
|
interface Commands<ReturnType> {
|
|
5156
|
-
|
|
5157
|
-
|
|
5156
|
+
aiBlock: {
|
|
5157
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
5158
5158
|
};
|
|
5159
5159
|
}
|
|
5160
5160
|
}
|
|
@@ -5169,11 +5169,6 @@ declare module "@tiptap/core" {
|
|
|
5169
5169
|
}
|
|
5170
5170
|
|
|
5171
5171
|
|
|
5172
|
-
declare namespace Calendar {
|
|
5173
|
-
var displayName: string;
|
|
5174
|
-
}
|
|
5175
|
-
|
|
5176
|
-
|
|
5177
5172
|
declare module "@tiptap/core" {
|
|
5178
5173
|
interface Commands<ReturnType> {
|
|
5179
5174
|
moodTracker: {
|
|
@@ -5181,3 +5176,8 @@ declare module "@tiptap/core" {
|
|
|
5181
5176
|
};
|
|
5182
5177
|
}
|
|
5183
5178
|
}
|
|
5179
|
+
|
|
5180
|
+
|
|
5181
|
+
declare namespace Calendar {
|
|
5182
|
+
var displayName: string;
|
|
5183
|
+
}
|