@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.
@@ -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",