@formio/js 5.1.0-dev.5972.fc33c16 → 5.1.0-dev.5974.1be1688

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/lib/cjs/Embed.js CHANGED
@@ -418,7 +418,7 @@ Formio.formioReady = new Promise((ready, reject) => {
418
418
  _a._formioReady = ready;
419
419
  _a._formioReadyReject = reject;
420
420
  });
421
- Formio.version = 'FORMIO_VERSION';
421
+ Formio.version = '5.1.0-dev.1';
422
422
  // Create a report.
423
423
  Formio.Report = {
424
424
  create: (element, submission, options = {}) => __awaiter(void 0, void 0, void 0, function* () {
package/lib/cjs/Formio.js CHANGED
@@ -11,7 +11,7 @@ const CDN_1 = __importDefault(require("./CDN"));
11
11
  const providers_1 = __importDefault(require("./providers"));
12
12
  sdk_1.Formio.cdn = new CDN_1.default();
13
13
  sdk_1.Formio.Providers = providers_1.default;
14
- sdk_1.Formio.version = 'FORMIO_VERSION';
14
+ sdk_1.Formio.version = '5.1.0-dev.1';
15
15
  CDN_1.default.defaultCDN = sdk_1.Formio.version.includes('rc') ? 'https://cdn.test-form.io' : 'https://cdn.form.io';
16
16
  const isNil = (val) => val === null || val === undefined;
17
17
  sdk_1.Formio.prototype.uploadFile = function (storage, file, fileName, dir, progressCallback, url, options, fileKey, groupPermissions, groupId, uploadStartCallback, abortCallback, multipartOptions) {
@@ -1296,7 +1296,7 @@ class Component extends Element_1.default {
1296
1296
  detach() {
1297
1297
  // First iterate through each ref and delete the component so there are no dangling component references.
1298
1298
  lodash_1.default.each(this.refs, (ref) => {
1299
- if ((window === null || window === void 0 ? void 0 : window.NodeList) && ref instanceof NodeList) {
1299
+ if (typeof ref === NodeList) {
1300
1300
  ref.forEach((elem) => {
1301
1301
  delete elem.component;
1302
1302
  });
package/lib/mjs/Embed.js CHANGED
@@ -14,7 +14,7 @@ export class Formio {
14
14
  Formio._formioReady = ready;
15
15
  Formio._formioReadyReject = reject;
16
16
  });
17
- static version = 'FORMIO_VERSION';
17
+ static version = '5.1.0-dev.1';
18
18
  static setLicense(license, norecurse = false) {
19
19
  Formio.license = license;
20
20
  if (!norecurse && Formio.FormioClass) {
package/lib/mjs/Formio.js CHANGED
@@ -4,7 +4,7 @@ import CDN from './CDN';
4
4
  import Providers from './providers';
5
5
  FormioCore.cdn = new CDN();
6
6
  FormioCore.Providers = Providers;
7
- FormioCore.version = 'FORMIO_VERSION';
7
+ FormioCore.version = '5.1.0-dev.1';
8
8
  CDN.defaultCDN = FormioCore.version.includes('rc') ? 'https://cdn.test-form.io' : 'https://cdn.form.io';
9
9
  const isNil = (val) => val === null || val === undefined;
10
10
  FormioCore.prototype.uploadFile = function (storage, file, fileName, dir, progressCallback, url, options, fileKey, groupPermissions, groupId, uploadStartCallback, abortCallback, multipartOptions) {
@@ -1264,7 +1264,7 @@ export default class Component extends Element {
1264
1264
  detach() {
1265
1265
  // First iterate through each ref and delete the component so there are no dangling component references.
1266
1266
  _.each(this.refs, (ref) => {
1267
- if (window?.NodeList && ref instanceof NodeList) {
1267
+ if (typeof ref === NodeList) {
1268
1268
  ref.forEach((elem) => {
1269
1269
  delete elem.component;
1270
1270
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formio/js",
3
- "version": "5.1.0-dev.5972.fc33c16",
3
+ "version": "5.1.0-dev.5974.1be1688",
4
4
  "description": "JavaScript powered Forms with JSON Form Builder",
5
5
  "main": "lib/cjs/index.js",
6
6
  "exports": {
@@ -41,7 +41,7 @@
41
41
  "build": "yarn doc && yarn lib && yarn dist",
42
42
  "doc": "typedoc",
43
43
  "dist": "gulp clean:dist && webpack --config webpack.config.js && webpack --config webpack.prod.js && gulp build",
44
- "lib": "gulp clean:lib && tsc --project tsconfig.cjs.json && tsc --project tsconfig.mjs.json && yarn lib:package",
44
+ "lib": "gulp clean:lib && tsc --project tsconfig.cjs.json && tsc --project tsconfig.mjs.json && yarn lib:package && gulp version",
45
45
  "lib:package": "node ./libpackage.js",
46
46
  "version": "node -e 'console.log(require(`./package.json`).version)'",
47
47
  "build-app": "yarn build-app:create-app && yarn build-app:jekyll && yarn build-app:remove-app",