Skip to content

Commit

Permalink
[update] version 10.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
HelgaListopad committed Aug 30, 2024
1 parent 5af7d90 commit 5422a3b
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 36 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Webix UI v.10.3.0
Webix UI v.10.3.1
================

[![npm version](https://badge.fury.io/js/webix.svg)](https://badge.fury.io/js/webix)
Expand Down
12 changes: 4 additions & 8 deletions codebase/webix.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license
* webix UI v.10.3.0
* webix UI v.10.3.1
* This software is allowed to use under GPL or you need to obtain Commercial License
* to use it in non-GPL project. Please contact [email protected] for details
*/
Expand Down Expand Up @@ -17628,7 +17628,7 @@
}
};

var version = "10.3.0";
var version = "10.3.1";
var name = "core";

var errorMessage = "non-existing view for export";
Expand Down Expand Up @@ -18562,10 +18562,7 @@
} // set type based on cell's value


if (options.stubCells && stringValue === "") {
cell.t = "z";
delete cell.v;
} else if (cell.v instanceof Date) {
if (options.stubCells && stringValue === "") cell.t = "z";else if (cell.v instanceof Date) {
cell.t = cell.t || "n";
cell.z = cell.z || XLSX.SSF[table][14];
cell.v = excelDate(cell.v);
Expand All @@ -18579,7 +18576,6 @@
cell.t = "s";
}
}

ws[cell_ref] = cell;
}
}
Expand Down Expand Up @@ -30958,7 +30954,7 @@
} else node = toNode(input);

if (input != document.body) _event(node, "keydown", function (e) {
if (_this.isVisible() && (input.config ? !input.config.readonly : !node.getAttribute("readonly"))) _this._suggestions(e, node);
if (input.config ? !input.config.readonly : !node.getAttribute("readonly")) _this._suggestions(e, node);
});
if (input._getInputDiv) node = input._getInputDiv();
node.setAttribute("aria-autocomplete", "list");
Expand Down
42 changes: 21 additions & 21 deletions codebase/webix.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion codebase/webix.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webix",
"productTag": "webix",
"version": "10.3.0",
"version": "10.3.1",
"description": "Javascript UI for Web",
"scripts": {
"lint": "yarn eslint \"sources/**/*.js\"",
Expand Down
2 changes: 1 addition & 1 deletion sources/views/suggest.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ const api = {

if(input != document.body)
_event(node,"keydown",e => {
if (this.isVisible() && (input.config ? (!input.config.readonly) : (!node.getAttribute("readonly"))))
if (input.config ? (!input.config.readonly) : (!node.getAttribute("readonly")))
this._suggestions(e, node);
});

Expand Down
4 changes: 1 addition & 3 deletions sources/webix/export/toexcel.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,8 @@ function getExcelData(data, scheme, spans, styles, options) {
}

// set type based on cell's value
if(options.stubCells && stringValue === ""){
if(options.stubCells && stringValue === "")
cell.t = "z";
delete cell.v;
}
else if(cell.v instanceof Date){
cell.t = cell.t || "n";
cell.z = cell.z || XLSX.SSF[table][14];
Expand Down

0 comments on commit 5422a3b

Please sign in to comment.