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

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,7 +5,7 @@
5
5
  MIT License: http://getify.mit-license.org
6
6
  */
7
7
 
8
- /*! formiojs v5.0.0-rc.6 | https://unpkg.com/formiojs@5.0.0-rc.6/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.6 | https://unpkg.com/formiojs@5.0.0-rc.6/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.6",
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",
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 },