handsontable 0.0.0-next-9eb0f0f-20250218 → 0.0.0-next-b880b30-20250219
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/overlays.js +24 -0
- package/3rdparty/walkontable/src/overlays.mjs +24 -0
- package/3rdparty/walkontable/src/utils/orderView/viewDiffer/viewOrder.js +1 -0
- package/3rdparty/walkontable/src/utils/orderView/viewDiffer/viewOrder.mjs +1 -0
- package/3rdparty/walkontable/src/viewport.js +1 -0
- package/3rdparty/walkontable/src/viewport.mjs +1 -0
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +3 -0
- package/core.mjs +3 -0
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +47 -8
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +73 -73
- package/dist/handsontable.js +47 -8
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +43 -43
- package/dist/languages/all.min.js +1 -1
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/helpers/number.js +1 -0
- package/helpers/number.mjs +1 -0
- package/i18n/phraseFormatters/substituteVariables.js +1 -0
- package/i18n/phraseFormatters/substituteVariables.mjs +1 -0
- package/package.json +2 -2
- package/plugins/columnSorting/columnStatesManager.js +1 -0
- package/plugins/columnSorting/columnStatesManager.mjs +1 -0
- package/plugins/exportFile/types/csv.js +1 -0
- package/plugins/exportFile/types/csv.mjs +1 -0
- package/plugins/nestedHeaders/nestedHeaders.js +5 -3
- package/plugins/nestedHeaders/nestedHeaders.mjs +5 -3
- package/plugins/nestedHeaders/stateManager/index.js +1 -0
- package/plugins/nestedHeaders/stateManager/index.mjs +1 -0
- package/shortcuts/utils.js +1 -0
- package/shortcuts/utils.mjs +1 -0
- package/styles/handsontable.css +71 -98
- 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/translations/maps/linkedPhysicalIndexToValueMap.js +1 -0
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +1 -0
- package/translations/maps/utils/physicallyIndexed.js +1 -0
- package/translations/maps/utils/physicallyIndexed.mjs +1 -0
- package/utils/dataStructures/priorityMap.js +1 -0
- package/utils/dataStructures/priorityMap.mjs +1 -0
|
@@ -902,9 +902,11 @@ function _onBeforeSelectColumns(from, to, highlight) {
|
|
|
902
902
|
* @param {Array} renderersArray Array of renderers.
|
|
903
903
|
*/
|
|
904
904
|
function _onAfterGetColumnHeaderRenderers(renderersArray) {
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
905
|
+
if (_classPrivateFieldGet(_stateManager, this).getLayersCount() > 0) {
|
|
906
|
+
renderersArray.length = 0;
|
|
907
|
+
for (let headerLayer = 0; headerLayer < _classPrivateFieldGet(_stateManager, this).getLayersCount(); headerLayer++) {
|
|
908
|
+
renderersArray.push(this.headerRendererFactory(headerLayer));
|
|
909
|
+
}
|
|
908
910
|
}
|
|
909
911
|
}
|
|
910
912
|
/**
|
|
@@ -897,9 +897,11 @@ function _onBeforeSelectColumns(from, to, highlight) {
|
|
|
897
897
|
* @param {Array} renderersArray Array of renderers.
|
|
898
898
|
*/
|
|
899
899
|
function _onAfterGetColumnHeaderRenderers(renderersArray) {
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
900
|
+
if (_classPrivateFieldGet(_stateManager, this).getLayersCount() > 0) {
|
|
901
|
+
renderersArray.length = 0;
|
|
902
|
+
for (let headerLayer = 0; headerLayer < _classPrivateFieldGet(_stateManager, this).getLayersCount(); headerLayer++) {
|
|
903
|
+
renderersArray.push(this.headerRendererFactory(headerLayer));
|
|
904
|
+
}
|
|
903
905
|
}
|
|
904
906
|
}
|
|
905
907
|
/**
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
4
|
require("core-js/modules/es.error.cause.js");
|
|
5
5
|
require("core-js/modules/es.array.push.js");
|
|
6
|
+
require("core-js/modules/esnext.iterator.constructor.js");
|
|
6
7
|
require("core-js/modules/esnext.iterator.map.js");
|
|
7
8
|
var _array = require("../../../helpers/array");
|
|
8
9
|
var _sourceSettings2 = _interopRequireDefault(require("./sourceSettings"));
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import "core-js/modules/es.error.cause.js";
|
|
2
2
|
import "core-js/modules/es.array.push.js";
|
|
3
|
+
import "core-js/modules/esnext.iterator.constructor.js";
|
|
3
4
|
import "core-js/modules/esnext.iterator.map.js";
|
|
4
5
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
5
6
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
package/shortcuts/utils.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
|
+
require("core-js/modules/esnext.iterator.constructor.js");
|
|
4
5
|
require("core-js/modules/esnext.iterator.map.js");
|
|
5
6
|
// This file handles key-name discrepancies between browsers.
|
|
6
7
|
// For the list of discrepancies, go to: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key/Key_Values.
|
package/shortcuts/utils.mjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "core-js/modules/esnext.iterator.constructor.js";
|
|
1
2
|
import "core-js/modules/esnext.iterator.map.js";
|
|
2
3
|
// This file handles key-name discrepancies between browsers.
|
|
3
4
|
// For the list of discrepancies, go to: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key/Key_Values.
|
package/styles/handsontable.css
CHANGED
|
@@ -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-
|
|
29
|
-
* Release date: 16/12/2024 (built at
|
|
28
|
+
* Version: 0.0.0-next-b880b30-20250219
|
|
29
|
+
* Release date: 16/12/2024 (built at 19/02/2025 09:48:29)
|
|
30
30
|
*/
|
|
31
31
|
.ht-wrapper:not([class*=ht-theme]) {
|
|
32
32
|
--ht-gap-size: 4px;
|
|
@@ -91,6 +91,7 @@
|
|
|
91
91
|
}
|
|
92
92
|
.handsontable.htHasScrollX .ht_master .wtHolder, .handsontable.htHasScrollY .ht_master .wtHolder {
|
|
93
93
|
background-color: var(--ht-background-color);
|
|
94
|
+
border-radius: var(--ht-wrapper-border-radius, 0);
|
|
94
95
|
}
|
|
95
96
|
.handsontable tr.ht__row_even th {
|
|
96
97
|
background-color: var(--ht-row-header-even-background-color);
|
|
@@ -178,17 +179,10 @@
|
|
|
178
179
|
color: var(--ht-header-highlighted-foreground-color);
|
|
179
180
|
background-color: var(--ht-header-highlighted-background-color);
|
|
180
181
|
}
|
|
181
|
-
.handsontable th.ht__highlight .relative::after {
|
|
182
|
-
content: "";
|
|
183
|
-
display: block;
|
|
184
|
-
position: absolute;
|
|
185
|
-
background-color: var(--ht-accent-color);
|
|
186
|
-
}
|
|
187
182
|
.handsontable th.ht__active_highlight {
|
|
188
183
|
border-color: var(--ht-header-active-border-color);
|
|
189
184
|
color: var(--ht-header-active-foreground-color);
|
|
190
185
|
background-color: var(--ht-header-active-background-color);
|
|
191
|
-
box-shadow: -1px 0 0 0 var(--ht-header-active-border-color);
|
|
192
186
|
}
|
|
193
187
|
.handsontable tbody tr.ht__row_odd th.ht__highlight, .handsontable tbody tr.ht__row_even th.ht__highlight {
|
|
194
188
|
color: var(--ht-header-row-highlighted-foreground-color);
|
|
@@ -203,40 +197,28 @@
|
|
|
203
197
|
color: var(--ht-header-row-foreground-color);
|
|
204
198
|
background-color: var(--ht-header-row-background-color);
|
|
205
199
|
}
|
|
200
|
+
.handsontable tbody tr th.ht__active_highlight {
|
|
201
|
+
box-shadow: 0 -1px 0 0 var(--ht-header-active-border-color);
|
|
202
|
+
}
|
|
206
203
|
.handsontable tbody tr th .relative {
|
|
207
204
|
padding: var(--ht-cell-vertical-padding) var(--ht-cell-horizontal-padding);
|
|
208
205
|
height: 100%;
|
|
209
206
|
}
|
|
210
|
-
.handsontable tbody tr th .relative::after {
|
|
211
|
-
top: -1px;
|
|
212
|
-
right: -1px;
|
|
213
|
-
bottom: -1px;
|
|
214
|
-
width: var(--ht-header-highlighted-shadow-size);
|
|
215
|
-
}
|
|
216
|
-
.handsontable tbody tr th.ht__active_highlight {
|
|
217
|
-
box-shadow: 0 -1px 0 0 var(--ht-header-active-border-color);
|
|
218
|
-
}
|
|
219
207
|
.handsontable tbody tr td:first-child {
|
|
220
208
|
border-inline-start-color: var(--ht-border-color);
|
|
221
209
|
}
|
|
222
210
|
.handsontable tbody tr td:last-child {
|
|
223
211
|
border-inline-end-color: var(--ht-border-color);
|
|
224
212
|
}
|
|
225
|
-
.handsontable thead tr:only-of-type th .relative::after {
|
|
226
|
-
bottom: 0;
|
|
227
|
-
}
|
|
228
213
|
.handsontable thead tr th {
|
|
229
214
|
padding: 0;
|
|
230
215
|
}
|
|
216
|
+
.handsontable thead tr th.ht__active_highlight {
|
|
217
|
+
box-shadow: -1px 0 0 0 var(--ht-header-active-border-color);
|
|
218
|
+
}
|
|
231
219
|
.handsontable thead tr th .relative {
|
|
232
220
|
padding: var(--ht-cell-vertical-padding) var(--ht-cell-horizontal-padding);
|
|
233
221
|
}
|
|
234
|
-
.handsontable thead tr th .relative::after {
|
|
235
|
-
left: -1px;
|
|
236
|
-
right: -1px;
|
|
237
|
-
bottom: -1px;
|
|
238
|
-
height: var(--ht-header-highlighted-shadow-size);
|
|
239
|
-
}
|
|
240
222
|
.handsontable thead tr th .relative .colHeader {
|
|
241
223
|
text-overflow: ellipsis;
|
|
242
224
|
overflow: hidden;
|
|
@@ -263,6 +245,29 @@
|
|
|
263
245
|
.handsontable tr:last-child td.ht__active_highlight {
|
|
264
246
|
border-bottom-color: var(--ht-header-active-border-color);
|
|
265
247
|
}
|
|
248
|
+
.handsontable div[class^=ht_clone] thead .ht__highlight .relative::after {
|
|
249
|
+
content: "";
|
|
250
|
+
display: block;
|
|
251
|
+
position: absolute;
|
|
252
|
+
left: -1px;
|
|
253
|
+
right: -1px;
|
|
254
|
+
bottom: -1px;
|
|
255
|
+
height: var(--ht-header-highlighted-shadow-size);
|
|
256
|
+
background-color: var(--ht-accent-color);
|
|
257
|
+
}
|
|
258
|
+
.handsontable div[class^=ht_clone] thead tr:only-of-type .ht__highlight .relative::after {
|
|
259
|
+
bottom: 0;
|
|
260
|
+
}
|
|
261
|
+
.handsontable div[class^=ht_clone] tbody .ht__highlight .relative::after {
|
|
262
|
+
content: "";
|
|
263
|
+
display: block;
|
|
264
|
+
position: absolute;
|
|
265
|
+
top: -1px;
|
|
266
|
+
right: -1px;
|
|
267
|
+
bottom: -1px;
|
|
268
|
+
width: var(--ht-header-highlighted-shadow-size);
|
|
269
|
+
background-color: var(--ht-accent-color);
|
|
270
|
+
}
|
|
266
271
|
.handsontable thead tr:not(:last-child) th {
|
|
267
272
|
/* Fix for - nested columns with hidden column */
|
|
268
273
|
overflow: hidden;
|
|
@@ -397,11 +402,30 @@
|
|
|
397
402
|
[dir=rtl].handsontable tbody tr td[dir=ltr]:last-child {
|
|
398
403
|
border-inline-start-color: var(--ht-border-color);
|
|
399
404
|
}
|
|
400
|
-
[dir=rtl].handsontable tbody
|
|
405
|
+
[dir=rtl].handsontable div[class^=ht_clone] tbody .ht__highlight .relative::after {
|
|
401
406
|
right: auto;
|
|
402
407
|
left: -1px;
|
|
403
408
|
}
|
|
404
409
|
|
|
410
|
+
.handsontable.ht-wrapper:not(.htColumnHeaders) .ht_master .htCore tbody tr:first-child td:first-child {
|
|
411
|
+
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
412
|
+
}
|
|
413
|
+
.handsontable.ht-wrapper:not(.htColumnHeaders) .ht_master .htCore tbody tr:first-child td:last-child {
|
|
414
|
+
border-start-end-radius: var(--ht-wrapper-border-radius);
|
|
415
|
+
}
|
|
416
|
+
.handsontable.ht-wrapper:not(.htColumnHeaders) .ht_clone_top_inline_start_corner .htCore tbody tr:first-child td:first-child {
|
|
417
|
+
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
418
|
+
}
|
|
419
|
+
.handsontable.ht-wrapper:not(.htColumnHeaders) .ht_clone_top .htCore tbody tr:first-child td:first-child {
|
|
420
|
+
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
421
|
+
}
|
|
422
|
+
.handsontable.ht-wrapper:not(.htColumnHeaders) .ht_clone_top .htCore tbody tr:first-child td:last-child {
|
|
423
|
+
border-start-end-radius: var(--ht-wrapper-border-radius);
|
|
424
|
+
}
|
|
425
|
+
.handsontable.ht-wrapper:not(.htColumnHeaders) .ht_clone_inline_start .htCore tbody tr:first-child th:first-child,
|
|
426
|
+
.handsontable.ht-wrapper:not(.htColumnHeaders) .ht_clone_inline_start .htCore tbody tr:first-child td:first-child {
|
|
427
|
+
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
428
|
+
}
|
|
405
429
|
.handsontable.ht-wrapper .ht_master .htCore {
|
|
406
430
|
border-radius: var(--ht-wrapper-border-radius);
|
|
407
431
|
}
|
|
@@ -411,11 +435,11 @@
|
|
|
411
435
|
.handsontable.ht-wrapper .ht_master .htCore thead tr:first-child th:last-child {
|
|
412
436
|
border-start-end-radius: var(--ht-wrapper-border-radius);
|
|
413
437
|
}
|
|
414
|
-
.handsontable.ht-wrapper .ht_master .htCore
|
|
415
|
-
border-
|
|
438
|
+
.handsontable.ht-wrapper .ht_master .htCore thead tr:last-child th:first-child {
|
|
439
|
+
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
416
440
|
}
|
|
417
|
-
.handsontable.ht-wrapper .ht_master .htCore
|
|
418
|
-
border-
|
|
441
|
+
.handsontable.ht-wrapper .ht_master .htCore thead tr:last-child th:last-child {
|
|
442
|
+
border-end-end-radius: var(--ht-wrapper-border-radius);
|
|
419
443
|
}
|
|
420
444
|
.handsontable.ht-wrapper .ht_master .htCore tbody tr:last-child td:first-child {
|
|
421
445
|
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
@@ -423,40 +447,12 @@
|
|
|
423
447
|
.handsontable.ht-wrapper .ht_master .htCore tbody tr:last-child td:last-child {
|
|
424
448
|
border-end-end-radius: var(--ht-wrapper-border-radius);
|
|
425
449
|
}
|
|
426
|
-
.handsontable.ht-wrapper:has(.ht_clone_top thead tr th) .ht_master .htCore tbody tr:first-child td:first-child, .handsontable.ht-wrapper:has(.ht_clone_top tbody tr td) .ht_master .htCore tbody tr:first-child td:first-child {
|
|
427
|
-
border-start-start-radius: 0;
|
|
428
|
-
}
|
|
429
|
-
.handsontable.ht-wrapper:has(.ht_clone_top thead tr th) .ht_master .htCore tbody tr:first-child td:last-child, .handsontable.ht-wrapper:has(.ht_clone_top tbody tr td) .ht_master .htCore tbody tr:first-child td:last-child {
|
|
430
|
-
border-start-end-radius: 0;
|
|
431
|
-
}
|
|
432
450
|
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore {
|
|
433
451
|
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
434
452
|
}
|
|
435
453
|
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore thead tr:first-child th:first-child {
|
|
436
454
|
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
437
455
|
}
|
|
438
|
-
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore tbody tr:first-child td:first-child,
|
|
439
|
-
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore tbody tr:first-child th:first-child {
|
|
440
|
-
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
441
|
-
}
|
|
442
|
-
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore:has(thead tr th) tbody tr:first-child td:first-child,
|
|
443
|
-
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore:has(thead tr th) tbody tr:first-child th:first-child {
|
|
444
|
-
border-start-start-radius: 0 !important;
|
|
445
|
-
}
|
|
446
|
-
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore {
|
|
447
|
-
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
448
|
-
}
|
|
449
|
-
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore thead tr:last-child th:first-child {
|
|
450
|
-
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
451
|
-
}
|
|
452
|
-
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore tbody tr:last-child td:first-child,
|
|
453
|
-
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore tbody tr:last-child th:first-child {
|
|
454
|
-
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
455
|
-
}
|
|
456
|
-
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore:has(thead tr td) tbody tr:last-child td:first-child,
|
|
457
|
-
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore:has(thead tr td) tbody tr:last-child th:first-child {
|
|
458
|
-
border-end-start-radius: 0 !important;
|
|
459
|
-
}
|
|
460
456
|
.handsontable.ht-wrapper .ht_clone_top .htCore {
|
|
461
457
|
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
462
458
|
border-start-end-radius: var(--ht-wrapper-border-radius);
|
|
@@ -467,18 +463,6 @@
|
|
|
467
463
|
.handsontable.ht-wrapper .ht_clone_top .htCore thead tr:first-child th:last-child {
|
|
468
464
|
border-start-end-radius: var(--ht-wrapper-border-radius);
|
|
469
465
|
}
|
|
470
|
-
.handsontable.ht-wrapper .ht_clone_top .htCore tbody tr:first-child td:first-child {
|
|
471
|
-
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
472
|
-
}
|
|
473
|
-
.handsontable.ht-wrapper .ht_clone_top .htCore tbody tr:first-child td:last-child {
|
|
474
|
-
border-start-end-radius: var(--ht-wrapper-border-radius);
|
|
475
|
-
}
|
|
476
|
-
.handsontable.ht-wrapper .ht_clone_top .htCore:has(thead tr th) tbody tr:first-child td:first-child {
|
|
477
|
-
border-start-start-radius: 0;
|
|
478
|
-
}
|
|
479
|
-
.handsontable.ht-wrapper .ht_clone_top .htCore:has(thead tr th) tbody tr:first-child td:last-child {
|
|
480
|
-
border-start-end-radius: 0;
|
|
481
|
-
}
|
|
482
466
|
.handsontable.ht-wrapper .ht_clone_inline_start .htCore {
|
|
483
467
|
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
484
468
|
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
@@ -486,40 +470,29 @@
|
|
|
486
470
|
.handsontable.ht-wrapper .ht_clone_inline_start .htCore thead tr:first-child th:first-child {
|
|
487
471
|
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
488
472
|
}
|
|
489
|
-
.handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:
|
|
490
|
-
.handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:
|
|
491
|
-
border-start-start-radius: var(--ht-wrapper-border-radius);
|
|
492
|
-
}
|
|
493
|
-
.handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:last-child td:first-child,
|
|
494
|
-
.handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:last-child th:first-child {
|
|
473
|
+
.handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:last-child th:first-child,
|
|
474
|
+
.handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:last-child td:first-child {
|
|
495
475
|
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
496
476
|
}
|
|
497
|
-
.handsontable.ht-wrapper .
|
|
498
|
-
.handsontable.ht-wrapper .ht_clone_inline_start .htCore:has(thead tr th) tbody tr:first-child th:first-child {
|
|
499
|
-
border-start-start-radius: 0;
|
|
500
|
-
}
|
|
501
|
-
.handsontable.ht-wrapper .ht_clone_bottom .htCore {
|
|
477
|
+
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore {
|
|
502
478
|
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
503
|
-
border-end-end-radius: var(--ht-wrapper-border-radius);
|
|
504
479
|
}
|
|
505
|
-
.handsontable.ht-wrapper .
|
|
480
|
+
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore tr:last-child th:first-child,
|
|
481
|
+
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore tr:last-child td:first-child {
|
|
506
482
|
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
507
483
|
}
|
|
508
|
-
.handsontable.ht-wrapper .ht_clone_bottom .htCore
|
|
484
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore {
|
|
485
|
+
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
509
486
|
border-end-end-radius: var(--ht-wrapper-border-radius);
|
|
510
487
|
}
|
|
511
|
-
.handsontable.ht-wrapper .ht_clone_bottom .htCore
|
|
488
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore tr:last-child th:first-child,
|
|
489
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore tr:last-child td:first-child {
|
|
512
490
|
border-end-start-radius: var(--ht-wrapper-border-radius);
|
|
513
491
|
}
|
|
514
|
-
.handsontable.ht-wrapper .ht_clone_bottom .htCore
|
|
492
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore tr:last-child th:last-child,
|
|
493
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore tr:last-child td:last-child {
|
|
515
494
|
border-end-end-radius: var(--ht-wrapper-border-radius);
|
|
516
495
|
}
|
|
517
|
-
.handsontable.ht-wrapper .ht_clone_bottom .htCore:has(thead tr th) tbody tr:last-child td:first-child {
|
|
518
|
-
border-end-start-radius: 0;
|
|
519
|
-
}
|
|
520
|
-
.handsontable.ht-wrapper .ht_clone_bottom .htCore:has(thead tr th) tbody tr:last-child td:last-child {
|
|
521
|
-
border-end-end-radius: 0;
|
|
522
|
-
}
|
|
523
496
|
.handsontable.ht-wrapper.htHasScrollX .htCore {
|
|
524
497
|
border-end-start-radius: 0;
|
|
525
498
|
border-end-end-radius: 0;
|
|
@@ -527,12 +500,12 @@
|
|
|
527
500
|
.handsontable.ht-wrapper.htHasScrollX .htCore thead tr:last-child th:first-child,
|
|
528
501
|
.handsontable.ht-wrapper.htHasScrollX .htCore tbody tr:last-child td:first-child,
|
|
529
502
|
.handsontable.ht-wrapper.htHasScrollX .htCore tbody tr:last-child th:first-child {
|
|
530
|
-
border-end-start-radius: 0;
|
|
503
|
+
border-end-start-radius: 0 !important;
|
|
531
504
|
}
|
|
532
505
|
.handsontable.ht-wrapper.htHasScrollX .htCore thead tr:last-child th:last-child,
|
|
533
506
|
.handsontable.ht-wrapper.htHasScrollX .htCore tbody tr:last-child td:last-child,
|
|
534
507
|
.handsontable.ht-wrapper.htHasScrollX .htCore tbody tr:last-child th:last-child {
|
|
535
|
-
border-end-end-radius: 0;
|
|
508
|
+
border-end-end-radius: 0 !important;
|
|
536
509
|
}
|
|
537
510
|
.handsontable.ht-wrapper.htHasScrollY .htCore {
|
|
538
511
|
border-start-end-radius: 0;
|
|
@@ -541,12 +514,12 @@
|
|
|
541
514
|
.handsontable.ht-wrapper.htHasScrollY .htCore thead tr:first-child th:last-child,
|
|
542
515
|
.handsontable.ht-wrapper.htHasScrollY .htCore tbody tr:first-child td:last-child,
|
|
543
516
|
.handsontable.ht-wrapper.htHasScrollY .htCore tbody tr:first-child th:last-child {
|
|
544
|
-
border-start-end-radius: 0;
|
|
517
|
+
border-start-end-radius: 0 !important;
|
|
545
518
|
}
|
|
546
519
|
.handsontable.ht-wrapper.htHasScrollY .htCore thead tr:last-child th:last-child,
|
|
547
520
|
.handsontable.ht-wrapper.htHasScrollY .htCore tbody tr:last-child td:last-child,
|
|
548
521
|
.handsontable.ht-wrapper.htHasScrollY .htCore tbody tr:last-child th:last-child {
|
|
549
|
-
border-end-end-radius: 0;
|
|
522
|
+
border-end-end-radius: 0 !important;
|
|
550
523
|
}
|
|
551
524
|
|
|
552
525
|
.handsontable.mobile {
|