@factorialco/f0-react 1.407.0 → 1.409.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/F0AiChat-jQP26RJL.js +28929 -0
- package/dist/F0AnalyticsDashboard-BpLckkpk.js +64104 -0
- package/dist/{f0.css → F0AnalyticsDashboard.css} +1 -1
- package/dist/F0ChatDashboard-Cb5hmJwl.js +292 -0
- package/dist/F0ChatDashboard.d.ts +364 -0
- package/dist/F0ChatDashboard.js +4 -0
- package/dist/{F0HILActionConfirmation-Cud7NMip.js → F0HILActionConfirmation-DSmdPfxW.js} +262 -236
- package/dist/{F0AiChat-B5pShue-.js → F0Input-xBidN3aT.js} +94273 -122302
- package/dist/ai.d.ts +369 -13
- package/dist/ai.js +54 -52
- package/dist/experimental.d.ts +43 -12
- package/dist/experimental.js +3119 -2937
- package/dist/f0.d.ts +408 -17
- package/dist/f0.js +16407 -70330
- package/dist/i18n-provider-defaults.d.ts +35 -11
- package/dist/i18n-provider-defaults.js +24 -0
- package/dist/{useDataCollectionSource-Kk1OmjNB.js → index-DWr1PlvN.js} +16806 -26717
- package/dist/{useDataCollectionSource.css → index.css} +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -368,6 +368,10 @@ export declare const defaultTranslations: {
|
|
|
368
368
|
readonly thoughtsGroupTitle: "Reflection";
|
|
369
369
|
readonly resourcesGroupTitle: "Resources";
|
|
370
370
|
readonly thinking: "Thinking...";
|
|
371
|
+
readonly closeDashboard: "Close dashboard";
|
|
372
|
+
readonly unsavedChanges: "Unsaved changes";
|
|
373
|
+
readonly saveChanges: "Save changes";
|
|
374
|
+
readonly discardChanges: "Discard";
|
|
371
375
|
readonly exportTable: "Download table";
|
|
372
376
|
readonly generatedTableFilename: "OneGeneratedTable";
|
|
373
377
|
readonly feedbackModal: {
|
|
@@ -385,9 +389,29 @@ export declare const defaultTranslations: {
|
|
|
385
389
|
readonly dataDownloadPreview: "Preview {{shown}} of {{total}} rows — download the Excel to see all data.";
|
|
386
390
|
readonly expandChat: "Expand chat";
|
|
387
391
|
readonly collapseChat: "Collapse chat";
|
|
392
|
+
readonly chatHistory: "Chat history";
|
|
393
|
+
readonly noPreviousChats: "No previous conversations";
|
|
394
|
+
readonly newConversation: "New conversation";
|
|
395
|
+
readonly today: "Today";
|
|
396
|
+
readonly yesterday: "Yesterday";
|
|
397
|
+
readonly thisMonth: "This month";
|
|
398
|
+
readonly older: "Older";
|
|
399
|
+
readonly searchChats: "Search conversations...";
|
|
400
|
+
readonly pinnedChats: "Pinned";
|
|
401
|
+
readonly threadOptions: "Thread options";
|
|
402
|
+
readonly pinChat: "Pin chat";
|
|
403
|
+
readonly unpinChat: "Unpin chat";
|
|
404
|
+
readonly deleteChat: "Delete chat";
|
|
388
405
|
readonly ask: "Ask One";
|
|
389
406
|
readonly viewProfile: "View profile";
|
|
390
407
|
readonly tools: "Tools";
|
|
408
|
+
readonly reportCard: {
|
|
409
|
+
readonly reportLabel: "Report";
|
|
410
|
+
readonly openButton: "Open";
|
|
411
|
+
};
|
|
412
|
+
readonly dataDownload: {
|
|
413
|
+
readonly download: "Download {{format}}";
|
|
414
|
+
};
|
|
391
415
|
readonly growth: {
|
|
392
416
|
readonly demoCard: {
|
|
393
417
|
readonly title: "See {{moduleName}} in action";
|
|
@@ -667,11 +691,16 @@ declare module "gridstack" {
|
|
|
667
691
|
}
|
|
668
692
|
|
|
669
693
|
|
|
694
|
+
declare namespace Calendar {
|
|
695
|
+
var displayName: string;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
|
|
670
699
|
declare module "@tiptap/core" {
|
|
671
700
|
interface Commands<ReturnType> {
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
701
|
+
enhanceHighlight: {
|
|
702
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
703
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
675
704
|
};
|
|
676
705
|
}
|
|
677
706
|
}
|
|
@@ -679,9 +708,9 @@ declare module "@tiptap/core" {
|
|
|
679
708
|
|
|
680
709
|
declare module "@tiptap/core" {
|
|
681
710
|
interface Commands<ReturnType> {
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
711
|
+
aiBlock: {
|
|
712
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
713
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
685
714
|
};
|
|
686
715
|
}
|
|
687
716
|
}
|
|
@@ -714,8 +743,3 @@ declare module "@tiptap/core" {
|
|
|
714
743
|
};
|
|
715
744
|
}
|
|
716
745
|
}
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
declare namespace Calendar {
|
|
720
|
-
var displayName: string;
|
|
721
|
-
}
|
|
@@ -368,6 +368,10 @@ const e = {
|
|
|
368
368
|
thoughtsGroupTitle: "Reflection",
|
|
369
369
|
resourcesGroupTitle: "Resources",
|
|
370
370
|
thinking: "Thinking...",
|
|
371
|
+
closeDashboard: "Close dashboard",
|
|
372
|
+
unsavedChanges: "Unsaved changes",
|
|
373
|
+
saveChanges: "Save changes",
|
|
374
|
+
discardChanges: "Discard",
|
|
371
375
|
exportTable: "Download table",
|
|
372
376
|
generatedTableFilename: "OneGeneratedTable",
|
|
373
377
|
feedbackModal: {
|
|
@@ -385,9 +389,29 @@ const e = {
|
|
|
385
389
|
dataDownloadPreview: "Preview {{shown}} of {{total}} rows — download the Excel to see all data.",
|
|
386
390
|
expandChat: "Expand chat",
|
|
387
391
|
collapseChat: "Collapse chat",
|
|
392
|
+
chatHistory: "Chat history",
|
|
393
|
+
noPreviousChats: "No previous conversations",
|
|
394
|
+
newConversation: "New conversation",
|
|
395
|
+
today: "Today",
|
|
396
|
+
yesterday: "Yesterday",
|
|
397
|
+
thisMonth: "This month",
|
|
398
|
+
older: "Older",
|
|
399
|
+
searchChats: "Search conversations...",
|
|
400
|
+
pinnedChats: "Pinned",
|
|
401
|
+
threadOptions: "Thread options",
|
|
402
|
+
pinChat: "Pin chat",
|
|
403
|
+
unpinChat: "Unpin chat",
|
|
404
|
+
deleteChat: "Delete chat",
|
|
388
405
|
ask: "Ask One",
|
|
389
406
|
viewProfile: "View profile",
|
|
390
407
|
tools: "Tools",
|
|
408
|
+
reportCard: {
|
|
409
|
+
reportLabel: "Report",
|
|
410
|
+
openButton: "Open"
|
|
411
|
+
},
|
|
412
|
+
dataDownload: {
|
|
413
|
+
download: "Download {{format}}"
|
|
414
|
+
},
|
|
391
415
|
growth: {
|
|
392
416
|
demoCard: {
|
|
393
417
|
title: "See {{moduleName}} in action",
|