handsontable 15.0.0 → 15.1.0-next-dfdf994-20250206

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.
Files changed (168) hide show
  1. package/3rdparty/walkontable/src/index.js +2 -0
  2. package/3rdparty/walkontable/src/index.mjs +2 -1
  3. package/3rdparty/walkontable/src/overlays.js +2 -39
  4. package/3rdparty/walkontable/src/overlays.mjs +2 -39
  5. package/3rdparty/walkontable/src/renderer/_base.js +3 -4
  6. package/3rdparty/walkontable/src/renderer/_base.mjs +2 -2
  7. package/3rdparty/walkontable/src/renderer/cells.js +7 -11
  8. package/3rdparty/walkontable/src/renderer/cells.mjs +6 -9
  9. package/3rdparty/walkontable/src/renderer/colGroup.js +6 -7
  10. package/3rdparty/walkontable/src/renderer/colGroup.mjs +5 -5
  11. package/3rdparty/walkontable/src/renderer/columnHeaders.js +4 -5
  12. package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +3 -3
  13. package/3rdparty/walkontable/src/renderer/index.js +18 -19
  14. package/3rdparty/walkontable/src/renderer/index.mjs +6 -6
  15. package/3rdparty/walkontable/src/renderer/rowHeaders.js +6 -7
  16. package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +5 -5
  17. package/3rdparty/walkontable/src/renderer/rows.js +23 -11
  18. package/3rdparty/walkontable/src/renderer/rows.mjs +23 -10
  19. package/3rdparty/walkontable/src/renderer/table.js +1 -1
  20. package/3rdparty/walkontable/src/renderer/table.mjs +1 -1
  21. package/3rdparty/walkontable/src/selection/border/border.js +10 -2
  22. package/3rdparty/walkontable/src/selection/border/border.mjs +10 -2
  23. package/3rdparty/walkontable/src/utils/nodesPool.js +21 -6
  24. package/3rdparty/walkontable/src/utils/nodesPool.mjs +21 -6
  25. package/3rdparty/walkontable/src/utils/orderView/index.js +4 -5
  26. package/3rdparty/walkontable/src/utils/orderView/index.mjs +2 -2
  27. package/3rdparty/walkontable/src/utils/orderView/sharedView.js +3 -4
  28. package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +2 -2
  29. package/3rdparty/walkontable/src/utils/orderView/view.js +60 -76
  30. package/3rdparty/walkontable/src/utils/orderView/view.mjs +59 -74
  31. package/3rdparty/walkontable/src/utils/orderView/viewDiffer/index.js +138 -0
  32. package/3rdparty/walkontable/src/utils/orderView/viewDiffer/index.mjs +135 -0
  33. package/3rdparty/walkontable/src/utils/orderView/viewDiffer/viewOrder.js +72 -0
  34. package/3rdparty/walkontable/src/utils/orderView/viewDiffer/viewOrder.mjs +68 -0
  35. package/3rdparty/walkontable/src/utils/orderView/viewSize.js +1 -1
  36. package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +1 -1
  37. package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +4 -5
  38. package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +3 -3
  39. package/CHANGELOG.md +54 -0
  40. package/README.md +3 -3
  41. package/base.js +2 -2
  42. package/base.mjs +2 -2
  43. package/cellTypes/dropdownType/dropdownType.js +4 -2
  44. package/cellTypes/dropdownType/dropdownType.mjs +4 -2
  45. package/core.js +39 -38
  46. package/core.mjs +36 -35
  47. package/dataMap/dataMap.js +8 -0
  48. package/dataMap/dataMap.mjs +8 -0
  49. package/dataMap/dataSource.js +4 -0
  50. package/dataMap/dataSource.mjs +4 -0
  51. package/dataMap/metaManager/lazyFactoryMap.js +8 -5
  52. package/dataMap/metaManager/lazyFactoryMap.mjs +8 -5
  53. package/dataMap/metaManager/metaSchema.js +24 -9
  54. package/dataMap/metaManager/metaSchema.mjs +24 -9
  55. package/dist/handsontable.css +6 -2
  56. package/dist/handsontable.full.css +6 -2
  57. package/dist/handsontable.full.js +8020 -6915
  58. package/dist/handsontable.full.min.css +3 -3
  59. package/dist/handsontable.full.min.js +530 -528
  60. package/dist/handsontable.js +3827 -2902
  61. package/dist/handsontable.min.css +3 -3
  62. package/dist/handsontable.min.js +35 -33
  63. package/editors/autocompleteEditor/autocompleteEditor.js +1 -3
  64. package/editors/autocompleteEditor/autocompleteEditor.mjs +1 -3
  65. package/editors/dateEditor/dateEditor.js +4 -0
  66. package/editors/dateEditor/dateEditor.mjs +4 -0
  67. package/editors/dropdownEditor/dropdownEditor.js +3 -16
  68. package/editors/dropdownEditor/dropdownEditor.mjs +3 -16
  69. package/editors/handsontableEditor/handsontableEditor.js +4 -4
  70. package/editors/handsontableEditor/handsontableEditor.mjs +4 -4
  71. package/focusManager.js +1 -1
  72. package/focusManager.mjs +1 -1
  73. package/helpers/dom/element.d.ts +0 -1
  74. package/helpers/mixed.js +2 -2
  75. package/helpers/mixed.mjs +2 -2
  76. package/helpers/object.js +4 -0
  77. package/helpers/object.mjs +4 -0
  78. package/package.json +2 -2
  79. package/plugins/base/base.js +0 -7
  80. package/plugins/base/base.mjs +0 -7
  81. package/plugins/comments/comments.js +12 -3
  82. package/plugins/comments/comments.mjs +12 -3
  83. package/plugins/contextMenu/contextMenu.js +2 -7
  84. package/plugins/contextMenu/contextMenu.mjs +2 -7
  85. package/plugins/contextMenu/menu/menu.js +2 -2
  86. package/plugins/contextMenu/menu/menu.mjs +2 -2
  87. package/plugins/contextMenu/predefinedItems/clearColumn.js +15 -4
  88. package/plugins/contextMenu/predefinedItems/clearColumn.mjs +15 -4
  89. package/plugins/filters/conditionCollection.js +8 -7
  90. package/plugins/filters/conditionCollection.mjs +8 -7
  91. package/plugins/filters/filters.js +26 -16
  92. package/plugins/filters/filters.mjs +26 -16
  93. package/plugins/filters/utils.js +7 -24
  94. package/plugins/filters/utils.mjs +7 -24
  95. package/plugins/hiddenColumns/hiddenColumns.js +1 -3
  96. package/plugins/hiddenColumns/hiddenColumns.mjs +1 -3
  97. package/plugins/hiddenRows/hiddenRows.js +1 -3
  98. package/plugins/hiddenRows/hiddenRows.mjs +1 -3
  99. package/plugins/manualRowMove/manualRowMove.js +1 -1
  100. package/plugins/manualRowMove/manualRowMove.mjs +1 -1
  101. package/plugins/mergeCells/calculations/autofill.js +60 -44
  102. package/plugins/mergeCells/calculations/autofill.mjs +60 -44
  103. package/plugins/mergeCells/cellsCollection.js +25 -8
  104. package/plugins/mergeCells/cellsCollection.mjs +25 -8
  105. package/plugins/mergeCells/mergeCells.js +15 -16
  106. package/plugins/mergeCells/mergeCells.mjs +15 -16
  107. package/plugins/nestedHeaders/nestedHeaders.js +6 -1
  108. package/plugins/nestedHeaders/nestedHeaders.mjs +6 -1
  109. package/plugins/nestedHeaders/stateManager/index.js +1 -2
  110. package/plugins/nestedHeaders/stateManager/index.mjs +1 -2
  111. package/plugins/nestedHeaders/utils/ghostTable.js +4 -0
  112. package/plugins/nestedHeaders/utils/ghostTable.mjs +4 -0
  113. package/plugins/nestedRows/utils/rowMoveController.js +1 -6
  114. package/plugins/nestedRows/utils/rowMoveController.mjs +1 -6
  115. package/plugins/undoRedo/actions/_base.js +19 -0
  116. package/plugins/undoRedo/actions/_base.mjs +15 -0
  117. package/plugins/undoRedo/actions/cellAlignment.js +85 -0
  118. package/plugins/undoRedo/actions/cellAlignment.mjs +81 -0
  119. package/plugins/undoRedo/actions/columnMove.js +84 -0
  120. package/plugins/undoRedo/actions/columnMove.mjs +80 -0
  121. package/plugins/undoRedo/actions/columnSort.js +73 -0
  122. package/plugins/undoRedo/actions/columnSort.mjs +69 -0
  123. package/plugins/undoRedo/actions/createColumn.js +60 -0
  124. package/plugins/undoRedo/actions/createColumn.mjs +56 -0
  125. package/plugins/undoRedo/actions/createRow.js +65 -0
  126. package/plugins/undoRedo/actions/createRow.mjs +61 -0
  127. package/plugins/undoRedo/actions/dataChange.js +123 -0
  128. package/plugins/undoRedo/actions/dataChange.mjs +119 -0
  129. package/plugins/undoRedo/actions/filters.js +66 -0
  130. package/plugins/undoRedo/actions/filters.mjs +62 -0
  131. package/plugins/undoRedo/actions/index.js +27 -0
  132. package/plugins/undoRedo/actions/index.mjs +23 -0
  133. package/plugins/undoRedo/actions/mergeCells.js +63 -0
  134. package/plugins/undoRedo/actions/mergeCells.mjs +59 -0
  135. package/plugins/undoRedo/actions/removeColumn.js +176 -0
  136. package/plugins/undoRedo/actions/removeColumn.mjs +172 -0
  137. package/plugins/undoRedo/actions/removeRow.js +119 -0
  138. package/plugins/undoRedo/actions/removeRow.mjs +115 -0
  139. package/plugins/undoRedo/actions/rowMove.js +84 -0
  140. package/plugins/undoRedo/actions/rowMove.mjs +80 -0
  141. package/plugins/undoRedo/actions/unmergeCells.js +56 -0
  142. package/plugins/undoRedo/actions/unmergeCells.mjs +52 -0
  143. package/plugins/undoRedo/index.js +3 -4
  144. package/plugins/undoRedo/index.mjs +1 -2
  145. package/plugins/undoRedo/undoRedo.js +277 -879
  146. package/plugins/undoRedo/undoRedo.mjs +277 -880
  147. package/plugins/undoRedo/utils.js +37 -0
  148. package/plugins/undoRedo/utils.mjs +33 -0
  149. package/renderers/checkboxRenderer/checkboxRenderer.js +8 -1
  150. package/renderers/checkboxRenderer/checkboxRenderer.mjs +8 -1
  151. package/shortcutContexts/commands/moveCellSelection/downByViewportHeight.js +1 -0
  152. package/shortcutContexts/commands/moveCellSelection/downByViewportHeight.mjs +1 -0
  153. package/shortcutContexts/commands/moveCellSelection/upByViewportHeight.js +2 -1
  154. package/shortcutContexts/commands/moveCellSelection/upByViewportHeight.mjs +2 -1
  155. package/styles/handsontable.css +75 -103
  156. package/styles/handsontable.min.css +3 -3
  157. package/styles/ht-theme-horizon.css +2 -2
  158. package/styles/ht-theme-horizon.min.css +2 -2
  159. package/styles/ht-theme-main.css +2 -2
  160. package/styles/ht-theme-main.min.css +2 -2
  161. package/tableView.js +17 -1
  162. package/tableView.mjs +17 -1
  163. package/utils/autoResize.js +1 -1
  164. package/utils/autoResize.mjs +1 -1
  165. package/utils/parseTable.js +1 -1
  166. package/utils/parseTable.mjs +1 -1
  167. package/validators/dateValidator/dateValidator.js +1 -1
  168. package/validators/dateValidator/dateValidator.mjs +1 -1
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.getCellMetas = getCellMetas;
5
+ require("core-js/modules/es.array.push.js");
6
+ require("core-js/modules/es.object.from-entries.js");
7
+ require("core-js/modules/esnext.iterator.constructor.js");
8
+ require("core-js/modules/esnext.iterator.filter.js");
9
+ var _number = require("../../helpers/number");
10
+ /**
11
+ * Gets all cell metas from the provided range.
12
+ *
13
+ * @param {Core} hot The Handsontable instance.
14
+ * @param {number} fromRow The starting row index.
15
+ * @param {number} toRow The ending row index.
16
+ * @param {number} fromColumn The starting column index.
17
+ * @param {number} toColumn The ending column index.
18
+ * @returns {Array} Returns an array of cell metas.
19
+ */
20
+ function getCellMetas(hot, fromRow, toRow, fromColumn, toColumn) {
21
+ const genericKeys = ['visualRow', 'visualCol', 'row', 'col', 'prop'];
22
+ const genericKeysLength = genericKeys.length;
23
+ const cellMetas = [];
24
+ (0, _number.rangeEach)(fromColumn, toColumn, columnIndex => {
25
+ (0, _number.rangeEach)(fromRow, toRow, rowIndex => {
26
+ const cellMeta = hot.getCellMeta(rowIndex, columnIndex);
27
+ if (Object.keys(cellMeta).length !== genericKeysLength) {
28
+ const uniqueMeta = Object.fromEntries(Object.entries(cellMeta).filter(_ref => {
29
+ let [key] = _ref;
30
+ return genericKeys.includes(key) === false;
31
+ }));
32
+ cellMetas.push([cellMeta.visualRow, cellMeta.visualCol, uniqueMeta]);
33
+ }
34
+ });
35
+ });
36
+ return cellMetas;
37
+ }
@@ -0,0 +1,33 @@
1
+ import "core-js/modules/es.array.push.js";
2
+ import "core-js/modules/es.object.from-entries.js";
3
+ import "core-js/modules/esnext.iterator.constructor.js";
4
+ import "core-js/modules/esnext.iterator.filter.js";
5
+ import { rangeEach } from "../../helpers/number.mjs";
6
+ /**
7
+ * Gets all cell metas from the provided range.
8
+ *
9
+ * @param {Core} hot The Handsontable instance.
10
+ * @param {number} fromRow The starting row index.
11
+ * @param {number} toRow The ending row index.
12
+ * @param {number} fromColumn The starting column index.
13
+ * @param {number} toColumn The ending column index.
14
+ * @returns {Array} Returns an array of cell metas.
15
+ */
16
+ export function getCellMetas(hot, fromRow, toRow, fromColumn, toColumn) {
17
+ const genericKeys = ['visualRow', 'visualCol', 'row', 'col', 'prop'];
18
+ const genericKeysLength = genericKeys.length;
19
+ const cellMetas = [];
20
+ rangeEach(fromColumn, toColumn, columnIndex => {
21
+ rangeEach(fromRow, toRow, rowIndex => {
22
+ const cellMeta = hot.getCellMeta(rowIndex, columnIndex);
23
+ if (Object.keys(cellMeta).length !== genericKeysLength) {
24
+ const uniqueMeta = Object.fromEntries(Object.entries(cellMeta).filter(_ref => {
25
+ let [key] = _ref;
26
+ return genericKeys.includes(key) === false;
27
+ }));
28
+ cellMetas.push([cellMeta.visualRow, cellMeta.visualCol, uniqueMeta]);
29
+ }
30
+ });
31
+ });
32
+ return cellMetas;
33
+ }
@@ -369,7 +369,14 @@ function createInput(rootDocument) {
369
369
  function createLabel(rootDocument, text, fullWidth) {
370
370
  const label = rootDocument.createElement('label');
371
371
  label.className = `htCheckboxRendererLabel ${fullWidth ? 'fullWidth' : ''}`;
372
- label.appendChild(rootDocument.createTextNode(text));
372
+ const textNode = rootDocument.createTextNode(text);
373
+ if (fullWidth) {
374
+ const span = rootDocument.createElement('span');
375
+ span.appendChild(textNode);
376
+ label.appendChild(span);
377
+ } else {
378
+ label.appendChild(textNode);
379
+ }
373
380
  return label.cloneNode(true);
374
381
  }
375
382
 
@@ -364,7 +364,14 @@ function createInput(rootDocument) {
364
364
  function createLabel(rootDocument, text, fullWidth) {
365
365
  const label = rootDocument.createElement('label');
366
366
  label.className = `htCheckboxRendererLabel ${fullWidth ? 'fullWidth' : ''}`;
367
- label.appendChild(rootDocument.createTextNode(text));
367
+ const textNode = rootDocument.createTextNode(text);
368
+ if (fullWidth) {
369
+ const span = rootDocument.createElement('span');
370
+ span.appendChild(textNode);
371
+ label.appendChild(span);
372
+ } else {
373
+ label.appendChild(textNode);
374
+ }
368
375
  return label.cloneNode(true);
369
376
  }
370
377
 
@@ -12,6 +12,7 @@ const command = exports.command = {
12
12
  row
13
13
  } = hot.getSelectedRangeLast().highlight;
14
14
  let rowsStep = hot.countVisibleRows() + columnHeadersCount;
15
+ rowsStep = rowsStep === 0 ? 1 : rowsStep;
15
16
 
16
17
  // if the last row is currently selected move the focus to the first row (if autoWrap is enabled)
17
18
  if (row === hot.countRows() - 1) {
@@ -9,6 +9,7 @@ export const command = {
9
9
  row
10
10
  } = hot.getSelectedRangeLast().highlight;
11
11
  let rowsStep = hot.countVisibleRows() + columnHeadersCount;
12
+ rowsStep = rowsStep === 0 ? 1 : rowsStep;
12
13
 
13
14
  // if the last row is currently selected move the focus to the first row (if autoWrap is enabled)
14
15
  if (row === hot.countRows() - 1) {
@@ -11,7 +11,8 @@ const command = exports.command = {
11
11
  const {
12
12
  row
13
13
  } = hot.getSelectedRangeLast().highlight;
14
- let rowsStep = -(hot.countVisibleRows() + columnHeadersCount);
14
+ let rowsStep = hot.countVisibleRows() + columnHeadersCount;
15
+ rowsStep = rowsStep === 0 ? -1 : -rowsStep;
15
16
 
16
17
  // if the first row is currently selected move the focus to the last row (if autoWrap is enabled)
17
18
  if (row === -columnHeadersCount) {
@@ -8,7 +8,8 @@ export const command = {
8
8
  const {
9
9
  row
10
10
  } = hot.getSelectedRangeLast().highlight;
11
- let rowsStep = -(hot.countVisibleRows() + columnHeadersCount);
11
+ let rowsStep = hot.countVisibleRows() + columnHeadersCount;
12
+ rowsStep = rowsStep === 0 ? -1 : -rowsStep;
12
13
 
13
14
  // if the first row is currently selected move the focus to the last row (if autoWrap is enabled)
14
15
  if (row === -columnHeadersCount) {
@@ -25,8 +25,8 @@
25
25
  * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
26
26
  * USE OR INABILITY TO USE THIS SOFTWARE.
27
27
  *
28
- * Version: 15.0.0
29
- * Release date: 16/12/2024 (built at 16/12/2024 13:19:40)
28
+ * Version: 15.1.0-next-dfdf994-20250206
29
+ * Release date: 12/02/2025 (built at 06/02/2025 09:04:58)
30
30
  */
31
31
  .ht-wrapper:not([class*=ht-theme]) {
32
32
  --ht-cell-horizontal-padding: 8px;
@@ -151,6 +151,16 @@
151
151
  border-inline-start-width: 0;
152
152
  border-inline-end-width: 1px;
153
153
  border-bottom-width: 1px;
154
+ border-inline-end-color: var(--ht-border-color);
155
+ }
156
+ .handsontable th:last-child.ht__active_highlight {
157
+ border-inline-end-color: var(--ht-header-active-border-color);
158
+ }
159
+ .handsontable th:first-child {
160
+ border-inline-start-color: var(--ht-border-color);
161
+ }
162
+ .handsontable th:first-child.ht__active_highlight {
163
+ border-inline-start-color: var(--ht-header-active-border-color);
154
164
  }
155
165
  .handsontable th:first-child, .handsontable th:nth-child(2) {
156
166
  border-inline-start-width: 1px;
@@ -234,6 +244,23 @@
234
244
  .handsontable thead tr th .relative:has(.collapsibleIndicator, .changeType) .colHeader {
235
245
  max-width: calc(100% - (var(--ht-icon-size) + var(--ht-gap-size)));
236
246
  }
247
+ .handsontable tr:first-child th,
248
+ .handsontable tr:first-child td {
249
+ border-top-color: var(--ht-border-color);
250
+ border-top-width: 1px;
251
+ }
252
+ .handsontable tr:first-child th.ht__active_highlight,
253
+ .handsontable tr:first-child td.ht__active_highlight {
254
+ border-top-color: var(--ht-header-active-border-color);
255
+ }
256
+ .handsontable tr:last-child th,
257
+ .handsontable tr:last-child td {
258
+ border-bottom-color: var(--ht-border-color);
259
+ }
260
+ .handsontable tr:last-child th.ht__active_highlight,
261
+ .handsontable tr:last-child td.ht__active_highlight {
262
+ border-bottom-color: var(--ht-header-active-border-color);
263
+ }
237
264
  .handsontable thead tr:not(:last-child) th {
238
265
  /* Fix for - nested columns with hidden column */
239
266
  overflow: hidden;
@@ -327,19 +354,10 @@
327
354
  .handsontable.htRowHeaders thead tr th:nth-child(2) {
328
355
  border-inline-start-width: 1px;
329
356
  }
330
- .handsontable tr:first-child th,
331
- .handsontable tr:first-child td {
332
- border-top-width: 1px;
333
- }
334
- .handsontable tr:last-child th,
335
- .handsontable tr:last-child td {
336
- border-bottom-color: var(--ht-border-color);
337
- }
338
- .handsontable tr:last-child th.ht__active_highlight,
339
- .handsontable tr:last-child td.ht__active_highlight {
340
- border-bottom-color: var(--ht-header-active-border-color);
341
- }
342
- .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable tbody tr th, .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
357
+ .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) tbody tr th,
358
+ .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) thead tr th:first-child,
359
+ .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.htGhostTable) tbody tr th,
360
+ .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top):not(.htGhostTable) thead tr th:first-child {
343
361
  border-inline-end-width: 0;
344
362
  border-inline-start-width: 1px;
345
363
  }
@@ -594,7 +612,7 @@
594
612
  }
595
613
 
596
614
  .ht_editor_visible {
597
- z-index: 140;
615
+ z-index: 200;
598
616
  }
599
617
 
600
618
  .handsontable td.area {
@@ -724,11 +742,6 @@
724
742
  z-index: 10;
725
743
  }
726
744
 
727
- [dir=rtl].handsontable .wtBorder.corner {
728
- margin-left: 0;
729
- margin-right: -4px;
730
- }
731
-
732
745
  .hot-display-license-info {
733
746
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Helvetica Neue, Arial, sans-serif;
734
747
  padding: var(--ht-license-vertical-padding, 16px) var(--ht-license-horizontal-padding, 16px);
@@ -781,6 +794,13 @@
781
794
  vertical-align: middle;
782
795
  cursor: pointer;
783
796
  appearance: none;
797
+ margin-top: -2px;
798
+ }
799
+ .handsontable .htCheckboxRendererInput:first-child {
800
+ margin-inline-end: var(--ht-gap-size);
801
+ }
802
+ .handsontable .htCheckboxRendererInput:last-child {
803
+ margin-inline-start: var(--ht-gap-size);
784
804
  }
785
805
  .handsontable .htCheckboxRendererInput::before {
786
806
  content: "";
@@ -858,10 +878,6 @@
858
878
  color: inherit;
859
879
  margin: 0;
860
880
  }
861
- .handsontable .htCheckboxRendererLabel .htCheckboxRendererInput {
862
- margin-top: -2px;
863
- margin-inline-end: var(--ht-gap-size);
864
- }
865
881
  .handsontable .htCheckboxRendererLabel.fullWidth {
866
882
  width: 100%;
867
883
  }
@@ -939,7 +955,7 @@
939
955
  width: 100%;
940
956
  height: 100%;
941
957
  padding: calc(var(--ht-cell-vertical-padding, 4px) + 1px) calc(var(--ht-cell-horizontal-padding, 8px) + 1px);
942
- padding-right: 26px;
958
+ padding-inline-end: 26px;
943
959
  margin: 0;
944
960
  white-space: nowrap;
945
961
  overflow: hidden;
@@ -1005,7 +1021,7 @@
1005
1021
  visibility: hidden;
1006
1022
  }
1007
1023
  .handsontable.listbox table strong {
1008
- font-weight: var(--ht-font-weight);
1024
+ font-weight: bold;
1009
1025
  color: inherit;
1010
1026
  }
1011
1027
  .handsontable.listbox table tr:hover td {
@@ -1151,10 +1167,21 @@
1151
1167
  background: var(--ht-menu-item-hover-color);
1152
1168
  }
1153
1169
 
1170
+ [dir=rtl].htDatepickerHolder .pika-single .pika-next {
1171
+ transform: rotate(180deg);
1172
+ margin-left: 0;
1173
+ margin-right: auto;
1174
+ }
1175
+ [dir=rtl].htDatepickerHolder .pika-single .pika-prev {
1176
+ transform: rotate(180deg);
1177
+ margin-left: auto;
1178
+ margin-right: 0;
1179
+ }
1180
+
1154
1181
  .handsontable .htUISelectCaption {
1155
1182
  width: 100%;
1156
1183
  padding: var(--ht-input-vertical-padding) var(--ht-input-horizontal-padding);
1157
- padding-right: calc(var(--ht-input-horizontal-padding) + var(--ht-icon-size));
1184
+ padding-inline-end: calc(var(--ht-input-horizontal-padding) + var(--ht-icon-size));
1158
1185
  margin: 0;
1159
1186
  font-family: inherit;
1160
1187
  font-size: var(--ht-font-size);
@@ -1205,6 +1232,11 @@
1205
1232
  background-color: var(--ht-input-focus-background-color);
1206
1233
  }
1207
1234
 
1235
+ [dir=rtl].handsontable .htUISelectCaption::after {
1236
+ right: auto;
1237
+ left: calc(var(--ht-input-horizontal-padding) - var(--ht-icon-size) / 4);
1238
+ }
1239
+
1208
1240
  .handsontable .htFiltersMenuCondition .htUIInput input,
1209
1241
  .handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input {
1210
1242
  width: 100%;
@@ -1496,6 +1528,9 @@
1496
1528
  .handsontable thead th.hiddenHeader:not(:first-of-type) {
1497
1529
  display: none;
1498
1530
  }
1531
+ .handsontable thead th.hiddenHeaderText .colHeader {
1532
+ opacity: 0;
1533
+ }
1499
1534
 
1500
1535
  .handsontable th.ht_nestingLevels > .relative {
1501
1536
  display: flex;
@@ -1839,7 +1874,7 @@
1839
1874
  margin: 0 calc(var(--ht-gap-size, 2px) * -1);
1840
1875
  }
1841
1876
  .handsontable .htUIMultipleSelectHot {
1842
- --ht-cell-vertical-padding: calc(
1877
+ --ht-cell-horizontal-padding: calc(
1843
1878
  var(--ht-menu-item-horizontal-padding, 2px) +
1844
1879
  var(--ht-gap-size, 2px) * 2);
1845
1880
  overflow: initial !important;
@@ -1866,7 +1901,7 @@
1866
1901
  }
1867
1902
  .handsontable .htUIMultipleSelectHot .wtHolder td {
1868
1903
  height: auto;
1869
- padding: 4px var(--ht-cell-vertical-padding);
1904
+ padding: 4px var(--ht-cell-horizontal-padding);
1870
1905
  }
1871
1906
  .handsontable .htUIClearAll,
1872
1907
  .handsontable .htUISelectAll {
@@ -1876,6 +1911,8 @@
1876
1911
  }
1877
1912
  .handsontable .htUIClearAll a,
1878
1913
  .handsontable .htUISelectAll a {
1914
+ font-size: var(--ht-font-size);
1915
+ line-height: var(--ht-line-height);
1879
1916
  color: var(--ht-link-color);
1880
1917
  border-radius: var(--ht-button-border-radius);
1881
1918
  }
@@ -2068,79 +2105,6 @@
2068
2105
  .handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight {
2069
2106
  box-shadow: none;
2070
2107
  }
2071
- .handsontable .ht_clone_top_inline_start_corner th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
2072
- .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
2073
- .handsontable .ht_clone_top th.ht__active_highlight,
2074
- .handsontable .ht_clone_top td.ht__active_highlight,
2075
- .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
2076
- .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
2077
- .handsontable .ht_clone_bottom th.ht__active_highlight,
2078
- .handsontable .ht_clone_bottom td.ht__active_highlight),
2079
- .handsontable .ht_clone_top_inline_start_corner td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
2080
- .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
2081
- .handsontable .ht_clone_top th.ht__active_highlight,
2082
- .handsontable .ht_clone_top td.ht__active_highlight,
2083
- .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
2084
- .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
2085
- .handsontable .ht_clone_bottom th.ht__active_highlight,
2086
- .handsontable .ht_clone_bottom td.ht__active_highlight),
2087
- .handsontable .ht_clone_top th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
2088
- .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
2089
- .handsontable .ht_clone_top th.ht__active_highlight,
2090
- .handsontable .ht_clone_top td.ht__active_highlight,
2091
- .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
2092
- .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
2093
- .handsontable .ht_clone_bottom th.ht__active_highlight,
2094
- .handsontable .ht_clone_bottom td.ht__active_highlight),
2095
- .handsontable .ht_clone_top td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
2096
- .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
2097
- .handsontable .ht_clone_top th.ht__active_highlight,
2098
- .handsontable .ht_clone_top td.ht__active_highlight,
2099
- .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
2100
- .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
2101
- .handsontable .ht_clone_bottom th.ht__active_highlight,
2102
- .handsontable .ht_clone_bottom td.ht__active_highlight),
2103
- .handsontable .ht_clone_bottom_inline_start_corner th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
2104
- .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
2105
- .handsontable .ht_clone_top th.ht__active_highlight,
2106
- .handsontable .ht_clone_top td.ht__active_highlight,
2107
- .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
2108
- .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
2109
- .handsontable .ht_clone_bottom th.ht__active_highlight,
2110
- .handsontable .ht_clone_bottom td.ht__active_highlight),
2111
- .handsontable .ht_clone_bottom_inline_start_corner td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
2112
- .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
2113
- .handsontable .ht_clone_top th.ht__active_highlight,
2114
- .handsontable .ht_clone_top td.ht__active_highlight,
2115
- .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
2116
- .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
2117
- .handsontable .ht_clone_bottom th.ht__active_highlight,
2118
- .handsontable .ht_clone_bottom td.ht__active_highlight),
2119
- .handsontable .ht_clone_bottom th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
2120
- .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
2121
- .handsontable .ht_clone_top th.ht__active_highlight,
2122
- .handsontable .ht_clone_top td.ht__active_highlight,
2123
- .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
2124
- .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
2125
- .handsontable .ht_clone_bottom th.ht__active_highlight,
2126
- .handsontable .ht_clone_bottom td.ht__active_highlight),
2127
- .handsontable .ht_clone_bottom td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
2128
- .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
2129
- .handsontable .ht_clone_top th.ht__active_highlight,
2130
- .handsontable .ht_clone_top td.ht__active_highlight,
2131
- .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
2132
- .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
2133
- .handsontable .ht_clone_bottom th.ht__active_highlight,
2134
- .handsontable .ht_clone_bottom td.ht__active_highlight) {
2135
- border-color: var(--ht-border-color);
2136
- }
2137
- .handsontable .ht_clone_inline_start th:not(.handsontable .ht_clone_inline_start th.ht__active_highlight,
2138
- .handsontable .ht_clone_inline_start td.ht__active_highlight),
2139
- .handsontable .ht_clone_inline_start td:not(.handsontable .ht_clone_inline_start th.ht__active_highlight,
2140
- .handsontable .ht_clone_inline_start td.ht__active_highlight) {
2141
- border-inline-start-color: var(--ht-border-color);
2142
- border-inline-end-color: var(--ht-border-color);
2143
- }
2144
2108
 
2145
2109
  .handsontable .manualColumnResizer {
2146
2110
  position: absolute;
@@ -2234,6 +2198,14 @@
2234
2198
  z-index: 209;
2235
2199
  }
2236
2200
 
2201
+ .handsontable tbody td[rowspan][class*=area][class*=highlight]:not([class*=fullySelectedMergedCell])::before {
2202
+ opacity: 0;
2203
+ }
2204
+
2205
+ .handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-multiple]::before {
2206
+ opacity: 0.14;
2207
+ }
2208
+
2237
2209
  .handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-0]:before {
2238
2210
  opacity: 0.14;
2239
2211
  }