jsuites 6.3.5 → 6.3.6
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/dist/jsuites.js +2 -2
- package/package.json +1 -1
package/dist/jsuites.js
CHANGED
|
@@ -8230,7 +8230,7 @@ if (! Contextmenu && "function" === 'function') {
|
|
|
8230
8230
|
|
|
8231
8231
|
component.dateToNum = function (jsDate) {
|
|
8232
8232
|
if (typeof jsDate === 'string') {
|
|
8233
|
-
jsDate = new Date(jsDate
|
|
8233
|
+
jsDate = new Date(jsDate.trim().replace(' ', 'T') + 'Z');
|
|
8234
8234
|
}
|
|
8235
8235
|
let jsDateInMilliseconds = jsDate.getTime();
|
|
8236
8236
|
if (jsDateInMilliseconds >= excelLeapYearBug) {
|
|
@@ -23443,7 +23443,7 @@ var jSuites = {
|
|
|
23443
23443
|
...dictionary,
|
|
23444
23444
|
...helpers,
|
|
23445
23445
|
/** Current version */
|
|
23446
|
-
version: '6.3.
|
|
23446
|
+
version: '6.3.6',
|
|
23447
23447
|
/** Bind new extensions to Jsuites */
|
|
23448
23448
|
setExtensions: function(o) {
|
|
23449
23449
|
if (typeof(o) == 'object') {
|
package/package.json
CHANGED