handsontable 13.1.0-next-f35a363-20230828 → 13.1.0-next-ea584ca-20230830

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 = "13.1.0-next-f35a363-20230828";
137
+ const hotVersion = "13.1.0-next-ea584ca-20230830";
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 = "13.1.0-next-f35a363-20230828";
127
+ const hotVersion = "13.1.0-next-ea584ca-20230830";
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": "13.1.0-next-f35a363-20230828",
13
+ "version": "13.1.0-next-ea584ca-20230830",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
@@ -221,12 +221,6 @@ class ManualColumnResize extends _base.BasePlugin {
221
221
  return;
222
222
  }
223
223
  this.currentTH = TH;
224
- const hotRootElement = this.hot.rootElement;
225
-
226
- // Handling elements placed only inside columns header of the main instance.
227
- if ((0, _element.overlayContainsElement)('top_inline_start_corner', this.currentTH, hotRootElement) === false && (0, _element.overlayContainsElement)('top', this.currentTH, hotRootElement) === false) {
228
- return;
229
- }
230
224
  const {
231
225
  _wt: wt
232
226
  } = this.hot.view;
@@ -1,6 +1,6 @@
1
1
  import "core-js/modules/es.array.push.js";
2
2
  import { BasePlugin } from "../base/index.mjs";
3
- import { addClass, closest, hasClass, removeClass, outerHeight, isDetached, overlayContainsElement } from "../../helpers/dom/element.mjs";
3
+ import { addClass, closest, hasClass, removeClass, outerHeight, isDetached } from "../../helpers/dom/element.mjs";
4
4
  import EventManager from "../../eventManager.mjs";
5
5
  import { arrayEach } from "../../helpers/array.mjs";
6
6
  import { rangeEach } from "../../helpers/number.mjs";
@@ -213,12 +213,6 @@ export class ManualColumnResize extends BasePlugin {
213
213
  return;
214
214
  }
215
215
  this.currentTH = TH;
216
- const hotRootElement = this.hot.rootElement;
217
-
218
- // Handling elements placed only inside columns header of the main instance.
219
- if (overlayContainsElement('top_inline_start_corner', this.currentTH, hotRootElement) === false && overlayContainsElement('top', this.currentTH, hotRootElement) === false) {
220
- return;
221
- }
222
216
  const {
223
217
  _wt: wt
224
218
  } = this.hot.view;