Skip to content

Commit 2de451f

Browse files
committed
🚀 Release 5.4.0
1 parent a63857e commit 2de451f

29 files changed

Lines changed: 62 additions & 54 deletions

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ DataFormsJS uses [Semantic Versioning](https://docs.npmjs.com/about-semantic-ver
44

55
Overall the core Framework files and API are expected to remain stable however the version number is expected to increase to much larger numbers in the future due to the changes to smaller scripts and components. This change log includes Framework release history and new website features or major changes.
66

7+
## 5.4.0 (December 4, 2020)
8+
9+
* React jsxLoader
10+
* Added support for `data-type="module"` on scripts. This feature was added on Babel Standalone `7.10.0`
11+
* See Babel Standalone Docs: https://babeljs.io/docs/en/babel-standalone
12+
* Updated Babel Standalone CDN Version used for old browsers from `7.12.6` to the latest version `7.12.9`.
13+
* Updated all NPM Dev Dependencies to use latest version for Build and Minification
14+
715
## 5.3.1 (December 2, 2020)
816

917
* Web Component `<input is="input-filter">` could previously run too soon for long running web services when the content was waiting on data downloaded from `<json-data>`. The result was `0 Records Found` message depending on the app. This has now been fixed.

js/DataFormsJS.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/controls/markdown-content.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/plugins/filter.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/react/es5/DataFormsJS.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @link https://www.dataformsjs.com
2-
// @version 5.3.1
2+
// @version 5.4.0
33
// @author Conrad Sollitt (https://conradsollitt.com)
44
// @license MIT
55
"use strict";

js/react/es5/DataFormsJS.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/react/es5/ErrorBoundary.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
"use strict";
22

3+
function _instanceof(left, right) { if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) { return !!right[Symbol.hasInstance](left); } else { return left instanceof right; } }
4+
5+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
6+
37
if (window.exports === undefined) { window.exports = window; }
48
if (window.React === undefined && window.preact !== undefined) { var React = window.preact; }
59

@@ -8,10 +12,6 @@ Object.defineProperty(exports, "__esModule", {
812
});
913
exports.default = void 0;
1014

11-
function _instanceof(left, right) { if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) { return !!right[Symbol.hasInstance](left); } else { return left instanceof right; } }
12-
13-
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
14-
1515
function _classCallCheck(instance, Constructor) { if (!_instanceof(instance, Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
1616

1717
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }

js/react/es5/ErrorBoundary.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)