@factorialco/f0-react 1.384.0 → 1.386.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/{DataCollectionStorageProvider-C9X4oJL2.js → DataCollectionStorageProvider-qIZ0usNU.js} +16323 -18366
- package/dist/{F0AiChat-C037KOv0.js → F0AiChat-c00n76c6.js} +29958 -27095
- package/dist/{F0HILActionConfirmation-Ba1wbwZK.js → F0HILActionConfirmation-B5YWkhyV.js} +156 -155
- package/dist/ai.d.ts +217 -18
- package/dist/ai.js +48 -45
- package/dist/experimental.d.ts +89 -10
- package/dist/experimental.js +267 -267
- package/dist/f0.d.ts +217 -18
- package/dist/f0.js +213 -210
- package/dist/i18n-provider-defaults.d.ts +13 -10
- package/dist/i18n-provider-defaults.js +3 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -375,9 +375,12 @@ export declare const defaultTranslations: {
|
|
|
375
375
|
readonly placeholder: "Share what didn’t work";
|
|
376
376
|
};
|
|
377
377
|
};
|
|
378
|
+
readonly dataDownloadPreview: "Preview {{shown}} of {{total}} rows — download the Excel to see all data.";
|
|
378
379
|
readonly expandChat: "Expand chat";
|
|
379
380
|
readonly collapseChat: "Collapse chat";
|
|
380
381
|
readonly ask: "Ask One";
|
|
382
|
+
readonly viewProfile: "View profile";
|
|
383
|
+
readonly tools: "Tools";
|
|
381
384
|
readonly growth: {
|
|
382
385
|
readonly demoCard: {
|
|
383
386
|
readonly title: "See {{moduleName}} in action";
|
|
@@ -631,11 +634,6 @@ declare module "gridstack" {
|
|
|
631
634
|
}
|
|
632
635
|
|
|
633
636
|
|
|
634
|
-
declare namespace Calendar {
|
|
635
|
-
var displayName: string;
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
|
|
639
637
|
declare module "@tiptap/core" {
|
|
640
638
|
interface Commands<ReturnType> {
|
|
641
639
|
aiBlock: {
|
|
@@ -648,9 +646,8 @@ declare module "@tiptap/core" {
|
|
|
648
646
|
|
|
649
647
|
declare module "@tiptap/core" {
|
|
650
648
|
interface Commands<ReturnType> {
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
649
|
+
moodTracker: {
|
|
650
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
654
651
|
};
|
|
655
652
|
}
|
|
656
653
|
}
|
|
@@ -658,8 +655,9 @@ declare module "@tiptap/core" {
|
|
|
658
655
|
|
|
659
656
|
declare module "@tiptap/core" {
|
|
660
657
|
interface Commands<ReturnType> {
|
|
661
|
-
|
|
662
|
-
|
|
658
|
+
enhanceHighlight: {
|
|
659
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
660
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
663
661
|
};
|
|
664
662
|
}
|
|
665
663
|
}
|
|
@@ -683,3 +681,8 @@ declare module "@tiptap/core" {
|
|
|
683
681
|
};
|
|
684
682
|
}
|
|
685
683
|
}
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
declare namespace Calendar {
|
|
687
|
+
var displayName: string;
|
|
688
|
+
}
|
|
@@ -375,9 +375,12 @@ const e = {
|
|
|
375
375
|
placeholder: "Share what didn’t work"
|
|
376
376
|
}
|
|
377
377
|
},
|
|
378
|
+
dataDownloadPreview: "Preview {{shown}} of {{total}} rows — download the Excel to see all data.",
|
|
378
379
|
expandChat: "Expand chat",
|
|
379
380
|
collapseChat: "Collapse chat",
|
|
380
381
|
ask: "Ask One",
|
|
382
|
+
viewProfile: "View profile",
|
|
383
|
+
tools: "Tools",
|
|
381
384
|
growth: {
|
|
382
385
|
demoCard: {
|
|
383
386
|
title: "See {{moduleName}} in action",
|