@factorialco/f0-react 2.46.0 → 2.48.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/{F0CanvasPanel-CTpW3vtK.js → F0CanvasPanel-D70oNR2G.js} +32448 -27531
- package/dist/ai.d.ts +30 -11
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +100 -14
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +107 -17
- package/dist/f0.js +19231 -24304
- package/dist/i18n-provider-defaults.d.ts +30 -11
- package/dist/i18n-provider-defaults.js +20 -1
- package/dist/styles.css +1 -1
- package/dist/useChatHistory-DjftH8dD.js +14986 -0
- package/dist/{useDataCollectionSource-DspGeRMB.js → useDataCollectionSource-CDB1LCNu.js} +20709 -15215
- package/package.json +1 -1
- package/dist/useChatHistory-CyZmi4kr.js +0 -19753
|
@@ -141,6 +141,7 @@ export declare const defaultTranslations: {
|
|
|
141
141
|
readonly save: "Save";
|
|
142
142
|
readonly send: "Send";
|
|
143
143
|
readonly cancel: "Cancel";
|
|
144
|
+
readonly ok: "Ok";
|
|
144
145
|
readonly delete: "Delete";
|
|
145
146
|
readonly copy: "Copy";
|
|
146
147
|
readonly paste: "Paste";
|
|
@@ -168,6 +169,8 @@ export declare const defaultTranslations: {
|
|
|
168
169
|
readonly selectAll: "Select all";
|
|
169
170
|
readonly selectAllItems: "Select all {{total}} items";
|
|
170
171
|
readonly apply: "Apply";
|
|
172
|
+
readonly saveAsPreset: "Save view";
|
|
173
|
+
readonly editPreset: "Edit view";
|
|
171
174
|
};
|
|
172
175
|
readonly status: {
|
|
173
176
|
readonly selected: {
|
|
@@ -238,6 +241,22 @@ export declare const defaultTranslations: {
|
|
|
238
241
|
readonly actions: {
|
|
239
242
|
readonly actions: "Actions";
|
|
240
243
|
};
|
|
244
|
+
readonly presets: {
|
|
245
|
+
readonly createTitle: "Save view";
|
|
246
|
+
readonly createDescription: "Save the current filters, sorting, grouping and columns as a view.";
|
|
247
|
+
readonly updateTitle: "Update view";
|
|
248
|
+
readonly updateDescription: "Update this view's name and description.";
|
|
249
|
+
readonly nameLabel: "Title";
|
|
250
|
+
readonly namePlaceholder: "View name";
|
|
251
|
+
readonly duplicateName: "A view with this name already exists";
|
|
252
|
+
readonly descriptionLabel: "Description";
|
|
253
|
+
readonly descriptionPlaceholder: "Optional description";
|
|
254
|
+
readonly save: "Save";
|
|
255
|
+
readonly delete: "Remove";
|
|
256
|
+
readonly share: "Share view";
|
|
257
|
+
readonly copiedToClipboard: "Copied to your clipboard";
|
|
258
|
+
readonly cancel: "Cancel";
|
|
259
|
+
};
|
|
241
260
|
readonly visualizations: {
|
|
242
261
|
readonly table: "Table view";
|
|
243
262
|
readonly editableTable: "Editable table view";
|
|
@@ -850,16 +869,11 @@ declare module "gridstack" {
|
|
|
850
869
|
}
|
|
851
870
|
|
|
852
871
|
|
|
853
|
-
declare namespace Calendar {
|
|
854
|
-
var displayName: string;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
|
|
858
872
|
declare module "@tiptap/core" {
|
|
859
873
|
interface Commands<ReturnType> {
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
874
|
+
aiBlock: {
|
|
875
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
876
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
863
877
|
};
|
|
864
878
|
}
|
|
865
879
|
}
|
|
@@ -867,9 +881,9 @@ declare module "@tiptap/core" {
|
|
|
867
881
|
|
|
868
882
|
declare module "@tiptap/core" {
|
|
869
883
|
interface Commands<ReturnType> {
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
884
|
+
enhanceHighlight: {
|
|
885
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
886
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
873
887
|
};
|
|
874
888
|
}
|
|
875
889
|
}
|
|
@@ -904,6 +918,11 @@ declare module "@tiptap/core" {
|
|
|
904
918
|
}
|
|
905
919
|
|
|
906
920
|
|
|
921
|
+
declare namespace Calendar {
|
|
922
|
+
var displayName: string;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
|
|
907
926
|
declare namespace F0GraphNodeWrapperInner {
|
|
908
927
|
var displayName: string;
|
|
909
928
|
}
|
|
@@ -141,6 +141,7 @@ const e = {
|
|
|
141
141
|
save: "Save",
|
|
142
142
|
send: "Send",
|
|
143
143
|
cancel: "Cancel",
|
|
144
|
+
ok: "Ok",
|
|
144
145
|
delete: "Delete",
|
|
145
146
|
copy: "Copy",
|
|
146
147
|
paste: "Paste",
|
|
@@ -167,7 +168,9 @@ const e = {
|
|
|
167
168
|
toggleDropdownMenu: "Toggle dropdown menu",
|
|
168
169
|
selectAll: "Select all",
|
|
169
170
|
selectAllItems: "Select all {{total}} items",
|
|
170
|
-
apply: "Apply"
|
|
171
|
+
apply: "Apply",
|
|
172
|
+
saveAsPreset: "Save view",
|
|
173
|
+
editPreset: "Edit view"
|
|
171
174
|
},
|
|
172
175
|
status: {
|
|
173
176
|
selected: {
|
|
@@ -238,6 +241,22 @@ const e = {
|
|
|
238
241
|
actions: {
|
|
239
242
|
actions: "Actions"
|
|
240
243
|
},
|
|
244
|
+
presets: {
|
|
245
|
+
createTitle: "Save view",
|
|
246
|
+
createDescription: "Save the current filters, sorting, grouping and columns as a view.",
|
|
247
|
+
updateTitle: "Update view",
|
|
248
|
+
updateDescription: "Update this view's name and description.",
|
|
249
|
+
nameLabel: "Title",
|
|
250
|
+
namePlaceholder: "View name",
|
|
251
|
+
duplicateName: "A view with this name already exists",
|
|
252
|
+
descriptionLabel: "Description",
|
|
253
|
+
descriptionPlaceholder: "Optional description",
|
|
254
|
+
save: "Save",
|
|
255
|
+
delete: "Remove",
|
|
256
|
+
share: "Share view",
|
|
257
|
+
copiedToClipboard: "Copied to your clipboard",
|
|
258
|
+
cancel: "Cancel"
|
|
259
|
+
},
|
|
241
260
|
visualizations: {
|
|
242
261
|
table: "Table view",
|
|
243
262
|
editableTable: "Editable table view",
|