handsontable 0.0.0-next-bb36dee-20241108 → 0.0.0-next-cd84c73-20241112

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.

@@ -52,9 +52,11 @@ class DateEditor extends _textEditor.TextEditor {
52
52
  this.parentDestroyed = true;
53
53
  this.destroyElements();
54
54
  });
55
- this.hot.addHook('afterSetTheme', themeName => {
56
- (0, _element.removeClass)(this.datePicker, /ht-theme-.*/g);
57
- (0, _element.addClass)(this.datePicker, themeName);
55
+ this.hot.addHook('afterSetTheme', (themeName, firstRun) => {
56
+ if (!firstRun) {
57
+ (0, _element.removeClass)(this.datePicker, /ht-theme-.*/g);
58
+ (0, _element.addClass)(this.datePicker, themeName);
59
+ }
58
60
  });
59
61
  }
60
62
 
@@ -48,9 +48,11 @@ export class DateEditor extends TextEditor {
48
48
  this.parentDestroyed = true;
49
49
  this.destroyElements();
50
50
  });
51
- this.hot.addHook('afterSetTheme', themeName => {
52
- removeClass(this.datePicker, /ht-theme-.*/g);
53
- addClass(this.datePicker, themeName);
51
+ this.hot.addHook('afterSetTheme', (themeName, firstRun) => {
52
+ if (!firstRun) {
53
+ removeClass(this.datePicker, /ht-theme-.*/g);
54
+ addClass(this.datePicker, themeName);
55
+ }
54
56
  });
55
57
  }
56
58
 
@@ -187,8 +187,10 @@ class HandsontableEditor extends _textEditor.TextEditor {
187
187
  this.htEditor.destroy();
188
188
  }
189
189
  });
190
- this.hot.addHook('afterSetTheme', themeName => {
191
- this.htEditor.useTheme(themeName);
190
+ this.hot.addHook('afterSetTheme', (themeName, firstRun) => {
191
+ if (!firstRun) {
192
+ this.htEditor.useTheme(themeName);
193
+ }
192
194
  });
193
195
  }
194
196
 
@@ -184,8 +184,10 @@ export class HandsontableEditor extends TextEditor {
184
184
  this.htEditor.destroy();
185
185
  }
186
186
  });
187
- this.hot.addHook('afterSetTheme', themeName => {
188
- this.htEditor.useTheme(themeName);
187
+ this.hot.addHook('afterSetTheme', (themeName, firstRun) => {
188
+ if (!firstRun) {
189
+ this.htEditor.useTheme(themeName);
190
+ }
189
191
  });
190
192
  }
191
193
 
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-bb36dee-20241108";
137
+ const hotVersion = "0.0.0-next-cd84c73-20241112";
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-bb36dee-20241108";
127
+ const hotVersion = "0.0.0-next-cd84c73-20241112";
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-bb36dee-20241108",
13
+ "version": "0.0.0-next-cd84c73-20241112",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
@@ -234,7 +234,12 @@ class Comments extends _base.BasePlugin {
234
234
  this.addHook('afterScroll', () => _assertClassBrand(_Comments_brand, this, _onAfterScroll).call(this));
235
235
  this.addHook('afterBeginEditing', () => this.hide());
236
236
  this.addHook('afterDocumentKeyDown', event => _assertClassBrand(_Comments_brand, this, _onAfterDocumentKeyDown).call(this, event));
237
- this.addHook('afterSetTheme', () => _assertClassBrand(_Comments_brand, this, _updateEditorThemeClassName).call(this));
237
+ this.addHook('afterSetTheme', function () {
238
+ for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
239
+ args[_key2] = arguments[_key2];
240
+ }
241
+ return _assertClassBrand(_Comments_brand, _this, _updateEditorThemeClassName).call(_this, ...args);
242
+ });
238
243
  _classPrivateFieldGet(_displaySwitch, this).addLocalHook('hide', () => this.hide());
239
244
  _classPrivateFieldGet(_displaySwitch, this).addLocalHook('show', (row, col) => this.showAtCell(row, col));
240
245
  this.registerShortcuts();
@@ -230,7 +230,12 @@ export class Comments extends BasePlugin {
230
230
  this.addHook('afterScroll', () => _assertClassBrand(_Comments_brand, this, _onAfterScroll).call(this));
231
231
  this.addHook('afterBeginEditing', () => this.hide());
232
232
  this.addHook('afterDocumentKeyDown', event => _assertClassBrand(_Comments_brand, this, _onAfterDocumentKeyDown).call(this, event));
233
- this.addHook('afterSetTheme', () => _assertClassBrand(_Comments_brand, this, _updateEditorThemeClassName).call(this));
233
+ this.addHook('afterSetTheme', function () {
234
+ for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
235
+ args[_key2] = arguments[_key2];
236
+ }
237
+ return _assertClassBrand(_Comments_brand, _this, _updateEditorThemeClassName).call(_this, ...args);
238
+ });
234
239
  _classPrivateFieldGet(_displaySwitch, this).addLocalHook('hide', () => this.hide());
235
240
  _classPrivateFieldGet(_displaySwitch, this).addLocalHook('show', (row, col) => this.showAtCell(row, col));
236
241
  this.registerShortcuts();
@@ -162,9 +162,11 @@ class Menu {
162
162
  return _this.parentMenu.runLocalHooks('afterSelectionChange', ...args);
163
163
  });
164
164
  }
165
- this.hot.addHook('afterSetTheme', themeName => {
166
- var _this$hotMenu;
167
- (_this$hotMenu = this.hotMenu) === null || _this$hotMenu === void 0 || _this$hotMenu.useTheme(themeName);
165
+ this.hot.addHook('afterSetTheme', (themeName, firstRun) => {
166
+ if (!firstRun) {
167
+ var _this$hotMenu;
168
+ (_this$hotMenu = this.hotMenu) === null || _this$hotMenu === void 0 || _this$hotMenu.useTheme(themeName);
169
+ }
168
170
  });
169
171
  }
170
172
 
@@ -158,9 +158,11 @@ export class Menu {
158
158
  return _this.parentMenu.runLocalHooks('afterSelectionChange', ...args);
159
159
  });
160
160
  }
161
- this.hot.addHook('afterSetTheme', themeName => {
162
- var _this$hotMenu;
163
- (_this$hotMenu = this.hotMenu) === null || _this$hotMenu === void 0 || _this$hotMenu.useTheme(themeName);
161
+ this.hot.addHook('afterSetTheme', (themeName, firstRun) => {
162
+ if (!firstRun) {
163
+ var _this$hotMenu;
164
+ (_this$hotMenu = this.hotMenu) === null || _this$hotMenu === void 0 || _this$hotMenu.useTheme(themeName);
165
+ }
164
166
  });
165
167
  }
166
168
 
@@ -269,8 +269,10 @@ class MultipleSelectUI extends _base.BaseUI {
269
269
  layoutDirection: this.hot.isRtl() ? 'rtl' : 'ltr'
270
270
  }));
271
271
  _classPrivateFieldGet(_itemsBox, this).init();
272
- this.hot.addHook('afterSetTheme', () => {
273
- _classPrivateFieldGet(_itemsBox, this).useTheme(this.hot.getCurrentThemeName());
272
+ this.hot.addHook('afterSetTheme', (themeName, firstRun) => {
273
+ if (!firstRun) {
274
+ _classPrivateFieldGet(_itemsBox, this).useTheme(themeName);
275
+ }
274
276
  });
275
277
  const shortcutManager = _classPrivateFieldGet(_itemsBox, this).getShortcutManager();
276
278
  const gridContext = shortcutManager.getContext('grid');
@@ -264,8 +264,10 @@ export class MultipleSelectUI extends BaseUI {
264
264
  layoutDirection: this.hot.isRtl() ? 'rtl' : 'ltr'
265
265
  }));
266
266
  _classPrivateFieldGet(_itemsBox, this).init();
267
- this.hot.addHook('afterSetTheme', () => {
268
- _classPrivateFieldGet(_itemsBox, this).useTheme(this.hot.getCurrentThemeName());
267
+ this.hot.addHook('afterSetTheme', (themeName, firstRun) => {
268
+ if (!firstRun) {
269
+ _classPrivateFieldGet(_itemsBox, this).useTheme(themeName);
270
+ }
269
271
  });
270
272
  const shortcutManager = _classPrivateFieldGet(_itemsBox, this).getShortcutManager();
271
273
  const gridContext = shortcutManager.getContext('grid');
@@ -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: 0.0.0-next-bb36dee-20241108
29
- * Release date: 17/10/2024 (built at 08/11/2024 12:47:12)
28
+ * Version: 0.0.0-next-cd84c73-20241112
29
+ * Release date: 17/10/2024 (built at 12/11/2024 13:57:50)
30
30
  */
31
31
  .handsontable {
32
32
  position: relative;
@@ -55,6 +55,18 @@
55
55
  .handsontable .htCore {
56
56
  background-color: var(--ht-background-color, #ffffff);
57
57
  }
58
+ .handsontable tr.ht__row_even th {
59
+ background-color: var(--ht-row-header-even-background-color, #ffffff);
60
+ }
61
+ .handsontable tr.ht__row_even td {
62
+ background-color: var(--ht-row-cell-even-background-color, #ffffff);
63
+ }
64
+ .handsontable tr.ht__row_odd th {
65
+ background-color: var(--ht-row-header-odd-background-color, #ffffff);
66
+ }
67
+ .handsontable tr.ht__row_odd td {
68
+ background-color: var(--ht-row-cell-odd-background-color, #ffffff);
69
+ }
58
70
  .handsontable th,
59
71
  .handsontable td {
60
72
  height: var(--ht-row-height, 28px);
@@ -65,7 +77,6 @@
65
77
  border-inline-end-width: 1px;
66
78
  border-bottom-width: 1px;
67
79
  border-style: solid;
68
- border-color: var(--ht-border-color);
69
80
  font-size: var(--ht-font-size, 14px);
70
81
  line-height: var(--ht-line-height, 20px);
71
82
  white-space: pre-wrap;
@@ -75,7 +86,10 @@
75
86
  empty-cells: show;
76
87
  box-sizing: border-box;
77
88
  color: var(--ht-foreground-color);
78
- background-color: var(--ht-background-color, #ffffff);
89
+ border-top-color: var(--ht-cell-vertical-border-color);
90
+ border-bottom-color: var(--ht-cell-vertical-border-color);
91
+ border-inline-start-color: var(--ht-cell-horizontal-border-color);
92
+ border-inline-end-color: var(--ht-cell-horizontal-border-color);
79
93
  }
80
94
  .handsontable th.invisibleSelection,
81
95
  .handsontable td.invisibleSelection {
@@ -88,6 +102,9 @@
88
102
  .handsontable td:first-of-type {
89
103
  border-inline-start-width: 1px;
90
104
  }
105
+ .handsontable tbody tr td:last-child {
106
+ border-inline-end-color: var(--ht-border-color);
107
+ }
91
108
  .handsontable th {
92
109
  position: relative;
93
110
  overflow: visible;
@@ -134,35 +151,41 @@
134
151
  .handsontable th.ht__active_highlight:before {
135
152
  background-color: var(--ht-header-active-background-color);
136
153
  }
137
- .handsontable thead th {
154
+ .handsontable thead tr th {
138
155
  padding: 0;
139
156
  }
140
- .handsontable thead th .relative {
157
+ .handsontable thead tr th .relative {
141
158
  padding: var(--ht-cell-vertical-padding, 4px) var(--ht-cell-horizontal-padding, 8px);
142
159
  overflow: hidden;
143
160
  }
144
- .handsontable thead th .relative .colHeader {
161
+ .handsontable thead tr th .relative .colHeader {
145
162
  text-overflow: ellipsis;
146
163
  overflow: hidden;
147
164
  vertical-align: top;
148
165
  max-width: calc(100% + 1px);
149
166
  }
150
- .handsontable thead th .relative:has(.collapsibleIndicator, .changeType) .colHeader {
167
+ .handsontable thead tr th .relative:has(.collapsibleIndicator, .changeType) .colHeader {
151
168
  max-width: calc(100% - (var(--ht-icon-size) + var(--ht-gap-size)));
152
169
  }
153
170
  .handsontable thead tr:not(:last-child) th {
154
171
  /* Fix for - nested columns with hidden column */
155
172
  overflow: hidden;
156
173
  }
157
- .handsontable tbody th {
174
+ .handsontable tbody tr.ht__row_odd th.ht__highlight, .handsontable tbody tr.ht__row_even th.ht__highlight {
175
+ background-color: var(--ht-header-highlighted-background-color);
176
+ }
177
+ .handsontable tbody tr.ht__row_odd th.ht__active_highlight, .handsontable tbody tr.ht__row_even th.ht__active_highlight {
178
+ background-color: var(--ht-header-active-background-color, #1a42e8);
179
+ }
180
+ .handsontable tbody tr th {
158
181
  background-color: var(--ht-header-row-background-color, #f7f7f9);
159
182
  }
160
- .handsontable tbody th.ht__highlight:before {
183
+ .handsontable tbody tr th.ht__highlight:before {
161
184
  width: var(--ht-header-highlighted-shadow-size);
162
185
  height: auto;
163
186
  inset: 0 -1px -1px auto;
164
187
  }
165
- .handsontable tbody th.ht__active_highlight {
188
+ .handsontable tbody tr th.ht__active_highlight {
166
189
  box-shadow: 0 -1px 0 0 var(--ht-header-active-border-color, #1a42e8);
167
190
  }
168
191
  .handsontable .hide {
@@ -255,6 +278,11 @@
255
278
  .handsontable tr:first-child th,
256
279
  .handsontable tr:first-child td {
257
280
  border-top-width: 1px;
281
+ border-top-color: var(--ht-border-color);
282
+ }
283
+ .handsontable tr:last-child th,
284
+ .handsontable tr:last-child td {
285
+ border-bottom-color: var(--ht-border-color);
258
286
  }
259
287
  .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 {
260
288
  border-inline-end-width: 0;
@@ -294,11 +322,12 @@
294
322
  overflow: auto;
295
323
  }
296
324
 
297
- tr.ht__row_even td {
298
- background-color: var(--ht-row-even-background-color, #ffffff);
325
+ [dir=rtl].handsontable td[dir=ltr] {
326
+ border-inline-end-width: 0;
327
+ border-inline-start-width: 1px;
299
328
  }
300
- tr.ht__row_odd td {
301
- background-color: var(--ht-row-odd-background-color, #ffffff);
329
+ [dir=rtl].handsontable tbody tr td[dir=ltr]:last-child {
330
+ border-inline-start-color: var(--ht-border-color);
302
331
  }
303
332
 
304
333
  .handsontable.mobile {
@@ -532,7 +561,7 @@ tr.ht__row_odd td {
532
561
  width: var(--ht-icon-size);
533
562
  height: var(--ht-icon-size);
534
563
  font-size: 0;
535
- float: inline-end;
564
+ float: right;
536
565
  top: calc((var(--ht-line-height) - var(--ht-icon-size)) / 2);
537
566
  margin-inline-start: calc(var(--ht-gap-size) * 2);
538
567
  }
@@ -545,6 +574,10 @@ tr.ht__row_odd td {
545
574
  opacity: 0.6;
546
575
  }
547
576
 
577
+ [dir=rtl].handsontable .htAutocompleteArrow {
578
+ float: left;
579
+ }
580
+
548
581
  .handsontable .htCheckboxRendererInput {
549
582
  position: relative;
550
583
  display: inline-block;
@@ -1187,7 +1220,7 @@ tr.ht__row_odd td {
1187
1220
  /* hide text */
1188
1221
  text-indent: -100px;
1189
1222
  font-size: 0;
1190
- float: inline-end;
1223
+ float: right;
1191
1224
  }
1192
1225
  .handsontable .collapsibleIndicator:before,
1193
1226
  .handsontable .ht_nestingButton:before {
@@ -1263,6 +1296,11 @@ tr.ht__row_odd td {
1263
1296
  color: var(--ht-collapse-button-open-hover-icon-active-color);
1264
1297
  }
1265
1298
 
1299
+ [dir=rtl].handsontable .collapsibleIndicator,
1300
+ [dir=rtl].handsontable .ht_nestingButton {
1301
+ float: left;
1302
+ }
1303
+
1266
1304
  .handsontable thead th.hiddenHeader:not(:first-of-type) {
1267
1305
  display: none;
1268
1306
  }
@@ -1362,7 +1400,7 @@ tr.ht__row_odd td {
1362
1400
  background-color: var(--ht-icon-button-background-color);
1363
1401
  order: 1;
1364
1402
  z-index: 1;
1365
- float: inline-end;
1403
+ float: right;
1366
1404
  top: calc((var(--ht-line-height) - var(--ht-icon-size)) / 2);
1367
1405
  margin-inline-start: var(--ht-gap-size);
1368
1406
  }
@@ -1376,18 +1414,21 @@ tr.ht__row_odd td {
1376
1414
  }
1377
1415
  .handsontable .changeType:hover {
1378
1416
  cursor: pointer;
1417
+ box-shadow: 0 0 0 1px var(--ht-icon-button-hover-border-color);
1379
1418
  background-color: var(--ht-icon-button-hover-background-color);
1380
1419
  }
1381
1420
  .handsontable .changeType:hover:before {
1382
1421
  color: var(--ht-icon-button-hover-icon-color);
1383
1422
  }
1384
1423
  .handsontable .ht__active_highlight .changeType {
1424
+ box-shadow: 0 0 0 1px var(--ht-icon-active-button-border-color);
1385
1425
  background-color: var(--ht-icon-active-button-background-color);
1386
1426
  }
1387
1427
  .handsontable .ht__active_highlight .changeType:before {
1388
1428
  color: var(--ht-icon-active-button-icon-color);
1389
1429
  }
1390
1430
  .handsontable .ht__active_highlight .changeType:hover {
1431
+ box-shadow: 0 0 0 1px var(--ht-icon-active-button-hover-border-color);
1391
1432
  background-color: var(--ht-icon-active-button-hover-background-color);
1392
1433
  }
1393
1434
  .handsontable .ht__active_highlight .changeType:hover:before {
@@ -1570,6 +1611,10 @@ tr.ht__row_odd td {
1570
1611
  right: auto;
1571
1612
  }
1572
1613
 
1614
+ [dir=rtl].handsontable .changeType {
1615
+ float: left;
1616
+ }
1617
+
1573
1618
  .handsontable.htFiltersConditionsMenu:not(.htGhostTable) {
1574
1619
  z-index: 1070;
1575
1620
  }
@@ -1838,6 +1883,79 @@ tr.ht__row_odd td {
1838
1883
  .handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight {
1839
1884
  box-shadow: none;
1840
1885
  }
1886
+ .handsontable .ht_clone_top_inline_start_corner th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
1887
+ .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
1888
+ .handsontable .ht_clone_top th.ht__active_highlight,
1889
+ .handsontable .ht_clone_top td.ht__active_highlight,
1890
+ .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
1891
+ .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
1892
+ .handsontable .ht_clone_bottom th.ht__active_highlight,
1893
+ .handsontable .ht_clone_bottom td.ht__active_highlight),
1894
+ .handsontable .ht_clone_top_inline_start_corner td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
1895
+ .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
1896
+ .handsontable .ht_clone_top th.ht__active_highlight,
1897
+ .handsontable .ht_clone_top td.ht__active_highlight,
1898
+ .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
1899
+ .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
1900
+ .handsontable .ht_clone_bottom th.ht__active_highlight,
1901
+ .handsontable .ht_clone_bottom td.ht__active_highlight),
1902
+ .handsontable .ht_clone_top th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
1903
+ .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
1904
+ .handsontable .ht_clone_top th.ht__active_highlight,
1905
+ .handsontable .ht_clone_top td.ht__active_highlight,
1906
+ .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
1907
+ .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
1908
+ .handsontable .ht_clone_bottom th.ht__active_highlight,
1909
+ .handsontable .ht_clone_bottom td.ht__active_highlight),
1910
+ .handsontable .ht_clone_top td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
1911
+ .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
1912
+ .handsontable .ht_clone_top th.ht__active_highlight,
1913
+ .handsontable .ht_clone_top td.ht__active_highlight,
1914
+ .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
1915
+ .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
1916
+ .handsontable .ht_clone_bottom th.ht__active_highlight,
1917
+ .handsontable .ht_clone_bottom td.ht__active_highlight),
1918
+ .handsontable .ht_clone_bottom_inline_start_corner th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
1919
+ .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
1920
+ .handsontable .ht_clone_top th.ht__active_highlight,
1921
+ .handsontable .ht_clone_top td.ht__active_highlight,
1922
+ .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
1923
+ .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
1924
+ .handsontable .ht_clone_bottom th.ht__active_highlight,
1925
+ .handsontable .ht_clone_bottom td.ht__active_highlight),
1926
+ .handsontable .ht_clone_bottom_inline_start_corner td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
1927
+ .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
1928
+ .handsontable .ht_clone_top th.ht__active_highlight,
1929
+ .handsontable .ht_clone_top td.ht__active_highlight,
1930
+ .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
1931
+ .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
1932
+ .handsontable .ht_clone_bottom th.ht__active_highlight,
1933
+ .handsontable .ht_clone_bottom td.ht__active_highlight),
1934
+ .handsontable .ht_clone_bottom th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
1935
+ .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
1936
+ .handsontable .ht_clone_top th.ht__active_highlight,
1937
+ .handsontable .ht_clone_top td.ht__active_highlight,
1938
+ .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
1939
+ .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
1940
+ .handsontable .ht_clone_bottom th.ht__active_highlight,
1941
+ .handsontable .ht_clone_bottom td.ht__active_highlight),
1942
+ .handsontable .ht_clone_bottom td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
1943
+ .handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
1944
+ .handsontable .ht_clone_top th.ht__active_highlight,
1945
+ .handsontable .ht_clone_top td.ht__active_highlight,
1946
+ .handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
1947
+ .handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
1948
+ .handsontable .ht_clone_bottom th.ht__active_highlight,
1949
+ .handsontable .ht_clone_bottom td.ht__active_highlight) {
1950
+ border-color: var(--ht-border-color);
1951
+ }
1952
+ .handsontable .ht_clone_inline_start th:not(.handsontable .ht_clone_inline_start th.ht__active_highlight,
1953
+ .handsontable .ht_clone_inline_start td.ht__active_highlight),
1954
+ .handsontable .ht_clone_inline_start td:not(.handsontable .ht_clone_inline_start th.ht__active_highlight,
1955
+ .handsontable .ht_clone_inline_start td.ht__active_highlight) {
1956
+ border-inline-start-color: var(--ht-border-color);
1957
+ border-inline-end-color: var(--ht-border-color);
1958
+ }
1841
1959
 
1842
1960
  .handsontable .manualColumnResizer {
1843
1961
  position: absolute;