handsontable 0.0.0-next-d247bd5-20240112 → 0.0.0-next-b40a115-20240115

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.

@@ -245,7 +245,6 @@ class TextEditor extends _baseEditor.BaseEditor {
245
245
  this.textareaParentStyle[this.hot.isRtl() ? 'left' : 'right'] = 'auto';
246
246
  this.textareaParentStyle.opacity = '1';
247
247
  this.textareaStyle.textIndent = '';
248
- this.textareaStyle.overflowY = 'hidden';
249
248
  const childNodes = this.TEXTAREA_PARENT.childNodes;
250
249
  let hasClassHandsontableEditor = false;
251
250
  (0, _number.rangeEach)(childNodes.length - 1, index => {
@@ -241,7 +241,6 @@ export class TextEditor extends BaseEditor {
241
241
  this.textareaParentStyle[this.hot.isRtl() ? 'left' : 'right'] = 'auto';
242
242
  this.textareaParentStyle.opacity = '1';
243
243
  this.textareaStyle.textIndent = '';
244
- this.textareaStyle.overflowY = 'hidden';
245
244
  const childNodes = this.TEXTAREA_PARENT.childNodes;
246
245
  let hasClassHandsontableEditor = false;
247
246
  rangeEach(childNodes.length - 1, index => {
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-d247bd5-20240112";
137
+ const hotVersion = "0.0.0-next-b40a115-20240115";
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-d247bd5-20240112";
127
+ const hotVersion = "0.0.0-next-b40a115-20240115";
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-d247bd5-20240112",
13
+ "version": "0.0.0-next-b40a115-20240115",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
@@ -180,7 +180,6 @@ function createInputElementResizer(ownerDocument) {
180
180
  extendDefaults(config);
181
181
  if (observedElement.nodeName === 'TEXTAREA') {
182
182
  observedElement.style.resize = 'none';
183
- observedElement.style.overflowY = '';
184
183
  observedElement.style.height = `${defaults.minHeight}px`;
185
184
  observedElement.style.minWidth = `${defaults.minWidth}px`;
186
185
  observedElement.style.maxWidth = `${defaults.maxWidth}px`;
@@ -176,7 +176,6 @@ export function createInputElementResizer(ownerDocument) {
176
176
  extendDefaults(config);
177
177
  if (observedElement.nodeName === 'TEXTAREA') {
178
178
  observedElement.style.resize = 'none';
179
- observedElement.style.overflowY = '';
180
179
  observedElement.style.height = `${defaults.minHeight}px`;
181
180
  observedElement.style.minWidth = `${defaults.minWidth}px`;
182
181
  observedElement.style.maxWidth = `${defaults.maxWidth}px`;