@factorialco/f0-react 4.14.1 → 4.16.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/{F0AiProcessingOverlay-BbAadqE5.js → F0AiProcessingOverlay-ULAd1MR5.js} +2462 -2596
- package/dist/{F0CanvasPanel-CsVpTFqp.js → F0CanvasPanel-BG60xqVg.js} +17149 -16851
- package/dist/ai.d.ts +210 -4
- package/dist/ai.js +34 -30
- package/dist/experimental.d.ts +625 -18
- package/dist/experimental.js +6854 -3761
- package/dist/f0.d.ts +227 -5
- package/dist/f0.js +5206 -5193
- package/dist/i18n-provider-defaults.d.ts +80 -0
- package/dist/i18n-provider-defaults.js +94 -2
- package/dist/styles.css +1 -1
- package/dist/{useDataCollectionSource-ukVHEhkI.js → useDataCollectionSource-CKu3oieA.js} +78 -77
- package/package.json +1 -1
|
@@ -567,6 +567,86 @@ export declare const defaultTranslations: {
|
|
|
567
567
|
};
|
|
568
568
|
};
|
|
569
569
|
};
|
|
570
|
+
readonly chat: {
|
|
571
|
+
readonly placeholder: "Write something here..";
|
|
572
|
+
readonly searchPlaceholder: "Search messages";
|
|
573
|
+
readonly closeSearch: "Close search";
|
|
574
|
+
readonly noResults: "No chats found";
|
|
575
|
+
readonly backToLatest: "Jump to latest";
|
|
576
|
+
readonly muted: "Muted";
|
|
577
|
+
readonly attachFile: "Attach file";
|
|
578
|
+
readonly addEmoji: "Add emoji";
|
|
579
|
+
readonly recordAudio: "Record audio";
|
|
580
|
+
readonly listening: "Listening…";
|
|
581
|
+
readonly stopRecording: "Stop and transcribe";
|
|
582
|
+
readonly cancelRecording: "Cancel recording";
|
|
583
|
+
readonly dropFilesHere: "Drop your files here";
|
|
584
|
+
readonly removeFile: "Remove";
|
|
585
|
+
readonly tooManyFilesError: "You can attach up to {{maxFiles}} files at once";
|
|
586
|
+
readonly fileUploadError: "Upload failed";
|
|
587
|
+
readonly micPermissionDenied: "Microphone access is blocked. Allow it in your browser settings to dictate.";
|
|
588
|
+
readonly micError: "Couldn't access the microphone.";
|
|
589
|
+
readonly transcriptionError: "Couldn't transcribe the audio. Try again.";
|
|
590
|
+
readonly sent: "Sent";
|
|
591
|
+
readonly read: "Read";
|
|
592
|
+
readonly readBy: {
|
|
593
|
+
readonly one: "Read by {{count}}";
|
|
594
|
+
readonly other: "Read by {{count}}";
|
|
595
|
+
};
|
|
596
|
+
readonly delivered: "Delivered";
|
|
597
|
+
readonly back: "Back";
|
|
598
|
+
readonly writing: "Writing…";
|
|
599
|
+
readonly isTyping: "{{name}} is writing…";
|
|
600
|
+
readonly twoTyping: "{{first}} and {{second}} are writing…";
|
|
601
|
+
readonly severalTyping: "Several people are writing…";
|
|
602
|
+
readonly deletedMessage: "Message deleted";
|
|
603
|
+
readonly moreActions: "Message actions";
|
|
604
|
+
readonly options: "Options";
|
|
605
|
+
readonly pin: "Pin";
|
|
606
|
+
readonly unpin: "Unpin";
|
|
607
|
+
readonly info: "Info";
|
|
608
|
+
readonly viewProfile: "View profile";
|
|
609
|
+
readonly mentionEveryone: "here";
|
|
610
|
+
readonly mentionEveryoneDescription: "Notify everyone in this group";
|
|
611
|
+
readonly reply: "Reply";
|
|
612
|
+
readonly react: "Add reaction";
|
|
613
|
+
readonly download: "Download";
|
|
614
|
+
readonly removeQuote: "Remove quote";
|
|
615
|
+
readonly edit: "Edit";
|
|
616
|
+
readonly editing: "Editing";
|
|
617
|
+
readonly edited: "edited";
|
|
618
|
+
readonly cancelEdit: "Cancel edit";
|
|
619
|
+
readonly saveEdit: "Save";
|
|
620
|
+
readonly you: "You";
|
|
621
|
+
readonly openImage: "Open image";
|
|
622
|
+
readonly imagePreview: "Image preview";
|
|
623
|
+
readonly closePreview: "Close";
|
|
624
|
+
readonly previousImage: "Previous image";
|
|
625
|
+
readonly nextImage: "Next image";
|
|
626
|
+
readonly photo: "Photo";
|
|
627
|
+
readonly photoCount: {
|
|
628
|
+
readonly one: "{{count}} photo";
|
|
629
|
+
readonly other: "{{count}} photos";
|
|
630
|
+
};
|
|
631
|
+
readonly fileCount: {
|
|
632
|
+
readonly one: "{{count}} file";
|
|
633
|
+
readonly other: "{{count}} files";
|
|
634
|
+
};
|
|
635
|
+
readonly attachmentCount: {
|
|
636
|
+
readonly one: "{{count}} attachment";
|
|
637
|
+
readonly other: "{{count}} attachments";
|
|
638
|
+
};
|
|
639
|
+
readonly scrollToBottom: "Scroll to bottom";
|
|
640
|
+
readonly newMessages: "New messages";
|
|
641
|
+
readonly unreadCount: {
|
|
642
|
+
readonly one: "{{count}} unread";
|
|
643
|
+
readonly other: "{{count}} unread";
|
|
644
|
+
};
|
|
645
|
+
readonly emptyConversation: "No messages yet";
|
|
646
|
+
readonly emptyConversationDescription: "Send a message to start the conversation.";
|
|
647
|
+
readonly error: "Couldn't load this conversation";
|
|
648
|
+
readonly loadingOlder: "Loading earlier messages…";
|
|
649
|
+
};
|
|
570
650
|
readonly dataChart: {
|
|
571
651
|
readonly heatmapNotSupported: "Heatmap not supported at this size";
|
|
572
652
|
readonly barChartVertical: "Bar (vertical)";
|
|
@@ -100,7 +100,7 @@ const e = {
|
|
|
100
100
|
jo: "Jordan",
|
|
101
101
|
jp: "Japan",
|
|
102
102
|
ke: "Kenya"
|
|
103
|
-
},
|
|
103
|
+
}, t = {
|
|
104
104
|
countries: e,
|
|
105
105
|
approvals: {
|
|
106
106
|
history: "Approval history",
|
|
@@ -567,6 +567,98 @@ const e = {
|
|
|
567
567
|
}
|
|
568
568
|
}
|
|
569
569
|
},
|
|
570
|
+
chat: {
|
|
571
|
+
placeholder: "Write something here..",
|
|
572
|
+
searchPlaceholder: "Search messages",
|
|
573
|
+
closeSearch: "Close search",
|
|
574
|
+
noResults: "No chats found",
|
|
575
|
+
backToLatest: "Jump to latest",
|
|
576
|
+
muted: "Muted",
|
|
577
|
+
attachFile: "Attach file",
|
|
578
|
+
addEmoji: "Add emoji",
|
|
579
|
+
recordAudio: "Record audio",
|
|
580
|
+
listening: "Listening…",
|
|
581
|
+
stopRecording: "Stop and transcribe",
|
|
582
|
+
cancelRecording: "Cancel recording",
|
|
583
|
+
dropFilesHere: "Drop your files here",
|
|
584
|
+
removeFile: "Remove",
|
|
585
|
+
// Transient composer errors (flashed in the textarea, mirroring the AI chat).
|
|
586
|
+
tooManyFilesError: "You can attach up to {{maxFiles}} files at once",
|
|
587
|
+
fileUploadError: "Upload failed",
|
|
588
|
+
micPermissionDenied: "Microphone access is blocked. Allow it in your browser settings to dictate.",
|
|
589
|
+
micError: "Couldn't access the microphone.",
|
|
590
|
+
transcriptionError: "Couldn't transcribe the audio. Try again.",
|
|
591
|
+
sent: "Sent",
|
|
592
|
+
read: "Read",
|
|
593
|
+
// Plural shape (one/other) so other languages can diverge — selected by the
|
|
594
|
+
// consumer with `i18n.t(count === 1 ? "chat.readBy.one" : "chat.readBy.other")`.
|
|
595
|
+
readBy: {
|
|
596
|
+
one: "Read by {{count}}",
|
|
597
|
+
other: "Read by {{count}}"
|
|
598
|
+
},
|
|
599
|
+
delivered: "Delivered",
|
|
600
|
+
back: "Back",
|
|
601
|
+
writing: "Writing…",
|
|
602
|
+
isTyping: "{{name}} is writing…",
|
|
603
|
+
twoTyping: "{{first}} and {{second}} are writing…",
|
|
604
|
+
severalTyping: "Several people are writing…",
|
|
605
|
+
deletedMessage: "Message deleted",
|
|
606
|
+
moreActions: "Message actions",
|
|
607
|
+
// Header overflow menu (the ellipsis dropdown) + its pin/favourite action.
|
|
608
|
+
options: "Options",
|
|
609
|
+
pin: "Pin",
|
|
610
|
+
unpin: "Unpin",
|
|
611
|
+
info: "Info",
|
|
612
|
+
viewProfile: "View profile",
|
|
613
|
+
// Mentions (groups only). `mentionEveryone` is the token inserted after `@`
|
|
614
|
+
// for a group-wide ping (localize the word, e.g. es "aquí").
|
|
615
|
+
mentionEveryone: "here",
|
|
616
|
+
mentionEveryoneDescription: "Notify everyone in this group",
|
|
617
|
+
reply: "Reply",
|
|
618
|
+
react: "Add reaction",
|
|
619
|
+
download: "Download",
|
|
620
|
+
removeQuote: "Remove quote",
|
|
621
|
+
// Editing your own message (within the edit window). `editing` heads the
|
|
622
|
+
// composer chip; `edited` is the muted marker after an edited message body.
|
|
623
|
+
edit: "Edit",
|
|
624
|
+
editing: "Editing",
|
|
625
|
+
edited: "edited",
|
|
626
|
+
cancelEdit: "Cancel edit",
|
|
627
|
+
saveEdit: "Save",
|
|
628
|
+
// Shown as the quoted sender's name when the replied-to message is your own.
|
|
629
|
+
you: "You",
|
|
630
|
+
// In-chat image lightbox.
|
|
631
|
+
openImage: "Open image",
|
|
632
|
+
imagePreview: "Image preview",
|
|
633
|
+
closePreview: "Close",
|
|
634
|
+
previousImage: "Previous image",
|
|
635
|
+
nextImage: "Next image",
|
|
636
|
+
// Attachment previews in reply quotes + the composer chip (a lone file shows
|
|
637
|
+
// its real name instead of a count).
|
|
638
|
+
photo: "Photo",
|
|
639
|
+
photoCount: {
|
|
640
|
+
one: "{{count}} photo",
|
|
641
|
+
other: "{{count}} photos"
|
|
642
|
+
},
|
|
643
|
+
fileCount: {
|
|
644
|
+
one: "{{count}} file",
|
|
645
|
+
other: "{{count}} files"
|
|
646
|
+
},
|
|
647
|
+
attachmentCount: {
|
|
648
|
+
one: "{{count}} attachment",
|
|
649
|
+
other: "{{count}} attachments"
|
|
650
|
+
},
|
|
651
|
+
scrollToBottom: "Scroll to bottom",
|
|
652
|
+
newMessages: "New messages",
|
|
653
|
+
unreadCount: {
|
|
654
|
+
one: "{{count}} unread",
|
|
655
|
+
other: "{{count}} unread"
|
|
656
|
+
},
|
|
657
|
+
emptyConversation: "No messages yet",
|
|
658
|
+
emptyConversationDescription: "Send a message to start the conversation.",
|
|
659
|
+
error: "Couldn't load this conversation",
|
|
660
|
+
loadingOlder: "Loading earlier messages…"
|
|
661
|
+
},
|
|
570
662
|
dataChart: {
|
|
571
663
|
heatmapNotSupported: "Heatmap not supported at this size",
|
|
572
664
|
barChartVertical: "Bar (vertical)",
|
|
@@ -814,5 +906,5 @@ const e = {
|
|
|
814
906
|
}
|
|
815
907
|
};
|
|
816
908
|
export {
|
|
817
|
-
|
|
909
|
+
t as defaultTranslations
|
|
818
910
|
};
|