handsontable 0.0.0-next-0962f2c-20230512 → 0.0.0-next-8d3d78c-20230516

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/helpers/mixed.js CHANGED
@@ -152,7 +152,7 @@ var domMessages = {
152
152
  function _injectProductInfo(key, element) {
153
153
  var hasValidType = !isEmpty(key);
154
154
  var isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
155
- var hotVersion = "0.0.0-next-0962f2c-20230512";
155
+ var hotVersion = "0.0.0-next-8d3d78c-20230516";
156
156
  var keyValidityDate;
157
157
  var consoleMessageState = 'invalid';
158
158
  var domMessageState = 'invalid';
package/helpers/mixed.mjs CHANGED
@@ -142,7 +142,7 @@ var domMessages = {
142
142
  export function _injectProductInfo(key, element) {
143
143
  var hasValidType = !isEmpty(key);
144
144
  var isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
145
- var hotVersion = "0.0.0-next-0962f2c-20230512";
145
+ var hotVersion = "0.0.0-next-8d3d78c-20230516";
146
146
  var keyValidityDate;
147
147
  var consoleMessageState = 'invalid';
148
148
  var 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-0962f2c-20230512",
13
+ "version": "0.0.0-next-8d3d78c-20230516",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
package/pluginHooks.d.ts CHANGED
@@ -68,6 +68,7 @@ export interface Events {
68
68
  afterColumnFreeze?: (columnIndex: number, isFreezingPerformed: boolean) => void;
69
69
  afterColumnMove?: (movedColumns: number[], finalIndex: number, dropIndex: number | undefined, movePossible: boolean, orderChanged: boolean) => void;
70
70
  afterColumnResize?: (newSize: number, column: number, isDoubleClick: boolean) => void;
71
+ afterColumnSequenceChange?: (source: 'init' | 'move' | 'insert' | 'remove' | 'update') => void;
71
72
  afterColumnSort?: (currentSortConfig: ColumnSortingConfig[], destinationSortConfigs: ColumnSortingConfig[]) => void;
72
73
  afterColumnUnfreeze?: (columnIndex: number, isUnfreezingPerformed: boolean) => void;
73
74
  afterContextMenuDefaultOptions?: (predefinedItems: Array<ContextMenuPredefinedMenuItemKey | ContextMenuMenuItemConfig>) => void;
@@ -124,6 +125,7 @@ export interface Events {
124
125
  afterRenderer?: (TD: HTMLTableCellElement, row: number, column: number, prop: string | number, value: string, cellProperties: CellProperties) => void;
125
126
  afterRowMove?: (movedRows: number[], finalIndex: number, dropIndex: number | undefined, movePossible: boolean, orderChanged: boolean) => void;
126
127
  afterRowResize?: (newSize: number, row: number, isDoubleClick: boolean) => void;
128
+ afterRowSequenceChange?: (source: 'init' | 'move' | 'insert' | 'remove' | 'update') => void;
127
129
  afterScrollHorizontally?: () => void;
128
130
  afterScrollVertically?: () => void;
129
131
  afterSelection?: (row: number, column: number, row2: number, column2: number, preventScrolling: { value: boolean }, selectionLayerLevel: number) => void;
@@ -202,6 +202,8 @@ var ManualRowMove = /*#__PURE__*/function (_BasePlugin) {
202
202
  /**
203
203
  * Moves a single row.
204
204
  *
205
+ * To see the outcome, rerender your grid by calling [`render()`](@/api/core.md#render).
206
+ *
205
207
  * @param {number} row Visual row index to be moved.
206
208
  * @param {number} finalIndex Visual row index, being a start index for the moved rows. Points to where the elements will be placed after the moving action.
207
209
  * To check the visualization of the final index, please take a look at [documentation](@/guides/rows/row-moving.md#drag-and-move-actions-of-manualrowmove-plugin).
@@ -216,7 +218,9 @@ var ManualRowMove = /*#__PURE__*/function (_BasePlugin) {
216
218
  }
217
219
 
218
220
  /**
219
- * Moves a multiple rows.
221
+ * Moves multiple rows.
222
+ *
223
+ * To see the outcome, rerender your grid by calling [`render()`](@/api/core.md#render).
220
224
  *
221
225
  * @param {Array} rows Array of visual row indexes to be moved.
222
226
  * @param {number} finalIndex Visual row index, being a start index for the moved rows. Points to where the elements will be placed after the moving action.
@@ -195,6 +195,8 @@ export var ManualRowMove = /*#__PURE__*/function (_BasePlugin) {
195
195
  /**
196
196
  * Moves a single row.
197
197
  *
198
+ * To see the outcome, rerender your grid by calling [`render()`](@/api/core.md#render).
199
+ *
198
200
  * @param {number} row Visual row index to be moved.
199
201
  * @param {number} finalIndex Visual row index, being a start index for the moved rows. Points to where the elements will be placed after the moving action.
200
202
  * To check the visualization of the final index, please take a look at [documentation](@/guides/rows/row-moving.md#drag-and-move-actions-of-manualrowmove-plugin).
@@ -209,7 +211,9 @@ export var ManualRowMove = /*#__PURE__*/function (_BasePlugin) {
209
211
  }
210
212
 
211
213
  /**
212
- * Moves a multiple rows.
214
+ * Moves multiple rows.
215
+ *
216
+ * To see the outcome, rerender your grid by calling [`render()`](@/api/core.md#render).
213
217
  *
214
218
  * @param {Array} rows Array of visual row indexes to be moved.
215
219
  * @param {number} finalIndex Visual row index, being a start index for the moved rows. Points to where the elements will be placed after the moving action.