handsontable 0.0.0-next-c8688e9-20230828 → 0.0.0-next-213ec5b-20230829

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.

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-c8688e9-20230828";
137
+ const hotVersion = "0.0.0-next-213ec5b-20230829";
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-c8688e9-20230828";
127
+ const hotVersion = "0.0.0-next-213ec5b-20230829";
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-c8688e9-20230828",
13
+ "version": "0.0.0-next-213ec5b-20230829",
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;