handsontable 0.0.0-next-ed6d58d-20240429 → 0.0.0-next-0d1b629-20240507
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/base.js +2 -2
- package/base.mjs +2 -2
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +55 -14
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +5 -5
- package/dist/handsontable.js +5 -9
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +4 -4
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/utils/ghostTable.js +0 -4
- package/utils/ghostTable.mjs +0 -4
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-
|
137
|
+
const hotVersion = "0.0.0-next-0d1b629-20240507";
|
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-
|
127
|
+
const hotVersion = "0.0.0-next-0d1b629-20240507";
|
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-
|
13
|
+
"version": "0.0.0-next-0d1b629-20240507",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
package/utils/ghostTable.js
CHANGED
@@ -261,8 +261,6 @@ class GhostTable {
|
|
261
261
|
(0, _array.arrayEach)(sample.strings, string => {
|
262
262
|
const column = string.col;
|
263
263
|
const cellProperties = this.hot.getCellMeta(row, column);
|
264
|
-
cellProperties.col = column;
|
265
|
-
cellProperties.row = row;
|
266
264
|
const renderer = this.hot.getCellRenderer(cellProperties);
|
267
265
|
const td = rootDocument.createElement('td');
|
268
266
|
|
@@ -324,8 +322,6 @@ class GhostTable {
|
|
324
322
|
(0, _array.arrayEach)(sample.strings, string => {
|
325
323
|
const row = string.row;
|
326
324
|
const cellProperties = this.hot.getCellMeta(row, column);
|
327
|
-
cellProperties.col = column;
|
328
|
-
cellProperties.row = row;
|
329
325
|
const renderer = this.hot.getCellRenderer(cellProperties);
|
330
326
|
const td = rootDocument.createElement('td');
|
331
327
|
const tr = rootDocument.createElement('tr');
|
package/utils/ghostTable.mjs
CHANGED
@@ -258,8 +258,6 @@ class GhostTable {
|
|
258
258
|
arrayEach(sample.strings, string => {
|
259
259
|
const column = string.col;
|
260
260
|
const cellProperties = this.hot.getCellMeta(row, column);
|
261
|
-
cellProperties.col = column;
|
262
|
-
cellProperties.row = row;
|
263
261
|
const renderer = this.hot.getCellRenderer(cellProperties);
|
264
262
|
const td = rootDocument.createElement('td');
|
265
263
|
|
@@ -321,8 +319,6 @@ class GhostTable {
|
|
321
319
|
arrayEach(sample.strings, string => {
|
322
320
|
const row = string.row;
|
323
321
|
const cellProperties = this.hot.getCellMeta(row, column);
|
324
|
-
cellProperties.col = column;
|
325
|
-
cellProperties.row = row;
|
326
322
|
const renderer = this.hot.getCellRenderer(cellProperties);
|
327
323
|
const td = rootDocument.createElement('td');
|
328
324
|
const tr = rootDocument.createElement('tr');
|