handsontable 0.0.0-next-dc31c83-20240131 → 0.0.0-next-4a0d0f1-20240131

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-dc31c83-20240131";
137
+ const hotVersion = "0.0.0-next-4a0d0f1-20240131";
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-dc31c83-20240131";
127
+ const hotVersion = "0.0.0-next-4a0d0f1-20240131";
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-dc31c83-20240131",
13
+ "version": "0.0.0-next-4a0d0f1-20240131",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
package/tableView.js CHANGED
@@ -307,13 +307,15 @@ class TableView {
307
307
  const {
308
308
  rootElement,
309
309
  rootDocument,
310
- selection,
311
- rootWindow
310
+ selection
312
311
  } = this.hot;
313
312
  const documentElement = rootDocument.documentElement;
314
313
  this.eventManager.addEventListener(rootElement, 'mousedown', event => {
315
314
  _classPrivateFieldSet(this, _selectionMouseDown, true);
316
315
  if (!this.isTextSelectionAllowed(event.target)) {
316
+ const {
317
+ rootWindow
318
+ } = this.hot;
317
319
  (0, _element.clearTextSelection)(rootWindow);
318
320
  event.preventDefault();
319
321
  rootWindow.focus(); // make sure that window that contains HOT is active. Important when HOT is in iframe.
@@ -326,7 +328,7 @@ class TableView {
326
328
  if (_classPrivateFieldGet(this, _selectionMouseDown) && !this.isTextSelectionAllowed(event.target)) {
327
329
  // Clear selection only when fragmentSelection is enabled, otherwise clearing selection breaks the IME editor.
328
330
  if (this.settings.fragmentSelection) {
329
- (0, _element.clearTextSelection)(rootWindow);
331
+ (0, _element.clearTextSelection)(this.hot.rootWindow);
330
332
  }
331
333
  event.preventDefault();
332
334
  }
@@ -406,13 +408,6 @@ class TableView {
406
408
  this.hot.destroyEditor(false, false);
407
409
  }
408
410
  });
409
- let parentWindow = (0, _element.getParentWindow)(rootWindow);
410
- while (parentWindow !== null) {
411
- this.eventManager.addEventListener(parentWindow.document.documentElement, 'click', () => {
412
- this.hot.unlisten();
413
- });
414
- parentWindow = (0, _element.getParentWindow)(parentWindow);
415
- }
416
411
  this.eventManager.addEventListener(_classPrivateFieldGet(this, _table), 'selectstart', event => {
417
412
  if (this.settings.fragmentSelection || (0, _element.isInput)(event.target)) {
418
413
  return;
package/tableView.mjs CHANGED
@@ -12,7 +12,7 @@ function _classApplyDescriptorGet(receiver, descriptor) { if (descriptor.get) {
12
12
  function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, "set"); _classApplyDescriptorSet(receiver, descriptor, value); return value; }
13
13
  function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError("attempted to " + action + " private field on non-instance"); } return privateMap.get(receiver); }
14
14
  function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError("attempted to set read only private field"); } descriptor.value = value; } }
15
- import { addClass, clearTextSelection, empty, fastInnerHTML, fastInnerText, getScrollbarWidth, hasClass, isChildOf, isInput, isOutsideInput, isVisible, setAttribute, getParentWindow } from "./helpers/dom/element.mjs";
15
+ import { addClass, clearTextSelection, empty, fastInnerHTML, fastInnerText, getScrollbarWidth, hasClass, isChildOf, isInput, isOutsideInput, isVisible, setAttribute } from "./helpers/dom/element.mjs";
16
16
  import EventManager from "./eventManager.mjs";
17
17
  import { isImmediatePropagationStopped, isRightClick, isLeftClick } from "./helpers/dom/event.mjs";
18
18
  import Walkontable from "./3rdparty/walkontable/src/index.mjs";
@@ -303,13 +303,15 @@ class TableView {
303
303
  const {
304
304
  rootElement,
305
305
  rootDocument,
306
- selection,
307
- rootWindow
306
+ selection
308
307
  } = this.hot;
309
308
  const documentElement = rootDocument.documentElement;
310
309
  this.eventManager.addEventListener(rootElement, 'mousedown', event => {
311
310
  _classPrivateFieldSet(this, _selectionMouseDown, true);
312
311
  if (!this.isTextSelectionAllowed(event.target)) {
312
+ const {
313
+ rootWindow
314
+ } = this.hot;
313
315
  clearTextSelection(rootWindow);
314
316
  event.preventDefault();
315
317
  rootWindow.focus(); // make sure that window that contains HOT is active. Important when HOT is in iframe.
@@ -322,7 +324,7 @@ class TableView {
322
324
  if (_classPrivateFieldGet(this, _selectionMouseDown) && !this.isTextSelectionAllowed(event.target)) {
323
325
  // Clear selection only when fragmentSelection is enabled, otherwise clearing selection breaks the IME editor.
324
326
  if (this.settings.fragmentSelection) {
325
- clearTextSelection(rootWindow);
327
+ clearTextSelection(this.hot.rootWindow);
326
328
  }
327
329
  event.preventDefault();
328
330
  }
@@ -402,13 +404,6 @@ class TableView {
402
404
  this.hot.destroyEditor(false, false);
403
405
  }
404
406
  });
405
- let parentWindow = getParentWindow(rootWindow);
406
- while (parentWindow !== null) {
407
- this.eventManager.addEventListener(parentWindow.document.documentElement, 'click', () => {
408
- this.hot.unlisten();
409
- });
410
- parentWindow = getParentWindow(parentWindow);
411
- }
412
407
  this.eventManager.addEventListener(_classPrivateFieldGet(this, _table), 'selectstart', event => {
413
408
  if (this.settings.fragmentSelection || isInput(event.target)) {
414
409
  return;