@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
@@ -743,9 +743,6 @@
743
743
  display: inline-table;
744
744
  padding-top: 3px;
745
745
  }
746
- .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
747
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
748
- }
749
746
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
750
747
  font-size: 18px;
751
748
  line-height: 21px;
@@ -762,9 +759,6 @@
762
759
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
763
760
  margin-top: 10px;
764
761
  }
765
- .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
766
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
767
- }
768
762
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
769
763
  font-size: 18px;
770
764
  line-height: 21px;
@@ -1730,6 +1724,19 @@
1730
1724
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1731
1725
  right: 0;
1732
1726
  }
1727
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
1728
+ border-left-color: transparent;
1729
+ }
1730
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
1731
+ border-left: 1px solid #e0e0e0;
1732
+ border-right: none;
1733
+ left: 0.5px;
1734
+ }
1735
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
1736
+ border-left: none;
1737
+ border-right: 1px solid #e0e0e0;
1738
+ right: 0.5px;
1739
+ }
1733
1740
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1734
1741
  position: relative;
1735
1742
  }
@@ -2025,9 +2032,6 @@
2025
2032
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
2026
2033
  text-align: left;
2027
2034
  }
2028
- .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
2029
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2030
- }
2031
2035
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2032
2036
  font-size: 18px;
2033
2037
  line-height: 31px;
@@ -2045,9 +2049,6 @@
2045
2049
  line-height: 24px;
2046
2050
  margin-bottom: 4px;
2047
2051
  }
2048
- .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
2049
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2050
- }
2051
2052
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2052
2053
  font-size: 18px;
2053
2054
  line-height: 21px;
@@ -2064,9 +2065,6 @@
2064
2065
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
2065
2066
  margin-top: 10px;
2066
2067
  }
2067
- .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
2068
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2069
- }
2070
2068
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2071
2069
  font-size: 18px;
2072
2070
  line-height: 21px;
@@ -2176,33 +2174,36 @@
2176
2174
  font-family: "Calibri";
2177
2175
  }
2178
2176
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2179
- font-family: "Courier";
2177
+ font-family: "Comic Sans MS";
2180
2178
  }
2181
2179
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2182
- font-family: "Courier New";
2180
+ font-family: "Courier";
2183
2181
  }
2184
2182
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2185
- font-family: "Din Condensed";
2183
+ font-family: "Courier New";
2186
2184
  }
2187
2185
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2188
- font-family: "Georgia";
2186
+ font-family: "Din Condensed";
2189
2187
  }
2190
2188
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2191
- font-family: "Helvetica";
2189
+ font-family: "Georgia";
2192
2190
  }
2193
2191
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2194
- font-family: "Helvetica New";
2192
+ font-family: "Helvetica";
2195
2193
  }
2196
2194
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2197
- font-family: "Roboto";
2195
+ font-family: "Helvetica New";
2198
2196
  }
2199
2197
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2200
- font-family: "Tahoma";
2198
+ font-family: "Roboto";
2201
2199
  }
2202
2200
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2203
- font-family: "Times New Roman";
2201
+ font-family: "Tahoma";
2204
2202
  }
2205
2203
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2204
+ font-family: "Times New Roman";
2205
+ }
2206
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2206
2207
  font-family: "Verdana";
2207
2208
  }
2208
2209
  .e-dropdown-popup.e-aggregate-list {
@@ -3074,6 +3075,15 @@
3074
3075
  .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 {
3075
3076
  border-left-color: #cccccc;
3076
3077
  }
3078
+ .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 {
3079
+ border-left-color: transparent;
3080
+ }
3081
+ .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 {
3082
+ border-left-color: #cccccc;
3083
+ }
3084
+ .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 {
3085
+ border-right-color: #cccccc;
3086
+ }
3077
3087
  .e-spreadsheet .e-copy-indicator div.e-top,
3078
3088
  .e-spreadsheet .e-range-indicator div.e-top,
3079
3089
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -704,9 +704,6 @@
704
704
  .e-spreadsheet .e-dlg-header-content {
705
705
  padding: 18px;
706
706
  }
707
- .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
708
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
709
- }
710
707
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
711
708
  font-size: 18px;
712
709
  line-height: 21px;
@@ -723,9 +720,6 @@
723
720
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
724
721
  margin-top: 10px;
725
722
  }
726
- .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
727
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
728
- }
729
723
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
730
724
  font-size: 18px;
731
725
  line-height: 21px;
@@ -1689,6 +1683,19 @@
1689
1683
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1690
1684
  right: 0;
1691
1685
  }
1686
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
1687
+ border-left-color: transparent;
1688
+ }
1689
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
1690
+ border-left: 1px solid #4b5563;
1691
+ border-right: none;
1692
+ left: 0.5px;
1693
+ }
1694
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
1695
+ border-left: none;
1696
+ border-right: 1px solid #4b5563;
1697
+ right: 0.5px;
1698
+ }
1692
1699
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1693
1700
  position: relative;
1694
1701
  }
@@ -1999,9 +2006,6 @@
1999
2006
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
2000
2007
  text-align: left;
2001
2008
  }
2002
- .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
2003
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2004
- }
2005
2009
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2006
2010
  font-size: 18px;
2007
2011
  line-height: 31px;
@@ -2019,9 +2023,6 @@
2019
2023
  line-height: 24px;
2020
2024
  margin-bottom: 4px;
2021
2025
  }
2022
- .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
2023
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2024
- }
2025
2026
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2026
2027
  font-size: 18px;
2027
2028
  line-height: 21px;
@@ -2038,9 +2039,6 @@
2038
2039
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
2039
2040
  margin-top: 10px;
2040
2041
  }
2041
- .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
2042
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2043
- }
2044
2042
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2045
2043
  font-size: 18px;
2046
2044
  line-height: 21px;
@@ -2152,33 +2150,36 @@
2152
2150
  font-family: "Calibri";
2153
2151
  }
2154
2152
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2155
- font-family: "Courier";
2153
+ font-family: "Comic Sans MS";
2156
2154
  }
2157
2155
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2158
- font-family: "Courier New";
2156
+ font-family: "Courier";
2159
2157
  }
2160
2158
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2161
- font-family: "Din Condensed";
2159
+ font-family: "Courier New";
2162
2160
  }
2163
2161
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2164
- font-family: "Georgia";
2162
+ font-family: "Din Condensed";
2165
2163
  }
2166
2164
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2167
- font-family: "Helvetica";
2165
+ font-family: "Georgia";
2168
2166
  }
2169
2167
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2170
- font-family: "Helvetica New";
2168
+ font-family: "Helvetica";
2171
2169
  }
2172
2170
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2173
- font-family: "Roboto";
2171
+ font-family: "Helvetica New";
2174
2172
  }
2175
2173
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2176
- font-family: "Tahoma";
2174
+ font-family: "Roboto";
2177
2175
  }
2178
2176
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2179
- font-family: "Times New Roman";
2177
+ font-family: "Tahoma";
2180
2178
  }
2181
2179
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2180
+ font-family: "Times New Roman";
2181
+ }
2182
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2182
2183
  font-family: "Verdana";
2183
2184
  }
2184
2185
  .e-dropdown-popup.e-aggregate-list {
@@ -3081,6 +3082,15 @@
3081
3082
  .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 {
3082
3083
  border-left-color: #39414c;
3083
3084
  }
3085
+ .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 {
3086
+ border-left-color: transparent;
3087
+ }
3088
+ .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 {
3089
+ border-left-color: #39414c;
3090
+ }
3091
+ .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 {
3092
+ border-right-color: #39414c;
3093
+ }
3084
3094
  .e-spreadsheet .e-copy-indicator div.e-top,
3085
3095
  .e-spreadsheet .e-range-indicator div.e-top,
3086
3096
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -704,9 +704,6 @@
704
704
  .e-spreadsheet .e-dlg-header-content {
705
705
  padding: 18px;
706
706
  }
707
- .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
708
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
709
- }
710
707
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
711
708
  font-size: 18px;
712
709
  line-height: 21px;
@@ -723,9 +720,6 @@
723
720
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
724
721
  margin-top: 10px;
725
722
  }
726
- .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
727
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
728
- }
729
723
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
730
724
  font-size: 18px;
731
725
  line-height: 21px;
@@ -1689,6 +1683,19 @@
1689
1683
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1690
1684
  right: 0;
1691
1685
  }
1686
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
1687
+ border-left-color: transparent;
1688
+ }
1689
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
1690
+ border-left: 1px solid #e5e7eb;
1691
+ border-right: none;
1692
+ left: 0.5px;
1693
+ }
1694
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
1695
+ border-left: none;
1696
+ border-right: 1px solid #e5e7eb;
1697
+ right: 0.5px;
1698
+ }
1692
1699
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1693
1700
  position: relative;
1694
1701
  }
@@ -1999,9 +2006,6 @@
1999
2006
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
2000
2007
  text-align: left;
2001
2008
  }
2002
- .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
2003
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2004
- }
2005
2009
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2006
2010
  font-size: 18px;
2007
2011
  line-height: 31px;
@@ -2019,9 +2023,6 @@
2019
2023
  line-height: 24px;
2020
2024
  margin-bottom: 4px;
2021
2025
  }
2022
- .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
2023
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2024
- }
2025
2026
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2026
2027
  font-size: 18px;
2027
2028
  line-height: 21px;
@@ -2038,9 +2039,6 @@
2038
2039
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
2039
2040
  margin-top: 10px;
2040
2041
  }
2041
- .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
2042
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2043
- }
2044
2042
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2045
2043
  font-size: 18px;
2046
2044
  line-height: 21px;
@@ -2152,33 +2150,36 @@
2152
2150
  font-family: "Calibri";
2153
2151
  }
2154
2152
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2155
- font-family: "Courier";
2153
+ font-family: "Comic Sans MS";
2156
2154
  }
2157
2155
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2158
- font-family: "Courier New";
2156
+ font-family: "Courier";
2159
2157
  }
2160
2158
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2161
- font-family: "Din Condensed";
2159
+ font-family: "Courier New";
2162
2160
  }
2163
2161
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2164
- font-family: "Georgia";
2162
+ font-family: "Din Condensed";
2165
2163
  }
2166
2164
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2167
- font-family: "Helvetica";
2165
+ font-family: "Georgia";
2168
2166
  }
2169
2167
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2170
- font-family: "Helvetica New";
2168
+ font-family: "Helvetica";
2171
2169
  }
2172
2170
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2173
- font-family: "Roboto";
2171
+ font-family: "Helvetica New";
2174
2172
  }
2175
2173
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2176
- font-family: "Tahoma";
2174
+ font-family: "Roboto";
2177
2175
  }
2178
2176
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2179
- font-family: "Times New Roman";
2177
+ font-family: "Tahoma";
2180
2178
  }
2181
2179
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2180
+ font-family: "Times New Roman";
2181
+ }
2182
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2182
2183
  font-family: "Verdana";
2183
2184
  }
2184
2185
  .e-dropdown-popup.e-aggregate-list {
@@ -3081,6 +3082,15 @@
3081
3082
  .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 {
3082
3083
  border-left-color: #ced2d9;
3083
3084
  }
3085
+ .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 {
3086
+ border-left-color: transparent;
3087
+ }
3088
+ .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 {
3089
+ border-left-color: #ced2d9;
3090
+ }
3091
+ .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 {
3092
+ border-right-color: #ced2d9;
3093
+ }
3084
3094
  .e-spreadsheet .e-copy-indicator div.e-top,
3085
3095
  .e-spreadsheet .e-range-indicator div.e-top,
3086
3096
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -705,9 +705,6 @@
705
705
  .e-spreadsheet .e-dlg-header-content {
706
706
  padding: 18px;
707
707
  }
708
- .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
709
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
710
- }
711
708
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
712
709
  font-size: 18px;
713
710
  line-height: 21px;
@@ -724,9 +721,6 @@
724
721
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
725
722
  margin-top: 10px;
726
723
  }
727
- .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
728
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
729
- }
730
724
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
731
725
  font-size: 18px;
732
726
  line-height: 21px;
@@ -1690,6 +1684,19 @@
1690
1684
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1691
1685
  right: 0;
1692
1686
  }
1687
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
1688
+ border-left-color: transparent;
1689
+ }
1690
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
1691
+ border-left: 1px solid #4b5563;
1692
+ border-right: none;
1693
+ left: 0.5px;
1694
+ }
1695
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
1696
+ border-left: none;
1697
+ border-right: 1px solid #4b5563;
1698
+ right: 0.5px;
1699
+ }
1693
1700
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1694
1701
  position: relative;
1695
1702
  }
@@ -2000,9 +2007,6 @@
2000
2007
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
2001
2008
  text-align: left;
2002
2009
  }
2003
- .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
2004
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2005
- }
2006
2010
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2007
2011
  font-size: 18px;
2008
2012
  line-height: 31px;
@@ -2020,9 +2024,6 @@
2020
2024
  line-height: 24px;
2021
2025
  margin-bottom: 4px;
2022
2026
  }
2023
- .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
2024
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2025
- }
2026
2027
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2027
2028
  font-size: 18px;
2028
2029
  line-height: 21px;
@@ -2039,9 +2040,6 @@
2039
2040
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
2040
2041
  margin-top: 10px;
2041
2042
  }
2042
- .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
2043
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2044
- }
2045
2043
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2046
2044
  font-size: 18px;
2047
2045
  line-height: 21px;
@@ -2153,33 +2151,36 @@
2153
2151
  font-family: "Calibri";
2154
2152
  }
2155
2153
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2156
- font-family: "Courier";
2154
+ font-family: "Comic Sans MS";
2157
2155
  }
2158
2156
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2159
- font-family: "Courier New";
2157
+ font-family: "Courier";
2160
2158
  }
2161
2159
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2162
- font-family: "Din Condensed";
2160
+ font-family: "Courier New";
2163
2161
  }
2164
2162
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2165
- font-family: "Georgia";
2163
+ font-family: "Din Condensed";
2166
2164
  }
2167
2165
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2168
- font-family: "Helvetica";
2166
+ font-family: "Georgia";
2169
2167
  }
2170
2168
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2171
- font-family: "Helvetica New";
2169
+ font-family: "Helvetica";
2172
2170
  }
2173
2171
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2174
- font-family: "Roboto";
2172
+ font-family: "Helvetica New";
2175
2173
  }
2176
2174
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2177
- font-family: "Tahoma";
2175
+ font-family: "Roboto";
2178
2176
  }
2179
2177
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2180
- font-family: "Times New Roman";
2178
+ font-family: "Tahoma";
2181
2179
  }
2182
2180
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2181
+ font-family: "Times New Roman";
2182
+ }
2183
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2183
2184
  font-family: "Verdana";
2184
2185
  }
2185
2186
  .e-dropdown-popup.e-aggregate-list {
@@ -3082,6 +3083,15 @@
3082
3083
  .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 {
3083
3084
  border-left-color: #39414c;
3084
3085
  }
3086
+ .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 {
3087
+ border-left-color: transparent;
3088
+ }
3089
+ .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 {
3090
+ border-left-color: #39414c;
3091
+ }
3092
+ .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 {
3093
+ border-right-color: #39414c;
3094
+ }
3085
3095
  .e-spreadsheet .e-copy-indicator div.e-top,
3086
3096
  .e-spreadsheet .e-range-indicator div.e-top,
3087
3097
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -705,9 +705,6 @@
705
705
  .e-spreadsheet .e-dlg-header-content {
706
706
  padding: 18px;
707
707
  }
708
- .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
709
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
710
- }
711
708
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
712
709
  font-size: 18px;
713
710
  line-height: 21px;
@@ -724,9 +721,6 @@
724
721
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
725
722
  margin-top: 10px;
726
723
  }
727
- .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
728
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
729
- }
730
724
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
731
725
  font-size: 18px;
732
726
  line-height: 21px;
@@ -1690,6 +1684,19 @@
1690
1684
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1691
1685
  right: 0;
1692
1686
  }
1687
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
1688
+ border-left-color: transparent;
1689
+ }
1690
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
1691
+ border-left: 1px solid #e5e7eb;
1692
+ border-right: none;
1693
+ left: 0.5px;
1694
+ }
1695
+ .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
1696
+ border-left: none;
1697
+ border-right: 1px solid #e5e7eb;
1698
+ right: 0.5px;
1699
+ }
1693
1700
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1694
1701
  position: relative;
1695
1702
  }
@@ -2000,9 +2007,6 @@
2000
2007
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
2001
2008
  text-align: left;
2002
2009
  }
2003
- .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
2004
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2005
- }
2006
2010
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2007
2011
  font-size: 18px;
2008
2012
  line-height: 31px;
@@ -2020,9 +2024,6 @@
2020
2024
  line-height: 24px;
2021
2025
  margin-bottom: 4px;
2022
2026
  }
2023
- .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
2024
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2025
- }
2026
2027
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2027
2028
  font-size: 18px;
2028
2029
  line-height: 21px;
@@ -2039,9 +2040,6 @@
2039
2040
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
2040
2041
  margin-top: 10px;
2041
2042
  }
2042
- .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
2043
- left: 0 !important; /* stylelint-disable-line declaration-no-important */
2044
- }
2045
2043
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2046
2044
  font-size: 18px;
2047
2045
  line-height: 21px;
@@ -2153,33 +2151,36 @@
2153
2151
  font-family: "Calibri";
2154
2152
  }
2155
2153
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2156
- font-family: "Courier";
2154
+ font-family: "Comic Sans MS";
2157
2155
  }
2158
2156
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2159
- font-family: "Courier New";
2157
+ font-family: "Courier";
2160
2158
  }
2161
2159
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2162
- font-family: "Din Condensed";
2160
+ font-family: "Courier New";
2163
2161
  }
2164
2162
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2165
- font-family: "Georgia";
2163
+ font-family: "Din Condensed";
2166
2164
  }
2167
2165
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2168
- font-family: "Helvetica";
2166
+ font-family: "Georgia";
2169
2167
  }
2170
2168
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2171
- font-family: "Helvetica New";
2169
+ font-family: "Helvetica";
2172
2170
  }
2173
2171
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2174
- font-family: "Roboto";
2172
+ font-family: "Helvetica New";
2175
2173
  }
2176
2174
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2177
- font-family: "Tahoma";
2175
+ font-family: "Roboto";
2178
2176
  }
2179
2177
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2180
- font-family: "Times New Roman";
2178
+ font-family: "Tahoma";
2181
2179
  }
2182
2180
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2181
+ font-family: "Times New Roman";
2182
+ }
2183
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2183
2184
  font-family: "Verdana";
2184
2185
  }
2185
2186
  .e-dropdown-popup.e-aggregate-list {
@@ -3082,6 +3083,15 @@
3082
3083
  .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 {
3083
3084
  border-left-color: #ced2d9;
3084
3085
  }
3086
+ .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 {
3087
+ border-left-color: transparent;
3088
+ }
3089
+ .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 {
3090
+ border-left-color: #ced2d9;
3091
+ }
3092
+ .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 {
3093
+ border-right-color: #ced2d9;
3094
+ }
3085
3095
  .e-spreadsheet .e-copy-indicator div.e-top,
3086
3096
  .e-spreadsheet .e-range-indicator div.e-top,
3087
3097
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -1,10 +0,0 @@
1
- {
2
- "$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
3
- "schematics": {
4
- "ng-add": {
5
- "description": "Adds Essential JS 2 specific Angular package to an application",
6
- "factory": "./ng-add",
7
- "schema": "./ng-add/schema.json"
8
- }
9
- }
10
- }
@@ -1,3 +0,0 @@
1
- import { OptionsSchema } from './schema';
2
- import { Rule } from '@angular-devkit/schematics';
3
- export default function (options: OptionsSchema): Rule;
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const lib_details_1 = require("./../utils/lib-details");
4
- const schematics_1 = require("@syncfusion/ej2-angular-base/schematics");
5
- function default_1(options) {
6
- const libOptions = Object.assign({}, { 'pkgName': lib_details_1.pkgName, 'pkgVer': lib_details_1.pkgVer, 'moduleName': lib_details_1.moduleName, 'themeVer': lib_details_1.themeVer });
7
- return schematics_1.install(options, libOptions);
8
- }
9
- exports.default = default_1;