@factorialco/f0-react 1.381.0 → 1.383.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/{DataCollectionStorageProvider-DBnav5cC.js → DataCollectionStorageProvider-BBLgXK15.js} +1 -1
- package/dist/{F0AiChat-DvWln9wK.js → F0AiChat-CXEcOhNF.js} +323 -321
- package/dist/{F0HILActionConfirmation-DRfQGPsn.js → F0HILActionConfirmation-D_4woM1M.js} +1 -1
- package/dist/ai.d.ts +18 -0
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +18 -0
- package/dist/experimental.js +5 -5
- package/dist/f0.d.ts +398 -10
- package/dist/f0.js +6092 -4904
- package/dist/i18n-provider-defaults.d.ts +18 -0
- package/dist/i18n-provider-defaults.js +18 -0
- package/dist/styles.css +1 -1
- package/package.json +2 -2
|
@@ -527,6 +527,18 @@ export declare const defaultTranslations: {
|
|
|
527
527
|
readonly other: "{{count}} issues";
|
|
528
528
|
};
|
|
529
529
|
};
|
|
530
|
+
readonly file: {
|
|
531
|
+
readonly dropzone: "Drag and drop a file, or click to select";
|
|
532
|
+
readonly dropzoneActive: "Drop the file here";
|
|
533
|
+
readonly dropzoneMultiple: "Drag and drop files, or click to select";
|
|
534
|
+
readonly acceptedTypes: "Accepted formats: {{types}}";
|
|
535
|
+
readonly remove: "Remove";
|
|
536
|
+
readonly uploading: "Uploading…";
|
|
537
|
+
readonly processing: "Processing…";
|
|
538
|
+
readonly uploadFailed: "Upload failed";
|
|
539
|
+
readonly fileTooLarge: "File exceeds {{maxSize}} MB limit";
|
|
540
|
+
readonly invalidFileType: "File type not accepted. Accepted formats: {{types}}";
|
|
541
|
+
};
|
|
530
542
|
readonly validation: {
|
|
531
543
|
readonly required: "This field is required";
|
|
532
544
|
readonly invalidType: "Invalid value";
|
|
@@ -557,6 +569,12 @@ export declare const defaultTranslations: {
|
|
|
557
569
|
};
|
|
558
570
|
};
|
|
559
571
|
};
|
|
572
|
+
readonly wizard: {
|
|
573
|
+
readonly previous: "Previous";
|
|
574
|
+
readonly next: "Continue";
|
|
575
|
+
readonly submit: "Submit";
|
|
576
|
+
readonly stepOf: "Step {{current}} of {{total}}";
|
|
577
|
+
};
|
|
560
578
|
};
|
|
561
579
|
|
|
562
580
|
declare type Join<T extends string[], D extends string> = T extends [] ? never : T extends [infer F] ? F : T extends [infer F, ...infer R] ? F extends string ? `${F}${D}${Join<Extract<R, string[]>, D>}` : never : string;
|
|
@@ -527,6 +527,18 @@ const e = {
|
|
|
527
527
|
other: "{{count}} issues"
|
|
528
528
|
}
|
|
529
529
|
},
|
|
530
|
+
file: {
|
|
531
|
+
dropzone: "Drag and drop a file, or click to select",
|
|
532
|
+
dropzoneActive: "Drop the file here",
|
|
533
|
+
dropzoneMultiple: "Drag and drop files, or click to select",
|
|
534
|
+
acceptedTypes: "Accepted formats: {{types}}",
|
|
535
|
+
remove: "Remove",
|
|
536
|
+
uploading: "Uploading…",
|
|
537
|
+
processing: "Processing…",
|
|
538
|
+
uploadFailed: "Upload failed",
|
|
539
|
+
fileTooLarge: "File exceeds {{maxSize}} MB limit",
|
|
540
|
+
invalidFileType: "File type not accepted. Accepted formats: {{types}}"
|
|
541
|
+
},
|
|
530
542
|
validation: {
|
|
531
543
|
required: "This field is required",
|
|
532
544
|
invalidType: "Invalid value",
|
|
@@ -556,6 +568,12 @@ const e = {
|
|
|
556
568
|
mustBeChecked: "This option must be selected"
|
|
557
569
|
}
|
|
558
570
|
}
|
|
571
|
+
},
|
|
572
|
+
wizard: {
|
|
573
|
+
previous: "Previous",
|
|
574
|
+
next: "Continue",
|
|
575
|
+
submit: "Submit",
|
|
576
|
+
stepOf: "Step {{current}} of {{total}}"
|
|
559
577
|
}
|
|
560
578
|
};
|
|
561
579
|
export {
|