@formio/js 5.0.0-rc.5 → 5.0.0-rc.7

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.
@@ -5,7 +5,7 @@
5
5
  MIT License: http://getify.mit-license.org
6
6
  */
7
7
 
8
- /*! formiojs v5.0.0-rc.5 | https://unpkg.com/formiojs@5.0.0-rc.5/LICENSE.txt */
8
+ /*! formiojs v5.0.0-rc.7 | https://unpkg.com/formiojs@5.0.0-rc.7/LICENSE.txt */
9
9
 
10
10
  /**
11
11
  * @license
@@ -17,7 +17,7 @@
17
17
  MIT License: http://getify.mit-license.org
18
18
  */
19
19
 
20
- /*! formiojs v5.0.0-rc.5 | https://unpkg.com/formiojs@5.0.0-rc.5/LICENSE.txt */
20
+ /*! formiojs v5.0.0-rc.7 | https://unpkg.com/formiojs@5.0.0-rc.7/LICENSE.txt */
21
21
 
22
22
  /**
23
23
  * @license
@@ -1,3 +1,3 @@
1
1
  {
2
- "type": "commonjs"
2
+ "type": "module"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formio/js",
3
- "version": "5.0.0-rc.5",
3
+ "version": "5.0.0-rc.7",
4
4
  "description": "JavaScript powered Forms with JSON Form Builder",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -75,7 +75,7 @@
75
75
  "dependencies": {
76
76
  "@formio/bootstrap": "3.0.0-rc.3",
77
77
  "@formio/choices.js": "^10.2.0",
78
- "@formio/core": "1.3.0-rc.10",
78
+ "@formio/core": "1.3.0-rc.14",
79
79
  "@formio/text-mask-addons": "^3.8.0-formio.2",
80
80
  "@formio/vanilla-text-mask": "^5.1.1-formio.1",
81
81
  "autocompleter": "^8.0.3",
package/types/utils.d.ts CHANGED
@@ -120,6 +120,7 @@ export namespace Utils {
120
120
  function searchComponents(components: any[], query: any): any;
121
121
  function findComponent(components: any[], key: any, path: any, fn: Function): boolean;
122
122
  function removeComponent(components: any[], path: any): void;
123
+ function fastCloneDeep(json: any): any;
123
124
  function generateFormChange(
124
125
  type: string | any,
125
126
  data: { schema: any; parent: { key: any } | any; originalComponent: any },