@factorialco/f0-react 1.241.1 → 1.242.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 +48 -12
- package/dist/experimental.js +26175 -26074
- package/dist/f0.d.ts +18 -5
- package/dist/f0.js +191 -178
- package/dist/{hooks-BrsvJQsa.js → hooks-VZh3f1RF.js} +109 -109
- package/dist/styles.css +1 -1
- package/package.json +5 -5
package/dist/f0.d.ts
CHANGED
|
@@ -1112,6 +1112,7 @@ export declare const defaultTranslations: {
|
|
|
1112
1112
|
readonly add: "Add";
|
|
1113
1113
|
readonly edit: "Edit";
|
|
1114
1114
|
readonly save: "Save";
|
|
1115
|
+
readonly send: "Send";
|
|
1115
1116
|
readonly cancel: "Cancel";
|
|
1116
1117
|
readonly copy: "Copy";
|
|
1117
1118
|
readonly close: "Close";
|
|
@@ -1281,10 +1282,22 @@ export declare const defaultTranslations: {
|
|
|
1281
1282
|
readonly scrollToBottom: "Scroll to bottom";
|
|
1282
1283
|
readonly welcome: "Ask or create with One";
|
|
1283
1284
|
readonly defaultInitialMessage: "How can I help you today?";
|
|
1284
|
-
readonly inputPlaceholder: "
|
|
1285
|
+
readonly inputPlaceholder: "Ask about time, people, or company info…";
|
|
1285
1286
|
readonly stopAnswerGeneration: "Stop generating";
|
|
1286
1287
|
readonly sendMessage: "Send message";
|
|
1287
1288
|
readonly thoughtsGroupTitle: "Reflection";
|
|
1289
|
+
readonly feedbackModal: {
|
|
1290
|
+
readonly positive: {
|
|
1291
|
+
readonly title: "What did you like about this response?";
|
|
1292
|
+
readonly placeholder: "What did you like about this response? How could it be even better?";
|
|
1293
|
+
readonly description: "Your feedback helps Factorial Al improve. The messages from your chat, the search results, and your feedback will be sent to Factorial to help improve Factorial Al.";
|
|
1294
|
+
};
|
|
1295
|
+
readonly negative: {
|
|
1296
|
+
readonly title: "What could have been better in this response?";
|
|
1297
|
+
readonly placeholder: "What could have been better in this response? How could it be even better?";
|
|
1298
|
+
readonly description: "Your feedback helps Factorial Al improve. The messages from your chat, the search results, and your feedback will be sent to Factorial to help improve Factorial Al.";
|
|
1299
|
+
};
|
|
1300
|
+
};
|
|
1288
1301
|
};
|
|
1289
1302
|
readonly select: {
|
|
1290
1303
|
readonly noResults: "No results found";
|
|
@@ -3418,8 +3431,8 @@ declare module "@tiptap/core" {
|
|
|
3418
3431
|
|
|
3419
3432
|
declare module "@tiptap/core" {
|
|
3420
3433
|
interface Commands<ReturnType> {
|
|
3421
|
-
|
|
3422
|
-
|
|
3434
|
+
transcript: {
|
|
3435
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
3423
3436
|
};
|
|
3424
3437
|
}
|
|
3425
3438
|
}
|
|
@@ -3427,8 +3440,8 @@ declare module "@tiptap/core" {
|
|
|
3427
3440
|
|
|
3428
3441
|
declare module "@tiptap/core" {
|
|
3429
3442
|
interface Commands<ReturnType> {
|
|
3430
|
-
|
|
3431
|
-
|
|
3443
|
+
liveCompanion: {
|
|
3444
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
3432
3445
|
};
|
|
3433
3446
|
}
|
|
3434
3447
|
}
|