handsontable 0.0.0-next-e8dd43f-20230731 → 0.0.0-next-ba8b82e-20230808

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.

@@ -32,6 +32,7 @@ export abstract class BaseEditor {
32
32
  finishEditing(restoreOriginalValue?: boolean, ctrlDown?: boolean, callback?: () => void): void;
33
33
  abstract focus(): void;
34
34
  getEditedCell(): HTMLTableCellElement | null;
35
+ getEditedCellRect(): { top: number, start: number, width: number, maxWidth: number, height: number, maxHeight: number } | undefined;
35
36
  getEditedCellsZIndex(): string;
36
37
  abstract getValue(): any;
37
38
  init(): void;
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-e8dd43f-20230731";
137
+ const hotVersion = "0.0.0-next-ba8b82e-20230808";
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-e8dd43f-20230731";
127
+ const hotVersion = "0.0.0-next-ba8b82e-20230808";
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-e8dd43f-20230731",
13
+ "version": "0.0.0-next-ba8b82e-20230808",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
@@ -497,6 +497,7 @@ class MergeCells extends _base.BasePlugin {
497
497
  (0, _number.rangeEach)(0, currentCollection.rowspan - 1, i => {
498
498
  (0, _number.rangeEach)(0, currentCollection.colspan - 1, j => {
499
499
  this.hot.removeCellMeta(currentCollection.row + i, currentCollection.col + j, 'hidden');
500
+ this.hot.removeCellMeta(currentCollection.row + i, currentCollection.col + j, 'copyable');
500
501
  });
501
502
  });
502
503
  this.hot.removeCellMeta(currentCollection.row, currentCollection.col, 'spanned');
@@ -491,6 +491,7 @@ export class MergeCells extends BasePlugin {
491
491
  rangeEach(0, currentCollection.rowspan - 1, i => {
492
492
  rangeEach(0, currentCollection.colspan - 1, j => {
493
493
  this.hot.removeCellMeta(currentCollection.row + i, currentCollection.col + j, 'hidden');
494
+ this.hot.removeCellMeta(currentCollection.row + i, currentCollection.col + j, 'copyable');
494
495
  });
495
496
  });
496
497
  this.hot.removeCellMeta(currentCollection.row, currentCollection.col, 'spanned');