@factorialco/f0-react 1.449.2 → 1.450.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-DNI9xUa4.js → F0AiChat-D_rJbJIn.js} +101941 -67353
- package/dist/F0AiChat.css +1 -1
- package/dist/ai.d.ts +35 -12
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +17 -11
- package/dist/experimental.js +2752 -3211
- package/dist/f0.d.ts +136 -60
- package/dist/f0.js +6664 -15356
- package/dist/i18n-provider-defaults.d.ts +15 -11
- package/dist/i18n-provider-defaults.js +4 -0
- package/dist/index-eUGRiPcH.js +19398 -0
- package/dist/index.css +1 -1
- package/dist/styles.css +1 -1
- package/dist/{types-B7eP61FT.js → types-DRKsYlJC.js} +1 -1
- package/package.json +1 -1
- package/dist/index-DXD8ecUC.js +0 -44274
|
@@ -149,6 +149,7 @@ export declare const defaultTranslations: {
|
|
|
149
149
|
readonly expand: "Expand";
|
|
150
150
|
readonly showAll: "Show all";
|
|
151
151
|
readonly showLess: "Show less";
|
|
152
|
+
readonly seeMore: "See more";
|
|
152
153
|
readonly skipToContent: "Skip to content";
|
|
153
154
|
readonly view: "View";
|
|
154
155
|
readonly unselect: "Unselect";
|
|
@@ -426,6 +427,9 @@ export declare const defaultTranslations: {
|
|
|
426
427
|
readonly reportLabel: "Report";
|
|
427
428
|
readonly openButton: "Open";
|
|
428
429
|
};
|
|
430
|
+
readonly formCard: {
|
|
431
|
+
readonly moreFields: "Open to see all fields";
|
|
432
|
+
};
|
|
429
433
|
readonly dataDownload: {
|
|
430
434
|
readonly title: "Download";
|
|
431
435
|
readonly download: "Download {{format}}";
|
|
@@ -771,16 +775,11 @@ declare module "gridstack" {
|
|
|
771
775
|
}
|
|
772
776
|
|
|
773
777
|
|
|
774
|
-
declare namespace Calendar {
|
|
775
|
-
var displayName: string;
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
|
|
779
778
|
declare module "@tiptap/core" {
|
|
780
779
|
interface Commands<ReturnType> {
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
780
|
+
aiBlock: {
|
|
781
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
782
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
784
783
|
};
|
|
785
784
|
}
|
|
786
785
|
}
|
|
@@ -788,9 +787,9 @@ declare module "@tiptap/core" {
|
|
|
788
787
|
|
|
789
788
|
declare module "@tiptap/core" {
|
|
790
789
|
interface Commands<ReturnType> {
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
790
|
+
enhanceHighlight: {
|
|
791
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
792
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
794
793
|
};
|
|
795
794
|
}
|
|
796
795
|
}
|
|
@@ -823,3 +822,8 @@ declare module "@tiptap/core" {
|
|
|
823
822
|
};
|
|
824
823
|
}
|
|
825
824
|
}
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
declare namespace Calendar {
|
|
828
|
+
var displayName: string;
|
|
829
|
+
}
|
|
@@ -149,6 +149,7 @@ const e = {
|
|
|
149
149
|
expand: "Expand",
|
|
150
150
|
showAll: "Show all",
|
|
151
151
|
showLess: "Show less",
|
|
152
|
+
seeMore: "See more",
|
|
152
153
|
skipToContent: "Skip to content",
|
|
153
154
|
view: "View",
|
|
154
155
|
unselect: "Unselect",
|
|
@@ -426,6 +427,9 @@ const e = {
|
|
|
426
427
|
reportLabel: "Report",
|
|
427
428
|
openButton: "Open"
|
|
428
429
|
},
|
|
430
|
+
formCard: {
|
|
431
|
+
moreFields: "Open to see all fields"
|
|
432
|
+
},
|
|
429
433
|
dataDownload: {
|
|
430
434
|
title: "Download",
|
|
431
435
|
download: "Download {{format}}",
|