handsontable 0.0.0-next-e54c3d6-20231026 → 0.0.0-next-0c0e2e5-20231027
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/3rdparty/walkontable/src/cell/coords.js +2 -1
- package/3rdparty/walkontable/src/cell/coords.mjs +2 -1
- package/3rdparty/walkontable/src/renderer/columnHeaders.js +3 -0
- package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +4 -1
- package/3rdparty/walkontable/src/renderer/rowHeaders.js +3 -0
- package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +4 -1
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +1 -1
- package/core.mjs +1 -1
- package/dist/handsontable.css +45 -63
- package/dist/handsontable.full.css +45 -63
- package/dist/handsontable.full.js +255 -25
- package/dist/handsontable.full.min.css +5 -5
- package/dist/handsontable.full.min.js +105 -105
- package/dist/handsontable.js +255 -25
- package/dist/handsontable.min.css +5 -5
- package/dist/handsontable.min.js +19 -19
- package/dist/languages/all.js +24 -2
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/en-US.js +12 -1
- package/dist/languages/en-US.min.js +1 -1
- package/dist/languages/pl-PL.js +12 -1
- package/dist/languages/pl-PL.min.js +1 -1
- package/helpers/a11y.js +2 -0
- package/helpers/a11y.mjs +1 -0
- package/helpers/dom/element.js +29 -0
- package/helpers/dom/element.mjs +28 -0
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/i18n/constants.js +27 -1
- package/i18n/constants.mjs +14 -1
- package/i18n/languages/en-US.js +12 -1
- package/i18n/languages/en-US.mjs +12 -1
- package/i18n/languages/pl-PL.js +12 -1
- package/i18n/languages/pl-PL.mjs +12 -1
- package/languages/all.js +24 -2
- package/languages/en-US.js +12 -1
- package/languages/en-US.mjs +12 -1
- package/languages/index.js +24 -2
- package/languages/pl-PL.js +12 -1
- package/languages/pl-PL.mjs +12 -1
- package/package.json +1 -1
- package/plugins/collapsibleColumns/collapsibleColumns.js +3 -2
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +4 -3
- package/plugins/columnSorting/columnSorting.js +29 -3
- package/plugins/columnSorting/columnSorting.mjs +31 -5
- package/plugins/contextMenu/menu/menuItemRenderer.js +12 -0
- package/plugins/contextMenu/menu/menuItemRenderer.mjs +14 -2
- package/plugins/dropdownMenu/dropdownMenu.js +2 -1
- package/plugins/dropdownMenu/dropdownMenu.mjs +3 -2
- package/plugins/filters/ui/input.js +0 -3
- package/plugins/filters/ui/input.mjs +0 -3
- package/plugins/filters/ui/select.js +6 -0
- package/plugins/filters/ui/select.mjs +6 -0
- package/plugins/hiddenColumns/hiddenColumns.js +48 -3
- package/plugins/hiddenColumns/hiddenColumns.mjs +47 -2
- package/plugins/hiddenRows/hiddenRows.js +48 -3
- package/plugins/hiddenRows/hiddenRows.mjs +47 -2
- package/plugins/multiColumnSorting/multiColumnSorting.js +21 -0
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +22 -1
- package/plugins/nestedRows/nestedRows.js +2 -1
- package/plugins/nestedRows/nestedRows.mjs +2 -1
- package/plugins/nestedRows/ui/headers.js +3 -3
- package/plugins/nestedRows/ui/headers.mjs +4 -4
@@ -210,7 +210,8 @@ class CellCoords {
|
|
210
210
|
* Assigns the coordinates from another `CellCoords` instance (or compatible literal object)
|
211
211
|
* to your `CellCoords` instance.
|
212
212
|
*
|
213
|
-
* @param {CellCoords | { row
|
213
|
+
* @param {CellCoords | { row: number | undefined, col: number | undefined }} coords The CellCoords
|
214
|
+
* instance or compatible literal object.
|
214
215
|
* @returns {CellCoords}
|
215
216
|
*/
|
216
217
|
assign(coords) {
|
@@ -207,7 +207,8 @@ class CellCoords {
|
|
207
207
|
* Assigns the coordinates from another `CellCoords` instance (or compatible literal object)
|
208
208
|
* to your `CellCoords` instance.
|
209
209
|
*
|
210
|
-
* @param {CellCoords | { row
|
210
|
+
* @param {CellCoords | { row: number | undefined, col: number | undefined }} coords The CellCoords
|
211
|
+
* instance or compatible literal object.
|
211
212
|
* @returns {CellCoords}
|
212
213
|
*/
|
213
214
|
assign(coords) {
|
@@ -89,6 +89,9 @@ class ColumnHeadersRenderer extends _base.default {
|
|
89
89
|
const TH = TR.childNodes[renderedColumnIndex + rowHeadersCount];
|
90
90
|
TH.className = '';
|
91
91
|
TH.removeAttribute('style');
|
92
|
+
|
93
|
+
// Remove all accessibility-related attributes for the header to start fresh.
|
94
|
+
(0, _element.removeAttribute)(TH, [new RegExp('aria-(.*)'), new RegExp('role')]);
|
92
95
|
if (this.table.isAriaEnabled()) {
|
93
96
|
(0, _element.setAttribute)(TH, [(0, _a11y.A11Y_COLINDEX)(renderedColumnIndex + 1 + this.table.rowHeadersCount), (0, _a11y.A11Y_TABINDEX)(-1), ...(renderedColumnIndex < 0 ? [(0, _a11y.A11Y_PRESENTATION)()] : [(0, _a11y.A11Y_COLUMNHEADER)(), (0, _a11y.A11Y_SCOPE_COL)()])]);
|
94
97
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { empty, setAttribute } from "./../../../../helpers/dom/element.mjs";
|
1
|
+
import { empty, setAttribute, removeAttribute } from "./../../../../helpers/dom/element.mjs";
|
2
2
|
import BaseRenderer from "./_base.mjs";
|
3
3
|
import { A11Y_COLINDEX, A11Y_COLUMNHEADER, A11Y_PRESENTATION, A11Y_ROW, A11Y_ROWINDEX, A11Y_SCOPE_COL, A11Y_TABINDEX } from "../../../../helpers/a11y.mjs";
|
4
4
|
/**
|
@@ -85,6 +85,9 @@ export default class ColumnHeadersRenderer extends BaseRenderer {
|
|
85
85
|
const TH = TR.childNodes[renderedColumnIndex + rowHeadersCount];
|
86
86
|
TH.className = '';
|
87
87
|
TH.removeAttribute('style');
|
88
|
+
|
89
|
+
// Remove all accessibility-related attributes for the header to start fresh.
|
90
|
+
removeAttribute(TH, [new RegExp('aria-(.*)'), new RegExp('role')]);
|
88
91
|
if (this.table.isAriaEnabled()) {
|
89
92
|
setAttribute(TH, [A11Y_COLINDEX(renderedColumnIndex + 1 + this.table.rowHeadersCount), A11Y_TABINDEX(-1), ...(renderedColumnIndex < 0 ? [A11Y_PRESENTATION()] : [A11Y_COLUMNHEADER(), A11Y_SCOPE_COL()])]);
|
90
93
|
}
|
@@ -76,6 +76,9 @@ class RowHeadersRenderer extends _base.default {
|
|
76
76
|
const TH = orderView.getCurrentNode();
|
77
77
|
TH.className = '';
|
78
78
|
TH.removeAttribute('style');
|
79
|
+
|
80
|
+
// Remove all accessibility-related attributes for the header to start fresh.
|
81
|
+
(0, _element.removeAttribute)(TH, [new RegExp('aria-(.*)'), new RegExp('role')]);
|
79
82
|
if (this.table.isAriaEnabled()) {
|
80
83
|
(0, _element.setAttribute)(TH, [(0, _a11y.A11Y_ROWHEADER)(), (0, _a11y.A11Y_SCOPE_ROW)(), (0, _a11y.A11Y_COLINDEX)(visibleColumnIndex + 1), (0, _a11y.A11Y_TABINDEX)(-1)]);
|
81
84
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { SharedOrderView } from "./../utils/orderView/index.mjs";
|
2
2
|
import BaseRenderer from "./_base.mjs";
|
3
|
-
import { setAttribute } from "../../../../helpers/dom/element.mjs";
|
3
|
+
import { setAttribute, removeAttribute } from "../../../../helpers/dom/element.mjs";
|
4
4
|
import { A11Y_COLINDEX, A11Y_ROWHEADER, A11Y_SCOPE_ROW, A11Y_TABINDEX } from "../../../../helpers/a11y.mjs";
|
5
5
|
/**
|
6
6
|
* Row headers renderer responsible for managing (inserting, tracking, rendering) TR elements belongs to TR.
|
@@ -72,6 +72,9 @@ export default class RowHeadersRenderer extends BaseRenderer {
|
|
72
72
|
const TH = orderView.getCurrentNode();
|
73
73
|
TH.className = '';
|
74
74
|
TH.removeAttribute('style');
|
75
|
+
|
76
|
+
// Remove all accessibility-related attributes for the header to start fresh.
|
77
|
+
removeAttribute(TH, [new RegExp('aria-(.*)'), new RegExp('role')]);
|
75
78
|
if (this.table.isAriaEnabled()) {
|
76
79
|
setAttribute(TH, [A11Y_ROWHEADER(), A11Y_SCOPE_ROW(), A11Y_COLINDEX(visibleColumnIndex + 1), A11Y_TABINDEX(-1)]);
|
77
80
|
}
|
package/base.js
CHANGED
@@ -43,8 +43,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
43
43
|
Handsontable.CellCoords = _src.CellCoords;
|
44
44
|
Handsontable.CellRange = _src.CellRange;
|
45
45
|
Handsontable.packageName = 'handsontable';
|
46
|
-
Handsontable.buildDate = "
|
47
|
-
Handsontable.version = "0.0.0-next-
|
46
|
+
Handsontable.buildDate = "27/10/2023 09:24:04";
|
47
|
+
Handsontable.version = "0.0.0-next-0c0e2e5-20231027";
|
48
48
|
Handsontable.languages = {
|
49
49
|
dictionaryKeys: _registry.dictionaryKeys,
|
50
50
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
package/base.mjs
CHANGED
@@ -35,8 +35,8 @@ Handsontable.hooks = Hooks.getSingleton();
|
|
35
35
|
Handsontable.CellCoords = CellCoords;
|
36
36
|
Handsontable.CellRange = CellRange;
|
37
37
|
Handsontable.packageName = 'handsontable';
|
38
|
-
Handsontable.buildDate = "
|
39
|
-
Handsontable.version = "0.0.0-next-
|
38
|
+
Handsontable.buildDate = "27/10/2023 09:24:17";
|
39
|
+
Handsontable.version = "0.0.0-next-0c0e2e5-20231027";
|
40
40
|
Handsontable.languages = {
|
41
41
|
dictionaryKeys,
|
42
42
|
getLanguageDictionary,
|
package/core.js
CHANGED
@@ -4408,7 +4408,7 @@ function Core(rootElement, userSettings) {
|
|
4408
4408
|
* @function getTranslatedPhrase
|
4409
4409
|
* @since 0.35.0
|
4410
4410
|
* @param {string} dictionaryKey Constant which is dictionary key.
|
4411
|
-
* @param {*} extraArguments Arguments which will be handled by formatters.
|
4411
|
+
* @param {*} [extraArguments] Arguments which will be handled by formatters.
|
4412
4412
|
* @returns {string}
|
4413
4413
|
*/
|
4414
4414
|
this.getTranslatedPhrase = function (dictionaryKey, extraArguments) {
|
package/core.mjs
CHANGED
@@ -4403,7 +4403,7 @@ export default function Core(rootElement, userSettings) {
|
|
4403
4403
|
* @function getTranslatedPhrase
|
4404
4404
|
* @since 0.35.0
|
4405
4405
|
* @param {string} dictionaryKey Constant which is dictionary key.
|
4406
|
-
* @param {*} extraArguments Arguments which will be handled by formatters.
|
4406
|
+
* @param {*} [extraArguments] Arguments which will be handled by formatters.
|
4407
4407
|
* @returns {string}
|
4408
4408
|
*/
|
4409
4409
|
this.getTranslatedPhrase = function (dictionaryKey, extraArguments) {
|
package/dist/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: 31/08/2023 (built at
|
28
|
+
* Version: 0.0.0-next-0c0e2e5-20231027
|
29
|
+
* Release date: 31/08/2023 (built at 27/10/2023 09:24:26)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -504,8 +504,10 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
504
504
|
.handsontable .columnSorting.sortAction:hover {
|
505
505
|
text-decoration: underline;
|
506
506
|
cursor: pointer;
|
507
|
-
}
|
508
|
-
|
507
|
+
}
|
508
|
+
|
509
|
+
/* Arrow position */
|
510
|
+
.handsontable span.colHeader.columnSorting .columnSortingIndicator::before {
|
509
511
|
/* Centering start */
|
510
512
|
top: 50%;
|
511
513
|
/* One extra pixel for purpose of proper positioning of sorting arrow, when `font-size` set to default */
|
@@ -525,7 +527,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
525
527
|
background-position-x: right;
|
526
528
|
}
|
527
529
|
|
528
|
-
[dir=rtl].handsontable span.colHeader.columnSorting::before {
|
530
|
+
[dir=rtl].handsontable span.colHeader.columnSorting .columnSortingIndicator::before {
|
529
531
|
/* Centering end */
|
530
532
|
/* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
|
531
533
|
padding-right: 8px;
|
@@ -535,17 +537,17 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
535
537
|
background-position-x: left;
|
536
538
|
}
|
537
539
|
|
538
|
-
.handsontable span.colHeader.columnSorting.ascending::before {
|
540
|
+
.handsontable span.colHeader.columnSorting.ascending .columnSortingIndicator::before {
|
539
541
|
/* arrow up; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
|
540
542
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC);
|
541
543
|
}
|
542
544
|
|
543
|
-
.handsontable span.colHeader.columnSorting.descending::before {
|
545
|
+
.handsontable span.colHeader.columnSorting.descending .columnSortingIndicator::before {
|
544
546
|
/* arrow down; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
|
545
547
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=);
|
546
548
|
}
|
547
549
|
|
548
|
-
.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::
|
550
|
+
.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::before {
|
549
551
|
content: "*";
|
550
552
|
display: inline-block;
|
551
553
|
position: relative;
|
@@ -694,7 +696,7 @@ TextRenderer readOnly cell
|
|
694
696
|
position: relative;
|
695
697
|
}
|
696
698
|
|
697
|
-
.handsontable .htSubmenu
|
699
|
+
.handsontable .htSubmenu .submenuIndicator::after {
|
698
700
|
content: "▶";
|
699
701
|
color: #777;
|
700
702
|
position: absolute;
|
@@ -702,11 +704,11 @@ TextRenderer readOnly cell
|
|
702
704
|
font-size: 9px;
|
703
705
|
}
|
704
706
|
|
705
|
-
[dir=rtl].handsontable .htSubmenu
|
707
|
+
[dir=rtl].handsontable .htSubmenu .submenuIndicator::after {
|
706
708
|
content: "";
|
707
709
|
}
|
708
710
|
|
709
|
-
[dir=rtl].handsontable .htSubmenu
|
711
|
+
[dir=rtl].handsontable .htSubmenu .submenuIndicator::before {
|
710
712
|
content: "◀";
|
711
713
|
color: #777;
|
712
714
|
position: absolute;
|
@@ -1474,10 +1476,6 @@ textarea.HandsontableCopyPaste {
|
|
1474
1476
|
border: 1px solid #d2d1d1;
|
1475
1477
|
}
|
1476
1478
|
|
1477
|
-
.handsontable .htUIInputIcon {
|
1478
|
-
position: absolute;
|
1479
|
-
}
|
1480
|
-
|
1481
1479
|
/* Button */
|
1482
1480
|
.handsontable .htUIInput.htUIButton {
|
1483
1481
|
cursor: pointer;
|
@@ -1612,12 +1610,13 @@ textarea.HandsontableCopyPaste {
|
|
1612
1610
|
/*
|
1613
1611
|
* Handsontable HiddenColumns
|
1614
1612
|
*/
|
1615
|
-
.handsontable th.beforeHiddenColumn
|
1613
|
+
.handsontable th.beforeHiddenColumn,
|
1614
|
+
.handsontable th.afterHiddenColumn {
|
1616
1615
|
position: relative;
|
1617
1616
|
}
|
1618
1617
|
|
1619
|
-
.handsontable th.beforeHiddenColumn::after,
|
1620
|
-
.handsontable th.afterHiddenColumn::before {
|
1618
|
+
.handsontable th.beforeHiddenColumn .beforeHiddenColumnIndicator::after,
|
1619
|
+
.handsontable th.afterHiddenColumn .afterHiddenColumnIndicator::before {
|
1621
1620
|
color: #bbb;
|
1622
1621
|
position: absolute;
|
1623
1622
|
top: 50%;
|
@@ -1625,37 +1624,33 @@ textarea.HandsontableCopyPaste {
|
|
1625
1624
|
transform: translateY(-50%);
|
1626
1625
|
}
|
1627
1626
|
|
1628
|
-
.handsontable th.
|
1629
|
-
position: relative;
|
1630
|
-
}
|
1631
|
-
|
1632
|
-
.handsontable th.beforeHiddenColumn::after {
|
1627
|
+
.handsontable th.beforeHiddenColumn .beforeHiddenColumnIndicator::after {
|
1633
1628
|
right: 1px;
|
1634
|
-
content: "◀";
|
1629
|
+
content: "◀";
|
1635
1630
|
}
|
1636
1631
|
|
1637
|
-
[dir=rtl].handsontable th.beforeHiddenColumn::after {
|
1632
|
+
[dir=rtl].handsontable th.beforeHiddenColumn .beforeHiddenColumnIndicator::after {
|
1638
1633
|
right: initial;
|
1639
1634
|
left: 1px;
|
1640
|
-
content: "▶";
|
1635
|
+
content: "▶";
|
1641
1636
|
}
|
1642
1637
|
|
1643
|
-
.handsontable th.afterHiddenColumn::before {
|
1638
|
+
.handsontable th.afterHiddenColumn .afterHiddenColumnIndicator::before {
|
1644
1639
|
left: 1px;
|
1645
|
-
content: "▶";
|
1640
|
+
content: "▶";
|
1646
1641
|
}
|
1647
1642
|
|
1648
|
-
[dir=rtl].handsontable th.afterHiddenColumn::before {
|
1643
|
+
[dir=rtl].handsontable th.afterHiddenColumn .afterHiddenColumnIndicator::before {
|
1649
1644
|
right: 1px;
|
1650
1645
|
left: initial;
|
1651
|
-
content: "◀";
|
1646
|
+
content: "◀";
|
1652
1647
|
}
|
1653
1648
|
@charset "UTF-8";
|
1654
1649
|
/*!
|
1655
1650
|
* Handsontable HiddenRows
|
1656
1651
|
*/
|
1657
|
-
.handsontable th.beforeHiddenRow::before,
|
1658
|
-
.handsontable th.afterHiddenRow::after {
|
1652
|
+
.handsontable th.beforeHiddenRow .beforeHiddenRowIndicator::before,
|
1653
|
+
.handsontable th.afterHiddenRow .afterHiddenRowIndicator::after {
|
1659
1654
|
color: #bbb;
|
1660
1655
|
font-size: 6pt;
|
1661
1656
|
line-height: 6pt;
|
@@ -1668,18 +1663,18 @@ textarea.HandsontableCopyPaste {
|
|
1668
1663
|
position: relative;
|
1669
1664
|
}
|
1670
1665
|
|
1671
|
-
.handsontable th.beforeHiddenRow::before {
|
1672
|
-
content: "▲";
|
1666
|
+
.handsontable th.beforeHiddenRow .beforeHiddenRowIndicator::before {
|
1667
|
+
content: "▲"; /* up-pointing triangle */
|
1673
1668
|
bottom: 2px;
|
1674
1669
|
}
|
1675
1670
|
|
1676
|
-
.handsontable th.afterHiddenRow::after {
|
1677
|
-
content: "▼";
|
1671
|
+
.handsontable th.afterHiddenRow .afterHiddenRowIndicator::after {
|
1672
|
+
content: "▼"; /* down-pointing triangle */
|
1678
1673
|
top: 2px;
|
1679
1674
|
}
|
1680
1675
|
|
1681
|
-
.handsontable.ht__selection--rows tbody th.beforeHiddenRow.ht__highlight
|
1682
|
-
.handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight
|
1676
|
+
.handsontable.ht__selection--rows tbody th.beforeHiddenRow.ht__highlight .beforeHiddenRowIndicator::before,
|
1677
|
+
.handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight .afterHiddenRowIndicator::after {
|
1683
1678
|
color: #eee;
|
1684
1679
|
}
|
1685
1680
|
|
@@ -1832,7 +1827,7 @@ textarea.HandsontableCopyPaste {
|
|
1832
1827
|
opacity: 0.58;
|
1833
1828
|
}
|
1834
1829
|
/* Column's number position */
|
1835
|
-
.handsontable span.colHeader.columnSorting::after {
|
1830
|
+
.handsontable span.colHeader.columnSorting .columnSortingIndicator::after {
|
1836
1831
|
/* Centering start */
|
1837
1832
|
top: 50%;
|
1838
1833
|
/* Two extra pixels (-2 instead of -4) for purpose of proper positioning of numeric indicators, when `font-size` set to default */
|
@@ -1851,7 +1846,7 @@ textarea.HandsontableCopyPaste {
|
|
1851
1846
|
text-decoration: underline;
|
1852
1847
|
}
|
1853
1848
|
|
1854
|
-
[dir=rtl].handsontable span.colHeader.columnSorting::after {
|
1849
|
+
[dir=rtl].handsontable span.colHeader.columnSorting .columnSortingIndicator::after {
|
1855
1850
|
left: -15px;
|
1856
1851
|
right: unset;
|
1857
1852
|
/* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */
|
@@ -1860,41 +1855,41 @@ textarea.HandsontableCopyPaste {
|
|
1860
1855
|
}
|
1861
1856
|
|
1862
1857
|
/* Workaround for IE9 - IE11, https://stackoverflow.com/a/21902566, https://stackoverflow.com/a/32120247 */
|
1863
|
-
.handsontable span.colHeader.columnSorting::after {
|
1858
|
+
.handsontable span.colHeader.columnSorting .columnSortingIndicator::after {
|
1864
1859
|
text-decoration: none;
|
1865
1860
|
}
|
1866
1861
|
|
1867
1862
|
/* We support up to 7 numeric indicators, describing order of column in sorted columns queue */
|
1868
|
-
.handsontable span.colHeader.columnSorting[class^=sort-]::after,
|
1869
|
-
.handsontable span.colHeader.columnSorting[class*=" sort-"]::after {
|
1863
|
+
.handsontable span.colHeader.columnSorting[class^=sort-] .columnSortingIndicator::after,
|
1864
|
+
.handsontable span.colHeader.columnSorting[class*=" sort-"] .columnSortingIndicator::after {
|
1870
1865
|
content: "+";
|
1871
1866
|
}
|
1872
1867
|
|
1873
|
-
.handsontable span.colHeader.columnSorting.sort-1::after {
|
1868
|
+
.handsontable span.colHeader.columnSorting.sort-1 .columnSortingIndicator::after {
|
1874
1869
|
content: "1";
|
1875
1870
|
}
|
1876
1871
|
|
1877
|
-
.handsontable span.colHeader.columnSorting.sort-2::after {
|
1872
|
+
.handsontable span.colHeader.columnSorting.sort-2 .columnSortingIndicator::after {
|
1878
1873
|
content: "2";
|
1879
1874
|
}
|
1880
1875
|
|
1881
|
-
.handsontable span.colHeader.columnSorting.sort-3::after {
|
1876
|
+
.handsontable span.colHeader.columnSorting.sort-3 .columnSortingIndicator::after {
|
1882
1877
|
content: "3";
|
1883
1878
|
}
|
1884
1879
|
|
1885
|
-
.handsontable span.colHeader.columnSorting.sort-4::after {
|
1880
|
+
.handsontable span.colHeader.columnSorting.sort-4 .columnSortingIndicator::after {
|
1886
1881
|
content: "4";
|
1887
1882
|
}
|
1888
1883
|
|
1889
|
-
.handsontable span.colHeader.columnSorting.sort-5::after {
|
1884
|
+
.handsontable span.colHeader.columnSorting.sort-5 .columnSortingIndicator::after {
|
1890
1885
|
content: "5";
|
1891
1886
|
}
|
1892
1887
|
|
1893
|
-
.handsontable span.colHeader.columnSorting.sort-6::after {
|
1888
|
+
.handsontable span.colHeader.columnSorting.sort-6 .columnSortingIndicator::after {
|
1894
1889
|
content: "6";
|
1895
1890
|
}
|
1896
1891
|
|
1897
|
-
.handsontable span.colHeader.columnSorting.sort-7::after {
|
1892
|
+
.handsontable span.colHeader.columnSorting.sort-7 .columnSortingIndicator::after {
|
1898
1893
|
content: "7";
|
1899
1894
|
}
|
1900
1895
|
|
@@ -1905,7 +1900,6 @@ textarea.HandsontableCopyPaste {
|
|
1905
1900
|
.handsontable thead th.hiddenHeader:not(:first-of-type) {
|
1906
1901
|
display: none;
|
1907
1902
|
}
|
1908
|
-
@charset "UTF-8";
|
1909
1903
|
.handsontable th.ht_nestingLevels {
|
1910
1904
|
text-align: left;
|
1911
1905
|
padding-left: 7px;
|
@@ -1939,10 +1933,6 @@ textarea.HandsontableCopyPaste {
|
|
1939
1933
|
right: unset;
|
1940
1934
|
}
|
1941
1935
|
|
1942
|
-
.handsontable th span.ht_nestingLevel {
|
1943
|
-
display: inline-block;
|
1944
|
-
}
|
1945
|
-
|
1946
1936
|
.handsontable th span.ht_nestingLevel_empty {
|
1947
1937
|
display: inline-block;
|
1948
1938
|
width: 10px;
|
@@ -1954,14 +1944,6 @@ textarea.HandsontableCopyPaste {
|
|
1954
1944
|
float: right;
|
1955
1945
|
}
|
1956
1946
|
|
1957
|
-
.handsontable th span.ht_nestingLevel::after {
|
1958
|
-
content: "┐";
|
1959
|
-
font-size: 9px;
|
1960
|
-
display: inline-block;
|
1961
|
-
position: relative;
|
1962
|
-
bottom: 3px;
|
1963
|
-
}
|
1964
|
-
|
1965
1947
|
.handsontable th div.ht_nestingButton {
|
1966
1948
|
display: inline-block;
|
1967
1949
|
position: absolute;
|