Skip to content

Commit de92e0e

Browse files
committed
🚀 Release 5.14.1
1 parent aabef2c commit de92e0e

12 files changed

Lines changed: 20 additions & 13 deletions

CHANGELOG.md

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

55
Overall the core Framework files, React Components, and Web Components 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 all npm release history and new website features or major changes.
66

7+
## 5.14.1 (Dec 7, 2022)
8+
9+
* Fixed a bug in Web Component `<json-data>` that was introduced on the previous build where `format.{func}` was not working in `[data-show]` attributes.
10+
711
## 5.14.0 (Nov 28, 2022)
812

913
* Added ability to use HTML Attribute `[data-format]` from Web Component `<url-router>` when using attribute `[url-param]`. The same functionality when using Web Component `<json-data>` with attribute `[data-bind]` is provided.

js/DataFormsJS.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3391,7 +3391,7 @@
33913391

33923392
// Add Build Version
33933393
// For new releases this gets updated automatically by [scripts/build.js].
3394-
Object.defineProperty(app, 'version', { value: '5.14.0', enumerable: true });
3394+
Object.defineProperty(app, 'version', { value: '5.14.1', enumerable: true });
33953395

33963396
// Assign [DataFormsJS] and [app] to the global variable space
33973397
window.DataFormsJS = app;

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/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.14.0
2+
// @version 5.14.1
33
// @author Conrad Sollitt (https://conradsollitt.com)
44
// @license MIT
55
(function () {

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/es6/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/jsxLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1706,7 +1706,7 @@
17061706
* Add Build Version
17071707
* For new releases this gets updated automatically by [scripts/build.js].
17081708
*/
1709-
Object.defineProperty(jsxLoader, 'version', { value: '5.14.0', enumerable: true });
1709+
Object.defineProperty(jsxLoader, 'version', { value: '5.14.1', enumerable: true });
17101710

17111711
/**
17121712
* Optional Node Support. Additionally if using webpack or a bundler is being used

js/react/jsxLoader.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/web-components/json-data.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
/* jshint esversion:8 */
1919
/* jshint evil:true */
2020

21+
import { Format } from './utils-format.js';
2122
import {
2223
buildUrl,
2324
setElementText,
@@ -30,6 +31,8 @@ import {
3031
showError
3132
} from './utils.js';
3233

34+
const format = new Format();
35+
3336
const appEvents = {
3437
contentReady: 'app:contentReady',
3538
error: 'app:error',

js/web-components/json-data.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.

0 commit comments

Comments
 (0)