@formio/js 5.1.0-dev.5969.9a6e3f5 → 5.1.0-dev.5972.67b2845
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/formio.form.js +74 -52
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.full.js +77 -55
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.js +3 -3
- package/dist/formio.min.js +1 -1
- package/dist/formio.utils.js +3 -3
- package/dist/formio.utils.min.js +1 -1
- package/lib/cjs/Embed.js +1 -1
- package/lib/cjs/Form.js +4 -4
- package/lib/cjs/Formio.js +1 -1
- package/lib/cjs/PDFBuilder.js +4 -4
- package/lib/cjs/Webform.d.ts +12 -12
- package/lib/cjs/Webform.js +132 -131
- package/lib/cjs/WebformBuilder.js +10 -10
- package/lib/cjs/Wizard.js +1 -1
- package/lib/cjs/WizardBuilder.js +1 -1
- package/lib/cjs/components/_classes/component/Component.js +12 -11
- package/lib/cjs/components/_classes/list/ListComponent.js +4 -4
- package/lib/cjs/components/_classes/multivalue/Multivalue.js +2 -2
- package/lib/cjs/components/_classes/nestedarray/NestedArrayComponent.js +3 -3
- package/lib/cjs/components/address/Address.js +1 -1
- package/lib/cjs/components/button/Button.js +6 -6
- package/lib/cjs/components/checkbox/Checkbox.js +1 -1
- package/lib/cjs/components/datagrid/DataGrid.js +5 -2
- package/lib/cjs/components/datetime/DateTime.js +4 -0
- package/lib/cjs/components/day/Day.js +4 -20
- package/lib/cjs/components/editgrid/EditGrid.js +4 -4
- package/lib/cjs/components/file/File.js +15 -15
- package/lib/cjs/components/form/Form.d.ts +1 -0
- package/lib/cjs/components/form/Form.js +11 -7
- package/lib/cjs/components/number/Number.js +1 -1
- package/lib/cjs/components/recaptcha/ReCaptcha.js +2 -2
- package/lib/cjs/components/select/Select.js +5 -5
- package/lib/cjs/components/selectboxes/SelectBoxes.js +2 -2
- package/lib/cjs/components/signature/Signature.d.ts +1 -1
- package/lib/cjs/components/signature/Signature.js +2 -2
- package/lib/cjs/components/survey/Survey.js +2 -2
- package/lib/cjs/components/textarea/TextArea.js +6 -6
- package/lib/cjs/components/textfield/TextField.js +3 -0
- package/lib/cjs/formio.form.js +4 -0
- package/lib/cjs/translations/en.d.ts +234 -81
- package/lib/cjs/translations/en.js +8 -81
- package/lib/cjs/utils/i18n.d.ts +5 -2
- package/lib/cjs/utils/i18n.js +32 -5
- package/lib/mjs/Embed.js +1 -1
- package/lib/mjs/Form.js +4 -4
- package/lib/mjs/Formio.js +1 -1
- package/lib/mjs/PDFBuilder.js +4 -4
- package/lib/mjs/Webform.d.ts +12 -12
- package/lib/mjs/Webform.js +142 -141
- package/lib/mjs/WebformBuilder.js +10 -10
- package/lib/mjs/Wizard.js +1 -1
- package/lib/mjs/WizardBuilder.js +1 -1
- package/lib/mjs/components/_classes/component/Component.js +12 -11
- package/lib/mjs/components/_classes/list/ListComponent.js +4 -4
- package/lib/mjs/components/_classes/multivalue/Multivalue.js +2 -2
- package/lib/mjs/components/_classes/nestedarray/NestedArrayComponent.js +3 -3
- package/lib/mjs/components/address/Address.js +1 -1
- package/lib/mjs/components/button/Button.js +6 -6
- package/lib/mjs/components/checkbox/Checkbox.js +1 -1
- package/lib/mjs/components/datagrid/DataGrid.js +5 -2
- package/lib/mjs/components/datetime/DateTime.js +5 -1
- package/lib/mjs/components/day/Day.js +4 -20
- package/lib/mjs/components/editgrid/EditGrid.js +4 -4
- package/lib/mjs/components/file/File.js +15 -15
- package/lib/mjs/components/form/Form.d.ts +1 -0
- package/lib/mjs/components/form/Form.js +10 -7
- package/lib/mjs/components/number/Number.js +1 -1
- package/lib/mjs/components/recaptcha/ReCaptcha.js +2 -2
- package/lib/mjs/components/select/Select.js +7 -7
- package/lib/mjs/components/selectboxes/SelectBoxes.js +2 -2
- package/lib/mjs/components/signature/Signature.d.ts +1 -1
- package/lib/mjs/components/signature/Signature.js +2 -2
- package/lib/mjs/components/survey/Survey.js +2 -2
- package/lib/mjs/components/textarea/TextArea.js +6 -6
- package/lib/mjs/components/textfield/TextField.js +3 -0
- package/lib/mjs/formio.form.js +4 -0
- package/lib/mjs/translations/en.d.ts +234 -81
- package/lib/mjs/translations/en.js +89 -3
- package/lib/mjs/utils/i18n.d.ts +5 -2
- package/lib/mjs/utils/i18n.js +32 -5
- package/package.json +4 -4
@@ -207,7 +207,7 @@ export default class FormComponent extends Component {
|
|
207
207
|
/* eslint-enable max-statements */
|
208
208
|
render() {
|
209
209
|
if (this.builderMode) {
|
210
|
-
return super.render(this.component.label || '
|
210
|
+
return super.render(this.t(this.component.label || 'nestedForm'));
|
211
211
|
}
|
212
212
|
const subform = this.subForm ? this.subForm.render() : this.renderTemplate('loading');
|
213
213
|
return super.render(subform);
|
@@ -220,13 +220,13 @@ export default class FormComponent extends Component {
|
|
220
220
|
*/
|
221
221
|
getValueAsString(value, options) {
|
222
222
|
if (!value) {
|
223
|
-
return '
|
223
|
+
return this.t('noDataProvided');
|
224
224
|
}
|
225
225
|
if (!value.data && value._id) {
|
226
226
|
return value._id;
|
227
227
|
}
|
228
228
|
if (!value.data || !Object.keys(value.data).length) {
|
229
|
-
return '
|
229
|
+
return this.t('noDataProvided');
|
230
230
|
}
|
231
231
|
if (options?.email) {
|
232
232
|
let result = (`
|
@@ -329,6 +329,9 @@ export default class FormComponent extends Component {
|
|
329
329
|
&& _.isNumber(this.formObj._vid)
|
330
330
|
&& this.formObj._vid !== this.subFormRevision;
|
331
331
|
}
|
332
|
+
get subFormData() {
|
333
|
+
return this.dataValue?.data || {};
|
334
|
+
}
|
332
335
|
destroy(all = false) {
|
333
336
|
if (this.subForm) {
|
334
337
|
this.subForm.destroy(all);
|
@@ -477,14 +480,14 @@ export default class FormComponent extends Component {
|
|
477
480
|
return visible;
|
478
481
|
}
|
479
482
|
if (this.subForm) {
|
480
|
-
return this.subForm.checkConditions(
|
483
|
+
return this.subForm.checkConditions(this.subFormData, flags);
|
481
484
|
}
|
482
485
|
// There are few cases when subForm is not loaded when a change is triggered,
|
483
486
|
// so we need to perform checkConditions after it is ready, or some conditional fields might be hidden in View mode
|
484
487
|
else if (this.subFormReady) {
|
485
488
|
this.subFormReady.then(() => {
|
486
489
|
if (this.subForm) {
|
487
|
-
return this.subForm.checkConditions(
|
490
|
+
return this.subForm.checkConditions(this.subFormData, flags);
|
488
491
|
}
|
489
492
|
});
|
490
493
|
}
|
@@ -492,7 +495,7 @@ export default class FormComponent extends Component {
|
|
492
495
|
}
|
493
496
|
calculateValue(data, flags, row) {
|
494
497
|
if (this.subForm) {
|
495
|
-
return this.subForm.calculateValue(
|
498
|
+
return this.subForm.calculateValue(this.subFormData, flags);
|
496
499
|
}
|
497
500
|
return super.calculateValue(data, flags, row);
|
498
501
|
}
|
@@ -630,7 +633,7 @@ export default class FormComponent extends Component {
|
|
630
633
|
: {};
|
631
634
|
this.subForm.setUrl(submissionUrl, { ...this.options, ...options });
|
632
635
|
this.subForm.loadSubmission().catch((err) => {
|
633
|
-
console.error(
|
636
|
+
console.error(this.t('subformSubmissionLoadingError', { submissionId: submission._id }), err);
|
634
637
|
});
|
635
638
|
}
|
636
639
|
else {
|
@@ -54,7 +54,7 @@ export default class NumberComponent extends Input {
|
|
54
54
|
}
|
55
55
|
else {
|
56
56
|
if (this.component.thousandsSeparator || this.options.properties?.thousandsSeparator || this.options.thousandsSeparator) {
|
57
|
-
console.warn('
|
57
|
+
console.warn(this.t('noDelimiterSet'));
|
58
58
|
}
|
59
59
|
this.delimiter = '';
|
60
60
|
}
|
@@ -47,7 +47,7 @@ export default class ReCaptchaComponent extends Component {
|
|
47
47
|
this.recaptchaApiReady = Formio.requireLibrary('googleRecaptcha', 'grecaptcha', recaptchaApiScriptUrl, true);
|
48
48
|
}
|
49
49
|
else {
|
50
|
-
console.warn('
|
50
|
+
console.warn(this.t('noSiteKey'));
|
51
51
|
}
|
52
52
|
}
|
53
53
|
}
|
@@ -60,7 +60,7 @@ export default class ReCaptchaComponent extends Component {
|
|
60
60
|
async verify(actionName) {
|
61
61
|
const siteKey = _get(this.root.form, 'settings.recaptcha.siteKey');
|
62
62
|
if (!siteKey) {
|
63
|
-
console.warn('
|
63
|
+
console.warn(this.t('noSiteKey'));
|
64
64
|
return;
|
65
65
|
}
|
66
66
|
if (!this.recaptchaApiReady) {
|
@@ -594,7 +594,7 @@ export default class SelectComponent extends ListComponent {
|
|
594
594
|
component: this.component,
|
595
595
|
message: err.toString(),
|
596
596
|
});
|
597
|
-
console.warn(
|
597
|
+
console.warn(this.t('loadResourcesError', { componentKey: this.key }));
|
598
598
|
}
|
599
599
|
/**
|
600
600
|
* Get the request headers for this select dropdown.
|
@@ -728,7 +728,7 @@ export default class SelectComponent extends ListComponent {
|
|
728
728
|
}
|
729
729
|
}
|
730
730
|
else if (this.component.dataSrc === 'url' || this.component.dataSrc === 'resource') {
|
731
|
-
this.addOption('', this.t('loading
|
731
|
+
this.addOption('', `${this.t('loading')}...`);
|
732
732
|
}
|
733
733
|
}
|
734
734
|
get active() {
|
@@ -779,9 +779,9 @@ export default class SelectComponent extends ListComponent {
|
|
779
779
|
allowHTML: true,
|
780
780
|
placeholder: !!this.component.placeholder,
|
781
781
|
placeholderValue: placeholderValue,
|
782
|
-
noResultsText: this.t('
|
783
|
-
noChoicesText: this.t('
|
784
|
-
searchPlaceholderValue: this.t('
|
782
|
+
noResultsText: this.t('noResultsFound'),
|
783
|
+
noChoicesText: this.t('noChoices'),
|
784
|
+
searchPlaceholderValue: this.t('typeToSearch'),
|
785
785
|
shouldSort: false,
|
786
786
|
position: (this.component.dropdown || 'auto'),
|
787
787
|
searchEnabled: useSearch,
|
@@ -1218,7 +1218,7 @@ export default class SelectComponent extends ListComponent {
|
|
1218
1218
|
return normalize[dataType]().value;
|
1219
1219
|
}
|
1220
1220
|
catch (err) {
|
1221
|
-
console.warn('
|
1221
|
+
console.warn(this.t('failedToNormalize'), err);
|
1222
1222
|
return value;
|
1223
1223
|
}
|
1224
1224
|
}
|
@@ -1414,7 +1414,7 @@ export default class SelectComponent extends ListComponent {
|
|
1414
1414
|
return (JSON.stringify(normalizedOptionValue) === JSON.stringify(value));
|
1415
1415
|
}
|
1416
1416
|
catch (err) {
|
1417
|
-
console.warn.error('
|
1417
|
+
console.warn.error(this.t('failedToCompareItems'), err);
|
1418
1418
|
return false;
|
1419
1419
|
}
|
1420
1420
|
};
|
@@ -250,14 +250,14 @@ export default class SelectBoxesComponent extends RadioComponent {
|
|
250
250
|
this.setInputsDisabled(false);
|
251
251
|
}
|
252
252
|
if (!isValid && maxCount && count > maxCount) {
|
253
|
-
const message = this.t(this.component.maxSelectedCountMessage || '
|
253
|
+
const message = this.t(this.component.maxSelectedCountMessage || 'maxSelectItems', { maxCount });
|
254
254
|
this.errors.push({ message });
|
255
255
|
this.setCustomValidity(message, dirty);
|
256
256
|
return false;
|
257
257
|
}
|
258
258
|
else if (!isValid && minCount && count < minCount) {
|
259
259
|
this.setInputsDisabled(false);
|
260
|
-
const message = this.t(this.component.minSelectedCountMessage || '
|
260
|
+
const message = this.t(this.component.minSelectedCountMessage || 'minSelectItems', { minCount });
|
261
261
|
this.errors.push({ message });
|
262
262
|
this.setCustomValidity(message, dirty);
|
263
263
|
return false;
|
@@ -24,7 +24,7 @@ export default class SignatureComponent extends Input {
|
|
24
24
|
checkSize(force: any, scale: any): void;
|
25
25
|
signaturePad: SignaturePad | null | undefined;
|
26
26
|
observer: any;
|
27
|
-
getValueAsString(value: any):
|
27
|
+
getValueAsString(value: any): string;
|
28
28
|
focus(): void;
|
29
29
|
setDataToSigaturePad(): void;
|
30
30
|
}
|
@@ -174,7 +174,7 @@ export default class SignatureComponent extends Input {
|
|
174
174
|
return this.renderModalPreview({
|
175
175
|
previewText: this.dataValue ?
|
176
176
|
`<img src=${this.dataValue} ${this._referenceAttributeName}='openModal' style="width: 100%;height: 100%;" />` :
|
177
|
-
this.t('
|
177
|
+
this.t('clickToSign')
|
178
178
|
});
|
179
179
|
}
|
180
180
|
attach(element) {
|
@@ -242,7 +242,7 @@ export default class SignatureComponent extends Input {
|
|
242
242
|
if (_.isUndefined(value) && this.inDataTable) {
|
243
243
|
return '';
|
244
244
|
}
|
245
|
-
return value ? '
|
245
|
+
return this.t(value ? 'yes' : 'no');
|
246
246
|
}
|
247
247
|
focus() {
|
248
248
|
this.refs.padBody.focus();
|
@@ -126,8 +126,8 @@ export default class SurveyComponent extends Field {
|
|
126
126
|
<table border="1" style="width:100%">
|
127
127
|
<thead>
|
128
128
|
<tr>
|
129
|
-
<th
|
130
|
-
<th
|
129
|
+
<th>${this.t('surveyQuestion')}</th>
|
130
|
+
<th>${this.t('surveyQuestionValue')}</th>
|
131
131
|
</tr>
|
132
132
|
</thead>
|
133
133
|
<tbody>
|
@@ -131,7 +131,7 @@ export default class TextAreaComponent extends TextFieldComponent {
|
|
131
131
|
case 'quill':
|
132
132
|
// Normalize the configurations for quill.
|
133
133
|
if (settings.hasOwnProperty('toolbarGroups') || settings.hasOwnProperty('toolbar')) {
|
134
|
-
console.warn(
|
134
|
+
console.warn(this.t('needConfigurationForQuill'));
|
135
135
|
settings = this.wysiwygDefault.quill;
|
136
136
|
}
|
137
137
|
// Add the quill editor.
|
@@ -203,7 +203,7 @@ export default class TextAreaComponent extends TextFieldComponent {
|
|
203
203
|
imageHandler(moduleInstance, range, files) {
|
204
204
|
const quillInstance = moduleInstance.quill;
|
205
205
|
if (!files || !files.length) {
|
206
|
-
console.warn('
|
206
|
+
console.warn(this.t('noFilesSelected'));
|
207
207
|
return;
|
208
208
|
}
|
209
209
|
quillInstance.enable(false);
|
@@ -228,7 +228,7 @@ export default class TextAreaComponent extends TextFieldComponent {
|
|
228
228
|
alt: JSON.stringify(requestData),
|
229
229
|
}), Quill.sources.USER);
|
230
230
|
}).catch(error => {
|
231
|
-
console.warn('
|
231
|
+
console.warn(this.t('quillImageUploadFailed'));
|
232
232
|
console.warn(error);
|
233
233
|
quillInstance.enable(true);
|
234
234
|
});
|
@@ -523,7 +523,7 @@ export default class TextAreaComponent extends TextFieldComponent {
|
|
523
523
|
}
|
524
524
|
this.element.scrollIntoView();
|
525
525
|
}).catch((err) => {
|
526
|
-
console.warn('
|
526
|
+
console.warn(this.t('editorFocusError'), err);
|
527
527
|
});
|
528
528
|
break;
|
529
529
|
}
|
@@ -532,7 +532,7 @@ export default class TextAreaComponent extends TextFieldComponent {
|
|
532
532
|
this.editors[0].focus();
|
533
533
|
this.element.scrollIntoView();
|
534
534
|
}).catch((err) => {
|
535
|
-
console.warn('
|
535
|
+
console.warn(this.t('editorFocusError'), err);
|
536
536
|
});
|
537
537
|
break;
|
538
538
|
}
|
@@ -540,7 +540,7 @@ export default class TextAreaComponent extends TextFieldComponent {
|
|
540
540
|
this.editorsReady[0]?.then(() => {
|
541
541
|
this.editors[0].focus();
|
542
542
|
}).catch((err) => {
|
543
|
-
console.warn('
|
543
|
+
console.warn(this.t('editorFocusError'), err);
|
544
544
|
});
|
545
545
|
break;
|
546
546
|
}
|
@@ -86,6 +86,9 @@ export default class TextFieldComponent extends Input {
|
|
86
86
|
locale: this.component.widget.locale || this.options.language,
|
87
87
|
saveAs: 'text'
|
88
88
|
};
|
89
|
+
// update originalComponent to include widget settings after component initialization
|
90
|
+
// originalComponent is used to restore the component (and widget) after evaluating field logic
|
91
|
+
this.originalComponent = FormioUtils.fastCloneDeep(this.component);
|
89
92
|
}
|
90
93
|
}
|
91
94
|
attach(element) {
|
package/lib/mjs/formio.form.js
CHANGED
@@ -12,6 +12,7 @@ import { Evaluator } from './utils/Evaluator';
|
|
12
12
|
import Licenses from './licenses';
|
13
13
|
import EventEmitter from './EventEmitter';
|
14
14
|
import Webform from './Webform';
|
15
|
+
import { I18n } from './utils/i18n';
|
15
16
|
Formio.loadModules = (path = `${Formio.getApiUrl()}/externalModules.js`, name = 'externalModules') => {
|
16
17
|
Formio.requireLibrary(name, name, path, true)
|
17
18
|
.then((modules) => {
|
@@ -84,6 +85,9 @@ export function registerModule(mod, defaultFn = null, options = {}) {
|
|
84
85
|
case 'evaluator':
|
85
86
|
Formio.Evaluator.registerEvaluator(mod.evaluator);
|
86
87
|
break;
|
88
|
+
case 'translations':
|
89
|
+
I18n.setDefaultTranslations(mod.translations);
|
90
|
+
break;
|
87
91
|
case 'library':
|
88
92
|
options.license
|
89
93
|
? Formio.Licenses.addLicense(mod.library, options.license)
|
@@ -1,82 +1,235 @@
|
|
1
|
-
declare
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
1
|
+
declare const _default: {
|
2
|
+
unsavedRowsError: string;
|
3
|
+
invalidRowsError: string;
|
4
|
+
invalidRowError: string;
|
5
|
+
invalidOption: string;
|
6
|
+
invalidDay: string;
|
7
|
+
alertMessageWithLabel: string;
|
8
|
+
alertMessage: string;
|
9
|
+
complete: string;
|
10
|
+
error: string;
|
11
|
+
errorListHotkey: string;
|
12
|
+
errorsListNavigationMessage: string;
|
13
|
+
submitError: string;
|
14
|
+
required: string;
|
15
|
+
unique: string;
|
16
|
+
array: string;
|
17
|
+
array_nonempty: string;
|
18
|
+
nonarray: string;
|
19
|
+
select: string;
|
20
|
+
pattern: string;
|
21
|
+
minLength: string;
|
22
|
+
maxLength: string;
|
23
|
+
minWords: string;
|
24
|
+
maxWords: string;
|
25
|
+
min: string;
|
26
|
+
max: string;
|
27
|
+
maxDate: string;
|
28
|
+
minDate: string;
|
29
|
+
maxYear: string;
|
30
|
+
minYear: string;
|
31
|
+
minSelectedCount: string;
|
32
|
+
maxSelectedCount: string;
|
33
|
+
invalid_email: string;
|
34
|
+
invalid_url: string;
|
35
|
+
invalid_regex: string;
|
36
|
+
invalid_date: string;
|
37
|
+
invalid_day: string;
|
38
|
+
invalidValueProperty: string;
|
39
|
+
mask: string;
|
40
|
+
valueIsNotAvailable: string;
|
41
|
+
stripe: string;
|
42
|
+
month: string;
|
43
|
+
day: string;
|
44
|
+
year: string;
|
45
|
+
january: string;
|
46
|
+
february: string;
|
47
|
+
march: string;
|
48
|
+
april: string;
|
49
|
+
may: string;
|
50
|
+
june: string;
|
51
|
+
july: string;
|
52
|
+
august: string;
|
53
|
+
september: string;
|
54
|
+
october: string;
|
55
|
+
november: string;
|
56
|
+
december: string;
|
57
|
+
next: string;
|
58
|
+
previous: string;
|
59
|
+
cancel: string;
|
60
|
+
submit: string;
|
61
|
+
confirmCancel: string;
|
62
|
+
saveDraftInstanceError: string;
|
63
|
+
saveDraftAuthError: string;
|
64
|
+
restoreDraftInstanceError: string;
|
65
|
+
saveDraftError: string;
|
66
|
+
restoreDraftError: string;
|
67
|
+
time: string;
|
68
|
+
cancelButtonAriaLabel: string;
|
69
|
+
previousButtonAriaLabel: string;
|
70
|
+
nextButtonAriaLabel: string;
|
71
|
+
submitButtonAriaLabel: string;
|
72
|
+
reCaptchaTokenValidationError: string;
|
73
|
+
reCaptchaTokenNotSpecifiedError: string;
|
74
|
+
apiKey: string;
|
75
|
+
typeRemaining: string;
|
76
|
+
typeCount: string;
|
77
|
+
requiredDayField: string;
|
78
|
+
requiredDayEmpty: string;
|
79
|
+
requiredMonthField: string;
|
80
|
+
requiredYearField: string;
|
81
|
+
formNotReady: string;
|
82
|
+
noFormElement: string;
|
83
|
+
notUniqueKey: string;
|
84
|
+
newFormSchema: string;
|
85
|
+
missingUrl: string;
|
86
|
+
urlNotAttachedToBtn: string;
|
87
|
+
loadingProjectSettingsError: string;
|
88
|
+
sessionStorageSupportError: string;
|
89
|
+
builderUniqueError: string;
|
90
|
+
pageNotFound: string;
|
91
|
+
noDragInfoError: string;
|
92
|
+
addonSupportTypeError: string;
|
93
|
+
setPathError: string;
|
94
|
+
calculatedPathDeprecation: string;
|
95
|
+
unknownTemplate: string;
|
96
|
+
unknownComponent: string;
|
97
|
+
renderTemplateFunctionDeprecation: string;
|
98
|
+
whenReadyDeprecation: string;
|
99
|
+
loadResourcesError: string;
|
100
|
+
noSelectDataConfiguration: string;
|
101
|
+
indexedDBSupportError: string;
|
102
|
+
caretPositionSavingError: string;
|
103
|
+
iteratableRowsError: string;
|
104
|
+
checkRowDeprecation: string;
|
105
|
+
noOAuthBtn: string;
|
106
|
+
noOAuthConfiguration: string;
|
107
|
+
oAuthErrorsTitle: string;
|
108
|
+
noOAuthFormUrl: string;
|
109
|
+
oAuthStateError: string;
|
110
|
+
componentInvalidRowValidation: string;
|
111
|
+
videoPlayerNotFound: string;
|
112
|
+
synchronizationFailed: string;
|
113
|
+
fileWithDuplicatedNameInProgress: string;
|
114
|
+
fileWithDuplicatedNameLoaded: string;
|
115
|
+
nestedForm: string;
|
116
|
+
noDataProvided: string;
|
117
|
+
subformSubmissionLoadingError: string;
|
118
|
+
noDelimiterSet: string;
|
119
|
+
noSiteKey: string;
|
120
|
+
failedToNormalize: string;
|
121
|
+
failedToCompareItems: string;
|
122
|
+
editorFocusError: string;
|
123
|
+
quillImageUploadFailed: string;
|
124
|
+
noFilesSelected: string;
|
125
|
+
needConfigurationForQuill: string;
|
126
|
+
waitPdfConverting: string;
|
127
|
+
uploading: string;
|
128
|
+
pasteBelow: string;
|
129
|
+
copy: string;
|
130
|
+
move: string;
|
131
|
+
edit: string;
|
132
|
+
editJson: string;
|
133
|
+
remove: string;
|
134
|
+
clickToSetValue: string;
|
135
|
+
words: string;
|
136
|
+
characters: string;
|
137
|
+
addAnother: string;
|
138
|
+
yes: string;
|
139
|
+
no: string;
|
140
|
+
wantToClearData: string;
|
141
|
+
yesDelete: string;
|
142
|
+
waitFileProcessing: string;
|
143
|
+
wrongFileType: string;
|
144
|
+
fileTooSmall: string;
|
145
|
+
fileTooBig: string;
|
146
|
+
noFileService: string;
|
147
|
+
fileProcessingFailed: string;
|
148
|
+
readyForUpload: string;
|
149
|
+
readyForRemovingFromStorage: string;
|
150
|
+
preparingFileToRemove: string;
|
151
|
+
succefullyRemoved: string;
|
152
|
+
succefullyUploaded: string;
|
153
|
+
maxSelectItems: string;
|
154
|
+
minSelectItems: string;
|
155
|
+
clickToSign: string;
|
156
|
+
surveyQuestion: string;
|
157
|
+
surveyQuestionValue: string;
|
158
|
+
success: string;
|
159
|
+
noResultsFound: string;
|
160
|
+
noChoices: string;
|
161
|
+
typeToSearch: string;
|
162
|
+
loading: string;
|
163
|
+
help: string;
|
164
|
+
component: string;
|
165
|
+
save: string;
|
166
|
+
preview: string;
|
167
|
+
dragAndDropComponent: string;
|
168
|
+
searchFields: string;
|
169
|
+
noMatchesFound: string;
|
170
|
+
fileName: string;
|
171
|
+
size: string;
|
172
|
+
type: string;
|
173
|
+
gallery: string;
|
174
|
+
camera: string;
|
175
|
+
dropFilesToAttach: string;
|
176
|
+
useCamera: string;
|
177
|
+
browse: string;
|
178
|
+
takePicture: string;
|
179
|
+
switchToFileUpload: string;
|
180
|
+
completeStatus: string;
|
181
|
+
noStorageSet: string;
|
182
|
+
noFileApiSupport: string;
|
183
|
+
noFormDataSupport: string;
|
184
|
+
noProgressSupport: string;
|
185
|
+
close: string;
|
186
|
+
addResource: string;
|
187
|
+
autocomplete: string;
|
188
|
+
showPreview: string;
|
189
|
+
hidePreview: string;
|
190
|
+
createPage: string;
|
191
|
+
page: string;
|
192
|
+
closeBtnDescription: string;
|
193
|
+
cancelBtnDescription: string;
|
194
|
+
saveBtnDescription: string;
|
195
|
+
addOrRemove: string;
|
196
|
+
anyFileTypesAllowed: string;
|
197
|
+
allowedFileTypes: string;
|
198
|
+
syncing: string;
|
199
|
+
syncNow: string;
|
200
|
+
pressToOpen: string;
|
201
|
+
browseToAttachFileFor: string;
|
202
|
+
or: string;
|
203
|
+
numericOnly: string;
|
204
|
+
uploadPdfFile: string;
|
205
|
+
dropToStart: string;
|
206
|
+
expand: string;
|
207
|
+
collapse: string;
|
208
|
+
add: string;
|
209
|
+
delete: string;
|
210
|
+
revert: string;
|
211
|
+
removeBtnPressToRemove: string;
|
212
|
+
file: string;
|
213
|
+
captureVideo: string;
|
214
|
+
captureAudio: string;
|
215
|
+
captureImage: string;
|
216
|
+
browseFiles: string;
|
217
|
+
noComponentsSetInGrid: string;
|
218
|
+
sortAscending: string;
|
219
|
+
sortDescending: string;
|
220
|
+
filter: string;
|
221
|
+
clear: string;
|
222
|
+
showItemsWithValue: string;
|
223
|
+
gridItemsPerPage: string;
|
224
|
+
gridAllItems: string;
|
225
|
+
recordsSelectedOnPage: string;
|
226
|
+
recordsSelectedInTable: string;
|
227
|
+
gridSelectAll: string;
|
228
|
+
itemsInTable: string;
|
229
|
+
clearSelection: string;
|
230
|
+
editGridRow: string;
|
231
|
+
deleteGridRow: string;
|
232
|
+
selected: string;
|
233
|
+
actions: string;
|
234
|
+
};
|
82
235
|
export default _default;
|