Skip to content

Commit

Permalink
Release 3.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
InfinnitySolutions committed Aug 22, 2017
1 parent 34aad9d commit 3bdc697
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Changelog
=========
## 3.0.6
* fixed: Rounding for NumberMask

## 3.0.5
* fixed: InfinniUI.VERSION template

Expand Down
6 changes: 4 additions & 2 deletions dist/infinni-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ var NumberFormatter = function () {
if (isEmpty_1.isEmpty(value)) {
return this.formatEmpty(options);
} else {
var text = value.toString(10).split('.').join(this.getDecimalSeparator());
var text = value.toFixed(options.decimalDigits).split('.').join(this.getDecimalSeparator());
return this.format(text, options);
}
};
Expand Down Expand Up @@ -4407,9 +4407,11 @@ var Localization = function () {
var localization;
switch (lang) {
case 'RU':
case 'RU-RU':
localization = new ru_1.Ru();
break;
case 'EN':
case 'EN-US':
localization = new en_1.En();
break;
default:
Expand Down Expand Up @@ -5067,7 +5069,7 @@ _.defaults( InfinniUI.config, {
} );


InfinniUI.VERSION = '3.0.5';
InfinniUI.VERSION = '3.0.6';

//####app/localizations/dateTimeFormatInfo.js
InfinniUI.localizations[ 'ru-RU' ].dateTimeFormatInfo = {
Expand Down
10 changes: 5 additions & 5 deletions dist/infinni-ui.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "infinni-ui",
"version": "3.0.5",
"version": "3.0.6",
"description": "Framework for lightning fast web apps creation",
"keywords": [
"infinniui"
Expand Down Expand Up @@ -37,7 +37,7 @@
"browser-sync": "^2.12.x",
"chai": "^3.5.0",
"del": "^2.2.0",
"edit-mask": "https://bitbucket.org/puritania74/edit-mask.git",
"edit-mask": "https://bitbucket.org/puritania74/edit-mask.git#0.0.2",
"eslint": "^3.19.0",
"eslint-plugin-filenames": "^1.2.0",
"gulp": "git+https://git@github.com/gulpjs/gulp/#4.0",
Expand Down

0 comments on commit 3bdc697

Please sign in to comment.