handsontable 0.0.0-next-53a190b-20240403 → 0.0.0-next-c2810a1-20240403
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/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 +6 -6
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +4 -4
- package/dist/handsontable.js +6 -6
- 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/plugins/dropdownMenu/dropdownMenu.js +1 -1
- package/plugins/dropdownMenu/dropdownMenu.mjs +1 -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-c2810a1-20240403";
|
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-c2810a1-20240403";
|
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-c2810a1-20240403",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
@@ -426,10 +426,10 @@ function _addCustomShortcuts(menuInstance) {
|
|
426
426
|
* @param {Event} event The mouse event object.
|
427
427
|
*/
|
428
428
|
function _onTableClick(event) {
|
429
|
-
event.stopPropagation();
|
430
429
|
if ((0, _element.hasClass)(event.target, BUTTON_CLASS_NAME)) {
|
431
430
|
const offset = (0, _utils.getDocumentOffsetByElement)(this.menu.container, this.hot.rootDocument);
|
432
431
|
const rect = event.target.getBoundingClientRect();
|
432
|
+
event.stopPropagation();
|
433
433
|
_classPrivateFieldSet(_isButtonClicked, this, false);
|
434
434
|
this.open({
|
435
435
|
left: rect.left + offset.left,
|
@@ -421,10 +421,10 @@ function _addCustomShortcuts(menuInstance) {
|
|
421
421
|
* @param {Event} event The mouse event object.
|
422
422
|
*/
|
423
423
|
function _onTableClick(event) {
|
424
|
-
event.stopPropagation();
|
425
424
|
if (hasClass(event.target, BUTTON_CLASS_NAME)) {
|
426
425
|
const offset = getDocumentOffsetByElement(this.menu.container, this.hot.rootDocument);
|
427
426
|
const rect = event.target.getBoundingClientRect();
|
427
|
+
event.stopPropagation();
|
428
428
|
_classPrivateFieldSet(_isButtonClicked, this, false);
|
429
429
|
this.open({
|
430
430
|
left: rect.left + offset.left,
|