handsontable 0.0.0-next-7315d3e-20230511 → 0.0.0-next-2cbbd0f-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/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +10 -7
- package/core.mjs +10 -7
- package/dataMap/metaManager/metaSchema.js +6 -6
- package/dataMap/metaManager/metaSchema.mjs +6 -6
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +26 -19
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +4 -4
- package/dist/handsontable.js +26 -19
- 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.d.ts +2 -0
- package/plugins/customBorders/customBorders.d.ts +2 -0
- package/plugins/manualRowMove/manualRowMove.js +5 -1
- package/plugins/manualRowMove/manualRowMove.mjs +5 -1
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-
|
155
|
+
var hotVersion = "0.0.0-next-2cbbd0f-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-
|
145
|
+
var hotVersion = "0.0.0-next-2cbbd0f-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-
|
13
|
+
"version": "0.0.0-next-2cbbd0f-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;
|
@@ -14,6 +14,8 @@ export interface BorderRange {
|
|
14
14
|
};
|
15
15
|
}
|
16
16
|
export type DetailedSettings = (SimpleCellCoords | BorderRange) & {
|
17
|
+
start?: BorderOptions | string;
|
18
|
+
end?: BorderOptions | string;
|
17
19
|
left?: BorderOptions | string;
|
18
20
|
right?: BorderOptions | string;
|
19
21
|
top?: BorderOptions | string;
|
@@ -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
|
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
|
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.
|