@formio/js 5.0.0-rc.19 → 5.0.0-rc.20
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/dist/formio.builder.css +14 -22
- package/dist/formio.builder.min.css +1 -1
- package/dist/formio.embed.css +1 -2
- package/dist/formio.embed.js +2 -2
- package/dist/formio.embed.min.css +1 -1
- package/dist/formio.embed.min.js +1 -1
- package/dist/formio.embed.min.js.LICENSE.txt +1 -1
- package/dist/formio.form.css +10 -2
- package/dist/formio.form.js +1239 -1097
- package/dist/formio.form.min.css +1 -1
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +3 -8
- package/dist/formio.full.css +14 -22
- package/dist/formio.full.js +1271 -1118
- package/dist/formio.full.min.css +1 -1
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +3 -8
- package/dist/formio.js +713 -626
- package/dist/formio.min.js +1 -1
- package/dist/formio.min.js.LICENSE.txt +2 -7
- package/dist/formio.utils.js +220 -13
- package/dist/formio.utils.min.js +1 -1
- package/dist/formio.utils.min.js.LICENSE.txt +2 -7
- package/lib/cjs/CDN.js +1 -1
- package/lib/cjs/Element.js +7 -2
- package/lib/cjs/Embed.js +1 -1
- package/lib/cjs/Form.d.ts +8 -5
- package/lib/cjs/Form.js +52 -10
- package/lib/cjs/PDF.d.ts +11 -3
- package/lib/cjs/PDF.js +4 -5
- package/lib/cjs/PDFBuilder.js +2 -3
- package/lib/cjs/Webform.d.ts +4 -7
- package/lib/cjs/Webform.js +40 -119
- package/lib/cjs/WebformBuilder.d.ts +6 -1
- package/lib/cjs/WebformBuilder.js +104 -64
- package/lib/cjs/Wizard.d.ts +8 -5
- package/lib/cjs/Wizard.js +12 -12
- package/lib/cjs/WizardBuilder.d.ts +6 -4
- package/lib/cjs/WizardBuilder.js +20 -3
- package/lib/cjs/addons/FormioAddon.d.ts +1 -1
- package/lib/cjs/addons/FormioAddon.js +1 -2
- package/lib/cjs/components/_classes/component/Component.d.ts +14 -8
- package/lib/cjs/components/_classes/component/Component.js +24 -14
- package/lib/cjs/components/_classes/input/Input.d.ts +1 -1
- package/lib/cjs/components/_classes/input/Input.js +1 -2
- package/lib/cjs/components/_classes/list/ListComponent.d.ts +4 -0
- package/lib/cjs/components/_classes/list/ListComponent.js +43 -6
- package/lib/cjs/components/_classes/multivalue/Multivalue.d.ts +1 -0
- package/lib/cjs/components/_classes/multivalue/Multivalue.js +10 -4
- package/lib/cjs/components/_classes/nested/NestedComponent.d.ts +5 -2
- package/lib/cjs/components/_classes/nested/NestedComponent.js +9 -10
- package/lib/cjs/components/address/Address.d.ts +8 -0
- package/lib/cjs/components/button/Button.js +2 -3
- package/lib/cjs/components/checkbox/Checkbox.d.ts +13 -0
- package/lib/cjs/components/checkbox/Checkbox.js +17 -5
- package/lib/cjs/components/columns/Columns.d.ts +1 -0
- package/lib/cjs/components/columns/Columns.js +1 -0
- package/lib/cjs/components/container/Container.d.ts +1 -0
- package/lib/cjs/components/container/Container.js +1 -0
- package/lib/cjs/components/content/Content.d.ts +1 -0
- package/lib/cjs/components/content/Content.js +1 -2
- package/lib/cjs/components/currency/editForm/Currency.edit.data.d.ts +14 -2
- package/lib/cjs/components/currency/editForm/Currency.edit.data.js +4 -0
- package/lib/cjs/components/currency/editForm/Currency.edit.display.js +4 -0
- package/lib/cjs/components/datagrid/DataGrid.d.ts +1 -0
- package/lib/cjs/components/datagrid/DataGrid.js +8 -1
- package/lib/cjs/components/datamap/DataMap.js +1 -0
- package/lib/cjs/components/datetime/DateTime.d.ts +4 -0
- package/lib/cjs/components/datetime/DateTime.js +21 -1
- package/lib/cjs/components/day/Day.d.ts +1 -1
- package/lib/cjs/components/day/Day.js +22 -6
- package/lib/cjs/components/day/fixtures/comp3.js +2 -2
- package/lib/cjs/components/editgrid/EditGrid.d.ts +4 -3
- package/lib/cjs/components/editgrid/EditGrid.js +11 -6
- package/lib/cjs/components/editgrid/fixtures/comp-with-custom-default-value.d.ts +190 -0
- package/lib/cjs/components/editgrid/fixtures/comp-with-custom-default-value.js +227 -0
- package/lib/cjs/components/editgrid/fixtures/comp15.d.ts +54 -0
- package/lib/cjs/components/editgrid/fixtures/comp15.js +51 -0
- package/lib/cjs/components/editgrid/fixtures/index.d.ts +3 -1
- package/lib/cjs/components/editgrid/fixtures/index.js +5 -1
- package/lib/cjs/components/fieldset/Fieldset.d.ts +1 -0
- package/lib/cjs/components/fieldset/Fieldset.js +1 -0
- package/lib/cjs/components/file/File.d.ts +7 -5
- package/lib/cjs/components/file/File.js +26 -9
- package/lib/cjs/components/file/editForm/File.edit.file.d.ts +62 -0
- package/lib/cjs/components/file/editForm/File.edit.file.js +29 -2
- package/lib/cjs/components/form/Form.d.ts +3 -0
- package/lib/cjs/components/form/Form.js +9 -10
- package/lib/cjs/components/hidden/Hidden.d.ts +1 -0
- package/lib/cjs/components/hidden/Hidden.js +1 -0
- package/lib/cjs/components/html/HTML.d.ts +1 -0
- package/lib/cjs/components/html/HTML.js +1 -0
- package/lib/cjs/components/number/Number.d.ts +5 -1
- package/lib/cjs/components/number/Number.js +24 -7
- package/lib/cjs/components/phonenumber/PhoneNumber.form.js +9 -0
- package/lib/cjs/components/radio/Radio.d.ts +5 -3
- package/lib/cjs/components/radio/Radio.js +59 -18
- package/lib/cjs/components/recaptcha/ReCaptcha.d.ts +1 -1
- package/lib/cjs/components/recaptcha/ReCaptcha.js +4 -5
- package/lib/cjs/components/resource/Resource.d.ts +7 -0
- package/lib/cjs/components/resource/Resource.js +0 -1
- package/lib/cjs/components/resource/editForm/Resource.edit.display.js +1 -1
- package/lib/cjs/components/select/Select.d.ts +7 -5
- package/lib/cjs/components/select/Select.js +15 -49
- package/lib/cjs/components/selectboxes/SelectBoxes.d.ts +12 -0
- package/lib/cjs/components/selectboxes/SelectBoxes.js +53 -25
- package/lib/cjs/components/selectboxes/fixtures/comp4.d.ts +30 -27
- package/lib/cjs/components/selectboxes/fixtures/comp4.js +47 -32
- package/lib/cjs/components/selectboxes/fixtures/comp6.d.ts +14 -0
- package/lib/cjs/components/selectboxes/fixtures/comp6.js +15 -0
- package/lib/cjs/components/selectboxes/fixtures/index.d.ts +2 -1
- package/lib/cjs/components/selectboxes/fixtures/index.js +3 -1
- package/lib/cjs/components/signature/Signature.d.ts +1 -1
- package/lib/cjs/components/signature/Signature.js +8 -3
- package/lib/cjs/components/survey/Survey.js +3 -0
- package/lib/cjs/components/table/Table.d.ts +1 -0
- package/lib/cjs/components/table/Table.js +1 -0
- package/lib/cjs/components/tabs/Tabs.d.ts +1 -0
- package/lib/cjs/components/tabs/Tabs.js +1 -0
- package/lib/cjs/components/tags/Tags.js +3 -0
- package/lib/cjs/components/textarea/TextArea.d.ts +3 -2
- package/lib/cjs/components/textarea/TextArea.js +4 -5
- package/lib/cjs/components/textarea/fixtures/comp4.d.ts +30 -0
- package/lib/cjs/components/textarea/fixtures/comp4.js +27 -0
- package/lib/cjs/components/textarea/fixtures/index.d.ts +2 -1
- package/lib/cjs/components/textarea/fixtures/index.js +3 -1
- package/lib/cjs/components/textfield/TextField.d.ts +1 -0
- package/lib/cjs/components/textfield/TextField.js +5 -3
- package/lib/cjs/components/time/Time.d.ts +4 -0
- package/lib/cjs/components/time/Time.js +6 -1
- package/lib/cjs/components/tree/Tree.d.ts +5 -4
- package/lib/cjs/components/tree/Tree.form.js +5 -0
- package/lib/cjs/components/tree/Tree.js +8 -9
- package/lib/cjs/components/tree/editForm/Tree.edit.display.d.ts +9 -0
- package/lib/cjs/components/tree/editForm/Tree.edit.display.js +12 -0
- package/lib/cjs/components/well/Well.d.ts +1 -0
- package/lib/cjs/components/well/Well.js +1 -0
- package/lib/cjs/providers/Providers.d.ts +31 -11
- package/lib/cjs/providers/address/GoogleAddressProvider.d.ts +2 -2
- package/lib/cjs/providers/address/GoogleAddressProvider.js +2 -3
- package/lib/cjs/providers/processor/fileProcessor.d.ts +1 -1
- package/lib/cjs/providers/processor/fileProcessor.js +1 -5
- package/lib/cjs/providers/storage/azure.d.ts +10 -1
- package/lib/cjs/providers/storage/azure.js +7 -2
- package/lib/cjs/providers/storage/base64.d.ts +2 -2
- package/lib/cjs/providers/storage/base64.js +2 -6
- package/lib/cjs/providers/storage/dropbox.d.ts +2 -2
- package/lib/cjs/providers/storage/dropbox.js +2 -6
- package/lib/cjs/providers/storage/googleDrive.d.ts +3 -2
- package/lib/cjs/providers/storage/googleDrive.js +6 -6
- package/lib/cjs/providers/storage/indexeddb.d.ts +3 -3
- package/lib/cjs/providers/storage/indexeddb.js +9 -13
- package/lib/cjs/providers/storage/s3.d.ts +11 -1
- package/lib/cjs/providers/storage/s3.js +5 -2
- package/lib/cjs/providers/storage/uploadAdapter.js +1 -5
- package/lib/cjs/providers/storage/url.d.ts +2 -2
- package/lib/cjs/providers/storage/url.js +12 -8
- package/lib/cjs/providers/storage/xhr.d.ts +1 -1
- package/lib/cjs/providers/storage/xhr.js +1 -2
- package/lib/cjs/templates/index.d.ts +226 -1
- package/lib/cjs/utils/Evaluator.js +4 -33
- package/lib/cjs/utils/i18n.d.ts +16 -0
- package/lib/cjs/utils/i18n.js +88 -0
- package/lib/cjs/utils/utils.d.ts +1 -1
- package/lib/cjs/utils/utils.js +8 -9
- package/lib/cjs/validator/Validator.d.ts +30 -2
- package/lib/cjs/validator/Validator.js +32 -9
- package/lib/cjs/validator/rules/Select.js +1 -2
- package/lib/cjs/validator/rules/Unique.d.ts +1 -1
- package/lib/cjs/validator/rules/Unique.js +1 -2
- package/lib/cjs/widgets/CalendarWidget.d.ts +1 -0
- package/lib/cjs/widgets/InputWidget.d.ts +1 -1
- package/lib/cjs/widgets/InputWidget.js +1 -2
- package/lib/mjs/CDN.js +1 -1
- package/lib/mjs/Element.js +6 -2
- package/lib/mjs/Embed.js +4 -1
- package/lib/mjs/Form.d.ts +8 -5
- package/lib/mjs/Form.js +52 -10
- package/lib/mjs/PDF.d.ts +11 -3
- package/lib/mjs/PDF.js +4 -5
- package/lib/mjs/PDFBuilder.js +2 -3
- package/lib/mjs/Webform.d.ts +4 -7
- package/lib/mjs/Webform.js +40 -122
- package/lib/mjs/WebformBuilder.d.ts +6 -1
- package/lib/mjs/WebformBuilder.js +102 -64
- package/lib/mjs/Wizard.d.ts +8 -5
- package/lib/mjs/Wizard.js +12 -12
- package/lib/mjs/WizardBuilder.d.ts +6 -4
- package/lib/mjs/WizardBuilder.js +20 -3
- package/lib/mjs/addons/FormioAddon.d.ts +1 -1
- package/lib/mjs/addons/FormioAddon.js +1 -2
- package/lib/mjs/components/_classes/component/Component.d.ts +14 -8
- package/lib/mjs/components/_classes/component/Component.js +24 -14
- package/lib/mjs/components/_classes/input/Input.d.ts +1 -1
- package/lib/mjs/components/_classes/input/Input.js +1 -2
- package/lib/mjs/components/_classes/list/ListComponent.d.ts +4 -0
- package/lib/mjs/components/_classes/list/ListComponent.js +43 -5
- package/lib/mjs/components/_classes/multivalue/Multivalue.d.ts +1 -0
- package/lib/mjs/components/_classes/multivalue/Multivalue.js +10 -4
- package/lib/mjs/components/_classes/nested/NestedComponent.d.ts +5 -2
- package/lib/mjs/components/_classes/nested/NestedComponent.js +9 -10
- package/lib/mjs/components/address/Address.d.ts +8 -0
- package/lib/mjs/components/button/Button.js +2 -3
- package/lib/mjs/components/checkbox/Checkbox.d.ts +13 -0
- package/lib/mjs/components/checkbox/Checkbox.js +21 -5
- package/lib/mjs/components/columns/Columns.d.ts +1 -0
- package/lib/mjs/components/columns/Columns.js +1 -0
- package/lib/mjs/components/container/Container.d.ts +1 -0
- package/lib/mjs/components/container/Container.js +1 -0
- package/lib/mjs/components/content/Content.d.ts +1 -0
- package/lib/mjs/components/content/Content.js +1 -2
- package/lib/mjs/components/currency/editForm/Currency.edit.data.d.ts +14 -2
- package/lib/mjs/components/currency/editForm/Currency.edit.data.js +4 -0
- package/lib/mjs/components/currency/editForm/Currency.edit.display.js +4 -0
- package/lib/mjs/components/datagrid/DataGrid.d.ts +1 -0
- package/lib/mjs/components/datagrid/DataGrid.js +8 -1
- package/lib/mjs/components/datamap/DataMap.js +1 -0
- package/lib/mjs/components/datetime/DateTime.d.ts +4 -0
- package/lib/mjs/components/datetime/DateTime.js +28 -1
- package/lib/mjs/components/day/Day.d.ts +1 -1
- package/lib/mjs/components/day/Day.js +25 -6
- package/lib/mjs/components/day/fixtures/comp3.js +2 -2
- package/lib/mjs/components/editgrid/EditGrid.d.ts +4 -3
- package/lib/mjs/components/editgrid/EditGrid.js +11 -6
- package/lib/mjs/components/editgrid/fixtures/comp-with-custom-default-value.d.ts +190 -0
- package/lib/mjs/components/editgrid/fixtures/comp-with-custom-default-value.js +225 -0
- package/lib/mjs/components/editgrid/fixtures/comp15.d.ts +54 -0
- package/lib/mjs/components/editgrid/fixtures/comp15.js +49 -0
- package/lib/mjs/components/editgrid/fixtures/index.d.ts +3 -1
- package/lib/mjs/components/editgrid/fixtures/index.js +3 -1
- package/lib/mjs/components/fieldset/Fieldset.d.ts +1 -0
- package/lib/mjs/components/fieldset/Fieldset.js +1 -0
- package/lib/mjs/components/file/File.d.ts +7 -5
- package/lib/mjs/components/file/File.js +29 -9
- package/lib/mjs/components/file/editForm/File.edit.file.d.ts +62 -0
- package/lib/mjs/components/file/editForm/File.edit.file.js +29 -2
- package/lib/mjs/components/form/Form.d.ts +3 -0
- package/lib/mjs/components/form/Form.js +9 -10
- package/lib/mjs/components/hidden/Hidden.d.ts +1 -0
- package/lib/mjs/components/hidden/Hidden.js +1 -0
- package/lib/mjs/components/html/HTML.d.ts +1 -0
- package/lib/mjs/components/html/HTML.js +1 -0
- package/lib/mjs/components/number/Number.d.ts +5 -1
- package/lib/mjs/components/number/Number.js +24 -7
- package/lib/mjs/components/phonenumber/PhoneNumber.form.js +9 -0
- package/lib/mjs/components/radio/Radio.d.ts +5 -3
- package/lib/mjs/components/radio/Radio.js +59 -18
- package/lib/mjs/components/recaptcha/ReCaptcha.d.ts +1 -1
- package/lib/mjs/components/recaptcha/ReCaptcha.js +4 -5
- package/lib/mjs/components/resource/Resource.d.ts +7 -0
- package/lib/mjs/components/resource/Resource.js +0 -1
- package/lib/mjs/components/resource/editForm/Resource.edit.display.js +1 -1
- package/lib/mjs/components/select/Select.d.ts +7 -5
- package/lib/mjs/components/select/Select.js +18 -49
- package/lib/mjs/components/selectboxes/SelectBoxes.d.ts +12 -0
- package/lib/mjs/components/selectboxes/SelectBoxes.js +56 -25
- package/lib/mjs/components/selectboxes/fixtures/comp4.d.ts +30 -27
- package/lib/mjs/components/selectboxes/fixtures/comp4.js +47 -32
- package/lib/mjs/components/selectboxes/fixtures/comp6.d.ts +14 -0
- package/lib/mjs/components/selectboxes/fixtures/comp6.js +13 -0
- package/lib/mjs/components/selectboxes/fixtures/index.d.ts +2 -1
- package/lib/mjs/components/selectboxes/fixtures/index.js +2 -1
- package/lib/mjs/components/signature/Signature.d.ts +1 -1
- package/lib/mjs/components/signature/Signature.js +11 -3
- package/lib/mjs/components/survey/Survey.js +6 -0
- package/lib/mjs/components/table/Table.d.ts +1 -0
- package/lib/mjs/components/table/Table.js +1 -0
- package/lib/mjs/components/tabs/Tabs.d.ts +1 -0
- package/lib/mjs/components/tabs/Tabs.js +1 -0
- package/lib/mjs/components/tags/Tags.js +6 -0
- package/lib/mjs/components/textarea/TextArea.d.ts +3 -2
- package/lib/mjs/components/textarea/TextArea.js +4 -5
- package/lib/mjs/components/textarea/fixtures/comp4.d.ts +30 -0
- package/lib/mjs/components/textarea/fixtures/comp4.js +25 -0
- package/lib/mjs/components/textarea/fixtures/index.d.ts +2 -1
- package/lib/mjs/components/textarea/fixtures/index.js +2 -1
- package/lib/mjs/components/textfield/TextField.d.ts +1 -0
- package/lib/mjs/components/textfield/TextField.js +8 -3
- package/lib/mjs/components/time/Time.d.ts +4 -0
- package/lib/mjs/components/time/Time.js +12 -1
- package/lib/mjs/components/tree/Tree.d.ts +5 -4
- package/lib/mjs/components/tree/Tree.form.js +5 -0
- package/lib/mjs/components/tree/Tree.js +8 -9
- package/lib/mjs/components/tree/editForm/Tree.edit.display.d.ts +9 -0
- package/lib/mjs/components/tree/editForm/Tree.edit.display.js +10 -0
- package/lib/mjs/components/well/Well.d.ts +1 -0
- package/lib/mjs/components/well/Well.js +1 -0
- package/lib/mjs/providers/Providers.d.ts +31 -11
- package/lib/mjs/providers/address/GoogleAddressProvider.d.ts +2 -2
- package/lib/mjs/providers/address/GoogleAddressProvider.js +2 -3
- package/lib/mjs/providers/processor/fileProcessor.d.ts +1 -1
- package/lib/mjs/providers/processor/fileProcessor.js +1 -2
- package/lib/mjs/providers/storage/azure.d.ts +10 -1
- package/lib/mjs/providers/storage/azure.js +7 -2
- package/lib/mjs/providers/storage/base64.d.ts +2 -2
- package/lib/mjs/providers/storage/base64.js +2 -3
- package/lib/mjs/providers/storage/dropbox.d.ts +2 -2
- package/lib/mjs/providers/storage/dropbox.js +2 -3
- package/lib/mjs/providers/storage/googleDrive.d.ts +3 -2
- package/lib/mjs/providers/storage/googleDrive.js +6 -3
- package/lib/mjs/providers/storage/indexeddb.d.ts +3 -3
- package/lib/mjs/providers/storage/indexeddb.js +9 -10
- package/lib/mjs/providers/storage/s3.d.ts +11 -1
- package/lib/mjs/providers/storage/s3.js +5 -2
- package/lib/mjs/providers/storage/uploadAdapter.js +1 -2
- package/lib/mjs/providers/storage/url.d.ts +2 -2
- package/lib/mjs/providers/storage/url.js +12 -5
- package/lib/mjs/providers/storage/xhr.d.ts +1 -1
- package/lib/mjs/providers/storage/xhr.js +1 -2
- package/lib/mjs/templates/index.d.ts +226 -1
- package/lib/mjs/utils/Evaluator.js +4 -33
- package/lib/mjs/utils/i18n.d.ts +16 -0
- package/lib/mjs/utils/i18n.js +81 -0
- package/lib/mjs/utils/utils.d.ts +1 -1
- package/lib/mjs/utils/utils.js +8 -9
- package/lib/mjs/validator/Validator.d.ts +30 -2
- package/lib/mjs/validator/Validator.js +31 -9
- package/lib/mjs/validator/rules/Select.js +1 -2
- package/lib/mjs/validator/rules/Unique.d.ts +1 -1
- package/lib/mjs/validator/rules/Unique.js +1 -2
- package/lib/mjs/widgets/CalendarWidget.d.ts +1 -0
- package/lib/mjs/widgets/InputWidget.d.ts +1 -1
- package/lib/mjs/widgets/InputWidget.js +1 -2
- package/package.json +14 -15
@@ -6,7 +6,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
/* global Quill */
|
7
7
|
const TextField_1 = __importDefault(require("../textfield/TextField"));
|
8
8
|
const lodash_1 = __importDefault(require("lodash"));
|
9
|
-
const native_promise_only_1 = __importDefault(require("native-promise-only"));
|
10
9
|
const utils_1 = require("../../utils/utils");
|
11
10
|
class TextAreaComponent extends TextField_1.default {
|
12
11
|
static schema(...extend) {
|
@@ -117,7 +116,7 @@ class TextAreaComponent extends TextField_1.default {
|
|
117
116
|
this.wysiwygDefault[this.component.editor] || this.wysiwygDefault.default
|
118
117
|
: this.component.wysiwyg;
|
119
118
|
// Keep track of when this editor is ready.
|
120
|
-
this.editorsReady[index] = new
|
119
|
+
this.editorsReady[index] = new Promise((editorReady) => {
|
121
120
|
// Attempt to add a wysiwyg editor. In order to add one, it must be included on the global scope.
|
122
121
|
switch (this.component.editor) {
|
123
122
|
case 'ace':
|
@@ -285,7 +284,7 @@ class TextAreaComponent extends TextField_1.default {
|
|
285
284
|
this.setConvertedValue(value);
|
286
285
|
return super.setValue(value, flags);
|
287
286
|
}
|
288
|
-
flags.skipWysiwyg = lodash_1.default.isEqual(value, this.getValue());
|
287
|
+
flags.skipWysiwyg = value === '' && flags.resetValue ? false : lodash_1.default.isEqual(value, this.getValue());
|
289
288
|
return super.setValue(value, flags);
|
290
289
|
}
|
291
290
|
setContent(element, content, forceSanitize) {
|
@@ -347,11 +346,11 @@ class TextAreaComponent extends TextField_1.default {
|
|
347
346
|
});
|
348
347
|
}
|
349
348
|
else {
|
350
|
-
return
|
349
|
+
return Promise.resolve(value);
|
351
350
|
}
|
352
351
|
}
|
353
352
|
setImagesUrl(images) {
|
354
|
-
return
|
353
|
+
return Promise.all(lodash_1.default.map(images, image => {
|
355
354
|
let requestData;
|
356
355
|
try {
|
357
356
|
requestData = JSON.parse(image.getAttribute('alt'));
|
@@ -0,0 +1,30 @@
|
|
1
|
+
declare namespace _default {
|
2
|
+
const type: string;
|
3
|
+
const components: ({
|
4
|
+
type: string;
|
5
|
+
key: string;
|
6
|
+
rows: number;
|
7
|
+
editor: string;
|
8
|
+
hideLabel: boolean;
|
9
|
+
as: string;
|
10
|
+
input: boolean;
|
11
|
+
label?: undefined;
|
12
|
+
showValidations?: undefined;
|
13
|
+
tableView?: undefined;
|
14
|
+
} | {
|
15
|
+
label: string;
|
16
|
+
showValidations: boolean;
|
17
|
+
tableView: boolean;
|
18
|
+
key: string;
|
19
|
+
type: string;
|
20
|
+
input: boolean;
|
21
|
+
rows?: undefined;
|
22
|
+
editor?: undefined;
|
23
|
+
hideLabel?: undefined;
|
24
|
+
as?: undefined;
|
25
|
+
})[];
|
26
|
+
const title: string;
|
27
|
+
const display: string;
|
28
|
+
const name: string;
|
29
|
+
}
|
30
|
+
export default _default;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.default = {
|
4
|
+
type: 'form',
|
5
|
+
components: [
|
6
|
+
{
|
7
|
+
type: 'textarea',
|
8
|
+
key: 'jsonTextarea',
|
9
|
+
rows: 5,
|
10
|
+
editor: 'ace',
|
11
|
+
hideLabel: true,
|
12
|
+
as: 'json',
|
13
|
+
input: true
|
14
|
+
},
|
15
|
+
{
|
16
|
+
label: 'Submit',
|
17
|
+
showValidations: false,
|
18
|
+
tableView: false,
|
19
|
+
key: 'submit',
|
20
|
+
type: 'button',
|
21
|
+
input: true
|
22
|
+
}
|
23
|
+
],
|
24
|
+
title: 'text area tests',
|
25
|
+
display: 'form',
|
26
|
+
name: 'textAriaTests',
|
27
|
+
};
|
@@ -3,10 +3,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
exports.comp3 = exports.comp2 = exports.comp1 = void 0;
|
6
|
+
exports.comp4 = exports.comp3 = exports.comp2 = exports.comp1 = void 0;
|
7
7
|
const comp1_1 = __importDefault(require("./comp1"));
|
8
8
|
exports.comp1 = comp1_1.default;
|
9
9
|
const comp2_1 = __importDefault(require("./comp2"));
|
10
10
|
exports.comp2 = comp2_1.default;
|
11
11
|
const comp3_1 = __importDefault(require("./comp3"));
|
12
12
|
exports.comp3 = comp3_1.default;
|
13
|
+
const comp4_1 = __importDefault(require("./comp4"));
|
14
|
+
exports.comp4 = comp4_1.default;
|
@@ -29,7 +29,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
const Input_1 = __importDefault(require("../_classes/input/Input"));
|
30
30
|
const vanilla_text_mask_1 = require("@formio/vanilla-text-mask");
|
31
31
|
const FormioUtils = __importStar(require("../../utils/utils"));
|
32
|
-
const native_promise_only_1 = __importDefault(require("native-promise-only"));
|
33
32
|
class TextFieldComponent extends Input_1.default {
|
34
33
|
static schema(...extend) {
|
35
34
|
return Input_1.default.schema({
|
@@ -61,6 +60,9 @@ class TextFieldComponent extends Input_1.default {
|
|
61
60
|
schema: TextFieldComponent.schema()
|
62
61
|
};
|
63
62
|
}
|
63
|
+
static get serverConditionSettings() {
|
64
|
+
return Object.assign(Object.assign({}, super.serverConditionSettings), { operators: [...super.serverConditionSettings.operators, 'includes', 'notIncludes', 'endsWith', 'startsWith'] });
|
65
|
+
}
|
64
66
|
get defaultSchema() {
|
65
67
|
return TextFieldComponent.schema();
|
66
68
|
}
|
@@ -233,11 +235,11 @@ class TextFieldComponent extends Input_1.default {
|
|
233
235
|
beforeSubmit() {
|
234
236
|
let value = this.dataValue;
|
235
237
|
if (!this.component.truncateMultipleSpaces || !value) {
|
236
|
-
return
|
238
|
+
return Promise.resolve(value);
|
237
239
|
}
|
238
240
|
value = this.truncateMultipleSpaces(value);
|
239
241
|
this.dataValue = value;
|
240
|
-
return
|
242
|
+
return Promise.resolve(value).then(() => super.beforeSubmit());
|
241
243
|
}
|
242
244
|
}
|
243
245
|
exports.default = TextFieldComponent;
|
@@ -18,6 +18,11 @@ class TimeComponent extends TextField_1.default {
|
|
18
18
|
dataFormat: defaultDataFormat,
|
19
19
|
}, ...extend);
|
20
20
|
}
|
21
|
+
static get serverConditionSettings() {
|
22
|
+
return Object.assign(Object.assign({}, super.serverConditionSettings), { valueComponent(classComp) {
|
23
|
+
return Object.assign(Object.assign({}, classComp), { type: 'time' });
|
24
|
+
} });
|
25
|
+
}
|
21
26
|
constructor(component, options, data) {
|
22
27
|
super(component, options, data);
|
23
28
|
const { edge: isEdgeBrowser, version: edgeVersion } = (0, utils_1.getBrowserInfo)();
|
@@ -38,7 +43,7 @@ class TimeComponent extends TextField_1.default {
|
|
38
43
|
title: 'Time',
|
39
44
|
icon: 'clock-o',
|
40
45
|
group: 'advanced',
|
41
|
-
documentation: '/userguide/form-building/advanced-components#time',
|
46
|
+
documentation: '/userguide/form-building/advanced-components#time-1',
|
42
47
|
weight: 55,
|
43
48
|
schema: TimeComponent.schema(),
|
44
49
|
};
|
@@ -2,9 +2,9 @@ export default class TreeComponent extends NestedDataComponent {
|
|
2
2
|
static get builderInfo(): {
|
3
3
|
title: string;
|
4
4
|
icon: string;
|
5
|
-
group: string;
|
6
5
|
weight: number;
|
7
6
|
documentation: string;
|
7
|
+
showPreview: boolean;
|
8
8
|
schema: any;
|
9
9
|
};
|
10
10
|
constructor(...args: any[]);
|
@@ -23,10 +23,11 @@ export default class TreeComponent extends NestedDataComponent {
|
|
23
23
|
renderChildNodes(nodes: any[] | undefined, odd: any): any;
|
24
24
|
renderEdit(node?: {}): any;
|
25
25
|
renderView(node?: {}): any;
|
26
|
-
|
26
|
+
attach(element: any): Promise<[void, void]> | Promise<[[void, void], void | [void, void]]>;
|
27
|
+
attachNode(element: any, node: any): Promise<void> | Promise<[void, void]>;
|
27
28
|
attachActions(node: any): void;
|
28
|
-
attachComponents(node: any, ...args: any[]): any
|
29
|
-
attachChildren(node: any): any
|
29
|
+
attachComponents(node: any, ...args: any[]): Promise<any>;
|
30
|
+
attachChildren(node: any): Promise<any>;
|
30
31
|
addChild(parent: any): void;
|
31
32
|
cancelNode(node: any): void;
|
32
33
|
editNode(node: any): void;
|
@@ -5,8 +5,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
6
|
const Component_form_1 = __importDefault(require("../_classes/component/Component.form"));
|
7
7
|
const Tree_edit_data_1 = __importDefault(require("./editForm/Tree.edit.data"));
|
8
|
+
const Tree_edit_display_1 = __importDefault(require("./editForm/Tree.edit.display"));
|
8
9
|
function default_1(...extend) {
|
9
10
|
return (0, Component_form_1.default)([
|
11
|
+
{
|
12
|
+
key: 'display',
|
13
|
+
components: Tree_edit_display_1.default,
|
14
|
+
},
|
10
15
|
{
|
11
16
|
key: 'data',
|
12
17
|
components: Tree_edit_data_1.default,
|
@@ -8,7 +8,6 @@ const Component_1 = __importDefault(require("../_classes/component/Component"));
|
|
8
8
|
const Components_1 = __importDefault(require("../Components"));
|
9
9
|
const NestedDataComponent_1 = __importDefault(require("../_classes/nesteddata/NestedDataComponent"));
|
10
10
|
const Node_1 = __importDefault(require("./Node"));
|
11
|
-
const native_promise_only_1 = __importDefault(require("native-promise-only"));
|
12
11
|
class TreeComponent extends NestedDataComponent_1.default {
|
13
12
|
static schema(...extend) {
|
14
13
|
return NestedDataComponent_1.default.schema({
|
@@ -26,9 +25,9 @@ class TreeComponent extends NestedDataComponent_1.default {
|
|
26
25
|
return {
|
27
26
|
title: 'Tree',
|
28
27
|
icon: 'indent',
|
29
|
-
group: 'data',
|
30
28
|
weight: 40,
|
31
29
|
documentation: '/userguide/form-building/data-components#tree',
|
30
|
+
showPreview: false,
|
32
31
|
schema: TreeComponent.schema(),
|
33
32
|
};
|
34
33
|
}
|
@@ -135,17 +134,17 @@ class TreeComponent extends NestedDataComponent_1.default {
|
|
135
134
|
this.loadRefs(element, {
|
136
135
|
root: 'single',
|
137
136
|
});
|
138
|
-
return
|
137
|
+
return Promise.all([
|
139
138
|
super.attach(element),
|
140
139
|
this.attachNode(this.refs.root, this.treeRoot),
|
141
140
|
]);
|
142
141
|
}
|
143
142
|
attachNode(element, node) {
|
144
143
|
if (!element) {
|
145
|
-
return
|
144
|
+
return Promise.resolve();
|
146
145
|
}
|
147
|
-
let componentsPromise =
|
148
|
-
let childrenPromise =
|
146
|
+
let componentsPromise = Promise.resolve();
|
147
|
+
let childrenPromise = Promise.resolve();
|
149
148
|
node.refs = lodash_1.default.reduce(element.children, (refs, child) => (child.hasAttribute('ref')
|
150
149
|
? Object.assign(Object.assign({}, refs), { [child.getAttribute('ref')]: child }) : refs), {});
|
151
150
|
if (node.refs.content) {
|
@@ -155,7 +154,7 @@ class TreeComponent extends NestedDataComponent_1.default {
|
|
155
154
|
if (node.refs.childNodes) {
|
156
155
|
childrenPromise = this.attachChildren(node);
|
157
156
|
}
|
158
|
-
return
|
157
|
+
return Promise.all([
|
159
158
|
componentsPromise,
|
160
159
|
childrenPromise,
|
161
160
|
]);
|
@@ -221,11 +220,11 @@ class TreeComponent extends NestedDataComponent_1.default {
|
|
221
220
|
});
|
222
221
|
return node.refs.nodeEdit
|
223
222
|
? super.attachComponents(node.refs.nodeEdit, node.components)
|
224
|
-
:
|
223
|
+
: Promise.resolve();
|
225
224
|
}
|
226
225
|
attachChildren(node) {
|
227
226
|
const childElements = node.refs.childNodes.children;
|
228
|
-
return
|
227
|
+
return Promise.all(lodash_1.default.map(childElements, (childElement, index) => this.attachNode(childElement, node.children[index])));
|
229
228
|
}
|
230
229
|
setValue(value, flags = {}) {
|
231
230
|
const changed = this.updateValue(value, flags);
|
@@ -0,0 +1,12 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.default = [
|
4
|
+
{
|
5
|
+
key: 'treeInfo',
|
6
|
+
weight: -10,
|
7
|
+
type: 'htmlelement',
|
8
|
+
tag: 'div',
|
9
|
+
className: 'alert alert-danger',
|
10
|
+
content: 'This component has been deprecated and will be removed in a future version of Formio.js.',
|
11
|
+
}
|
12
|
+
];
|
@@ -9,15 +9,25 @@ export default class Providers {
|
|
9
9
|
(): {
|
10
10
|
title: string;
|
11
11
|
name: string;
|
12
|
-
uploadFile(file: any, fileName: any): any
|
13
|
-
downloadFile(file: any): any
|
12
|
+
uploadFile(file: any, fileName: any): Promise<any>;
|
13
|
+
downloadFile(file: any): Promise<any>;
|
14
14
|
};
|
15
15
|
title: string;
|
16
16
|
};
|
17
17
|
s3: {
|
18
18
|
(formio: any): {
|
19
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any):
|
19
|
+
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<{
|
20
|
+
storage: string;
|
21
|
+
name: any;
|
22
|
+
bucket: any;
|
23
|
+
key: any;
|
24
|
+
url: any;
|
25
|
+
acl: any;
|
26
|
+
size: any;
|
27
|
+
type: any;
|
28
|
+
}>;
|
20
29
|
downloadFile(file: any): any;
|
30
|
+
deleteFile(fileInfo: any): any;
|
21
31
|
};
|
22
32
|
title: string;
|
23
33
|
};
|
@@ -26,15 +36,24 @@ export default class Providers {
|
|
26
36
|
title: string;
|
27
37
|
name: string;
|
28
38
|
uploadFile(file: any, name: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): any;
|
29
|
-
deleteFile(fileInfo: any): any
|
30
|
-
downloadFile(file: any): any
|
39
|
+
deleteFile(fileInfo: any): Promise<any>;
|
40
|
+
downloadFile(file: any): Promise<any>;
|
31
41
|
};
|
32
42
|
title: string;
|
33
43
|
};
|
34
44
|
azure: {
|
35
45
|
(formio: any): {
|
36
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any):
|
46
|
+
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<{
|
47
|
+
storage: string;
|
48
|
+
name: any;
|
49
|
+
size: any;
|
50
|
+
type: any;
|
51
|
+
groupPermissions: any;
|
52
|
+
groupId: any;
|
53
|
+
key: any;
|
54
|
+
}>;
|
37
55
|
downloadFile(file: any): any;
|
56
|
+
deleteFile: (fileInfo: any) => any;
|
38
57
|
};
|
39
58
|
title: string;
|
40
59
|
};
|
@@ -42,16 +61,17 @@ export default class Providers {
|
|
42
61
|
(): {
|
43
62
|
title: string;
|
44
63
|
name: string;
|
45
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any): any;
|
46
|
-
downloadFile(file: any, options: any): any
|
47
|
-
deleteFile(file: any, options: any): any
|
64
|
+
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any): Promise<any> | undefined;
|
65
|
+
downloadFile(file: any, options: any): Promise<any>;
|
66
|
+
deleteFile(file: any, options: any): Promise<any>;
|
48
67
|
};
|
49
68
|
title: string;
|
50
69
|
};
|
51
70
|
googledrive: {
|
52
71
|
(formio: any): {
|
53
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): any
|
54
|
-
downloadFile(file: any): any
|
72
|
+
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<any>;
|
73
|
+
downloadFile(file: any): Promise<any>;
|
74
|
+
deleteFile: (fileInfo: any) => any;
|
55
75
|
};
|
56
76
|
title: string;
|
57
77
|
};
|
@@ -12,7 +12,7 @@ export class GoogleAddressProvider extends AddressProvider {
|
|
12
12
|
addRequiredProviderOptions(options: any): void;
|
13
13
|
filterPlace(place: any): {};
|
14
14
|
attachAutocomplete(elem: any, index: any, onSelectAddress: any): void;
|
15
|
-
search():
|
16
|
-
makeRequest():
|
15
|
+
search(): Promise<void>;
|
16
|
+
makeRequest(): Promise<void>;
|
17
17
|
}
|
18
18
|
import { AddressProvider } from './AddressProvider';
|
@@ -8,7 +8,6 @@ exports.GoogleAddressProvider = void 0;
|
|
8
8
|
const Formio_1 = require("../../Formio");
|
9
9
|
const lodash_1 = __importDefault(require("lodash"));
|
10
10
|
const AddressProvider_1 = require("./AddressProvider");
|
11
|
-
const native_promise_only_1 = __importDefault(require("native-promise-only"));
|
12
11
|
class GoogleAddressProvider extends AddressProvider_1.AddressProvider {
|
13
12
|
static get name() {
|
14
13
|
return 'google';
|
@@ -103,10 +102,10 @@ class GoogleAddressProvider extends AddressProvider_1.AddressProvider {
|
|
103
102
|
});
|
104
103
|
}
|
105
104
|
search() {
|
106
|
-
return
|
105
|
+
return Promise.resolve();
|
107
106
|
}
|
108
107
|
makeRequest() {
|
109
|
-
return
|
108
|
+
return Promise.resolve();
|
110
109
|
}
|
111
110
|
getDisplayValue(address) {
|
112
111
|
const displayedProperty = lodash_1.default.has(address, this.displayValueProperty)
|
@@ -1,2 +1,2 @@
|
|
1
1
|
export default fileProcessor;
|
2
|
-
declare function fileProcessor(formio: any, config: any): (file: any, options: any) => any
|
2
|
+
declare function fileProcessor(formio: any, config: any): (file: any, options: any) => Promise<any>;
|
@@ -1,10 +1,6 @@
|
|
1
1
|
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
const
|
7
|
-
const fileProcessor = (formio, config) => (file, options) => new native_promise_only_1.default((resolve, reject) => {
|
3
|
+
const fileProcessor = (formio, config) => (file, options) => new Promise((resolve, reject) => {
|
8
4
|
const xhr = new XMLHttpRequest();
|
9
5
|
// Fire on network error.
|
10
6
|
xhr.onerror = (err) => {
|
@@ -1,7 +1,16 @@
|
|
1
1
|
export default azure;
|
2
2
|
declare function azure(formio: any): {
|
3
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any):
|
3
|
+
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<{
|
4
|
+
storage: string;
|
5
|
+
name: any;
|
6
|
+
size: any;
|
7
|
+
type: any;
|
8
|
+
groupPermissions: any;
|
9
|
+
groupId: any;
|
10
|
+
key: any;
|
11
|
+
}>;
|
4
12
|
downloadFile(file: any): any;
|
13
|
+
deleteFile: (fileInfo: any) => any;
|
5
14
|
};
|
6
15
|
declare namespace azure {
|
7
16
|
const title: string;
|
@@ -11,19 +11,24 @@ const azure = (formio) => ({
|
|
11
11
|
xhr.setRequestHeader('Content-Type', file.type);
|
12
12
|
xhr.setRequestHeader('x-ms-blob-type', 'BlockBlob');
|
13
13
|
return file;
|
14
|
-
}, file, fileName, dir, progressCallback, groupPermissions, groupId, abortCallback).then(() => {
|
14
|
+
}, file, fileName, dir, progressCallback, groupPermissions, groupId, abortCallback).then((response) => {
|
15
15
|
return {
|
16
16
|
storage: 'azure',
|
17
17
|
name: xhr_1.default.path([dir, fileName]),
|
18
18
|
size: file.size,
|
19
19
|
type: file.type,
|
20
20
|
groupPermissions,
|
21
|
-
groupId
|
21
|
+
groupId,
|
22
|
+
key: response.pathFile
|
22
23
|
};
|
23
24
|
});
|
24
25
|
},
|
25
26
|
downloadFile(file) {
|
26
27
|
return formio.makeRequest('file', `${formio.formUrl}/storage/azure?name=${xhr_1.default.trim(file.name)}`, 'GET');
|
28
|
+
},
|
29
|
+
deleteFile: function deleteFile(fileInfo) {
|
30
|
+
var url = `${formio.formUrl}/storage/azure?name=${xhr_1.default.trim(fileInfo.name)}&key=${xhr_1.default.trim(fileInfo.key)}`;
|
31
|
+
return formio.makeRequest('', url, 'delete');
|
27
32
|
}
|
28
33
|
});
|
29
34
|
azure.title = 'Azure File Services';
|
@@ -2,8 +2,8 @@ export default base64;
|
|
2
2
|
declare function base64(): {
|
3
3
|
title: string;
|
4
4
|
name: string;
|
5
|
-
uploadFile(file: any, fileName: any): any
|
6
|
-
downloadFile(file: any): any
|
5
|
+
uploadFile(file: any, fileName: any): Promise<any>;
|
6
|
+
downloadFile(file: any): Promise<any>;
|
7
7
|
};
|
8
8
|
declare namespace base64 {
|
9
9
|
const title: string;
|
@@ -1,15 +1,11 @@
|
|
1
1
|
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
const native_promise_only_1 = __importDefault(require("native-promise-only"));
|
7
3
|
const base64 = () => ({
|
8
4
|
title: 'Base64',
|
9
5
|
name: 'base64',
|
10
6
|
uploadFile(file, fileName) {
|
11
7
|
const reader = new FileReader();
|
12
|
-
return new
|
8
|
+
return new Promise((resolve, reject) => {
|
13
9
|
reader.onload = (event) => {
|
14
10
|
const url = event.target.result;
|
15
11
|
resolve({
|
@@ -28,7 +24,7 @@ const base64 = () => ({
|
|
28
24
|
},
|
29
25
|
downloadFile(file) {
|
30
26
|
// Return the original as there is nothing to do.
|
31
|
-
return
|
27
|
+
return Promise.resolve(file);
|
32
28
|
}
|
33
29
|
});
|
34
30
|
base64.title = 'Base64';
|
@@ -1,7 +1,7 @@
|
|
1
1
|
export default dropbox;
|
2
2
|
declare function dropbox(formio: any): {
|
3
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): any
|
4
|
-
downloadFile(file: any): any
|
3
|
+
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<any>;
|
4
|
+
downloadFile(file: any): Promise<any>;
|
5
5
|
};
|
6
6
|
declare namespace dropbox {
|
7
7
|
const title: string;
|
@@ -1,13 +1,9 @@
|
|
1
1
|
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
const native_promise_only_1 = __importDefault(require("native-promise-only"));
|
7
3
|
const xhr_1 = require("./xhr");
|
8
4
|
const dropbox = (formio) => ({
|
9
5
|
uploadFile(file, fileName, dir, progressCallback, url, options, fileKey, groupPermissions, groupId, abortCallback) {
|
10
|
-
return new
|
6
|
+
return new Promise(((resolve, reject) => {
|
11
7
|
// Send the file with data.
|
12
8
|
const xhr = new XMLHttpRequest();
|
13
9
|
if (typeof progressCallback === 'function') {
|
@@ -54,7 +50,7 @@ const dropbox = (formio) => ({
|
|
54
50
|
const token = formio.getToken();
|
55
51
|
file.url =
|
56
52
|
`${formio.formUrl}/storage/dropbox?path_lower=${file.path_lower}${token ? `&x-jwt-token=${token}` : ''}`;
|
57
|
-
return
|
53
|
+
return Promise.resolve(file);
|
58
54
|
}
|
59
55
|
});
|
60
56
|
dropbox.title = 'Dropbox';
|
@@ -1,7 +1,8 @@
|
|
1
1
|
export default googledrive;
|
2
2
|
declare function googledrive(formio: any): {
|
3
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): any
|
4
|
-
downloadFile(file: any): any
|
3
|
+
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<any>;
|
4
|
+
downloadFile(file: any): Promise<any>;
|
5
|
+
deleteFile: (fileInfo: any) => any;
|
5
6
|
};
|
6
7
|
declare namespace googledrive {
|
7
8
|
const title: string;
|
@@ -1,13 +1,9 @@
|
|
1
1
|
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
const native_promise_only_1 = __importDefault(require("native-promise-only"));
|
7
3
|
const xhr_1 = require("./xhr");
|
8
4
|
const googledrive = (formio) => ({
|
9
5
|
uploadFile(file, fileName, dir, progressCallback, url, options, fileKey, groupPermissions, groupId, abortCallback) {
|
10
|
-
return new
|
6
|
+
return new Promise(((resolve, reject) => {
|
11
7
|
// Send the file with data.
|
12
8
|
const xhr = new XMLHttpRequest();
|
13
9
|
if (typeof progressCallback === 'function') {
|
@@ -53,7 +49,11 @@ const googledrive = (formio) => ({
|
|
53
49
|
const token = formio.getToken();
|
54
50
|
file.url =
|
55
51
|
`${formio.formUrl}/storage/gdrive?fileId=${file.id}&fileName=${file.originalName}${token ? `&x-jwt-token=${token}` : ''}`;
|
56
|
-
return
|
52
|
+
return Promise.resolve(file);
|
53
|
+
},
|
54
|
+
deleteFile: function deleteFile(fileInfo) {
|
55
|
+
var url = ''.concat(formio.formUrl, `/storage/gdrive?id=${fileInfo.id}&name=${fileInfo.originalName}`);
|
56
|
+
return formio.makeRequest('', url, 'delete');
|
57
57
|
}
|
58
58
|
});
|
59
59
|
googledrive.title = 'Google Drive';
|
@@ -2,9 +2,9 @@ export default indexeddb;
|
|
2
2
|
declare function indexeddb(): {
|
3
3
|
title: string;
|
4
4
|
name: string;
|
5
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any): any;
|
6
|
-
downloadFile(file: any, options: any): any
|
7
|
-
deleteFile(file: any, options: any): any
|
5
|
+
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any): Promise<any> | undefined;
|
6
|
+
downloadFile(file: any, options: any): Promise<any>;
|
7
|
+
deleteFile(file: any, options: any): Promise<any>;
|
8
8
|
};
|
9
9
|
declare namespace indexeddb {
|
10
10
|
const title: string;
|