@syncfusion/ej2-angular-spreadsheet 20.4.38 → 20.4.39

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.
Files changed (58) hide show
  1. package/README.md +145 -68
  2. package/package.json +1 -1
  3. package/schematics/utils/lib-details.ts +2 -2
  4. package/styles/bootstrap-dark.css +34 -24
  5. package/styles/bootstrap.css +34 -24
  6. package/styles/bootstrap4.css +34 -24
  7. package/styles/bootstrap5-dark.css +34 -24
  8. package/styles/bootstrap5.css +34 -24
  9. package/styles/fabric-dark.css +34 -24
  10. package/styles/fabric.css +34 -24
  11. package/styles/fluent-dark.css +34 -24
  12. package/styles/fluent.css +34 -24
  13. package/styles/highcontrast-light.css +34 -24
  14. package/styles/highcontrast.css +34 -24
  15. package/styles/material-dark.css +34 -24
  16. package/styles/material.css +34 -24
  17. package/styles/spreadsheet/_bootstrap-dark-definition.scss +1 -1
  18. package/styles/spreadsheet/_bootstrap-definition.scss +1 -1
  19. package/styles/spreadsheet/_bootstrap4-definition.scss +1 -1
  20. package/styles/spreadsheet/_bootstrap5-definition.scss +1 -1
  21. package/styles/spreadsheet/_fabric-dark-definition.scss +1 -1
  22. package/styles/spreadsheet/_fabric-definition.scss +1 -1
  23. package/styles/spreadsheet/_fluent-definition.scss +1 -1
  24. package/styles/spreadsheet/_fusionnew-definition.scss +1 -1
  25. package/styles/spreadsheet/_highcontrast-definition.scss +1 -1
  26. package/styles/spreadsheet/_highcontrast-light-definition.scss +1 -1
  27. package/styles/spreadsheet/_layout.scss +25 -10
  28. package/styles/spreadsheet/_material-dark-definition.scss +1 -1
  29. package/styles/spreadsheet/_material-definition.scss +1 -1
  30. package/styles/spreadsheet/_material3-definition.scss +1 -1
  31. package/styles/spreadsheet/_tailwind-definition.scss +1 -1
  32. package/styles/spreadsheet/_theme.scss +16 -0
  33. package/styles/spreadsheet/bootstrap-dark.css +34 -24
  34. package/styles/spreadsheet/bootstrap.css +34 -24
  35. package/styles/spreadsheet/bootstrap4.css +34 -24
  36. package/styles/spreadsheet/bootstrap5-dark.css +34 -24
  37. package/styles/spreadsheet/bootstrap5.css +34 -24
  38. package/styles/spreadsheet/fabric-dark.css +34 -24
  39. package/styles/spreadsheet/fabric.css +34 -24
  40. package/styles/spreadsheet/fluent-dark.css +34 -24
  41. package/styles/spreadsheet/fluent.css +34 -24
  42. package/styles/spreadsheet/highcontrast-light.css +34 -24
  43. package/styles/spreadsheet/highcontrast.css +34 -24
  44. package/styles/spreadsheet/material-dark.css +34 -24
  45. package/styles/spreadsheet/material.css +34 -24
  46. package/styles/spreadsheet/tailwind-dark.css +34 -24
  47. package/styles/spreadsheet/tailwind.css +34 -24
  48. package/styles/tailwind-dark.css +34 -24
  49. package/styles/tailwind.css +34 -24
  50. package/schematics/collection.json +0 -10
  51. package/schematics/ng-add/index.d.ts +0 -3
  52. package/schematics/ng-add/index.js +0 -9
  53. package/schematics/ng-add/schema.d.ts +0 -13
  54. package/schematics/ng-add/schema.js +0 -2
  55. package/schematics/ng-add/schema.json +0 -34
  56. package/schematics/tsconfig.json +0 -25
  57. package/schematics/utils/lib-details.d.ts +0 -4
  58. package/schematics/utils/lib-details.js +0 -6
@@ -715,9 +715,6 @@
715
715
  display: inline-table;
716
716
  padding-top: 3px;
717
717
  }
718
- .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
719
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
720
- }
721
718
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
722
719
  font-size: 18px;
723
720
  line-height: 21px;
@@ -734,9 +731,6 @@
734
731
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
735
732
  margin-top: 10px;
736
733
  }
737
- .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
738
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
739
- }
740
734
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
741
735
  font-size: 18px;
742
736
  line-height: 21px;
@@ -1693,6 +1687,19 @@
1693
1687
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1694
1688
  right: 0;
1695
1689
  }
1690
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
1691
+ border-left-color: transparent;
1692
+ }
1693
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
1694
+ border-left: 1px solid #292827;
1695
+ border-right: none;
1696
+ left: 0.5px;
1697
+ }
1698
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
1699
+ border-left: none;
1700
+ border-right: 1px solid #292827;
1701
+ right: 0.5px;
1702
+ }
1696
1703
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1697
1704
  position: relative;
1698
1705
  }
@@ -1991,9 +1998,6 @@
1991
1998
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
1992
1999
  text-align: left;
1993
2000
  }
1994
- .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
1995
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
1996
- }
1997
2001
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1998
2002
  font-size: 18px;
1999
2003
  line-height: 31px;
@@ -2011,9 +2015,6 @@
2011
2015
  line-height: 24px;
2012
2016
  margin-bottom: 4px;
2013
2017
  }
2014
- .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
2015
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2016
- }
2017
2018
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2018
2019
  font-size: 18px;
2019
2020
  line-height: 21px;
@@ -2030,9 +2031,6 @@
2030
2031
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
2031
2032
  margin-top: 10px;
2032
2033
  }
2033
- .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
2034
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2035
- }
2036
2034
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2037
2035
  font-size: 18px;
2038
2036
  line-height: 21px;
@@ -2143,33 +2141,36 @@
2143
2141
  font-family: "Calibri";
2144
2142
  }
2145
2143
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2146
- font-family: "Courier";
2144
+ font-family: "Comic Sans MS";
2147
2145
  }
2148
2146
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2149
- font-family: "Courier New";
2147
+ font-family: "Courier";
2150
2148
  }
2151
2149
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2152
- font-family: "Din Condensed";
2150
+ font-family: "Courier New";
2153
2151
  }
2154
2152
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2155
- font-family: "Georgia";
2153
+ font-family: "Din Condensed";
2156
2154
  }
2157
2155
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2158
- font-family: "Helvetica";
2156
+ font-family: "Georgia";
2159
2157
  }
2160
2158
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2161
- font-family: "Helvetica New";
2159
+ font-family: "Helvetica";
2162
2160
  }
2163
2161
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2164
- font-family: "Roboto";
2162
+ font-family: "Helvetica New";
2165
2163
  }
2166
2164
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2167
- font-family: "Tahoma";
2165
+ font-family: "Roboto";
2168
2166
  }
2169
2167
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2170
- font-family: "Times New Roman";
2168
+ font-family: "Tahoma";
2171
2169
  }
2172
2170
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2171
+ font-family: "Times New Roman";
2172
+ }
2173
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2173
2174
  font-family: "Verdana";
2174
2175
  }
2175
2176
  .e-dropdown-popup.e-aggregate-list {
@@ -3100,6 +3101,15 @@
3100
3101
  .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
3101
3102
  border-left-color: #1f1e1d;
3102
3103
  }
3104
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
3105
+ border-left-color: transparent;
3106
+ }
3107
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
3108
+ border-left-color: #1f1e1d;
3109
+ }
3110
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
3111
+ border-right-color: #1f1e1d;
3112
+ }
3103
3113
  .e-spreadsheet .e-copy-indicator div.e-top,
3104
3114
  .e-spreadsheet .e-range-indicator div.e-top,
3105
3115
  .e-spreadsheet .e-formularef-indicator div.e-top {
package/styles/fluent.css CHANGED
@@ -715,9 +715,6 @@
715
715
  display: inline-table;
716
716
  padding-top: 3px;
717
717
  }
718
- .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
719
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
720
- }
721
718
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
722
719
  font-size: 18px;
723
720
  line-height: 21px;
@@ -734,9 +731,6 @@
734
731
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
735
732
  margin-top: 10px;
736
733
  }
737
- .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
738
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
739
- }
740
734
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
741
735
  font-size: 18px;
742
736
  line-height: 21px;
@@ -1693,6 +1687,19 @@
1693
1687
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1694
1688
  right: 0;
1695
1689
  }
1690
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
1691
+ border-left-color: transparent;
1692
+ }
1693
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
1694
+ border-left: 1px solid #edebe9;
1695
+ border-right: none;
1696
+ left: 0.5px;
1697
+ }
1698
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
1699
+ border-left: none;
1700
+ border-right: 1px solid #edebe9;
1701
+ right: 0.5px;
1702
+ }
1696
1703
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1697
1704
  position: relative;
1698
1705
  }
@@ -1991,9 +1998,6 @@
1991
1998
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
1992
1999
  text-align: left;
1993
2000
  }
1994
- .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
1995
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
1996
- }
1997
2001
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1998
2002
  font-size: 18px;
1999
2003
  line-height: 31px;
@@ -2011,9 +2015,6 @@
2011
2015
  line-height: 24px;
2012
2016
  margin-bottom: 4px;
2013
2017
  }
2014
- .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
2015
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2016
- }
2017
2018
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2018
2019
  font-size: 18px;
2019
2020
  line-height: 21px;
@@ -2030,9 +2031,6 @@
2030
2031
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
2031
2032
  margin-top: 10px;
2032
2033
  }
2033
- .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
2034
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2035
- }
2036
2034
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2037
2035
  font-size: 18px;
2038
2036
  line-height: 21px;
@@ -2143,33 +2141,36 @@
2143
2141
  font-family: "Calibri";
2144
2142
  }
2145
2143
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2146
- font-family: "Courier";
2144
+ font-family: "Comic Sans MS";
2147
2145
  }
2148
2146
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2149
- font-family: "Courier New";
2147
+ font-family: "Courier";
2150
2148
  }
2151
2149
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2152
- font-family: "Din Condensed";
2150
+ font-family: "Courier New";
2153
2151
  }
2154
2152
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2155
- font-family: "Georgia";
2153
+ font-family: "Din Condensed";
2156
2154
  }
2157
2155
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2158
- font-family: "Helvetica";
2156
+ font-family: "Georgia";
2159
2157
  }
2160
2158
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2161
- font-family: "Helvetica New";
2159
+ font-family: "Helvetica";
2162
2160
  }
2163
2161
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2164
- font-family: "Roboto";
2162
+ font-family: "Helvetica New";
2165
2163
  }
2166
2164
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2167
- font-family: "Tahoma";
2165
+ font-family: "Roboto";
2168
2166
  }
2169
2167
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2170
- font-family: "Times New Roman";
2168
+ font-family: "Tahoma";
2171
2169
  }
2172
2170
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2171
+ font-family: "Times New Roman";
2172
+ }
2173
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2173
2174
  font-family: "Verdana";
2174
2175
  }
2175
2176
  .e-dropdown-popup.e-aggregate-list {
@@ -3100,6 +3101,15 @@
3100
3101
  .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
3101
3102
  border-left-color: #e4e1de;
3102
3103
  }
3104
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
3105
+ border-left-color: transparent;
3106
+ }
3107
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
3108
+ border-left-color: #e4e1de;
3109
+ }
3110
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
3111
+ border-right-color: #e4e1de;
3112
+ }
3103
3113
  .e-spreadsheet .e-copy-indicator div.e-top,
3104
3114
  .e-spreadsheet .e-range-indicator div.e-top,
3105
3115
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -104,9 +104,6 @@
104
104
  display: inline-table;
105
105
  padding-top: 3px;
106
106
  }
107
- .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
108
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
109
- }
110
107
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
111
108
  font-size: 18px;
112
109
  line-height: 21px;
@@ -123,9 +120,6 @@
123
120
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
124
121
  margin-top: 10px;
125
122
  }
126
- .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
127
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
128
- }
129
123
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
130
124
  font-size: 18px;
131
125
  line-height: 21px;
@@ -1080,6 +1074,19 @@
1080
1074
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1081
1075
  right: 0;
1082
1076
  }
1077
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
1078
+ border-left-color: transparent;
1079
+ }
1080
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
1081
+ border-left: none;
1082
+ border-right: none;
1083
+ left: 0.5px;
1084
+ }
1085
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
1086
+ border-left: none;
1087
+ border-right: none;
1088
+ right: 0.5px;
1089
+ }
1083
1090
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1084
1091
  position: relative;
1085
1092
  }
@@ -1377,9 +1384,6 @@
1377
1384
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
1378
1385
  text-align: left;
1379
1386
  }
1380
- .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
1381
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
1382
- }
1383
1387
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1384
1388
  font-size: 18px;
1385
1389
  line-height: 31px;
@@ -1397,9 +1401,6 @@
1397
1401
  line-height: 24px;
1398
1402
  margin-bottom: 4px;
1399
1403
  }
1400
- .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
1401
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
1402
- }
1403
1404
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1404
1405
  font-size: 18px;
1405
1406
  line-height: 21px;
@@ -1416,9 +1417,6 @@
1416
1417
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
1417
1418
  margin-top: 10px;
1418
1419
  }
1419
- .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
1420
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
1421
- }
1422
1420
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1423
1421
  font-size: 18px;
1424
1422
  line-height: 21px;
@@ -1528,33 +1526,36 @@
1528
1526
  font-family: "Calibri";
1529
1527
  }
1530
1528
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
1531
- font-family: "Courier";
1529
+ font-family: "Comic Sans MS";
1532
1530
  }
1533
1531
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
1534
- font-family: "Courier New";
1532
+ font-family: "Courier";
1535
1533
  }
1536
1534
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
1537
- font-family: "Din Condensed";
1535
+ font-family: "Courier New";
1538
1536
  }
1539
1537
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
1540
- font-family: "Georgia";
1538
+ font-family: "Din Condensed";
1541
1539
  }
1542
1540
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
1543
- font-family: "Helvetica";
1541
+ font-family: "Georgia";
1544
1542
  }
1545
1543
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
1546
- font-family: "Helvetica New";
1544
+ font-family: "Helvetica";
1547
1545
  }
1548
1546
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
1549
- font-family: "Roboto";
1547
+ font-family: "Helvetica New";
1550
1548
  }
1551
1549
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
1552
- font-family: "Tahoma";
1550
+ font-family: "Roboto";
1553
1551
  }
1554
1552
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
1555
- font-family: "Times New Roman";
1553
+ font-family: "Tahoma";
1556
1554
  }
1557
1555
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
1556
+ font-family: "Times New Roman";
1557
+ }
1558
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
1558
1559
  font-family: "Verdana";
1559
1560
  }
1560
1561
  .e-dropdown-popup.e-aggregate-list {
@@ -2415,6 +2416,15 @@
2415
2416
  .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
2416
2417
  border-left-color: #000;
2417
2418
  }
2419
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
2420
+ border-left-color: transparent;
2421
+ }
2422
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
2423
+ border-left-color: #000;
2424
+ }
2425
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
2426
+ border-right-color: #000;
2427
+ }
2418
2428
  .e-spreadsheet .e-copy-indicator div.e-top,
2419
2429
  .e-spreadsheet .e-range-indicator div.e-top,
2420
2430
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -662,9 +662,6 @@
662
662
  display: inline-table;
663
663
  padding-top: 3px;
664
664
  }
665
- .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
666
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
667
- }
668
665
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
669
666
  font-size: 18px;
670
667
  line-height: 21px;
@@ -681,9 +678,6 @@
681
678
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
682
679
  margin-top: 10px;
683
680
  }
684
- .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
685
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
686
- }
687
681
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
688
682
  font-size: 18px;
689
683
  line-height: 21px;
@@ -1647,6 +1641,19 @@
1647
1641
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1648
1642
  right: 0;
1649
1643
  }
1644
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
1645
+ border-left-color: transparent;
1646
+ }
1647
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
1648
+ border-left: 1px solid #fff;
1649
+ border-right: none;
1650
+ left: 0.5px;
1651
+ }
1652
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
1653
+ border-left: none;
1654
+ border-right: 1px solid #fff;
1655
+ right: 0.5px;
1656
+ }
1650
1657
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1651
1658
  position: relative;
1652
1659
  }
@@ -1944,9 +1951,6 @@
1944
1951
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
1945
1952
  text-align: left;
1946
1953
  }
1947
- .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
1948
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
1949
- }
1950
1954
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1951
1955
  font-size: 18px;
1952
1956
  line-height: 31px;
@@ -1964,9 +1968,6 @@
1964
1968
  line-height: 24px;
1965
1969
  margin-bottom: 4px;
1966
1970
  }
1967
- .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
1968
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
1969
- }
1970
1971
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1971
1972
  font-size: 18px;
1972
1973
  line-height: 21px;
@@ -1983,9 +1984,6 @@
1983
1984
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
1984
1985
  margin-top: 10px;
1985
1986
  }
1986
- .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
1987
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
1988
- }
1989
1987
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1990
1988
  font-size: 18px;
1991
1989
  line-height: 21px;
@@ -2095,33 +2093,36 @@
2095
2093
  font-family: "Calibri";
2096
2094
  }
2097
2095
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2098
- font-family: "Courier";
2096
+ font-family: "Comic Sans MS";
2099
2097
  }
2100
2098
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2101
- font-family: "Courier New";
2099
+ font-family: "Courier";
2102
2100
  }
2103
2101
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2104
- font-family: "Din Condensed";
2102
+ font-family: "Courier New";
2105
2103
  }
2106
2104
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2107
- font-family: "Georgia";
2105
+ font-family: "Din Condensed";
2108
2106
  }
2109
2107
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2110
- font-family: "Helvetica";
2108
+ font-family: "Georgia";
2111
2109
  }
2112
2110
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2113
- font-family: "Helvetica New";
2111
+ font-family: "Helvetica";
2114
2112
  }
2115
2113
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2116
- font-family: "Roboto";
2114
+ font-family: "Helvetica New";
2117
2115
  }
2118
2116
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2119
- font-family: "Tahoma";
2117
+ font-family: "Roboto";
2120
2118
  }
2121
2119
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2122
- font-family: "Times New Roman";
2120
+ font-family: "Tahoma";
2123
2121
  }
2124
2122
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2123
+ font-family: "Times New Roman";
2124
+ }
2125
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2125
2126
  font-family: "Verdana";
2126
2127
  }
2127
2128
  .e-dropdown-popup.e-aggregate-list {
@@ -3005,6 +3006,15 @@
3005
3006
  .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
3006
3007
  border-left-color: #969696;
3007
3008
  }
3009
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
3010
+ border-left-color: transparent;
3011
+ }
3012
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
3013
+ border-left-color: #969696;
3014
+ }
3015
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
3016
+ border-right-color: #969696;
3017
+ }
3008
3018
  .e-spreadsheet .e-copy-indicator div.e-top,
3009
3019
  .e-spreadsheet .e-range-indicator div.e-top,
3010
3020
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -715,9 +715,6 @@
715
715
  display: inline-table;
716
716
  padding-top: 3px;
717
717
  }
718
- .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
719
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
720
- }
721
718
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
722
719
  font-size: 18px;
723
720
  line-height: 21px;
@@ -734,9 +731,6 @@
734
731
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
735
732
  margin-top: 10px;
736
733
  }
737
- .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
738
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
739
- }
740
734
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
741
735
  font-size: 18px;
742
736
  line-height: 21px;
@@ -1691,6 +1685,19 @@
1691
1685
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1692
1686
  right: 0;
1693
1687
  }
1688
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
1689
+ border-left-color: transparent;
1690
+ }
1691
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
1692
+ border-left: 1px solid #616161;
1693
+ border-right: none;
1694
+ left: 0.5px;
1695
+ }
1696
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
1697
+ border-left: none;
1698
+ border-right: 1px solid #616161;
1699
+ right: 0.5px;
1700
+ }
1694
1701
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1695
1702
  position: relative;
1696
1703
  }
@@ -1987,9 +1994,6 @@
1987
1994
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
1988
1995
  text-align: left;
1989
1996
  }
1990
- .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
1991
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
1992
- }
1993
1997
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1994
1998
  font-size: 18px;
1995
1999
  line-height: 31px;
@@ -2007,9 +2011,6 @@
2007
2011
  line-height: 24px;
2008
2012
  margin-bottom: 4px;
2009
2013
  }
2010
- .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
2011
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2012
- }
2013
2014
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2014
2015
  font-size: 18px;
2015
2016
  line-height: 21px;
@@ -2026,9 +2027,6 @@
2026
2027
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
2027
2028
  margin-top: 10px;
2028
2029
  }
2029
- .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
2030
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2031
- }
2032
2030
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2033
2031
  font-size: 18px;
2034
2032
  line-height: 21px;
@@ -2138,33 +2136,36 @@
2138
2136
  font-family: "Calibri";
2139
2137
  }
2140
2138
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2141
- font-family: "Courier";
2139
+ font-family: "Comic Sans MS";
2142
2140
  }
2143
2141
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2144
- font-family: "Courier New";
2142
+ font-family: "Courier";
2145
2143
  }
2146
2144
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2147
- font-family: "Din Condensed";
2145
+ font-family: "Courier New";
2148
2146
  }
2149
2147
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2150
- font-family: "Georgia";
2148
+ font-family: "Din Condensed";
2151
2149
  }
2152
2150
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2153
- font-family: "Helvetica";
2151
+ font-family: "Georgia";
2154
2152
  }
2155
2153
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2156
- font-family: "Helvetica New";
2154
+ font-family: "Helvetica";
2157
2155
  }
2158
2156
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2159
- font-family: "Roboto";
2157
+ font-family: "Helvetica New";
2160
2158
  }
2161
2159
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2162
- font-family: "Tahoma";
2160
+ font-family: "Roboto";
2163
2161
  }
2164
2162
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2165
- font-family: "Times New Roman";
2163
+ font-family: "Tahoma";
2166
2164
  }
2167
2165
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2166
+ font-family: "Times New Roman";
2167
+ }
2168
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2168
2169
  font-family: "Verdana";
2169
2170
  }
2170
2171
  .e-dropdown-popup.e-aggregate-list {
@@ -3046,6 +3047,15 @@
3046
3047
  .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
3047
3048
  border-left-color: #757575;
3048
3049
  }
3050
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
3051
+ border-left-color: transparent;
3052
+ }
3053
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
3054
+ border-left-color: #757575;
3055
+ }
3056
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
3057
+ border-right-color: #757575;
3058
+ }
3049
3059
  .e-spreadsheet .e-copy-indicator div.e-top,
3050
3060
  .e-spreadsheet .e-range-indicator div.e-top,
3051
3061
  .e-spreadsheet .e-formularef-indicator div.e-top {