@factorialco/f0-react 1.381.0 → 1.382.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-B8_-moME.js} +1 -1
- package/dist/{F0AiChat-DvWln9wK.js → F0AiChat-oTIR5NbZ.js} +322 -321
- package/dist/{F0HILActionConfirmation-DRfQGPsn.js → F0HILActionConfirmation-C9Kwjohi.js} +1 -1
- package/dist/ai.d.ts +17 -5
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +17 -5
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +186 -12
- package/dist/f0.js +3912 -3580
- package/dist/i18n-provider-defaults.d.ts +17 -5
- package/dist/i18n-provider-defaults.js +12 -0
- package/package.json +1 -1
|
@@ -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";
|
|
@@ -613,6 +625,11 @@ declare module "gridstack" {
|
|
|
613
625
|
}
|
|
614
626
|
|
|
615
627
|
|
|
628
|
+
declare namespace Calendar {
|
|
629
|
+
var displayName: string;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
|
|
616
633
|
declare module "@tiptap/core" {
|
|
617
634
|
interface Commands<ReturnType> {
|
|
618
635
|
aiBlock: {
|
|
@@ -660,8 +677,3 @@ declare module "@tiptap/core" {
|
|
|
660
677
|
};
|
|
661
678
|
}
|
|
662
679
|
}
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
declare namespace Calendar {
|
|
666
|
-
var displayName: string;
|
|
667
|
-
}
|
|
@@ -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",
|