@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
@@ -213,7 +213,7 @@ class FormComponent extends Component_1.default {
|
|
213
213
|
/* eslint-enable max-statements */
|
214
214
|
render() {
|
215
215
|
if (this.builderMode) {
|
216
|
-
return super.render(this.component.label || '
|
216
|
+
return super.render(this.t(this.component.label || 'nestedForm'));
|
217
217
|
}
|
218
218
|
const subform = this.subForm ? this.subForm.render() : this.renderTemplate('loading');
|
219
219
|
return super.render(subform);
|
@@ -226,13 +226,13 @@ class FormComponent extends Component_1.default {
|
|
226
226
|
*/
|
227
227
|
getValueAsString(value, options) {
|
228
228
|
if (!value) {
|
229
|
-
return '
|
229
|
+
return this.t('noDataProvided');
|
230
230
|
}
|
231
231
|
if (!value.data && value._id) {
|
232
232
|
return value._id;
|
233
233
|
}
|
234
234
|
if (!value.data || !Object.keys(value.data).length) {
|
235
|
-
return '
|
235
|
+
return this.t('noDataProvided');
|
236
236
|
}
|
237
237
|
if (options === null || options === void 0 ? void 0 : options.email) {
|
238
238
|
let result = (`
|
@@ -332,6 +332,10 @@ class FormComponent extends Component_1.default {
|
|
332
332
|
&& lodash_1.default.isNumber(this.formObj._vid)
|
333
333
|
&& this.formObj._vid !== this.subFormRevision;
|
334
334
|
}
|
335
|
+
get subFormData() {
|
336
|
+
var _a;
|
337
|
+
return ((_a = this.dataValue) === null || _a === void 0 ? void 0 : _a.data) || {};
|
338
|
+
}
|
335
339
|
destroy(all = false) {
|
336
340
|
if (this.subForm) {
|
337
341
|
this.subForm.destroy(all);
|
@@ -482,14 +486,14 @@ class FormComponent extends Component_1.default {
|
|
482
486
|
return visible;
|
483
487
|
}
|
484
488
|
if (this.subForm) {
|
485
|
-
return this.subForm.checkConditions(
|
489
|
+
return this.subForm.checkConditions(this.subFormData, flags);
|
486
490
|
}
|
487
491
|
// There are few cases when subForm is not loaded when a change is triggered,
|
488
492
|
// so we need to perform checkConditions after it is ready, or some conditional fields might be hidden in View mode
|
489
493
|
else if (this.subFormReady) {
|
490
494
|
this.subFormReady.then(() => {
|
491
495
|
if (this.subForm) {
|
492
|
-
return this.subForm.checkConditions(
|
496
|
+
return this.subForm.checkConditions(this.subFormData, flags);
|
493
497
|
}
|
494
498
|
});
|
495
499
|
}
|
@@ -497,7 +501,7 @@ class FormComponent extends Component_1.default {
|
|
497
501
|
}
|
498
502
|
calculateValue(data, flags, row) {
|
499
503
|
if (this.subForm) {
|
500
|
-
return this.subForm.calculateValue(
|
504
|
+
return this.subForm.calculateValue(this.subFormData, flags);
|
501
505
|
}
|
502
506
|
return super.calculateValue(data, flags, row);
|
503
507
|
}
|
@@ -639,7 +643,7 @@ class FormComponent extends Component_1.default {
|
|
639
643
|
: {};
|
640
644
|
this.subForm.setUrl(submissionUrl, Object.assign(Object.assign({}, this.options), options));
|
641
645
|
this.subForm.loadSubmission().catch((err) => {
|
642
|
-
console.error(
|
646
|
+
console.error(this.t('subformSubmissionLoadingError', { submissionId: submission._id }), err);
|
643
647
|
});
|
644
648
|
}
|
645
649
|
else {
|
@@ -56,7 +56,7 @@ class NumberComponent extends Input_1.default {
|
|
56
56
|
}
|
57
57
|
else {
|
58
58
|
if (this.component.thousandsSeparator || ((_c = this.options.properties) === null || _c === void 0 ? void 0 : _c.thousandsSeparator) || this.options.thousandsSeparator) {
|
59
|
-
console.warn('
|
59
|
+
console.warn(this.t('noDelimiterSet'));
|
60
60
|
}
|
61
61
|
this.delimiter = '';
|
62
62
|
}
|
@@ -58,7 +58,7 @@ class ReCaptchaComponent extends Component_1.default {
|
|
58
58
|
this.recaptchaApiReady = Formio_1.Formio.requireLibrary('googleRecaptcha', 'grecaptcha', recaptchaApiScriptUrl, true);
|
59
59
|
}
|
60
60
|
else {
|
61
|
-
console.warn('
|
61
|
+
console.warn(this.t('noSiteKey'));
|
62
62
|
}
|
63
63
|
}
|
64
64
|
}
|
@@ -72,7 +72,7 @@ class ReCaptchaComponent extends Component_1.default {
|
|
72
72
|
return __awaiter(this, void 0, void 0, function* () {
|
73
73
|
const siteKey = (0, get_1.default)(this.root.form, 'settings.recaptcha.siteKey');
|
74
74
|
if (!siteKey) {
|
75
|
-
console.warn('
|
75
|
+
console.warn(this.t('noSiteKey'));
|
76
76
|
return;
|
77
77
|
}
|
78
78
|
if (!this.recaptchaApiReady) {
|
@@ -592,7 +592,7 @@ class SelectComponent extends ListComponent_1.default {
|
|
592
592
|
component: this.component,
|
593
593
|
message: err.toString(),
|
594
594
|
});
|
595
|
-
console.warn(
|
595
|
+
console.warn(this.t('loadResourcesError', { componentKey: this.key }));
|
596
596
|
}
|
597
597
|
/**
|
598
598
|
* Get the request headers for this select dropdown.
|
@@ -726,7 +726,7 @@ class SelectComponent extends ListComponent_1.default {
|
|
726
726
|
}
|
727
727
|
}
|
728
728
|
else if (this.component.dataSrc === 'url' || this.component.dataSrc === 'resource') {
|
729
|
-
this.addOption('', this.t('loading
|
729
|
+
this.addOption('', `${this.t('loading')}...`);
|
730
730
|
}
|
731
731
|
}
|
732
732
|
get active() {
|
@@ -769,7 +769,7 @@ class SelectComponent extends ListComponent_1.default {
|
|
769
769
|
return Object.assign({ removeItemButton: this.component.disabled ? false : lodash_1.default.get(this.component, 'removeItemButton', true), itemSelectText: '', classNames: {
|
770
770
|
containerOuter: 'choices form-group formio-choices',
|
771
771
|
containerInner: this.transform('class', 'form-control ui fluid selection dropdown')
|
772
|
-
}, addItemText: false, allowHTML: true, placeholder: !!this.component.placeholder, placeholderValue: placeholderValue, noResultsText: this.t('
|
772
|
+
}, addItemText: false, allowHTML: true, placeholder: !!this.component.placeholder, placeholderValue: placeholderValue, noResultsText: this.t('noResultsFound'), noChoicesText: this.t('noChoices'), searchPlaceholderValue: this.t('typeToSearch'), shouldSort: false, position: (this.component.dropdown || 'auto'), searchEnabled: useSearch, searchChoices: !this.component.searchField, searchFields: lodash_1.default.get(this, 'component.searchFields', ['label']), shadowRoot: this.root ? this.root.shadowRoot : null, fuseOptions: this.component.useExactSearch
|
773
773
|
? Object.assign({ tokenize: true, matchAllTokens: true }, commonFuseOptions) : Object.assign({}, lodash_1.default.get(this, 'component.fuseOptions', {}), Object.assign({ include: 'score', threshold: lodash_1.default.get(this, 'component.selectThreshold', 0.3) }, commonFuseOptions)), valueComparer: lodash_1.default.isEqual, resetScrollPosition: false }, customOptions);
|
774
774
|
}
|
775
775
|
/* eslint-disable max-statements */
|
@@ -1189,7 +1189,7 @@ class SelectComponent extends ListComponent_1.default {
|
|
1189
1189
|
return normalize[dataType]().value;
|
1190
1190
|
}
|
1191
1191
|
catch (err) {
|
1192
|
-
console.warn('
|
1192
|
+
console.warn(this.t('failedToNormalize'), err);
|
1193
1193
|
return value;
|
1194
1194
|
}
|
1195
1195
|
}
|
@@ -1386,7 +1386,7 @@ class SelectComponent extends ListComponent_1.default {
|
|
1386
1386
|
return (JSON.stringify(normalizedOptionValue) === JSON.stringify(value));
|
1387
1387
|
}
|
1388
1388
|
catch (err) {
|
1389
|
-
console.warn.error('
|
1389
|
+
console.warn.error(this.t('failedToCompareItems'), err);
|
1390
1390
|
return false;
|
1391
1391
|
}
|
1392
1392
|
};
|
@@ -249,14 +249,14 @@ class SelectBoxesComponent extends Radio_1.default {
|
|
249
249
|
this.setInputsDisabled(false);
|
250
250
|
}
|
251
251
|
if (!isValid && maxCount && count > maxCount) {
|
252
|
-
const message = this.t(this.component.maxSelectedCountMessage || '
|
252
|
+
const message = this.t(this.component.maxSelectedCountMessage || 'maxSelectItems', { maxCount });
|
253
253
|
this.errors.push({ message });
|
254
254
|
this.setCustomValidity(message, dirty);
|
255
255
|
return false;
|
256
256
|
}
|
257
257
|
else if (!isValid && minCount && count < minCount) {
|
258
258
|
this.setInputsDisabled(false);
|
259
|
-
const message = this.t(this.component.minSelectedCountMessage || '
|
259
|
+
const message = this.t(this.component.minSelectedCountMessage || 'minSelectItems', { minCount });
|
260
260
|
this.errors.push({ message });
|
261
261
|
this.setCustomValidity(message, dirty);
|
262
262
|
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
|
}
|
@@ -177,7 +177,7 @@ class SignatureComponent extends Input_1.default {
|
|
177
177
|
return this.renderModalPreview({
|
178
178
|
previewText: this.dataValue ?
|
179
179
|
`<img src=${this.dataValue} ${this._referenceAttributeName}='openModal' style="width: 100%;height: 100%;" />` :
|
180
|
-
this.t('
|
180
|
+
this.t('clickToSign')
|
181
181
|
});
|
182
182
|
}
|
183
183
|
attach(element) {
|
@@ -245,7 +245,7 @@ class SignatureComponent extends Input_1.default {
|
|
245
245
|
if (lodash_1.default.isUndefined(value) && this.inDataTable) {
|
246
246
|
return '';
|
247
247
|
}
|
248
|
-
return value ? '
|
248
|
+
return this.t(value ? 'yes' : 'no');
|
249
249
|
}
|
250
250
|
focus() {
|
251
251
|
this.refs.padBody.focus();
|
@@ -128,8 +128,8 @@ class SurveyComponent extends Field_1.default {
|
|
128
128
|
<table border="1" style="width:100%">
|
129
129
|
<thead>
|
130
130
|
<tr>
|
131
|
-
<th
|
132
|
-
<th
|
131
|
+
<th>${this.t('surveyQuestion')}</th>
|
132
|
+
<th>${this.t('surveyQuestionValue')}</th>
|
133
133
|
</tr>
|
134
134
|
</thead>
|
135
135
|
<tbody>
|
@@ -136,7 +136,7 @@ class TextAreaComponent extends TextField_1.default {
|
|
136
136
|
case 'quill':
|
137
137
|
// Normalize the configurations for quill.
|
138
138
|
if (settings.hasOwnProperty('toolbarGroups') || settings.hasOwnProperty('toolbar')) {
|
139
|
-
console.warn(
|
139
|
+
console.warn(this.t('needConfigurationForQuill'));
|
140
140
|
settings = this.wysiwygDefault.quill;
|
141
141
|
}
|
142
142
|
// Add the quill editor.
|
@@ -208,7 +208,7 @@ class TextAreaComponent extends TextField_1.default {
|
|
208
208
|
imageHandler(moduleInstance, range, files) {
|
209
209
|
const quillInstance = moduleInstance.quill;
|
210
210
|
if (!files || !files.length) {
|
211
|
-
console.warn('
|
211
|
+
console.warn(this.t('noFilesSelected'));
|
212
212
|
return;
|
213
213
|
}
|
214
214
|
quillInstance.enable(false);
|
@@ -233,7 +233,7 @@ class TextAreaComponent extends TextField_1.default {
|
|
233
233
|
alt: JSON.stringify(requestData),
|
234
234
|
}), Quill.sources.USER);
|
235
235
|
}).catch(error => {
|
236
|
-
console.warn('
|
236
|
+
console.warn(this.t('quillImageUploadFailed'));
|
237
237
|
console.warn(error);
|
238
238
|
quillInstance.enable(true);
|
239
239
|
});
|
@@ -530,7 +530,7 @@ class TextAreaComponent extends TextField_1.default {
|
|
530
530
|
}
|
531
531
|
this.element.scrollIntoView();
|
532
532
|
}).catch((err) => {
|
533
|
-
console.warn('
|
533
|
+
console.warn(this.t('editorFocusError'), err);
|
534
534
|
});
|
535
535
|
break;
|
536
536
|
}
|
@@ -539,7 +539,7 @@ class TextAreaComponent extends TextField_1.default {
|
|
539
539
|
this.editors[0].focus();
|
540
540
|
this.element.scrollIntoView();
|
541
541
|
}).catch((err) => {
|
542
|
-
console.warn('
|
542
|
+
console.warn(this.t('editorFocusError'), err);
|
543
543
|
});
|
544
544
|
break;
|
545
545
|
}
|
@@ -547,7 +547,7 @@ class TextAreaComponent extends TextField_1.default {
|
|
547
547
|
(_c = this.editorsReady[0]) === null || _c === void 0 ? void 0 : _c.then(() => {
|
548
548
|
this.editors[0].focus();
|
549
549
|
}).catch((err) => {
|
550
|
-
console.warn('
|
550
|
+
console.warn(this.t('editorFocusError'), err);
|
551
551
|
});
|
552
552
|
break;
|
553
553
|
}
|
@@ -102,6 +102,9 @@ class TextFieldComponent extends Input_1.default {
|
|
102
102
|
if (((_c = this.component.widget) === null || _c === void 0 ? void 0 : _c.type) === 'calendar') {
|
103
103
|
this.component.widget = Object.assign(Object.assign({}, this.component.widget), { readOnly: this.options.readOnly, timezone,
|
104
104
|
displayInTimezone, locale: this.component.widget.locale || this.options.language, saveAs: 'text' });
|
105
|
+
// update originalComponent to include widget settings after component initialization
|
106
|
+
// originalComponent is used to restore the component (and widget) after evaluating field logic
|
107
|
+
this.originalComponent = FormioUtils.fastCloneDeep(this.component);
|
105
108
|
}
|
106
109
|
}
|
107
110
|
attach(element) {
|
package/lib/cjs/formio.form.js
CHANGED
@@ -29,6 +29,7 @@ const EventEmitter_1 = __importDefault(require("./EventEmitter"));
|
|
29
29
|
exports.EventEmitter = EventEmitter_1.default;
|
30
30
|
const Webform_1 = __importDefault(require("./Webform"));
|
31
31
|
exports.Webform = Webform_1.default;
|
32
|
+
const i18n_1 = require("./utils/i18n");
|
32
33
|
Formio_1.Formio.loadModules = (path = `${Formio_1.Formio.getApiUrl()}/externalModules.js`, name = 'externalModules') => {
|
33
34
|
Formio_1.Formio.requireLibrary(name, name, path, true)
|
34
35
|
.then((modules) => {
|
@@ -101,6 +102,9 @@ function registerModule(mod, defaultFn = null, options = {}) {
|
|
101
102
|
case 'evaluator':
|
102
103
|
Formio_1.Formio.Evaluator.registerEvaluator(mod.evaluator);
|
103
104
|
break;
|
105
|
+
case 'translations':
|
106
|
+
i18n_1.I18n.setDefaultTranslations(mod.translations);
|
107
|
+
break;
|
104
108
|
case 'library':
|
105
109
|
options.license
|
106
110
|
? Formio_1.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;
|