@factorialco/f0-react 4.37.1 → 4.39.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/{F0AiProcessingOverlay-IiFgI7pP.js → F0AiProcessingOverlay-BQNKYl8G.js} +4284 -4598
- package/dist/{F0CanvasPanel-4WxLQ2QU.js → F0CanvasPanel-Eg6MeaXo.js} +27705 -27370
- package/dist/ai.d.ts +20 -0
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +203 -0
- package/dist/experimental.js +43 -42
- package/dist/f0.d.ts +434 -4
- package/dist/f0.js +18052 -21976
- package/dist/i18n-provider-defaults.d.ts +15 -0
- package/dist/i18n-provider-defaults.js +16 -1
- package/dist/{useDataCollectionSource-xnIiHXMP.js → index-EXdkVTaH.js} +70166 -64918
- package/dist/index.css +1 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/dist/useDataCollectionSource.css +0 -1
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export declare const defaultTranslations: {
|
|
2
|
+
readonly common: {
|
|
3
|
+
readonly selectPlaceholder: "Select";
|
|
4
|
+
};
|
|
2
5
|
readonly countries: {
|
|
3
6
|
ad: string;
|
|
4
7
|
ae: string;
|
|
@@ -304,6 +307,9 @@ export declare const defaultTranslations: {
|
|
|
304
307
|
readonly saveFailed: "Save failed";
|
|
305
308
|
};
|
|
306
309
|
readonly addRow: "Add row";
|
|
310
|
+
readonly removeRow: "Remove row";
|
|
311
|
+
readonly editRow: "Edit";
|
|
312
|
+
readonly reorderRow: "Drag to reorder";
|
|
307
313
|
};
|
|
308
314
|
readonly itemsCount: "items";
|
|
309
315
|
readonly emptyStates: {
|
|
@@ -846,6 +852,15 @@ export declare const defaultTranslations: {
|
|
|
846
852
|
readonly invalidFileType: "File type not accepted. Accepted formats: {{types}}";
|
|
847
853
|
readonly maxFilesReached: "Maximum {{maxFiles}} files";
|
|
848
854
|
};
|
|
855
|
+
readonly entitiesList: {
|
|
856
|
+
readonly add: "Add";
|
|
857
|
+
readonly edit: "Edit";
|
|
858
|
+
readonly remove: "Remove";
|
|
859
|
+
readonly view: "View";
|
|
860
|
+
readonly addBlockedHint: "Finish filling out the last item you just added in order to add another one";
|
|
861
|
+
readonly addBlockedErrorHint: "Fix the errors in the existing items before adding another one";
|
|
862
|
+
readonly addBlockedMaxHint: "You've reached the maximum number of items";
|
|
863
|
+
};
|
|
849
864
|
readonly moreInformation: "More information";
|
|
850
865
|
readonly validation: {
|
|
851
866
|
readonly required: "This field is required";
|
|
@@ -101,6 +101,9 @@ const e = {
|
|
|
101
101
|
jp: "Japan",
|
|
102
102
|
ke: "Kenya"
|
|
103
103
|
}, t = {
|
|
104
|
+
common: {
|
|
105
|
+
selectPlaceholder: "Select"
|
|
106
|
+
},
|
|
104
107
|
countries: e,
|
|
105
108
|
approvals: {
|
|
106
109
|
history: "Approval history",
|
|
@@ -303,7 +306,10 @@ const e = {
|
|
|
303
306
|
errors: {
|
|
304
307
|
saveFailed: "Save failed"
|
|
305
308
|
},
|
|
306
|
-
addRow: "Add row"
|
|
309
|
+
addRow: "Add row",
|
|
310
|
+
removeRow: "Remove row",
|
|
311
|
+
editRow: "Edit",
|
|
312
|
+
reorderRow: "Drag to reorder"
|
|
307
313
|
},
|
|
308
314
|
itemsCount: "items",
|
|
309
315
|
emptyStates: {
|
|
@@ -858,6 +864,15 @@ const e = {
|
|
|
858
864
|
invalidFileType: "File type not accepted. Accepted formats: {{types}}",
|
|
859
865
|
maxFilesReached: "Maximum {{maxFiles}} files"
|
|
860
866
|
},
|
|
867
|
+
entitiesList: {
|
|
868
|
+
add: "Add",
|
|
869
|
+
edit: "Edit",
|
|
870
|
+
remove: "Remove",
|
|
871
|
+
view: "View",
|
|
872
|
+
addBlockedHint: "Finish filling out the last item you just added in order to add another one",
|
|
873
|
+
addBlockedErrorHint: "Fix the errors in the existing items before adding another one",
|
|
874
|
+
addBlockedMaxHint: "You've reached the maximum number of items"
|
|
875
|
+
},
|
|
861
876
|
moreInformation: "More information",
|
|
862
877
|
validation: {
|
|
863
878
|
required: "This field is required",
|