@formio/js 5.0.0-rc.50 → 5.0.0-rc.51

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +1,3 @@
1
- /*!
2
- * dist/inputmask
3
- * https://github.com/RobinHerbots/Inputmask
4
- * Copyright (c) 2010 - 2023 Robin Herbots
5
- * Licensed under the MIT license
6
- * Version: 5.0.9-beta.45
7
- */
8
-
9
1
  /*!
10
2
  * https://github.com/Starcounter-Jack/JSON-Patch
11
3
  * (c) 2017-2021 Joachim Wester
@@ -18,13 +10,57 @@
18
10
  * MIT licensed
19
11
  */
20
12
 
21
- /*! @license DOMPurify 3.0.8 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.8/LICENSE */
13
+ /*!
14
+ * dependencyLibs/inputmask.dependencyLib.js
15
+ * https://github.com/RobinHerbots/Inputmask
16
+ * Copyright (c) 2010 - 2019 Robin Herbots
17
+ * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
18
+ * Version: 4.0.9
19
+ */
22
20
 
23
- /*! @license DOMPurify 3.1.0 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.1.0/LICENSE */
21
+ /*!
22
+ * global/window.js
23
+ * https://github.com/RobinHerbots/Inputmask
24
+ * Copyright (c) 2010 - 2019 Robin Herbots
25
+ * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
26
+ * Version: 4.0.9
27
+ */
28
+
29
+ /*!
30
+ * inputmask.date.extensions.js
31
+ * https://github.com/RobinHerbots/Inputmask
32
+ * Copyright (c) 2010 - 2019 Robin Herbots
33
+ * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
34
+ * Version: 4.0.9
35
+ */
36
+
37
+ /*!
38
+ * inputmask.extensions.js
39
+ * https://github.com/RobinHerbots/Inputmask
40
+ * Copyright (c) 2010 - 2019 Robin Herbots
41
+ * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
42
+ * Version: 4.0.9
43
+ */
44
+
45
+ /*!
46
+ * inputmask.js
47
+ * https://github.com/RobinHerbots/Inputmask
48
+ * Copyright (c) 2010 - 2019 Robin Herbots
49
+ * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
50
+ * Version: 4.0.9
51
+ */
52
+
53
+ /*!
54
+ * inputmask.numeric.extensions.js
55
+ * https://github.com/RobinHerbots/Inputmask
56
+ * Copyright (c) 2010 - 2019 Robin Herbots
57
+ * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
58
+ * Version: 4.0.9
59
+ */
24
60
 
25
- /*! formiojs v5.0.0-rc.50 | https://unpkg.com/formiojs@5.0.0-rc.50/LICENSE.txt */
61
+ /*! @license DOMPurify 3.1.2 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.1.2/LICENSE */
26
62
 
27
- /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
63
+ /*! formiojs v5.0.0-rc.51 | https://unpkg.com/formiojs@5.0.0-rc.51/LICENSE.txt */
28
64
 
29
65
  /**
30
66
  * @license
@@ -359,7 +359,7 @@ export function observeOverload(callback: any, options?: {}): () => any;
359
359
  * @param excludeNested
360
360
  * @param excludedTypes
361
361
  */
362
- export function getContextComponents(context: any, excludeNested: any, excludedTypes?: any[]): any[];
362
+ export function getContextComponents(context: any, excludeNested?: boolean, excludedTypes?: any[]): any[];
363
363
  /**
364
364
  *
365
365
  * @param context
@@ -1211,7 +1211,7 @@ exports.observeOverload = observeOverload;
1211
1211
  * @param excludeNested
1212
1212
  * @param excludedTypes
1213
1213
  */
1214
- function getContextComponents(context, excludeNested, excludedTypes = []) {
1214
+ function getContextComponents(context, excludeNested = false, excludedTypes = []) {
1215
1215
  const values = [];
1216
1216
  context.utils.eachComponent(context.instance.options.editForm.components, (component, path) => {
1217
1217
  const addToContextComponents = excludeNested ? !component.tree : true;
@@ -359,7 +359,7 @@ export function observeOverload(callback: any, options?: {}): () => any;
359
359
  * @param excludeNested
360
360
  * @param excludedTypes
361
361
  */
362
- export function getContextComponents(context: any, excludeNested: any, excludedTypes?: any[]): any[];
362
+ export function getContextComponents(context: any, excludeNested?: boolean, excludedTypes?: any[]): any[];
363
363
  /**
364
364
  *
365
365
  * @param context
@@ -1127,7 +1127,7 @@ export function observeOverload(callback, options = {}) {
1127
1127
  * @param excludeNested
1128
1128
  * @param excludedTypes
1129
1129
  */
1130
- export function getContextComponents(context, excludeNested, excludedTypes = []) {
1130
+ export function getContextComponents(context, excludeNested = false, excludedTypes = []) {
1131
1131
  const values = [];
1132
1132
  context.utils.eachComponent(context.instance.options.editForm.components, (component, path) => {
1133
1133
  const addToContextComponents = excludeNested ? !component.tree : true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formio/js",
3
- "version": "5.0.0-rc.50",
3
+ "version": "5.0.0-rc.51",
4
4
  "description": "JavaScript powered Forms with JSON Form Builder",
5
5
  "main": "lib/cjs/index.js",
6
6
  "exports": {
@@ -77,7 +77,7 @@
77
77
  "dependencies": {
78
78
  "@formio/bootstrap": "^3.0.0-rc.24",
79
79
  "@formio/choices.js": "^10.2.1",
80
- "@formio/core": "^2.1.0-dev.tt.4",
80
+ "@formio/core": "^2.1.0-dev.tt.7",
81
81
  "@formio/text-mask-addons": "^3.8.0-formio.2",
82
82
  "@formio/vanilla-text-mask": "^5.1.1-formio.1",
83
83
  "abortcontroller-polyfill": "^1.7.5",