handsontable 0.0.0-next-99fc7ba-20240729 → 0.0.0-next-746fe12-20240730
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 +5 -6
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +3 -3
- package/dist/handsontable.js +5 -6
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/pluginHooks.js +0 -1
- package/pluginHooks.mjs +0 -1
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-746fe12-20240730";
|
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-746fe12-20240730";
|
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-746fe12-20240730",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
package/pluginHooks.js
CHANGED
@@ -609,7 +609,6 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
609
609
|
* @param {object} preventScrolling A reference to the observable object with the `value` property.
|
610
610
|
* Property `preventScrolling.value` expects a boolean value that
|
611
611
|
* Handsontable uses to control scroll behavior after selection.
|
612
|
-
* @param {object} preventScrolling Object with `value` property where its value change will be observed.
|
613
612
|
* @param {number} selectionLayerLevel The number which indicates what selection layer is currently modified.
|
614
613
|
* @example
|
615
614
|
* ::: only-for javascript
|
package/pluginHooks.mjs
CHANGED
@@ -605,7 +605,6 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
605
605
|
* @param {object} preventScrolling A reference to the observable object with the `value` property.
|
606
606
|
* Property `preventScrolling.value` expects a boolean value that
|
607
607
|
* Handsontable uses to control scroll behavior after selection.
|
608
|
-
* @param {object} preventScrolling Object with `value` property where its value change will be observed.
|
609
608
|
* @param {number} selectionLayerLevel The number which indicates what selection layer is currently modified.
|
610
609
|
* @example
|
611
610
|
* ::: only-for javascript
|