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

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.8 | https://unpkg.com/formiojs@5.0.0-rc.8/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.8 | https://unpkg.com/formiojs@5.0.0-rc.8/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.8",
4
4
  "description": "JavaScript powered Forms with JSON Form Builder",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -73,7 +73,7 @@
73
73
  },
74
74
  "homepage": "https://github.com/formio/formio.js#readme",
75
75
  "dependencies": {
76
- "@formio/bootstrap": "3.0.0-rc.3",
76
+ "@formio/bootstrap": "^3.0.0-rc.5",
77
77
  "@formio/choices.js": "^10.2.0",
78
78
  "@formio/core": "1.3.0-rc.14",
79
79
  "@formio/text-mask-addons": "^3.8.0-formio.2",
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 },