@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.
- package/dist/formio.embed.min.js.LICENSE.txt +1 -1
- package/dist/formio.form.js +11 -11
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +1 -1
- package/dist/formio.full.js +11 -11
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +1 -1
- package/dist/formio.js +11 -11
- package/dist/formio.min.js +1 -1
- package/dist/formio.min.js.LICENSE.txt +1 -1
- package/dist/formio.utils.min.js.LICENSE.txt +1 -1
- package/lib/mjs/package.json +1 -1
- package/package.json +2 -2
- package/types/utils.d.ts +1 -0
package/lib/mjs/package.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@formio/js",
|
3
|
-
"version": "5.0.0-rc.
|
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.
|
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 },
|