handsontable 0.0.0-next-104ae65-20240105 → 0.0.0-next-d052e5d-20240105

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of handsontable might be problematic. Click here for more details.

package/helpers/mixed.js CHANGED
@@ -134,7 +134,7 @@ const domMessages = {
134
134
  function _injectProductInfo(key, element) {
135
135
  const hasValidType = !isEmpty(key);
136
136
  const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
137
- const hotVersion = "0.0.0-next-104ae65-20240105";
137
+ const hotVersion = "0.0.0-next-d052e5d-20240105";
138
138
  let keyValidityDate;
139
139
  let consoleMessageState = 'invalid';
140
140
  let domMessageState = 'invalid';
package/helpers/mixed.mjs CHANGED
@@ -124,7 +124,7 @@ const domMessages = {
124
124
  export function _injectProductInfo(key, element) {
125
125
  const hasValidType = !isEmpty(key);
126
126
  const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
127
- const hotVersion = "0.0.0-next-104ae65-20240105";
127
+ const hotVersion = "0.0.0-next-d052e5d-20240105";
128
128
  let keyValidityDate;
129
129
  let consoleMessageState = 'invalid';
130
130
  let domMessageState = 'invalid';
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "url": "https://github.com/handsontable/handsontable/issues"
11
11
  },
12
12
  "author": "Handsoncode <hello@handsontable.com>",
13
- "version": "0.0.0-next-104ae65-20240105",
13
+ "version": "0.0.0-next-d052e5d-20240105",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
@@ -151,7 +151,7 @@ class SourceSettings {
151
151
  return null;
152
152
  }
153
153
  const headersSettings = _classPrivateFieldGet(this, _data)[headerLevel];
154
- if (columnIndex >= headersSettings.length) {
154
+ if (Array.isArray(headersSettings) === false || columnIndex >= headersSettings.length) {
155
155
  return null;
156
156
  }
157
157
  return (_headersSettings$colu = headersSettings[columnIndex]) !== null && _headersSettings$colu !== void 0 ? _headersSettings$colu : null;
@@ -148,7 +148,7 @@ export default class SourceSettings {
148
148
  return null;
149
149
  }
150
150
  const headersSettings = _classPrivateFieldGet(this, _data)[headerLevel];
151
- if (columnIndex >= headersSettings.length) {
151
+ if (Array.isArray(headersSettings) === false || columnIndex >= headersSettings.length) {
152
152
  return null;
153
153
  }
154
154
  return (_headersSettings$colu = headersSettings[columnIndex]) !== null && _headersSettings$colu !== void 0 ? _headersSettings$colu : null;