handsontable 0.0.0-next-e54c3d6-20231026 → 0.0.0-next-42d5bd7-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.

Files changed (63) hide show
  1. package/3rdparty/walkontable/src/renderer/columnHeaders.js +3 -0
  2. package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +4 -1
  3. package/3rdparty/walkontable/src/renderer/rowHeaders.js +3 -0
  4. package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +4 -1
  5. package/base.js +2 -2
  6. package/base.mjs +2 -2
  7. package/core.js +1 -1
  8. package/core.mjs +1 -1
  9. package/dist/handsontable.css +45 -63
  10. package/dist/handsontable.full.css +45 -63
  11. package/dist/handsontable.full.js +253 -24
  12. package/dist/handsontable.full.min.css +5 -5
  13. package/dist/handsontable.full.min.js +105 -105
  14. package/dist/handsontable.js +253 -24
  15. package/dist/handsontable.min.css +5 -5
  16. package/dist/handsontable.min.js +19 -19
  17. package/dist/languages/all.js +24 -2
  18. package/dist/languages/all.min.js +1 -1
  19. package/dist/languages/en-US.js +12 -1
  20. package/dist/languages/en-US.min.js +1 -1
  21. package/dist/languages/pl-PL.js +12 -1
  22. package/dist/languages/pl-PL.min.js +1 -1
  23. package/helpers/a11y.js +2 -0
  24. package/helpers/a11y.mjs +1 -0
  25. package/helpers/dom/element.js +29 -0
  26. package/helpers/dom/element.mjs +28 -0
  27. package/helpers/mixed.js +1 -1
  28. package/helpers/mixed.mjs +1 -1
  29. package/i18n/constants.js +27 -1
  30. package/i18n/constants.mjs +14 -1
  31. package/i18n/languages/en-US.js +12 -1
  32. package/i18n/languages/en-US.mjs +12 -1
  33. package/i18n/languages/pl-PL.js +12 -1
  34. package/i18n/languages/pl-PL.mjs +12 -1
  35. package/languages/all.js +24 -2
  36. package/languages/en-US.js +12 -1
  37. package/languages/en-US.mjs +12 -1
  38. package/languages/index.js +24 -2
  39. package/languages/pl-PL.js +12 -1
  40. package/languages/pl-PL.mjs +12 -1
  41. package/package.json +1 -1
  42. package/plugins/collapsibleColumns/collapsibleColumns.js +3 -2
  43. package/plugins/collapsibleColumns/collapsibleColumns.mjs +4 -3
  44. package/plugins/columnSorting/columnSorting.js +29 -3
  45. package/plugins/columnSorting/columnSorting.mjs +31 -5
  46. package/plugins/contextMenu/menu/menuItemRenderer.js +12 -0
  47. package/plugins/contextMenu/menu/menuItemRenderer.mjs +14 -2
  48. package/plugins/dropdownMenu/dropdownMenu.js +2 -1
  49. package/plugins/dropdownMenu/dropdownMenu.mjs +3 -2
  50. package/plugins/filters/ui/input.js +0 -3
  51. package/plugins/filters/ui/input.mjs +0 -3
  52. package/plugins/filters/ui/select.js +6 -0
  53. package/plugins/filters/ui/select.mjs +6 -0
  54. package/plugins/hiddenColumns/hiddenColumns.js +48 -3
  55. package/plugins/hiddenColumns/hiddenColumns.mjs +47 -2
  56. package/plugins/hiddenRows/hiddenRows.js +48 -3
  57. package/plugins/hiddenRows/hiddenRows.mjs +47 -2
  58. package/plugins/multiColumnSorting/multiColumnSorting.js +21 -0
  59. package/plugins/multiColumnSorting/multiColumnSorting.mjs +22 -1
  60. package/plugins/nestedRows/nestedRows.js +2 -1
  61. package/plugins/nestedRows/nestedRows.mjs +2 -1
  62. package/plugins/nestedRows/ui/headers.js +3 -3
  63. package/plugins/nestedRows/ui/headers.mjs +4 -4
@@ -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 = "26/10/2023 20:16:30";
47
- Handsontable.version = "0.0.0-next-e54c3d6-20231026";
46
+ Handsontable.buildDate = "27/10/2023 07:58:46";
47
+ Handsontable.version = "0.0.0-next-42d5bd7-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 = "26/10/2023 20:16:43";
39
- Handsontable.version = "0.0.0-next-e54c3d6-20231026";
38
+ Handsontable.buildDate = "27/10/2023 07:58:58";
39
+ Handsontable.version = "0.0.0-next-42d5bd7-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) {
@@ -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-e54c3d6-20231026
29
- * Release date: 31/08/2023 (built at 26/10/2023 20:16:53)
28
+ * Version: 0.0.0-next-42d5bd7-20231027
29
+ * Release date: 31/08/2023 (built at 27/10/2023 07:59:06)
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
- } /* Arrow position */
508
- .handsontable span.colHeader.columnSorting::before {
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)::after {
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 :after {
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 :after {
707
+ [dir=rtl].handsontable .htSubmenu .submenuIndicator::after {
706
708
  content: "";
707
709
  }
708
710
 
709
- [dir=rtl].handsontable .htSubmenu :before {
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.afterHiddenColumn {
1629
- position: relative;
1630
- }
1631
-
1632
- .handsontable th.beforeHiddenColumn::after {
1627
+ .handsontable th.beforeHiddenColumn .beforeHiddenColumnIndicator::after {
1633
1628
  right: 1px;
1634
- content: "◀"; /* left arrow */
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: "▶"; /* right arrow */
1635
+ content: "▶";
1641
1636
  }
1642
1637
 
1643
- .handsontable th.afterHiddenColumn::before {
1638
+ .handsontable th.afterHiddenColumn .afterHiddenColumnIndicator::before {
1644
1639
  left: 1px;
1645
- content: "▶"; /* right arrow */
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: "◀"; /* left arrow */
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:before,
1682
- .handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight:after {
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;
@@ -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-e54c3d6-20231026
29
- * Release date: 31/08/2023 (built at 26/10/2023 20:16:53)
28
+ * Version: 0.0.0-next-42d5bd7-20231027
29
+ * Release date: 31/08/2023 (built at 27/10/2023 07:59:06)
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
- } /* Arrow position */
508
- .handsontable span.colHeader.columnSorting::before {
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)::after {
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 :after {
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 :after {
707
+ [dir=rtl].handsontable .htSubmenu .submenuIndicator::after {
706
708
  content: "";
707
709
  }
708
710
 
709
- [dir=rtl].handsontable .htSubmenu :before {
711
+ [dir=rtl].handsontable .htSubmenu .submenuIndicator::before {
710
712
  content: "◀";
711
713
  color: #777;
712
714
  position: absolute;
@@ -1707,10 +1709,6 @@ textarea.HandsontableCopyPaste {
1707
1709
  border: 1px solid #d2d1d1;
1708
1710
  }
1709
1711
 
1710
- .handsontable .htUIInputIcon {
1711
- position: absolute;
1712
- }
1713
-
1714
1712
  /* Button */
1715
1713
  .handsontable .htUIInput.htUIButton {
1716
1714
  cursor: pointer;
@@ -1845,12 +1843,13 @@ textarea.HandsontableCopyPaste {
1845
1843
  /*
1846
1844
  * Handsontable HiddenColumns
1847
1845
  */
1848
- .handsontable th.beforeHiddenColumn {
1846
+ .handsontable th.beforeHiddenColumn,
1847
+ .handsontable th.afterHiddenColumn {
1849
1848
  position: relative;
1850
1849
  }
1851
1850
 
1852
- .handsontable th.beforeHiddenColumn::after,
1853
- .handsontable th.afterHiddenColumn::before {
1851
+ .handsontable th.beforeHiddenColumn .beforeHiddenColumnIndicator::after,
1852
+ .handsontable th.afterHiddenColumn .afterHiddenColumnIndicator::before {
1854
1853
  color: #bbb;
1855
1854
  position: absolute;
1856
1855
  top: 50%;
@@ -1858,37 +1857,33 @@ textarea.HandsontableCopyPaste {
1858
1857
  transform: translateY(-50%);
1859
1858
  }
1860
1859
 
1861
- .handsontable th.afterHiddenColumn {
1862
- position: relative;
1863
- }
1864
-
1865
- .handsontable th.beforeHiddenColumn::after {
1860
+ .handsontable th.beforeHiddenColumn .beforeHiddenColumnIndicator::after {
1866
1861
  right: 1px;
1867
- content: "◀"; /* left arrow */
1862
+ content: "◀";
1868
1863
  }
1869
1864
 
1870
- [dir=rtl].handsontable th.beforeHiddenColumn::after {
1865
+ [dir=rtl].handsontable th.beforeHiddenColumn .beforeHiddenColumnIndicator::after {
1871
1866
  right: initial;
1872
1867
  left: 1px;
1873
- content: "▶"; /* right arrow */
1868
+ content: "▶";
1874
1869
  }
1875
1870
 
1876
- .handsontable th.afterHiddenColumn::before {
1871
+ .handsontable th.afterHiddenColumn .afterHiddenColumnIndicator::before {
1877
1872
  left: 1px;
1878
- content: "▶"; /* right arrow */
1873
+ content: "▶";
1879
1874
  }
1880
1875
 
1881
- [dir=rtl].handsontable th.afterHiddenColumn::before {
1876
+ [dir=rtl].handsontable th.afterHiddenColumn .afterHiddenColumnIndicator::before {
1882
1877
  right: 1px;
1883
1878
  left: initial;
1884
- content: "◀"; /* left arrow */
1879
+ content: "◀";
1885
1880
  }
1886
1881
  @charset "UTF-8";
1887
1882
  /*!
1888
1883
  * Handsontable HiddenRows
1889
1884
  */
1890
- .handsontable th.beforeHiddenRow::before,
1891
- .handsontable th.afterHiddenRow::after {
1885
+ .handsontable th.beforeHiddenRow .beforeHiddenRowIndicator::before,
1886
+ .handsontable th.afterHiddenRow .afterHiddenRowIndicator::after {
1892
1887
  color: #bbb;
1893
1888
  font-size: 6pt;
1894
1889
  line-height: 6pt;
@@ -1901,18 +1896,18 @@ textarea.HandsontableCopyPaste {
1901
1896
  position: relative;
1902
1897
  }
1903
1898
 
1904
- .handsontable th.beforeHiddenRow::before {
1905
- content: "▲";
1899
+ .handsontable th.beforeHiddenRow .beforeHiddenRowIndicator::before {
1900
+ content: "▲"; /* up-pointing triangle */
1906
1901
  bottom: 2px;
1907
1902
  }
1908
1903
 
1909
- .handsontable th.afterHiddenRow::after {
1910
- content: "▼";
1904
+ .handsontable th.afterHiddenRow .afterHiddenRowIndicator::after {
1905
+ content: "▼"; /* down-pointing triangle */
1911
1906
  top: 2px;
1912
1907
  }
1913
1908
 
1914
- .handsontable.ht__selection--rows tbody th.beforeHiddenRow.ht__highlight:before,
1915
- .handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight:after {
1909
+ .handsontable.ht__selection--rows tbody th.beforeHiddenRow.ht__highlight .beforeHiddenRowIndicator::before,
1910
+ .handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight .afterHiddenRowIndicator::after {
1916
1911
  color: #eee;
1917
1912
  }
1918
1913
 
@@ -2065,7 +2060,7 @@ textarea.HandsontableCopyPaste {
2065
2060
  opacity: 0.58;
2066
2061
  }
2067
2062
  /* Column's number position */
2068
- .handsontable span.colHeader.columnSorting::after {
2063
+ .handsontable span.colHeader.columnSorting .columnSortingIndicator::after {
2069
2064
  /* Centering start */
2070
2065
  top: 50%;
2071
2066
  /* Two extra pixels (-2 instead of -4) for purpose of proper positioning of numeric indicators, when `font-size` set to default */
@@ -2084,7 +2079,7 @@ textarea.HandsontableCopyPaste {
2084
2079
  text-decoration: underline;
2085
2080
  }
2086
2081
 
2087
- [dir=rtl].handsontable span.colHeader.columnSorting::after {
2082
+ [dir=rtl].handsontable span.colHeader.columnSorting .columnSortingIndicator::after {
2088
2083
  left: -15px;
2089
2084
  right: unset;
2090
2085
  /* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */
@@ -2093,41 +2088,41 @@ textarea.HandsontableCopyPaste {
2093
2088
  }
2094
2089
 
2095
2090
  /* Workaround for IE9 - IE11, https://stackoverflow.com/a/21902566, https://stackoverflow.com/a/32120247 */
2096
- .handsontable span.colHeader.columnSorting::after {
2091
+ .handsontable span.colHeader.columnSorting .columnSortingIndicator::after {
2097
2092
  text-decoration: none;
2098
2093
  }
2099
2094
 
2100
2095
  /* We support up to 7 numeric indicators, describing order of column in sorted columns queue */
2101
- .handsontable span.colHeader.columnSorting[class^=sort-]::after,
2102
- .handsontable span.colHeader.columnSorting[class*=" sort-"]::after {
2096
+ .handsontable span.colHeader.columnSorting[class^=sort-] .columnSortingIndicator::after,
2097
+ .handsontable span.colHeader.columnSorting[class*=" sort-"] .columnSortingIndicator::after {
2103
2098
  content: "+";
2104
2099
  }
2105
2100
 
2106
- .handsontable span.colHeader.columnSorting.sort-1::after {
2101
+ .handsontable span.colHeader.columnSorting.sort-1 .columnSortingIndicator::after {
2107
2102
  content: "1";
2108
2103
  }
2109
2104
 
2110
- .handsontable span.colHeader.columnSorting.sort-2::after {
2105
+ .handsontable span.colHeader.columnSorting.sort-2 .columnSortingIndicator::after {
2111
2106
  content: "2";
2112
2107
  }
2113
2108
 
2114
- .handsontable span.colHeader.columnSorting.sort-3::after {
2109
+ .handsontable span.colHeader.columnSorting.sort-3 .columnSortingIndicator::after {
2115
2110
  content: "3";
2116
2111
  }
2117
2112
 
2118
- .handsontable span.colHeader.columnSorting.sort-4::after {
2113
+ .handsontable span.colHeader.columnSorting.sort-4 .columnSortingIndicator::after {
2119
2114
  content: "4";
2120
2115
  }
2121
2116
 
2122
- .handsontable span.colHeader.columnSorting.sort-5::after {
2117
+ .handsontable span.colHeader.columnSorting.sort-5 .columnSortingIndicator::after {
2123
2118
  content: "5";
2124
2119
  }
2125
2120
 
2126
- .handsontable span.colHeader.columnSorting.sort-6::after {
2121
+ .handsontable span.colHeader.columnSorting.sort-6 .columnSortingIndicator::after {
2127
2122
  content: "6";
2128
2123
  }
2129
2124
 
2130
- .handsontable span.colHeader.columnSorting.sort-7::after {
2125
+ .handsontable span.colHeader.columnSorting.sort-7 .columnSortingIndicator::after {
2131
2126
  content: "7";
2132
2127
  }
2133
2128
 
@@ -2138,7 +2133,6 @@ textarea.HandsontableCopyPaste {
2138
2133
  .handsontable thead th.hiddenHeader:not(:first-of-type) {
2139
2134
  display: none;
2140
2135
  }
2141
- @charset "UTF-8";
2142
2136
  .handsontable th.ht_nestingLevels {
2143
2137
  text-align: left;
2144
2138
  padding-left: 7px;
@@ -2172,10 +2166,6 @@ textarea.HandsontableCopyPaste {
2172
2166
  right: unset;
2173
2167
  }
2174
2168
 
2175
- .handsontable th span.ht_nestingLevel {
2176
- display: inline-block;
2177
- }
2178
-
2179
2169
  .handsontable th span.ht_nestingLevel_empty {
2180
2170
  display: inline-block;
2181
2171
  width: 10px;
@@ -2187,14 +2177,6 @@ textarea.HandsontableCopyPaste {
2187
2177
  float: right;
2188
2178
  }
2189
2179
 
2190
- .handsontable th span.ht_nestingLevel::after {
2191
- content: "┐";
2192
- font-size: 9px;
2193
- display: inline-block;
2194
- position: relative;
2195
- bottom: 3px;
2196
- }
2197
-
2198
2180
  .handsontable th div.ht_nestingButton {
2199
2181
  display: inline-block;
2200
2182
  position: absolute;