handsontable 0.0.0-next-2cb2d27-20240709 → 0.0.0-next-b799724-20240710

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/base.js CHANGED
@@ -45,8 +45,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
45
45
  Handsontable.CellCoords = _src.CellCoords;
46
46
  Handsontable.CellRange = _src.CellRange;
47
47
  Handsontable.packageName = 'handsontable';
48
- Handsontable.buildDate = "09/07/2024 12:07:20";
49
- Handsontable.version = "0.0.0-next-2cb2d27-20240709";
48
+ Handsontable.buildDate = "10/07/2024 12:55:54";
49
+ Handsontable.version = "0.0.0-next-b799724-20240710";
50
50
  Handsontable.languages = {
51
51
  dictionaryKeys: _registry.dictionaryKeys,
52
52
  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 = "09/07/2024 12:07:25";
39
- Handsontable.version = "0.0.0-next-2cb2d27-20240709";
38
+ Handsontable.buildDate = "10/07/2024 12:55:59";
39
+ Handsontable.version = "0.0.0-next-b799724-20240710";
40
40
  Handsontable.languages = {
41
41
  dictionaryKeys,
42
42
  getLanguageDictionary,
@@ -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-2cb2d27-20240709
29
- * Release date: 11/06/2024 (built at 09/07/2024 12:07:29)
28
+ * Version: 0.0.0-next-b799724-20240710
29
+ * Release date: 11/06/2024 (built at 10/07/2024 12:56:04)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
@@ -498,63 +498,6 @@ innerBorderBottom - Property controlled by bottom overlay
498
498
  z-index: 209;
499
499
  }
500
500
 
501
- .handsontable .columnSorting {
502
- position: relative;
503
- }
504
-
505
- .handsontable .columnSorting.sortAction:hover {
506
- text-decoration: underline;
507
- cursor: pointer;
508
- } /* Arrow position */
509
- .handsontable span.colHeader.columnSorting::before {
510
- /* Centering start */
511
- top: 50%;
512
- /* One extra pixel for purpose of proper positioning of sorting arrow, when `font-size` set to default */
513
- margin-top: -6px;
514
- /* Centering end */
515
- /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
516
- padding-left: 8px;
517
- padding-right: 0;
518
- position: absolute;
519
- right: -9px;
520
- left: unset;
521
- content: "";
522
- height: 10px;
523
- width: 5px;
524
- background-size: contain;
525
- background-repeat: no-repeat;
526
- background-position-x: right;
527
- }
528
-
529
- [dir=rtl].handsontable span.colHeader.columnSorting::before {
530
- /* Centering end */
531
- /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
532
- padding-right: 8px;
533
- padding-left: 0;
534
- left: -9px;
535
- right: unset;
536
- background-position-x: left;
537
- }
538
-
539
- .handsontable span.colHeader.columnSorting.ascending::before {
540
- /* arrow up; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
541
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC);
542
- }
543
-
544
- .handsontable span.colHeader.columnSorting.descending::before {
545
- /* arrow down; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
546
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=);
547
- }
548
-
549
- .htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::before {
550
- content: "*";
551
- display: inline-block;
552
- position: relative;
553
- /* The multi-line header and header with longer text need more padding to not hide arrow,
554
- we make header wider in `GhostTable` to make some space for arrow which is positioned absolutely in the main table */
555
- padding-right: 20px;
556
- }
557
-
558
501
  .handsontable td.area,
559
502
  .handsontable td.area-1,
560
503
  .handsontable td.area-2,
@@ -810,32 +753,6 @@ TextRenderer placeholder value
810
753
  background: #fcedd9;
811
754
  color: #583707;
812
755
  }
813
-
814
- .handsontable .collapsibleIndicator {
815
- position: absolute;
816
- top: 50%;
817
- transform: translate(0%, -50%);
818
- left: unset;
819
- right: 5px;
820
- border: 1px solid #A6A6A6;
821
- line-height: 8px;
822
- color: #222;
823
- border-radius: 10px;
824
- font-size: 10px;
825
- width: 10px;
826
- height: 10px;
827
- cursor: pointer;
828
- -webkit-box-shadow: 0 0 0 6px rgb(238, 238, 238);
829
- -moz-box-shadow: 0 0 0 6px rgb(238, 238, 238);
830
- box-shadow: 0 0 0 3px rgb(238, 238, 238);
831
- background: #eee;
832
- text-align: center;
833
- }
834
-
835
- [dir=rtl].handsontable .collapsibleIndicator {
836
- right: unset;
837
- left: 5px;
838
- }
839
756
  /*
840
757
 
841
758
  Handsontable Mobile Text Editor stylesheet
@@ -941,6 +858,105 @@ CheckboxRenderer
941
858
  .handsontable .htCheckboxRendererLabel.fullWidth {
942
859
  width: 100%;
943
860
  }
861
+ .handsontable .collapsibleIndicator {
862
+ position: absolute;
863
+ top: 50%;
864
+ transform: translate(0%, -50%);
865
+ left: unset;
866
+ right: 5px;
867
+ border: 1px solid #A6A6A6;
868
+ line-height: 8px;
869
+ color: #222;
870
+ border-radius: 10px;
871
+ font-size: 10px;
872
+ width: 10px;
873
+ height: 10px;
874
+ cursor: pointer;
875
+ -webkit-box-shadow: 0 0 0 6px rgb(238, 238, 238);
876
+ -moz-box-shadow: 0 0 0 6px rgb(238, 238, 238);
877
+ box-shadow: 0 0 0 3px rgb(238, 238, 238);
878
+ background: #eee;
879
+ text-align: center;
880
+ }
881
+
882
+ [dir=rtl].handsontable .collapsibleIndicator {
883
+ right: unset;
884
+ left: 5px;
885
+ }
886
+
887
+ .handsontable[dir=ltr] thead th:has(.collapsibleIndicator) div.htRight span.colHeader {
888
+ margin-right: 20px;
889
+ }
890
+
891
+ .handsontable[dir=rtl] thead th:has(.collapsibleIndicator) div.htLeft span.colHeader {
892
+ margin-left: 20px;
893
+ }
894
+ .handsontable .columnSorting {
895
+ position: relative;
896
+ }
897
+
898
+ .handsontable[dir=ltr] div.htRight span[class*=ascending],
899
+ .handsontable[dir=ltr] div.htRight span[class*=descending] {
900
+ margin-right: 20px;
901
+ }
902
+
903
+ .handsontable[dir=rtl] div.htLeft span[class*=ascending],
904
+ .handsontable[dir=rtl] div.htLeft span[class*=descending] {
905
+ margin-left: 20px;
906
+ }
907
+
908
+ .handsontable .columnSorting.sortAction:hover {
909
+ text-decoration: underline;
910
+ cursor: pointer;
911
+ } /* Arrow position */
912
+ .handsontable span.colHeader.columnSorting::before {
913
+ /* Centering start */
914
+ top: 50%;
915
+ /* One extra pixel for purpose of proper positioning of sorting arrow, when `font-size` set to default */
916
+ margin-top: -6px;
917
+ /* Centering end */
918
+ /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
919
+ padding-left: 8px;
920
+ padding-right: 0;
921
+ position: absolute;
922
+ right: -9px;
923
+ left: unset;
924
+ content: "";
925
+ height: 10px;
926
+ width: 5px;
927
+ background-size: contain;
928
+ background-repeat: no-repeat;
929
+ background-position-x: right;
930
+ }
931
+
932
+ [dir=rtl].handsontable span.colHeader.columnSorting::before {
933
+ /* Centering end */
934
+ /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
935
+ padding-right: 8px;
936
+ padding-left: 0;
937
+ left: -9px;
938
+ right: unset;
939
+ background-position-x: left;
940
+ }
941
+
942
+ .handsontable span.colHeader.columnSorting.ascending::before {
943
+ /* arrow up; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
944
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC);
945
+ }
946
+
947
+ .handsontable span.colHeader.columnSorting.descending::before {
948
+ /* arrow down; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
949
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=);
950
+ }
951
+
952
+ .htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::before {
953
+ content: "*";
954
+ display: inline-block;
955
+ position: relative;
956
+ /* The multi-line header and header with longer text need more padding to not hide arrow,
957
+ we make header wider in `GhostTable` to make some space for arrow which is positioned absolutely in the main table */
958
+ padding-right: 20px;
959
+ }
944
960
  .handsontable .htCommentCell {
945
961
  position: relative;
946
962
  }
@@ -1147,6 +1163,10 @@ textarea.HandsontableCopyPaste {
1147
1163
  float: left;
1148
1164
  }
1149
1165
 
1166
+ .handsontable[dir=rtl] .changeType {
1167
+ margin: 3px 5px 0 1px;
1168
+ }
1169
+
1150
1170
  .handsontable .changeType:before {
1151
1171
  content: "▼ ";
1152
1172
  }
@@ -1636,6 +1656,14 @@ textarea.HandsontableCopyPaste {
1636
1656
  position: relative;
1637
1657
  }
1638
1658
 
1659
+ .handsontable th.afterHiddenColumn div.htLeft {
1660
+ margin-left: 10px;
1661
+ }
1662
+
1663
+ .handsontable th.beforeHiddenColumn div.htRight {
1664
+ margin-right: 10px;
1665
+ }
1666
+
1639
1667
  .handsontable th.beforeHiddenColumn::after {
1640
1668
  right: 1px;
1641
1669
  content: "◀"; /* left arrow */
@@ -1838,6 +1866,14 @@ textarea.HandsontableCopyPaste {
1838
1866
  .handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-7]:before {
1839
1867
  opacity: 0.58;
1840
1868
  }
1869
+ .handsontable[dir=ltr] div.htRight span[class*=sort-] {
1870
+ margin-right: 20px;
1871
+ }
1872
+
1873
+ .handsontable[dir=rtl] div.htLeft span[class*=sort-] {
1874
+ margin-left: 20px;
1875
+ }
1876
+
1841
1877
  /* Column's number position */
1842
1878
  .handsontable span.colHeader.columnSorting::after {
1843
1879
  /* Centering start */
@@ -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-2cb2d27-20240709
29
- * Release date: 11/06/2024 (built at 09/07/2024 12:07:29)
28
+ * Version: 0.0.0-next-b799724-20240710
29
+ * Release date: 11/06/2024 (built at 10/07/2024 12:56:04)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
@@ -498,63 +498,6 @@ innerBorderBottom - Property controlled by bottom overlay
498
498
  z-index: 209;
499
499
  }
500
500
 
501
- .handsontable .columnSorting {
502
- position: relative;
503
- }
504
-
505
- .handsontable .columnSorting.sortAction:hover {
506
- text-decoration: underline;
507
- cursor: pointer;
508
- } /* Arrow position */
509
- .handsontable span.colHeader.columnSorting::before {
510
- /* Centering start */
511
- top: 50%;
512
- /* One extra pixel for purpose of proper positioning of sorting arrow, when `font-size` set to default */
513
- margin-top: -6px;
514
- /* Centering end */
515
- /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
516
- padding-left: 8px;
517
- padding-right: 0;
518
- position: absolute;
519
- right: -9px;
520
- left: unset;
521
- content: "";
522
- height: 10px;
523
- width: 5px;
524
- background-size: contain;
525
- background-repeat: no-repeat;
526
- background-position-x: right;
527
- }
528
-
529
- [dir=rtl].handsontable span.colHeader.columnSorting::before {
530
- /* Centering end */
531
- /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
532
- padding-right: 8px;
533
- padding-left: 0;
534
- left: -9px;
535
- right: unset;
536
- background-position-x: left;
537
- }
538
-
539
- .handsontable span.colHeader.columnSorting.ascending::before {
540
- /* arrow up; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
541
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC);
542
- }
543
-
544
- .handsontable span.colHeader.columnSorting.descending::before {
545
- /* arrow down; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
546
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=);
547
- }
548
-
549
- .htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::before {
550
- content: "*";
551
- display: inline-block;
552
- position: relative;
553
- /* The multi-line header and header with longer text need more padding to not hide arrow,
554
- we make header wider in `GhostTable` to make some space for arrow which is positioned absolutely in the main table */
555
- padding-right: 20px;
556
- }
557
-
558
501
  .handsontable td.area,
559
502
  .handsontable td.area-1,
560
503
  .handsontable td.area-2,
@@ -810,32 +753,6 @@ TextRenderer placeholder value
810
753
  background: #fcedd9;
811
754
  color: #583707;
812
755
  }
813
-
814
- .handsontable .collapsibleIndicator {
815
- position: absolute;
816
- top: 50%;
817
- transform: translate(0%, -50%);
818
- left: unset;
819
- right: 5px;
820
- border: 1px solid #A6A6A6;
821
- line-height: 8px;
822
- color: #222;
823
- border-radius: 10px;
824
- font-size: 10px;
825
- width: 10px;
826
- height: 10px;
827
- cursor: pointer;
828
- -webkit-box-shadow: 0 0 0 6px rgb(238, 238, 238);
829
- -moz-box-shadow: 0 0 0 6px rgb(238, 238, 238);
830
- box-shadow: 0 0 0 3px rgb(238, 238, 238);
831
- background: #eee;
832
- text-align: center;
833
- }
834
-
835
- [dir=rtl].handsontable .collapsibleIndicator {
836
- right: unset;
837
- left: 5px;
838
- }
839
756
  /*
840
757
 
841
758
  Handsontable Mobile Text Editor stylesheet
@@ -1174,6 +1091,105 @@ CheckboxRenderer
1174
1091
  .handsontable .htCheckboxRendererLabel.fullWidth {
1175
1092
  width: 100%;
1176
1093
  }
1094
+ .handsontable .collapsibleIndicator {
1095
+ position: absolute;
1096
+ top: 50%;
1097
+ transform: translate(0%, -50%);
1098
+ left: unset;
1099
+ right: 5px;
1100
+ border: 1px solid #A6A6A6;
1101
+ line-height: 8px;
1102
+ color: #222;
1103
+ border-radius: 10px;
1104
+ font-size: 10px;
1105
+ width: 10px;
1106
+ height: 10px;
1107
+ cursor: pointer;
1108
+ -webkit-box-shadow: 0 0 0 6px rgb(238, 238, 238);
1109
+ -moz-box-shadow: 0 0 0 6px rgb(238, 238, 238);
1110
+ box-shadow: 0 0 0 3px rgb(238, 238, 238);
1111
+ background: #eee;
1112
+ text-align: center;
1113
+ }
1114
+
1115
+ [dir=rtl].handsontable .collapsibleIndicator {
1116
+ right: unset;
1117
+ left: 5px;
1118
+ }
1119
+
1120
+ .handsontable[dir=ltr] thead th:has(.collapsibleIndicator) div.htRight span.colHeader {
1121
+ margin-right: 20px;
1122
+ }
1123
+
1124
+ .handsontable[dir=rtl] thead th:has(.collapsibleIndicator) div.htLeft span.colHeader {
1125
+ margin-left: 20px;
1126
+ }
1127
+ .handsontable .columnSorting {
1128
+ position: relative;
1129
+ }
1130
+
1131
+ .handsontable[dir=ltr] div.htRight span[class*=ascending],
1132
+ .handsontable[dir=ltr] div.htRight span[class*=descending] {
1133
+ margin-right: 20px;
1134
+ }
1135
+
1136
+ .handsontable[dir=rtl] div.htLeft span[class*=ascending],
1137
+ .handsontable[dir=rtl] div.htLeft span[class*=descending] {
1138
+ margin-left: 20px;
1139
+ }
1140
+
1141
+ .handsontable .columnSorting.sortAction:hover {
1142
+ text-decoration: underline;
1143
+ cursor: pointer;
1144
+ } /* Arrow position */
1145
+ .handsontable span.colHeader.columnSorting::before {
1146
+ /* Centering start */
1147
+ top: 50%;
1148
+ /* One extra pixel for purpose of proper positioning of sorting arrow, when `font-size` set to default */
1149
+ margin-top: -6px;
1150
+ /* Centering end */
1151
+ /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
1152
+ padding-left: 8px;
1153
+ padding-right: 0;
1154
+ position: absolute;
1155
+ right: -9px;
1156
+ left: unset;
1157
+ content: "";
1158
+ height: 10px;
1159
+ width: 5px;
1160
+ background-size: contain;
1161
+ background-repeat: no-repeat;
1162
+ background-position-x: right;
1163
+ }
1164
+
1165
+ [dir=rtl].handsontable span.colHeader.columnSorting::before {
1166
+ /* Centering end */
1167
+ /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
1168
+ padding-right: 8px;
1169
+ padding-left: 0;
1170
+ left: -9px;
1171
+ right: unset;
1172
+ background-position-x: left;
1173
+ }
1174
+
1175
+ .handsontable span.colHeader.columnSorting.ascending::before {
1176
+ /* arrow up; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
1177
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC);
1178
+ }
1179
+
1180
+ .handsontable span.colHeader.columnSorting.descending::before {
1181
+ /* arrow down; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
1182
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=);
1183
+ }
1184
+
1185
+ .htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::before {
1186
+ content: "*";
1187
+ display: inline-block;
1188
+ position: relative;
1189
+ /* The multi-line header and header with longer text need more padding to not hide arrow,
1190
+ we make header wider in `GhostTable` to make some space for arrow which is positioned absolutely in the main table */
1191
+ padding-right: 20px;
1192
+ }
1177
1193
  .handsontable .htCommentCell {
1178
1194
  position: relative;
1179
1195
  }
@@ -1380,6 +1396,10 @@ textarea.HandsontableCopyPaste {
1380
1396
  float: left;
1381
1397
  }
1382
1398
 
1399
+ .handsontable[dir=rtl] .changeType {
1400
+ margin: 3px 5px 0 1px;
1401
+ }
1402
+
1383
1403
  .handsontable .changeType:before {
1384
1404
  content: "▼ ";
1385
1405
  }
@@ -1869,6 +1889,14 @@ textarea.HandsontableCopyPaste {
1869
1889
  position: relative;
1870
1890
  }
1871
1891
 
1892
+ .handsontable th.afterHiddenColumn div.htLeft {
1893
+ margin-left: 10px;
1894
+ }
1895
+
1896
+ .handsontable th.beforeHiddenColumn div.htRight {
1897
+ margin-right: 10px;
1898
+ }
1899
+
1872
1900
  .handsontable th.beforeHiddenColumn::after {
1873
1901
  right: 1px;
1874
1902
  content: "◀"; /* left arrow */
@@ -2071,6 +2099,14 @@ textarea.HandsontableCopyPaste {
2071
2099
  .handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-7]:before {
2072
2100
  opacity: 0.58;
2073
2101
  }
2102
+ .handsontable[dir=ltr] div.htRight span[class*=sort-] {
2103
+ margin-right: 20px;
2104
+ }
2105
+
2106
+ .handsontable[dir=rtl] div.htLeft span[class*=sort-] {
2107
+ margin-left: 20px;
2108
+ }
2109
+
2074
2110
  /* Column's number position */
2075
2111
  .handsontable span.colHeader.columnSorting::after {
2076
2112
  /* Centering start */