@factorialco/f0-react 2.47.0 → 2.49.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-DAS9OuMu.js → F0CanvasPanel-D70oNR2G.js} +32431 -27517
- package/dist/ai.d.ts +23 -5
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +87 -7
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +93 -9
- package/dist/f0.js +19231 -24304
- package/dist/i18n-provider-defaults.d.ts +23 -5
- package/dist/i18n-provider-defaults.js +19 -1
- package/dist/styles.css +1 -1
- package/dist/useChatHistory-DjftH8dD.js +14986 -0
- package/dist/{useDataCollectionSource-RSypR7CQ.js → useDataCollectionSource-CDB1LCNu.js} +20709 -15215
- package/package.json +1 -1
- package/dist/useChatHistory-widnlpnJ.js +0 -19753
|
@@ -169,6 +169,8 @@ export declare const defaultTranslations: {
|
|
|
169
169
|
readonly selectAll: "Select all";
|
|
170
170
|
readonly selectAllItems: "Select all {{total}} items";
|
|
171
171
|
readonly apply: "Apply";
|
|
172
|
+
readonly saveAsPreset: "Save view";
|
|
173
|
+
readonly editPreset: "Edit view";
|
|
172
174
|
};
|
|
173
175
|
readonly status: {
|
|
174
176
|
readonly selected: {
|
|
@@ -239,6 +241,22 @@ export declare const defaultTranslations: {
|
|
|
239
241
|
readonly actions: {
|
|
240
242
|
readonly actions: "Actions";
|
|
241
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
|
+
};
|
|
242
260
|
readonly visualizations: {
|
|
243
261
|
readonly table: "Table view";
|
|
244
262
|
readonly editableTable: "Editable table view";
|
|
@@ -851,6 +869,11 @@ declare module "gridstack" {
|
|
|
851
869
|
}
|
|
852
870
|
|
|
853
871
|
|
|
872
|
+
declare namespace Calendar {
|
|
873
|
+
var displayName: string;
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
|
|
854
877
|
declare module "@tiptap/core" {
|
|
855
878
|
interface Commands<ReturnType> {
|
|
856
879
|
enhanceHighlight: {
|
|
@@ -900,11 +923,6 @@ declare module "@tiptap/core" {
|
|
|
900
923
|
}
|
|
901
924
|
|
|
902
925
|
|
|
903
|
-
declare namespace Calendar {
|
|
904
|
-
var displayName: string;
|
|
905
|
-
}
|
|
906
|
-
|
|
907
|
-
|
|
908
926
|
declare namespace F0GraphNodeWrapperInner {
|
|
909
927
|
var displayName: string;
|
|
910
928
|
}
|
|
@@ -168,7 +168,9 @@ const e = {
|
|
|
168
168
|
toggleDropdownMenu: "Toggle dropdown menu",
|
|
169
169
|
selectAll: "Select all",
|
|
170
170
|
selectAllItems: "Select all {{total}} items",
|
|
171
|
-
apply: "Apply"
|
|
171
|
+
apply: "Apply",
|
|
172
|
+
saveAsPreset: "Save view",
|
|
173
|
+
editPreset: "Edit view"
|
|
172
174
|
},
|
|
173
175
|
status: {
|
|
174
176
|
selected: {
|
|
@@ -239,6 +241,22 @@ const e = {
|
|
|
239
241
|
actions: {
|
|
240
242
|
actions: "Actions"
|
|
241
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
|
+
},
|
|
242
260
|
visualizations: {
|
|
243
261
|
table: "Table view",
|
|
244
262
|
editableTable: "Editable table view",
|