handsontable 0.0.0-next-ff10728-20250410 → 0.0.0-next-d9b3885-20250415
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/3rdparty/walkontable/src/cell/range.js +14 -0
- package/3rdparty/walkontable/src/cell/range.mjs +14 -0
- package/3rdparty/walkontable/src/renderer/rowHeaders.js +4 -1
- package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +4 -1
- package/3rdparty/walkontable/src/selection/border/border.js +5 -0
- package/3rdparty/walkontable/src/selection/border/border.mjs +5 -0
- package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.js +3 -4
- package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.mjs +3 -4
- package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.js +8 -10
- package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.mjs +8 -10
- package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.js +3 -4
- package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.mjs +3 -4
- package/3rdparty/walkontable/src/table.js +5 -2
- package/3rdparty/walkontable/src/table.mjs +5 -2
- package/CHANGELOG.md +39 -0
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core/focusCatcher/focusDetector.js +1 -1
- package/core/focusCatcher/focusDetector.mjs +2 -2
- package/core/hooks/constants.js +266 -0
- package/core/hooks/constants.mjs +266 -0
- package/core/hooks/index.d.ts +1 -0
- package/core.d.ts +0 -1
- package/core.js +71 -25
- package/core.mjs +72 -26
- package/dataMap/dataMap.js +0 -7
- package/dataMap/dataMap.mjs +0 -7
- package/dataMap/metaManager/metaSchema.js +28 -0
- package/dataMap/metaManager/metaSchema.mjs +28 -0
- package/dist/handsontable.css +3 -3
- package/dist/handsontable.full.css +3 -3
- package/dist/handsontable.full.js +1375 -350
- package/dist/handsontable.full.min.css +3 -3
- package/dist/handsontable.full.min.js +17 -17
- package/dist/handsontable.js +1375 -350
- package/dist/handsontable.min.css +3 -3
- package/dist/handsontable.min.js +18 -18
- package/editorManager.js +1 -7
- package/editorManager.mjs +1 -7
- package/editors/autocompleteEditor/autocompleteEditor.js +14 -4
- package/editors/autocompleteEditor/autocompleteEditor.mjs +14 -4
- package/editors/textEditor/textEditor.js +1 -1
- package/editors/textEditor/textEditor.mjs +2 -2
- package/helpers/browser.js +1 -1
- package/helpers/browser.mjs +1 -1
- package/helpers/dom/element.js +2 -2
- package/helpers/dom/element.mjs +1 -1
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/helpers/object.js +3 -0
- package/helpers/object.mjs +3 -0
- package/package.json +1 -1
- package/plugins/autoColumnSize/autoColumnSize.js +48 -1
- package/plugins/autoColumnSize/autoColumnSize.mjs +48 -1
- package/plugins/autoRowSize/autoRowSize.js +46 -6
- package/plugins/autoRowSize/autoRowSize.mjs +46 -6
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +13 -0
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +13 -0
- package/plugins/collapsibleColumns/collapsibleColumns.js +31 -0
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +31 -0
- package/plugins/columnSorting/columnSorting.js +0 -4
- package/plugins/columnSorting/columnSorting.mjs +0 -4
- package/plugins/columnSummary/columnSummary.js +33 -0
- package/plugins/columnSummary/columnSummary.mjs +33 -0
- package/plugins/comments/comments.js +54 -0
- package/plugins/comments/comments.mjs +54 -0
- package/plugins/contextMenu/menu/defaultShortcutsList.js +2 -2
- package/plugins/contextMenu/menu/defaultShortcutsList.mjs +2 -2
- package/plugins/contextMenu/menu/menu.js +1 -0
- package/plugins/contextMenu/menu/menu.mjs +1 -0
- package/plugins/contextMenu/menu/positioner.js +10 -2
- package/plugins/contextMenu/menu/positioner.mjs +10 -2
- package/plugins/copyPaste/copyPaste.js +12 -15
- package/plugins/copyPaste/copyPaste.mjs +13 -16
- package/plugins/copyPaste/pasteEvent.js +3 -0
- package/plugins/copyPaste/pasteEvent.mjs +3 -0
- package/plugins/dropdownMenu/dropdownMenu.js +15 -0
- package/plugins/dropdownMenu/dropdownMenu.mjs +15 -0
- package/plugins/exportFile/exportFile.js +58 -0
- package/plugins/exportFile/exportFile.mjs +58 -0
- package/plugins/filters/filters.js +99 -24
- package/plugins/filters/filters.mjs +99 -24
- package/plugins/filters/ui/multipleSelect.js +7 -1
- package/plugins/filters/ui/multipleSelect.mjs +7 -1
- package/plugins/hiddenColumns/hiddenColumns.js +65 -1
- package/plugins/hiddenColumns/hiddenColumns.mjs +65 -1
- package/plugins/hiddenRows/hiddenRows.js +65 -1
- package/plugins/hiddenRows/hiddenRows.mjs +65 -1
- package/plugins/manualColumnResize/manualColumnResize.js +4 -6
- package/plugins/manualColumnResize/manualColumnResize.mjs +4 -6
- package/plugins/manualRowResize/manualRowResize.js +4 -6
- package/plugins/manualRowResize/manualRowResize.mjs +4 -6
- package/plugins/mergeCells/mergeCells.js +26 -29
- package/plugins/mergeCells/mergeCells.mjs +26 -29
- package/plugins/mergeCells/renderer.js +15 -0
- package/plugins/mergeCells/renderer.mjs +15 -0
- package/plugins/mergeCells/utils.js +31 -0
- package/plugins/mergeCells/utils.mjs +27 -0
- package/plugins/nestedHeaders/nestedHeaders.js +25 -0
- package/plugins/nestedHeaders/nestedHeaders.mjs +25 -0
- package/plugins/nestedRows/data/dataManager.js +2 -2
- package/plugins/nestedRows/data/dataManager.mjs +2 -2
- package/plugins/stretchColumns/stretchColumns.js +13 -0
- package/plugins/stretchColumns/stretchColumns.mjs +13 -0
- package/plugins/trimRows/trimRows.js +61 -0
- package/plugins/trimRows/trimRows.mjs +61 -0
- package/plugins/undoRedo/actions/removeColumn.js +19 -14
- package/plugins/undoRedo/actions/removeColumn.mjs +19 -14
- package/plugins/undoRedo/actions/removeRow.js +12 -4
- package/plugins/undoRedo/actions/removeRow.mjs +12 -4
- package/selection/selection.js +3 -1
- package/selection/selection.mjs +3 -1
- package/styles/handsontable.css +14 -15
- package/styles/handsontable.min.css +3 -3
- package/styles/ht-theme-horizon.css +2 -2
- package/styles/ht-theme-horizon.min.css +2 -2
- package/styles/ht-theme-main.css +2 -2
- package/styles/ht-theme-main.min.css +2 -2
- package/tableView.js +5 -8
- package/tableView.mjs +5 -8
- package/utils/ghostTable.js +3 -0
- package/utils/ghostTable.mjs +3 -0
package/tableView.mjs
CHANGED
|
@@ -158,16 +158,16 @@ class TableView {
|
|
|
158
158
|
*/
|
|
159
159
|
render() {
|
|
160
160
|
if (!this.hot.isRenderSuspended()) {
|
|
161
|
-
|
|
161
|
+
const isFullRender = this.hot.forceFullRender;
|
|
162
|
+
this.hot.runHooks('beforeRender', isFullRender);
|
|
162
163
|
if (this.postponedAdjustElementsSize) {
|
|
163
164
|
this.postponedAdjustElementsSize = false;
|
|
164
165
|
this.adjustElementsSize();
|
|
165
166
|
}
|
|
166
|
-
this._wt.draw(!
|
|
167
|
+
this._wt.draw(!isFullRender);
|
|
167
168
|
_assertClassBrand(_TableView_brand, this, _updateScrollbarClassNames).call(this);
|
|
168
|
-
this.hot.runHooks('afterRender',
|
|
169
|
+
this.hot.runHooks('afterRender', isFullRender);
|
|
169
170
|
this.hot.forceFullRender = false;
|
|
170
|
-
this.hot.renderCall = false;
|
|
171
171
|
}
|
|
172
172
|
}
|
|
173
173
|
|
|
@@ -1074,8 +1074,7 @@ class TableView {
|
|
|
1074
1074
|
this.eventManager.addEventListener(this.hot.rootDocument.documentElement, 'click', () => {
|
|
1075
1075
|
if (this.settings.observeDOMVisibility) {
|
|
1076
1076
|
if (this._wt.drawInterrupted) {
|
|
1077
|
-
this.hot.
|
|
1078
|
-
this.render();
|
|
1077
|
+
this.hot.render();
|
|
1079
1078
|
}
|
|
1080
1079
|
}
|
|
1081
1080
|
});
|
|
@@ -1148,7 +1147,6 @@ class TableView {
|
|
|
1148
1147
|
*/
|
|
1149
1148
|
beforeRender(force, skipRender) {
|
|
1150
1149
|
if (force) {
|
|
1151
|
-
// this.hot.forceFullRender = did Handsontable request full render?
|
|
1152
1150
|
this.hot.runHooks('beforeViewRender', this.hot.forceFullRender, skipRender);
|
|
1153
1151
|
}
|
|
1154
1152
|
}
|
|
@@ -1162,7 +1160,6 @@ class TableView {
|
|
|
1162
1160
|
*/
|
|
1163
1161
|
afterRender(force) {
|
|
1164
1162
|
if (force) {
|
|
1165
|
-
// this.hot.forceFullRender = did Handsontable request full render?
|
|
1166
1163
|
this.hot.runHooks('afterViewRender', this.hot.forceFullRender);
|
|
1167
1164
|
}
|
|
1168
1165
|
}
|
package/utils/ghostTable.js
CHANGED
|
@@ -85,6 +85,9 @@ class GhostTable {
|
|
|
85
85
|
this.table = this.createTable(this.hot.table.className);
|
|
86
86
|
this.table.colGroup.appendChild(this.createColGroupsCol(row));
|
|
87
87
|
this.table.tr.appendChild(this.createRow(row));
|
|
88
|
+
if (row === 0) {
|
|
89
|
+
(0, _element.addClass)(this.table.table, 'htGhostTableFirstRow');
|
|
90
|
+
}
|
|
88
91
|
this.container.container.appendChild(this.table.fragment);
|
|
89
92
|
rowObject.table = this.table.table;
|
|
90
93
|
}
|
package/utils/ghostTable.mjs
CHANGED
|
@@ -82,6 +82,9 @@ class GhostTable {
|
|
|
82
82
|
this.table = this.createTable(this.hot.table.className);
|
|
83
83
|
this.table.colGroup.appendChild(this.createColGroupsCol(row));
|
|
84
84
|
this.table.tr.appendChild(this.createRow(row));
|
|
85
|
+
if (row === 0) {
|
|
86
|
+
addClass(this.table.table, 'htGhostTableFirstRow');
|
|
87
|
+
}
|
|
85
88
|
this.container.container.appendChild(this.table.fragment);
|
|
86
89
|
rowObject.table = this.table.table;
|
|
87
90
|
}
|