handsontable 14.0.0-next-07c0a60-20231107 → 14.0.0-next-c080457-20231107

Sign up to get free protection for your applications and to get access to all the features.
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 = "14.0.0-next-07c0a60-20231107";
137
+ const hotVersion = "14.0.0-next-c080457-20231107";
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 = "14.0.0-next-07c0a60-20231107";
127
+ const hotVersion = "14.0.0-next-c080457-20231107";
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": "14.0.0-next-07c0a60-20231107",
13
+ "version": "14.0.0-next-c080457-20231107",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
@@ -179,10 +179,7 @@ class Highlight {
179
179
  type = 'current'; // One from settings for `disableVisualSelection` up to Handsontable 0.36/Handsontable Pro 1.16.0.
180
180
  }
181
181
 
182
- let disableHighlight = false;
183
- if (coords.isCell()) {
184
- disableHighlight = this.options.disabledCellSelection(coords.row, coords.col);
185
- }
182
+ let disableHighlight = this.options.disabledCellSelection(coords.row, coords.col);
186
183
  if (typeof disableHighlight === 'string') {
187
184
  disableHighlight = [disableHighlight];
188
185
  }
@@ -170,10 +170,7 @@ class Highlight {
170
170
  type = 'current'; // One from settings for `disableVisualSelection` up to Handsontable 0.36/Handsontable Pro 1.16.0.
171
171
  }
172
172
 
173
- let disableHighlight = false;
174
- if (coords.isCell()) {
175
- disableHighlight = this.options.disabledCellSelection(coords.row, coords.col);
176
- }
173
+ let disableHighlight = this.options.disabledCellSelection(coords.row, coords.col);
177
174
  if (typeof disableHighlight === 'string') {
178
175
  disableHighlight = [disableHighlight];
179
176
  }