@factorialco/f0-react 1.388.4 → 1.389.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-Dhth1f1i.js → DataCollectionStorageProvider-CiVDaZuI.js} +9984 -9692
- package/dist/{F0AiChat-BXyvQ3uC.js → F0AiChat-DIBpfRHh.js} +303 -303
- package/dist/{F0HILActionConfirmation-BirXmMOJ.js → F0HILActionConfirmation-Q8FqZblZ.js} +1 -1
- package/dist/ai.d.ts +5 -0
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +59 -0
- package/dist/experimental.js +9125 -8485
- package/dist/f0.d.ts +26 -2
- package/dist/f0.js +2275 -2458
- package/dist/i18n-provider-defaults.d.ts +5 -0
- package/dist/i18n-provider-defaults.js +8 -3
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -439,6 +439,8 @@ export declare const defaultTranslations: {
|
|
|
439
439
|
readonly deleteQuestion: "Delete question";
|
|
440
440
|
readonly duplicateSection: "Duplicate section";
|
|
441
441
|
readonly deleteSection: "Delete section";
|
|
442
|
+
readonly confirmMoveLastQuestion: "Move question";
|
|
443
|
+
readonly cancelMoveLastQuestion: "Cancel";
|
|
442
444
|
};
|
|
443
445
|
readonly questionTypes: {
|
|
444
446
|
readonly section: "Section";
|
|
@@ -450,6 +452,7 @@ export declare const defaultTranslations: {
|
|
|
450
452
|
readonly numeric: "Numeric";
|
|
451
453
|
readonly link: "Link";
|
|
452
454
|
readonly date: "Date";
|
|
455
|
+
readonly dropdownSingle: "Dropdown";
|
|
453
456
|
};
|
|
454
457
|
readonly selectQuestion: {
|
|
455
458
|
readonly addOption: "Add option";
|
|
@@ -476,6 +479,8 @@ export declare const defaultTranslations: {
|
|
|
476
479
|
readonly questionOptions: "Question options";
|
|
477
480
|
readonly actions: "Actions";
|
|
478
481
|
readonly sectionTitlePlaceholder: "Section title";
|
|
482
|
+
readonly lastQuestionDialogTitle: "Remove last question from section";
|
|
483
|
+
readonly lastQuestionDialogDescription: "Moving this question will leave the section empty and it will be removed. Do you want to continue?";
|
|
479
484
|
};
|
|
480
485
|
};
|
|
481
486
|
readonly richTextEditor: {
|
|
@@ -438,7 +438,9 @@ const e = {
|
|
|
438
438
|
duplicateQuestion: "Duplicate question",
|
|
439
439
|
deleteQuestion: "Delete question",
|
|
440
440
|
duplicateSection: "Duplicate section",
|
|
441
|
-
deleteSection: "Delete section"
|
|
441
|
+
deleteSection: "Delete section",
|
|
442
|
+
confirmMoveLastQuestion: "Move question",
|
|
443
|
+
cancelMoveLastQuestion: "Cancel"
|
|
442
444
|
},
|
|
443
445
|
questionTypes: {
|
|
444
446
|
section: "Section",
|
|
@@ -449,7 +451,8 @@ const e = {
|
|
|
449
451
|
longText: "Long text",
|
|
450
452
|
numeric: "Numeric",
|
|
451
453
|
link: "Link",
|
|
452
|
-
date: "Date"
|
|
454
|
+
date: "Date",
|
|
455
|
+
dropdownSingle: "Dropdown"
|
|
453
456
|
},
|
|
454
457
|
selectQuestion: {
|
|
455
458
|
addOption: "Add option",
|
|
@@ -475,7 +478,9 @@ const e = {
|
|
|
475
478
|
questionType: "Question type",
|
|
476
479
|
questionOptions: "Question options",
|
|
477
480
|
actions: "Actions",
|
|
478
|
-
sectionTitlePlaceholder: "Section title"
|
|
481
|
+
sectionTitlePlaceholder: "Section title",
|
|
482
|
+
lastQuestionDialogTitle: "Remove last question from section",
|
|
483
|
+
lastQuestionDialogDescription: "Moving this question will leave the section empty and it will be removed. Do you want to continue?"
|
|
479
484
|
}
|
|
480
485
|
},
|
|
481
486
|
richTextEditor: {
|