@formio/js 5.0.0-rc.52 → 5.0.0-rc.53
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/formio.embed.js +1 -1
- package/dist/formio.embed.min.js +1 -1
- package/dist/formio.embed.min.js.LICENSE.txt +1 -1
- package/dist/formio.form.js +551 -541
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +3 -1
- package/dist/formio.full.js +553 -543
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +3 -1
- package/dist/formio.js +10 -10
- package/dist/formio.min.js +1 -1
- package/dist/formio.min.js.LICENSE.txt +1 -1
- package/dist/formio.utils.js +14 -4
- package/dist/formio.utils.min.js +1 -1
- package/dist/formio.utils.min.js.LICENSE.txt +3 -1
- package/lib/cjs/Form.d.ts +281 -10
- package/lib/cjs/Form.js +22 -35
- package/lib/cjs/FormBuilder.d.ts +187 -2
- package/lib/cjs/FormBuilder.js +29 -6
- package/lib/cjs/PDF.d.ts +0 -1
- package/lib/cjs/Webform.d.ts +6 -6
- package/lib/cjs/Webform.js +2 -2
- package/lib/cjs/Wizard.d.ts +1 -1
- package/lib/cjs/addons/PasswordStrength/PasswordStrengthAddon.d.ts +8 -6
- package/lib/cjs/addons/PasswordStrength/PasswordStrengthAddon.js +6 -4
- package/lib/cjs/components/_classes/field/Field.d.ts +11 -2
- package/lib/cjs/components/_classes/field/Field.js +13 -1
- package/lib/cjs/components/_classes/input/Input.d.ts +4 -3
- package/lib/cjs/components/_classes/input/Input.js +2 -2
- package/lib/cjs/components/_classes/list/ListComponent.form.d.ts +4 -5
- package/lib/cjs/components/_classes/list/ListComponent.form.js +3 -2
- package/lib/cjs/components/_classes/multivalue/Multivalue.d.ts +42 -11
- package/lib/cjs/components/_classes/multivalue/Multivalue.js +37 -3
- package/lib/cjs/components/_classes/nested/NestedComponent.d.ts +127 -33
- package/lib/cjs/components/_classes/nested/NestedComponent.js +133 -15
- package/lib/cjs/components/_classes/nesteddata/NestedDataComponent.d.ts +6 -0
- package/lib/cjs/components/address/Address.d.ts +2 -1
- package/lib/cjs/components/button/Button.d.ts +1 -1
- package/lib/cjs/components/checkbox/Checkbox.d.ts +1 -1
- package/lib/cjs/components/columns/Columns.d.ts +1 -1
- package/lib/cjs/components/container/Container.d.ts +1 -0
- package/lib/cjs/components/datagrid/DataGrid.d.ts +1 -1
- package/lib/cjs/components/day/Day.d.ts +1 -1
- package/lib/cjs/components/editgrid/EditGrid.d.ts +2 -0
- package/lib/cjs/components/file/File.d.ts +2 -2
- package/lib/cjs/components/number/Number.d.ts +1 -1
- package/lib/cjs/components/radio/Radio.d.ts +1 -1
- package/lib/cjs/components/radio/Radio.form.d.ts +1 -3
- package/lib/cjs/components/radio/Radio.js +3 -3
- package/lib/cjs/components/select/Select.d.ts +9 -14
- package/lib/cjs/components/select/Select.form.d.ts +1 -3
- package/lib/cjs/components/select/Select.js +11 -15
- package/lib/cjs/components/selectboxes/SelectBoxes.form.d.ts +1 -3
- package/lib/cjs/components/survey/Survey.d.ts +1 -1
- package/lib/cjs/components/table/Table.d.ts +1 -1
- package/lib/cjs/components/tabs/Tabs.d.ts +1 -1
- package/lib/cjs/components/textfield/TextField.d.ts +1 -1
- package/lib/cjs/providers/address/NominatimAddressProvider.d.ts +1 -1
- package/lib/cjs/providers/address/NominatimAddressProvider.js +5 -1
- package/lib/cjs/providers/processor/fileProcessor.d.ts +7 -1
- package/lib/cjs/providers/processor/fileProcessor.js +6 -0
- package/lib/cjs/providers/storage/azure.d.ts +4 -15
- package/lib/cjs/providers/storage/azure.js +3 -2
- package/lib/cjs/providers/storage/base64.d.ts +3 -7
- package/lib/cjs/providers/storage/base64.js +2 -1
- package/lib/cjs/providers/storage/dropbox.d.ts +4 -6
- package/lib/cjs/providers/storage/dropbox.js +3 -2
- package/lib/cjs/providers/storage/googleDrive.d.ts +4 -6
- package/lib/cjs/providers/storage/googleDrive.js +3 -1
- package/lib/cjs/providers/storage/indexeddb.d.ts +3 -8
- package/lib/cjs/providers/storage/indexeddb.js +2 -1
- package/lib/cjs/providers/storage/s3.d.ts +4 -22
- package/lib/cjs/providers/storage/s3.js +3 -2
- package/lib/cjs/providers/storage/url.d.ts +3 -8
- package/lib/cjs/providers/storage/url.js +4 -3
- package/lib/cjs/providers/storage/util.d.ts +22 -6
- package/lib/cjs/providers/storage/util.js +16 -5
- package/lib/cjs/utils/builder.d.ts +9 -7
- package/lib/cjs/utils/builder.js +10 -5
- package/lib/cjs/utils/calendarUtils.d.ts +6 -10
- package/lib/cjs/utils/calendarUtils.js +7 -11
- package/lib/cjs/utils/formUtils.d.ts +4 -4
- package/lib/cjs/utils/formUtils.js +3 -3
- package/lib/cjs/utils/utils.d.ts +123 -121
- package/lib/cjs/utils/utils.js +99 -94
- package/lib/mjs/Form.d.ts +281 -10
- package/lib/mjs/Form.js +112 -28
- package/lib/mjs/FormBuilder.d.ts +187 -2
- package/lib/mjs/FormBuilder.js +31 -6
- package/lib/mjs/PDF.d.ts +0 -1
- package/lib/mjs/Webform.d.ts +6 -6
- package/lib/mjs/Webform.js +3 -3
- package/lib/mjs/Wizard.d.ts +1 -1
- package/lib/mjs/addons/PasswordStrength/PasswordStrengthAddon.d.ts +8 -6
- package/lib/mjs/addons/PasswordStrength/PasswordStrengthAddon.js +6 -4
- package/lib/mjs/components/_classes/field/Field.d.ts +11 -2
- package/lib/mjs/components/_classes/field/Field.js +13 -1
- package/lib/mjs/components/_classes/input/Input.d.ts +4 -3
- package/lib/mjs/components/_classes/input/Input.js +2 -2
- package/lib/mjs/components/_classes/list/ListComponent.form.d.ts +4 -5
- package/lib/mjs/components/_classes/list/ListComponent.form.js +3 -2
- package/lib/mjs/components/_classes/multivalue/Multivalue.d.ts +42 -11
- package/lib/mjs/components/_classes/multivalue/Multivalue.js +37 -3
- package/lib/mjs/components/_classes/nested/NestedComponent.d.ts +127 -33
- package/lib/mjs/components/_classes/nested/NestedComponent.js +133 -15
- package/lib/mjs/components/_classes/nesteddata/NestedDataComponent.d.ts +6 -0
- package/lib/mjs/components/address/Address.d.ts +2 -1
- package/lib/mjs/components/button/Button.d.ts +1 -1
- package/lib/mjs/components/checkbox/Checkbox.d.ts +1 -1
- package/lib/mjs/components/columns/Columns.d.ts +1 -1
- package/lib/mjs/components/container/Container.d.ts +1 -0
- package/lib/mjs/components/datagrid/DataGrid.d.ts +1 -1
- package/lib/mjs/components/day/Day.d.ts +1 -1
- package/lib/mjs/components/editgrid/EditGrid.d.ts +2 -0
- package/lib/mjs/components/file/File.d.ts +2 -2
- package/lib/mjs/components/number/Number.d.ts +1 -1
- package/lib/mjs/components/radio/Radio.d.ts +1 -1
- package/lib/mjs/components/radio/Radio.form.d.ts +1 -3
- package/lib/mjs/components/radio/Radio.js +3 -3
- package/lib/mjs/components/select/Select.d.ts +9 -14
- package/lib/mjs/components/select/Select.form.d.ts +1 -3
- package/lib/mjs/components/select/Select.js +11 -15
- package/lib/mjs/components/selectboxes/SelectBoxes.form.d.ts +1 -3
- package/lib/mjs/components/survey/Survey.d.ts +1 -1
- package/lib/mjs/components/table/Table.d.ts +1 -1
- package/lib/mjs/components/tabs/Tabs.d.ts +1 -1
- package/lib/mjs/components/textfield/TextField.d.ts +1 -1
- package/lib/mjs/providers/address/NominatimAddressProvider.d.ts +1 -1
- package/lib/mjs/providers/address/NominatimAddressProvider.js +5 -1
- package/lib/mjs/providers/processor/fileProcessor.d.ts +7 -1
- package/lib/mjs/providers/processor/fileProcessor.js +6 -0
- package/lib/mjs/providers/storage/azure.d.ts +4 -15
- package/lib/mjs/providers/storage/azure.js +3 -2
- package/lib/mjs/providers/storage/base64.d.ts +3 -7
- package/lib/mjs/providers/storage/base64.js +2 -1
- package/lib/mjs/providers/storage/dropbox.d.ts +4 -6
- package/lib/mjs/providers/storage/dropbox.js +3 -2
- package/lib/mjs/providers/storage/googleDrive.d.ts +4 -6
- package/lib/mjs/providers/storage/googleDrive.js +3 -1
- package/lib/mjs/providers/storage/indexeddb.d.ts +3 -8
- package/lib/mjs/providers/storage/indexeddb.js +2 -1
- package/lib/mjs/providers/storage/s3.d.ts +4 -22
- package/lib/mjs/providers/storage/s3.js +3 -2
- package/lib/mjs/providers/storage/url.d.ts +3 -8
- package/lib/mjs/providers/storage/url.js +4 -3
- package/lib/mjs/providers/storage/util.d.ts +22 -6
- package/lib/mjs/providers/storage/util.js +16 -5
- package/lib/mjs/utils/builder.d.ts +9 -7
- package/lib/mjs/utils/builder.js +10 -5
- package/lib/mjs/utils/calendarUtils.d.ts +6 -10
- package/lib/mjs/utils/calendarUtils.js +7 -11
- package/lib/mjs/utils/formUtils.d.ts +4 -4
- package/lib/mjs/utils/formUtils.js +3 -3
- package/lib/mjs/utils/utils.d.ts +123 -121
- package/lib/mjs/utils/utils.js +99 -94
- package/package.json +10 -10
@@ -11,6 +11,10 @@ const AddressProvider_1 = require("./AddressProvider");
|
|
11
11
|
* {extends AddressProvider}
|
12
12
|
*/
|
13
13
|
class NominatimAddressProvider extends AddressProvider_1.AddressProvider {
|
14
|
+
/**
|
15
|
+
* Gets the name of the address provider.
|
16
|
+
* @type {string}
|
17
|
+
*/
|
14
18
|
static get name() {
|
15
19
|
return 'nominatim';
|
16
20
|
}
|
@@ -49,7 +53,7 @@ class NominatimAddressProvider extends AddressProvider_1.AddressProvider {
|
|
49
53
|
}
|
50
54
|
/**
|
51
55
|
* Generates the request URL for the address provider with options.
|
52
|
-
* @param {NominatimAddressProviderOptionsParams} options
|
56
|
+
* @param {NominatimAddressProviderOptionsParams} options - The request options.
|
53
57
|
* @returns {string} The formatted Url.
|
54
58
|
*/
|
55
59
|
getRequestUrl(options = {}) {
|
@@ -1,2 +1,8 @@
|
|
1
1
|
export default fileProcessor;
|
2
|
-
|
2
|
+
/**
|
3
|
+
* Creates a file processor function.
|
4
|
+
* @param {Formio} formio - The Formio instance.
|
5
|
+
* @param {object} config - The configuration object.
|
6
|
+
* @returns {function(File, object): Promise<FormData>} A function that takes a file and options, and returns a Promise that resolves with the processed file.
|
7
|
+
*/
|
8
|
+
declare function fileProcessor(formio: Formio, config: object): (arg0: File, arg1: object) => Promise<FormData>;
|
@@ -1,5 +1,11 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
/**
|
4
|
+
* Creates a file processor function.
|
5
|
+
* @param {Formio} formio - The Formio instance.
|
6
|
+
* @param {object} config - The configuration object.
|
7
|
+
* @returns {function(File, object): Promise<FormData>} A function that takes a file and options, and returns a Promise that resolves with the processed file.
|
8
|
+
*/
|
3
9
|
const fileProcessor = (formio, config) => (file, options) => new Promise((resolve, reject) => {
|
4
10
|
const xhr = new XMLHttpRequest();
|
5
11
|
// Fire on network error.
|
@@ -1,21 +1,10 @@
|
|
1
1
|
export default azure;
|
2
2
|
/**
|
3
|
-
*
|
4
|
-
* @param formio
|
3
|
+
* Azure File Services provider for file storage.
|
4
|
+
* @param {object} formio formio instance
|
5
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
5
6
|
*/
|
6
|
-
declare function azure(formio:
|
7
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<{
|
8
|
-
storage: string;
|
9
|
-
name: any;
|
10
|
-
size: any;
|
11
|
-
type: any;
|
12
|
-
groupPermissions: any;
|
13
|
-
groupId: any;
|
14
|
-
key: any;
|
15
|
-
}>;
|
16
|
-
downloadFile(file: any): any;
|
17
|
-
deleteFile: (fileInfo: any) => any;
|
18
|
-
};
|
7
|
+
declare function azure(formio: object): any;
|
19
8
|
declare namespace azure {
|
20
9
|
let title: string;
|
21
10
|
}
|
@@ -5,8 +5,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
6
|
const xhr_1 = __importDefault(require("./xhr"));
|
7
7
|
/**
|
8
|
-
*
|
9
|
-
* @param formio
|
8
|
+
* Azure File Services provider for file storage.
|
9
|
+
* @param {object} formio formio instance
|
10
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
10
11
|
*/
|
11
12
|
function azure(formio) {
|
12
13
|
return {
|
@@ -1,13 +1,9 @@
|
|
1
1
|
export default base64;
|
2
2
|
/**
|
3
|
-
*
|
3
|
+
* base64 File Services provider for file storage.
|
4
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
4
5
|
*/
|
5
|
-
declare function base64():
|
6
|
-
title: string;
|
7
|
-
name: string;
|
8
|
-
uploadFile(file: any, fileName: any): Promise<any>;
|
9
|
-
downloadFile(file: any): Promise<any>;
|
10
|
-
};
|
6
|
+
declare function base64(): any;
|
11
7
|
declare namespace base64 {
|
12
8
|
let title: string;
|
13
9
|
}
|
@@ -1,7 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
/**
|
4
|
-
*
|
4
|
+
* base64 File Services provider for file storage.
|
5
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
5
6
|
*/
|
6
7
|
function base64() {
|
7
8
|
return {
|
@@ -1,12 +1,10 @@
|
|
1
1
|
export default dropbox;
|
2
2
|
/**
|
3
|
-
*
|
4
|
-
* @param formio
|
3
|
+
* Dropbox provider for file storage.
|
4
|
+
* @param {object} formio formio instance
|
5
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
5
6
|
*/
|
6
|
-
declare function dropbox(formio:
|
7
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<any>;
|
8
|
-
downloadFile(file: any): Promise<any>;
|
9
|
-
};
|
7
|
+
declare function dropbox(formio: object): any;
|
10
8
|
declare namespace dropbox {
|
11
9
|
let title: string;
|
12
10
|
}
|
@@ -2,8 +2,9 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
const xhr_1 = require("./xhr");
|
4
4
|
/**
|
5
|
-
*
|
6
|
-
* @param formio
|
5
|
+
* Dropbox provider for file storage.
|
6
|
+
* @param {object} formio formio instance
|
7
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
7
8
|
*/
|
8
9
|
function dropbox(formio) {
|
9
10
|
return {
|
@@ -1,13 +1,11 @@
|
|
1
1
|
export default googledrive;
|
2
2
|
/**
|
3
3
|
*
|
4
|
-
*
|
4
|
+
* Google Drive provider for file storage.
|
5
|
+
* @param {object} formio - formio instance
|
6
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
5
7
|
*/
|
6
|
-
declare function googledrive(formio:
|
7
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<any>;
|
8
|
-
downloadFile(file: any): Promise<any>;
|
9
|
-
deleteFile: (fileInfo: any) => any;
|
10
|
-
};
|
8
|
+
declare function googledrive(formio: object): any;
|
11
9
|
declare namespace googledrive {
|
12
10
|
let title: string;
|
13
11
|
}
|
@@ -3,7 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const xhr_1 = require("./xhr");
|
4
4
|
/**
|
5
5
|
*
|
6
|
-
*
|
6
|
+
* Google Drive provider for file storage.
|
7
|
+
* @param {object} formio - formio instance
|
8
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
7
9
|
*/
|
8
10
|
function googledrive(formio) {
|
9
11
|
return {
|
@@ -1,14 +1,9 @@
|
|
1
1
|
export default indexeddb;
|
2
2
|
/**
|
3
|
-
*
|
3
|
+
* indexedDb provider for file storage.
|
4
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
4
5
|
*/
|
5
|
-
declare function indexeddb():
|
6
|
-
title: string;
|
7
|
-
name: string;
|
8
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any): Promise<any> | undefined;
|
9
|
-
downloadFile(file: any, options: any): Promise<any>;
|
10
|
-
deleteFile(file: any, options: any): Promise<any>;
|
11
|
-
};
|
6
|
+
declare function indexeddb(): any;
|
12
7
|
declare namespace indexeddb {
|
13
8
|
let title: string;
|
14
9
|
}
|
@@ -2,7 +2,8 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
const uuid_1 = require("uuid");
|
4
4
|
/**
|
5
|
-
*
|
5
|
+
* indexedDb provider for file storage.
|
6
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
6
7
|
*/
|
7
8
|
function indexeddb() {
|
8
9
|
return {
|
@@ -1,28 +1,10 @@
|
|
1
1
|
export default s3;
|
2
2
|
/**
|
3
|
-
*
|
4
|
-
* @param formio
|
3
|
+
* S3 File Services provider for file storage.
|
4
|
+
* @param {object} formio formio instance
|
5
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
5
6
|
*/
|
6
|
-
declare function s3(formio:
|
7
|
-
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any, multipartOptions: any): Promise<{
|
8
|
-
storage: string;
|
9
|
-
name: any;
|
10
|
-
bucket: any;
|
11
|
-
key: any;
|
12
|
-
url: any;
|
13
|
-
acl: any;
|
14
|
-
size: any;
|
15
|
-
type: any;
|
16
|
-
}>;
|
17
|
-
completeMultipartUpload(serverResponse: any, parts: any, multipart: any): Promise<void>;
|
18
|
-
abortMultipartUpload(serverResponse: any): void;
|
19
|
-
uploadParts(file: any, urls: any, headers: any, partSize: any, multipart: any, abortSignal: any): Promise<{
|
20
|
-
ETag: string;
|
21
|
-
PartNumber: number;
|
22
|
-
}[]>;
|
23
|
-
downloadFile(file: any): any;
|
24
|
-
deleteFile(fileInfo: any): any;
|
25
|
-
};
|
7
|
+
declare function s3(formio: object): any;
|
26
8
|
declare namespace s3 {
|
27
9
|
let title: string;
|
28
10
|
}
|
@@ -43,8 +43,9 @@ const loadAbortControllerPolyfill = () => __awaiter(void 0, void 0, void 0, func
|
|
43
43
|
}
|
44
44
|
});
|
45
45
|
/**
|
46
|
-
*
|
47
|
-
* @param formio
|
46
|
+
* S3 File Services provider for file storage.
|
47
|
+
* @param {object} formio formio instance
|
48
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
48
49
|
*/
|
49
50
|
function s3(formio) {
|
50
51
|
return {
|
@@ -1,15 +1,10 @@
|
|
1
1
|
export default url;
|
2
2
|
/**
|
3
3
|
*
|
4
|
-
* @param formio
|
4
|
+
* @param {object} formio - formio instance
|
5
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
5
6
|
*/
|
6
|
-
declare function url(formio:
|
7
|
-
title: string;
|
8
|
-
name: string;
|
9
|
-
uploadFile(file: any, name: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): any;
|
10
|
-
deleteFile(fileInfo: any, options: any): Promise<any>;
|
11
|
-
downloadFile(file: any): Promise<any>;
|
12
|
-
};
|
7
|
+
declare function url(formio: object): any;
|
13
8
|
declare namespace url {
|
14
9
|
let title: string;
|
15
10
|
}
|
@@ -2,13 +2,14 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
/**
|
4
4
|
*
|
5
|
-
* @param formio
|
5
|
+
* @param {object} formio - formio instance
|
6
|
+
* @returns {import('./typedefs').FileProvider} The FileProvider interface defined in index.js.
|
6
7
|
*/
|
7
8
|
function url(formio) {
|
8
9
|
/**
|
9
10
|
*
|
10
|
-
* @param options
|
11
|
-
* @param xhr
|
11
|
+
* @param {object} options - options to set on the xhr
|
12
|
+
* @param {object} xhr - the xhr object
|
12
13
|
*/
|
13
14
|
function setOptions(options, xhr) {
|
14
15
|
const parsedOptions = typeof options === 'string' ? JSON.parse(options) : options;
|
@@ -1,8 +1,24 @@
|
|
1
1
|
/**
|
2
|
-
*
|
3
|
-
* @param fn
|
4
|
-
* @param args
|
5
|
-
* @param retries
|
6
|
-
* @param err
|
2
|
+
* @typedef {any[]} Args
|
7
3
|
*/
|
8
|
-
|
4
|
+
/**
|
5
|
+
* Function to be retried
|
6
|
+
* @callback RetryFunction
|
7
|
+
* @param {...Args} args
|
8
|
+
* @returns {Promise<any>}
|
9
|
+
*/
|
10
|
+
/**
|
11
|
+
* Executes a function with retries in case of failure.
|
12
|
+
* @param {RetryFunction} fn - The function to be executed.
|
13
|
+
* @param {Args} args - The arguments to be passed to the function.
|
14
|
+
* @param {number} [retries] - The number of retries in case of failure.
|
15
|
+
* @param {string} [err] - The error message to be thrown after all retries have failed.
|
16
|
+
* @returns {Promise<any>} The result of the function execution.
|
17
|
+
* @throws {Error} When all retries have failed.
|
18
|
+
*/
|
19
|
+
export function withRetries(fn: RetryFunction, args: Args, retries?: number | undefined, err?: string | undefined): Promise<any>;
|
20
|
+
export type Args = any[];
|
21
|
+
/**
|
22
|
+
* Function to be retried
|
23
|
+
*/
|
24
|
+
export type RetryFunction = (...args: Args[]) => Promise<any>;
|
@@ -1,4 +1,7 @@
|
|
1
1
|
"use strict";
|
2
|
+
/**
|
3
|
+
* @typedef {any[]} Args
|
4
|
+
*/
|
2
5
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
3
6
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
4
7
|
return new (P || (P = Promise))(function (resolve, reject) {
|
@@ -11,11 +14,19 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
11
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
15
|
exports.withRetries = void 0;
|
13
16
|
/**
|
14
|
-
*
|
15
|
-
* @
|
16
|
-
* @param args
|
17
|
-
* @
|
18
|
-
|
17
|
+
* Function to be retried
|
18
|
+
* @callback RetryFunction
|
19
|
+
* @param {...Args} args
|
20
|
+
* @returns {Promise<any>}
|
21
|
+
*/
|
22
|
+
/**
|
23
|
+
* Executes a function with retries in case of failure.
|
24
|
+
* @param {RetryFunction} fn - The function to be executed.
|
25
|
+
* @param {Args} args - The arguments to be passed to the function.
|
26
|
+
* @param {number} [retries] - The number of retries in case of failure.
|
27
|
+
* @param {string} [err] - The error message to be thrown after all retries have failed.
|
28
|
+
* @returns {Promise<any>} The result of the function execution.
|
29
|
+
* @throws {Error} When all retries have failed.
|
19
30
|
*/
|
20
31
|
function withRetries(fn, args, retries = 3, err = null) {
|
21
32
|
return __awaiter(this, void 0, void 0, function* () {
|
@@ -1,17 +1,19 @@
|
|
1
1
|
declare namespace _default {
|
2
2
|
/**
|
3
3
|
* Appends a number to a component.key to keep it unique
|
4
|
-
* @param {
|
5
|
-
*
|
6
|
-
* @
|
7
|
-
* @param {object} component
|
8
|
-
* The component to uniquify
|
4
|
+
* @param {import('@formio/core').Component[]} container - The container of components to uniquify against
|
5
|
+
* @param {import('@formio/core').Component} component - The Component to uniqify.
|
6
|
+
* @returns {boolean} - If the component was changed.
|
9
7
|
*/
|
10
|
-
function uniquify(container:
|
8
|
+
function uniquify(container: import("@formio/core").Component[], component: import("@formio/core").Component): boolean;
|
11
9
|
namespace additionalShortcuts {
|
12
10
|
let button: string[];
|
13
11
|
}
|
14
|
-
|
12
|
+
/**
|
13
|
+
* Returns the alpha character shortcuts.
|
14
|
+
* @returns {string[]} - An array of shortcuts of alpha characters.
|
15
|
+
*/
|
16
|
+
function getAlphaShortcuts(): string[];
|
15
17
|
function getAdditionalShortcuts(type: any): any;
|
16
18
|
function getBindedShortcuts(components: any, input: any): any[];
|
17
19
|
function getAvailableShortcuts(form: any, component: any): {
|
package/lib/cjs/utils/builder.js
CHANGED
@@ -8,11 +8,9 @@ const utils_1 = require("./utils");
|
|
8
8
|
exports.default = {
|
9
9
|
/**
|
10
10
|
* Appends a number to a component.key to keep it unique
|
11
|
-
* @param {
|
12
|
-
*
|
13
|
-
* @
|
14
|
-
* @param {object} component
|
15
|
-
* The component to uniquify
|
11
|
+
* @param {import('@formio/core').Component[]} container - The container of components to uniquify against
|
12
|
+
* @param {import('@formio/core').Component} component - The Component to uniqify.
|
13
|
+
* @returns {boolean} - If the component was changed.
|
16
14
|
*/
|
17
15
|
uniquify(container, component) {
|
18
16
|
let changed = false;
|
@@ -41,12 +39,19 @@ exports.default = {
|
|
41
39
|
}, true);
|
42
40
|
return changed;
|
43
41
|
},
|
42
|
+
/**
|
43
|
+
* Additional shortcuts for the builder.
|
44
|
+
*/
|
44
45
|
additionalShortcuts: {
|
45
46
|
button: [
|
46
47
|
'Enter',
|
47
48
|
'Esc'
|
48
49
|
]
|
49
50
|
},
|
51
|
+
/**
|
52
|
+
* Returns the alpha character shortcuts.
|
53
|
+
* @returns {string[]} - An array of shortcuts of alpha characters.
|
54
|
+
*/
|
50
55
|
getAlphaShortcuts() {
|
51
56
|
return lodash_1.default.range('A'.charCodeAt(), 'Z'.charCodeAt() + 1).map((charCode) => String.fromCharCode(charCode));
|
52
57
|
},
|
@@ -8,7 +8,7 @@
|
|
8
8
|
* The max date.
|
9
9
|
* @param {Date} minDate
|
10
10
|
* The min date.
|
11
|
-
* @returns {{message: string, result: boolean}}
|
11
|
+
* @returns {{message: string, result: boolean}} - The response object.
|
12
12
|
*/
|
13
13
|
export function lessOrGreater(value: typeof moment, format: [string], maxDate: Date, minDate: Date): {
|
14
14
|
message: string;
|
@@ -16,15 +16,11 @@ export function lessOrGreater(value: typeof moment, format: [string], maxDate: D
|
|
16
16
|
};
|
17
17
|
/**
|
18
18
|
* Checks the entered date for validity.
|
19
|
-
* @param {string} value
|
20
|
-
*
|
21
|
-
* @param {
|
22
|
-
*
|
23
|
-
* @
|
24
|
-
* The max date.
|
25
|
-
* @param {Date} minDate
|
26
|
-
* The min date.
|
27
|
-
* @returns {{message: string, result: boolean}}
|
19
|
+
* @param {string} value - The value to check.
|
20
|
+
* @param {[string]} format - A moment formats.
|
21
|
+
* @param {Date} minDate - The minimum date.
|
22
|
+
* @param {Date} maxDate - The maximum date.
|
23
|
+
* @returns {{message: string, result: boolean}} - The response object.
|
28
24
|
*/
|
29
25
|
export function checkInvalidDate(value: string, format: [string], minDate: Date, maxDate: Date): {
|
30
26
|
message: string;
|
@@ -22,7 +22,7 @@ exports.CALENDAR_ERROR_MESSAGES = {
|
|
22
22
|
* The message for response.
|
23
23
|
* @param {boolean} result
|
24
24
|
* The boolean flag for response.
|
25
|
-
* @returns {{message: string, result: boolean}}
|
25
|
+
* @returns {{message: string, result: boolean}} - The response object.
|
26
26
|
*/
|
27
27
|
function buildResponse(message, result) {
|
28
28
|
return {
|
@@ -40,7 +40,7 @@ function buildResponse(message, result) {
|
|
40
40
|
* The max date.
|
41
41
|
* @param {Date} minDate
|
42
42
|
* The min date.
|
43
|
-
* @returns {{message: string, result: boolean}}
|
43
|
+
* @returns {{message: string, result: boolean}} - The response object.
|
44
44
|
*/
|
45
45
|
function lessOrGreater(value, format, maxDate, minDate) {
|
46
46
|
let message = '';
|
@@ -67,15 +67,11 @@ function lessOrGreater(value, format, maxDate, minDate) {
|
|
67
67
|
exports.lessOrGreater = lessOrGreater;
|
68
68
|
/**
|
69
69
|
* Checks the entered date for validity.
|
70
|
-
* @param {string} value
|
71
|
-
*
|
72
|
-
* @param {
|
73
|
-
*
|
74
|
-
* @
|
75
|
-
* The max date.
|
76
|
-
* @param {Date} minDate
|
77
|
-
* The min date.
|
78
|
-
* @returns {{message: string, result: boolean}}
|
70
|
+
* @param {string} value - The value to check.
|
71
|
+
* @param {[string]} format - A moment formats.
|
72
|
+
* @param {Date} minDate - The minimum date.
|
73
|
+
* @param {Date} maxDate - The maximum date.
|
74
|
+
* @returns {{message: string, result: boolean}} - The response object.
|
79
75
|
*/
|
80
76
|
function checkInvalidDate(value, format, minDate, maxDate) {
|
81
77
|
const date = (0, moment_1.default)(value, format, true);
|
@@ -1,10 +1,10 @@
|
|
1
1
|
/**
|
2
2
|
* Deprecated version of findComponents. Renamed to searchComponents.
|
3
|
-
* @param components
|
4
|
-
* @param query
|
5
|
-
* @returns {
|
3
|
+
* @param {import('@formio/core').Component[]} components - The components to find components within.
|
4
|
+
* @param {object} query - The query to use when searching for the components.
|
5
|
+
* @returns {import('@formio/core').Component[]} - The result of the component that is found.
|
6
6
|
*/
|
7
|
-
export function findComponents(components:
|
7
|
+
export function findComponents(components: import('@formio/core').Component[], query: object): import('@formio/core').Component[];
|
8
8
|
export const flattenComponents: typeof Utils.flattenComponents;
|
9
9
|
export const guid: typeof Utils.guid;
|
10
10
|
export const uniqueName: typeof Utils.uniqueName;
|
@@ -42,9 +42,9 @@ exports.getEmptyValue = getEmptyValue;
|
|
42
42
|
exports.isComponentDataEmpty = isComponentDataEmpty;
|
43
43
|
/**
|
44
44
|
* Deprecated version of findComponents. Renamed to searchComponents.
|
45
|
-
* @param components
|
46
|
-
* @param query
|
47
|
-
* @returns {
|
45
|
+
* @param {import('@formio/core').Component[]} components - The components to find components within.
|
46
|
+
* @param {object} query - The query to use when searching for the components.
|
47
|
+
* @returns {import('@formio/core').Component[]} - The result of the component that is found.
|
48
48
|
*/
|
49
49
|
function findComponents(components, query) {
|
50
50
|
console.warn('formio.js/utils findComponents is deprecated. Use searchComponents instead.');
|