handsontable 0.0.0-next-21d91d0-20231025 → 0.0.0-next-cecf979-20231026

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/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-21d91d0-20231025";
137
+ const hotVersion = "0.0.0-next-cecf979-20231026";
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-21d91d0-20231025";
127
+ const hotVersion = "0.0.0-next-cecf979-20231026";
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-21d91d0-20231025",
13
+ "version": "0.0.0-next-cecf979-20231026",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
@@ -153,7 +153,6 @@ class ContextMenu extends _base.BasePlugin {
153
153
  updatePlugin() {
154
154
  this.disablePlugin();
155
155
  this.enablePlugin();
156
- this.unregisterShortcuts();
157
156
  super.updatePlugin();
158
157
  }
159
158
 
@@ -166,6 +165,7 @@ class ContextMenu extends _base.BasePlugin {
166
165
  this.menu.destroy();
167
166
  this.menu = null;
168
167
  }
168
+ this.unregisterShortcuts();
169
169
  super.disablePlugin();
170
170
  }
171
171
 
@@ -147,7 +147,6 @@ export class ContextMenu extends BasePlugin {
147
147
  updatePlugin() {
148
148
  this.disablePlugin();
149
149
  this.enablePlugin();
150
- this.unregisterShortcuts();
151
150
  super.updatePlugin();
152
151
  }
153
152
 
@@ -160,6 +159,7 @@ export class ContextMenu extends BasePlugin {
160
159
  this.menu.destroy();
161
160
  this.menu = null;
162
161
  }
162
+ this.unregisterShortcuts();
163
163
  super.disablePlugin();
164
164
  }
165
165
 
@@ -8,6 +8,7 @@ interface Shortcut {
8
8
  stopPropagation?: boolean;
9
9
  relativeToGroup?: string;
10
10
  position?: 'before' | 'after';
11
+ forwardToContext?: Context;
11
12
  }
12
13
 
13
14
  export interface Context {