@formio/js 5.0.0-bb.dev.1 → 5.0.0-bb.dev.3
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.js +1 -1
- package/dist/formio.embed.min.js +1 -1
- package/dist/formio.embed.min.js.LICENSE.txt +1 -1
- package/dist/formio.form.js +2 -2
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +1 -1
- package/dist/formio.full.js +2 -2
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +1 -1
- package/dist/formio.js +1 -1
- 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/cjs/Form.js +3 -1
- package/lib/mjs/Form.js +3 -1
- package/package.json +1 -2
- package/Changelog.md +0 -6081
- package/types/builders.d.ts +0 -7
- package/types/components/_classes/component/component.d.ts +0 -174
- package/types/components/_classes/componentmodal/componentmodal.d.ts +0 -31
- package/types/components/_classes/field/field.d.ts +0 -5
- package/types/components/_classes/input/input.d.ts +0 -30
- package/types/components/_classes/multivalue/multivalue.d.ts +0 -16
- package/types/components/_classes/nested/nestedComponent.d.ts +0 -61
- package/types/components/_classes/widgetcomponent/widgetComponent.d.ts +0 -6
- package/types/components/components.d.ts +0 -69
- package/types/components/schema.d.ts +0 -240
- package/types/displays.d.ts +0 -7
- package/types/element.d.ts +0 -45
- package/types/eventEmitter.d.ts +0 -3
- package/types/form.d.ts +0 -18
- package/types/formbuilder.d.ts +0 -6
- package/types/formio.d.ts +0 -121
- package/types/index.d.ts +0 -18
- package/types/licenses.d.ts +0 -7
- package/types/providers.d.ts +0 -8
- package/types/rulesEngine/conjunctions.d.ts +0 -7
- package/types/rulesEngine/operators.d.ts +0 -7
- package/types/rulesEngine/quckRules.d.ts +0 -7
- package/types/rulesEngine/rules.d.ts +0 -7
- package/types/rulesEngine/transformers.d.ts +0 -7
- package/types/rulesEngine/valueSources.d.ts +0 -7
- package/types/templates.d.ts +0 -8
- package/types/utils.d.ts +0 -157
- package/types/widgets.d.ts +0 -4
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*! @license DOMPurify 3.0.5 | (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.5/LICENSE */
|
|
2
2
|
|
|
3
|
-
/*! formiojs v5.0.0-bb.dev.
|
|
3
|
+
/*! formiojs v5.0.0-bb.dev.2 | https://unpkg.com/formiojs@5.0.0-bb.dev.2/LICENSE.txt */
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* @license
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
/*! @license DOMPurify 3.0.5 | (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.5/LICENSE */
|
|
14
14
|
|
|
15
|
-
/*! formiojs v5.0.0-bb.dev.
|
|
15
|
+
/*! formiojs v5.0.0-bb.dev.2 | https://unpkg.com/formiojs@5.0.0-bb.dev.2/LICENSE.txt */
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* @license
|
package/lib/cjs/Form.js
CHANGED
|
@@ -125,7 +125,9 @@ class Form extends Element_1.default {
|
|
|
125
125
|
this.element.appendChild(this.loader);
|
|
126
126
|
}
|
|
127
127
|
else if (this.loader) {
|
|
128
|
-
this.element.
|
|
128
|
+
if (this.element.contains(this.loader)) {
|
|
129
|
+
this.element.removeChild(this.loader);
|
|
130
|
+
}
|
|
129
131
|
this.loader = null;
|
|
130
132
|
}
|
|
131
133
|
}
|
package/lib/mjs/Form.js
CHANGED
|
@@ -97,7 +97,9 @@ export default class Form extends Element {
|
|
|
97
97
|
this.element.appendChild(this.loader);
|
|
98
98
|
}
|
|
99
99
|
else if (this.loader) {
|
|
100
|
-
this.element.
|
|
100
|
+
if (this.element.contains(this.loader)) {
|
|
101
|
+
this.element.removeChild(this.loader);
|
|
102
|
+
}
|
|
101
103
|
this.loader = null;
|
|
102
104
|
}
|
|
103
105
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formio/js",
|
|
3
|
-
"version": "5.0.0-bb.dev.
|
|
3
|
+
"version": "5.0.0-bb.dev.3",
|
|
4
4
|
"description": "JavaScript powered Forms with JSON Form Builder",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
"require": "./lib/cjs/formio.embed.js"
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
|
-
"types": "index.d.ts",
|
|
30
29
|
"files": [
|
|
31
30
|
"dist",
|
|
32
31
|
"lib",
|