handsontable 0.0.0-next-499b821-20240423 → 0.0.0-next-bc6e23d-20240425
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/3rdparty/walkontable/src/calculator/viewportColumns.js +2 -2
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +2 -2
- package/3rdparty/walkontable/src/calculator/viewportRows.js +1 -1
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +1 -1
- package/3rdparty/walkontable/src/viewport.js +18 -10
- package/3rdparty/walkontable/src/viewport.mjs +18 -10
- 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 +35 -18
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +5 -5
- package/dist/handsontable.js +35 -18
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +5 -5
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/manualRowResize/manualRowResize.d.ts +1 -0
- package/plugins/manualRowResize/manualRowResize.js +9 -0
- package/plugins/manualRowResize/manualRowResize.mjs +9 -0
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-bc6e23d-20240425";
|
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-bc6e23d-20240425";
|
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-bc6e23d-20240425",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
@@ -232,6 +232,15 @@ class ManualRowResize extends _base.BasePlugin {
|
|
232
232
|
return newHeight;
|
233
233
|
}
|
234
234
|
|
235
|
+
/**
|
236
|
+
* Returns the last desired row height set manually with the resize handle.
|
237
|
+
*
|
238
|
+
* @returns {number} The last desired row height.
|
239
|
+
*/
|
240
|
+
getLastDesiredRowHeight() {
|
241
|
+
return _classPrivateFieldGet(_currentHeight, this);
|
242
|
+
}
|
243
|
+
|
235
244
|
/**
|
236
245
|
* Sets the resize handle position.
|
237
246
|
*
|
@@ -227,6 +227,15 @@ export class ManualRowResize extends BasePlugin {
|
|
227
227
|
return newHeight;
|
228
228
|
}
|
229
229
|
|
230
|
+
/**
|
231
|
+
* Returns the last desired row height set manually with the resize handle.
|
232
|
+
*
|
233
|
+
* @returns {number} The last desired row height.
|
234
|
+
*/
|
235
|
+
getLastDesiredRowHeight() {
|
236
|
+
return _classPrivateFieldGet(_currentHeight, this);
|
237
|
+
}
|
238
|
+
|
230
239
|
/**
|
231
240
|
* Sets the resize handle position.
|
232
241
|
*
|