@factorialco/f0-react 1.397.0 → 1.399.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/{F0AiChat-RQc7dXda.js → F0AiChat-CiwHSzAS.js} +286 -281
- package/dist/{F0HILActionConfirmation-CEBQZ4xR.js → F0HILActionConfirmation-Ba7uFrN1.js} +1 -1
- package/dist/ai.d.ts +16 -2
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +30 -244
- package/dist/experimental.js +6051 -8390
- package/dist/f0.d.ts +385 -12
- package/dist/f0.js +22312 -18938
- package/dist/i18n-provider-defaults.d.ts +16 -2
- package/dist/i18n-provider-defaults.js +16 -2
- package/dist/styles.css +1 -1
- package/dist/{useDataCollectionSource-Drr0ytr2.js → useDataCollectionSource-BpkC5xiH.js} +11816 -12030
- package/package.json +1 -1
|
@@ -433,7 +433,7 @@ export declare const defaultTranslations: {
|
|
|
433
433
|
readonly dismiss: "Dismiss";
|
|
434
434
|
};
|
|
435
435
|
};
|
|
436
|
-
readonly
|
|
436
|
+
readonly surveyFormBuilder: {
|
|
437
437
|
readonly actions: {
|
|
438
438
|
readonly actions: "Actions";
|
|
439
439
|
readonly duplicateQuestion: "Duplicate question";
|
|
@@ -465,7 +465,11 @@ export declare const defaultTranslations: {
|
|
|
465
465
|
};
|
|
466
466
|
readonly answer: {
|
|
467
467
|
readonly label: "Answer";
|
|
468
|
-
readonly
|
|
468
|
+
readonly dropdownPlaceholder: "Pick an option";
|
|
469
|
+
readonly textPlaceholder: "Type your answer";
|
|
470
|
+
readonly numericPlaceholder: "Enter a number";
|
|
471
|
+
readonly linkPlaceholder: "https://example.com";
|
|
472
|
+
readonly invalidUrl: "Enter a valid URL";
|
|
469
473
|
};
|
|
470
474
|
readonly labels: {
|
|
471
475
|
readonly applyingChanges: "Applying changes";
|
|
@@ -484,6 +488,16 @@ export declare const defaultTranslations: {
|
|
|
484
488
|
readonly lastQuestionDialogDescription: "Moving this question will leave the section empty and it will be removed. Do you want to continue?";
|
|
485
489
|
};
|
|
486
490
|
};
|
|
491
|
+
readonly surveyAnsweringForm: {
|
|
492
|
+
readonly actions: {
|
|
493
|
+
readonly submit: "Submit survey";
|
|
494
|
+
readonly cancel: "Cancel";
|
|
495
|
+
readonly next: "Next";
|
|
496
|
+
readonly previous: "Previous";
|
|
497
|
+
readonly expand: "Expand";
|
|
498
|
+
readonly collapse: "Collapse";
|
|
499
|
+
};
|
|
500
|
+
};
|
|
487
501
|
readonly richTextEditor: {
|
|
488
502
|
readonly bold: "Bold";
|
|
489
503
|
readonly italic: "Italic";
|
|
@@ -433,7 +433,7 @@ const e = {
|
|
|
433
433
|
dismiss: "Dismiss"
|
|
434
434
|
}
|
|
435
435
|
},
|
|
436
|
-
|
|
436
|
+
surveyFormBuilder: {
|
|
437
437
|
actions: {
|
|
438
438
|
actions: "Actions",
|
|
439
439
|
duplicateQuestion: "Duplicate question",
|
|
@@ -465,7 +465,11 @@ const e = {
|
|
|
465
465
|
},
|
|
466
466
|
answer: {
|
|
467
467
|
label: "Answer",
|
|
468
|
-
|
|
468
|
+
dropdownPlaceholder: "Pick an option",
|
|
469
|
+
textPlaceholder: "Type your answer",
|
|
470
|
+
numericPlaceholder: "Enter a number",
|
|
471
|
+
linkPlaceholder: "https://example.com",
|
|
472
|
+
invalidUrl: "Enter a valid URL"
|
|
469
473
|
},
|
|
470
474
|
labels: {
|
|
471
475
|
applyingChanges: "Applying changes",
|
|
@@ -484,6 +488,16 @@ const e = {
|
|
|
484
488
|
lastQuestionDialogDescription: "Moving this question will leave the section empty and it will be removed. Do you want to continue?"
|
|
485
489
|
}
|
|
486
490
|
},
|
|
491
|
+
surveyAnsweringForm: {
|
|
492
|
+
actions: {
|
|
493
|
+
submit: "Submit survey",
|
|
494
|
+
cancel: "Cancel",
|
|
495
|
+
next: "Next",
|
|
496
|
+
previous: "Previous",
|
|
497
|
+
expand: "Expand",
|
|
498
|
+
collapse: "Collapse"
|
|
499
|
+
}
|
|
500
|
+
},
|
|
487
501
|
richTextEditor: {
|
|
488
502
|
bold: "Bold",
|
|
489
503
|
italic: "Italic",
|