@syncfusion/ej2-angular-spreadsheet 20.4.38-ngcc → 20.4.38

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 (180) hide show
  1. package/README.md +67 -144
  2. package/esm2020/public_api.mjs +3 -0
  3. package/esm2020/src/index.mjs +14 -0
  4. package/esm2020/src/spreadsheet/cells.directive.mjs +71 -0
  5. package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
  6. package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
  7. package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
  8. package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
  9. package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
  10. package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
  11. package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
  12. package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
  13. package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +80 -0
  14. package/esm2020/src/spreadsheet/spreadsheet.component.mjs +202 -0
  15. package/esm2020/src/spreadsheet/spreadsheet.module.mjs +106 -0
  16. package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
  17. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
  18. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  19. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
  20. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  21. package/package.json +38 -36
  22. package/schematics/utils/lib-details.d.ts +2 -2
  23. package/src/spreadsheet/cells.directive.d.ts +5 -0
  24. package/src/spreadsheet/chart.directive.d.ts +5 -0
  25. package/src/spreadsheet/columns.directive.d.ts +5 -0
  26. package/src/spreadsheet/conditionalformats.directive.d.ts +5 -0
  27. package/src/spreadsheet/definednames.directive.d.ts +5 -0
  28. package/src/spreadsheet/image.directive.d.ts +5 -0
  29. package/src/spreadsheet/ranges.directive.d.ts +5 -0
  30. package/src/spreadsheet/rows.directive.d.ts +5 -0
  31. package/src/spreadsheet/sheets.directive.d.ts +5 -0
  32. package/src/spreadsheet/spreadsheet-all.module.d.ts +6 -0
  33. package/src/spreadsheet/spreadsheet.component.d.ts +3 -0
  34. package/src/spreadsheet/spreadsheet.module.d.ts +15 -0
  35. package/styles/bootstrap-dark.css +24 -34
  36. package/styles/bootstrap.css +24 -34
  37. package/styles/bootstrap4.css +24 -34
  38. package/styles/bootstrap5-dark.css +24 -34
  39. package/styles/bootstrap5.css +24 -34
  40. package/styles/fabric-dark.css +24 -34
  41. package/styles/fabric.css +24 -34
  42. package/styles/fluent-dark.css +24 -34
  43. package/styles/fluent.css +24 -34
  44. package/styles/highcontrast-light.css +24 -34
  45. package/styles/highcontrast.css +24 -34
  46. package/styles/material-dark.css +24 -34
  47. package/styles/material.css +24 -34
  48. package/styles/ribbon/_all.scss +2 -0
  49. package/styles/ribbon/_bootstrap-dark-definition.scss +13 -0
  50. package/styles/ribbon/_bootstrap-definition.scss +12 -0
  51. package/styles/ribbon/_bootstrap4-definition.scss +13 -0
  52. package/styles/ribbon/_bootstrap5-dark-definition.scss +1 -0
  53. package/styles/ribbon/_bootstrap5-definition.scss +14 -0
  54. package/styles/ribbon/_fabric-dark-definition.scss +14 -0
  55. package/styles/ribbon/_fabric-definition.scss +14 -0
  56. package/styles/ribbon/_fluent-dark-definition.scss +1 -0
  57. package/styles/ribbon/_fluent-definition.scss +14 -0
  58. package/styles/ribbon/_fusionnew-definition.scss +14 -0
  59. package/styles/ribbon/_highcontrast-definition.scss +12 -0
  60. package/styles/ribbon/_highcontrast-light-definition.scss +12 -0
  61. package/styles/ribbon/_layout.scss +241 -0
  62. package/styles/ribbon/_material-dark-definition.scss +15 -0
  63. package/styles/ribbon/_material-definition.scss +12 -0
  64. package/styles/ribbon/_material3-definition.scss +15 -0
  65. package/styles/ribbon/_mixin.scss +89 -0
  66. package/styles/ribbon/_tailwind-dark-definition.scss +1 -0
  67. package/styles/ribbon/_tailwind-definition.scss +13 -0
  68. package/styles/ribbon/_theme.scss +154 -0
  69. package/styles/ribbon/bootstrap-dark.scss +4 -1
  70. package/styles/ribbon/bootstrap.scss +4 -1
  71. package/styles/ribbon/bootstrap4.scss +4 -1
  72. package/styles/ribbon/bootstrap5-dark.scss +4 -1
  73. package/styles/ribbon/bootstrap5.scss +4 -1
  74. package/styles/ribbon/fabric-dark.scss +4 -1
  75. package/styles/ribbon/fabric.scss +4 -1
  76. package/styles/ribbon/fluent-dark.scss +4 -1
  77. package/styles/ribbon/fluent.scss +4 -1
  78. package/styles/ribbon/highcontrast-light.scss +3 -1
  79. package/styles/ribbon/highcontrast.scss +4 -1
  80. package/styles/ribbon/icons/_bootstrap-dark.scss +15 -0
  81. package/styles/ribbon/icons/_bootstrap.scss +15 -0
  82. package/styles/ribbon/icons/_bootstrap4.scss +9 -0
  83. package/styles/ribbon/icons/_bootstrap5-dark.scss +1 -0
  84. package/styles/ribbon/icons/_bootstrap5.scss +15 -0
  85. package/styles/ribbon/icons/_fabric-dark.scss +9 -0
  86. package/styles/ribbon/icons/_fabric.scss +9 -0
  87. package/styles/ribbon/icons/_fluent-dark.scss +1 -0
  88. package/styles/ribbon/icons/_fluent.scss +15 -0
  89. package/styles/ribbon/icons/_fusionnew.scss +15 -0
  90. package/styles/ribbon/icons/_highcontrast.scss +9 -0
  91. package/styles/ribbon/icons/_material-dark.scss +15 -0
  92. package/styles/ribbon/icons/_material.scss +15 -0
  93. package/styles/ribbon/icons/_material3.scss +15 -0
  94. package/styles/ribbon/icons/_tailwind-dark.scss +15 -0
  95. package/styles/ribbon/icons/_tailwind.scss +15 -0
  96. package/styles/ribbon/material-dark.scss +4 -1
  97. package/styles/ribbon/material.scss +4 -1
  98. package/styles/ribbon/tailwind-dark.scss +4 -1
  99. package/styles/ribbon/tailwind.scss +4 -1
  100. package/styles/spreadsheet/_all.scss +2 -0
  101. package/styles/spreadsheet/_bootstrap-dark-definition.scss +154 -0
  102. package/styles/spreadsheet/_bootstrap-definition.scss +154 -0
  103. package/styles/spreadsheet/_bootstrap4-definition.scss +153 -0
  104. package/styles/spreadsheet/_bootstrap5-dark-definition.scss +1 -0
  105. package/styles/spreadsheet/_bootstrap5-definition.scss +156 -0
  106. package/styles/spreadsheet/_fabric-dark-definition.scss +151 -0
  107. package/styles/spreadsheet/_fabric-definition.scss +151 -0
  108. package/styles/spreadsheet/_fluent-dark-definition.scss +1 -0
  109. package/styles/spreadsheet/_fluent-definition.scss +152 -0
  110. package/styles/spreadsheet/_fusionnew-definition.scss +151 -0
  111. package/styles/spreadsheet/_highcontrast-definition.scss +150 -0
  112. package/styles/spreadsheet/_highcontrast-light-definition.scss +146 -0
  113. package/styles/spreadsheet/_layout.scss +3025 -0
  114. package/styles/spreadsheet/_material-dark-definition.scss +153 -0
  115. package/styles/spreadsheet/_material-definition.scss +151 -0
  116. package/styles/spreadsheet/_material3-definition.scss +151 -0
  117. package/styles/spreadsheet/_tailwind-dark-definition.scss +1 -0
  118. package/styles/spreadsheet/_tailwind-definition.scss +158 -0
  119. package/styles/spreadsheet/_theme.scss +1365 -0
  120. package/styles/spreadsheet/bootstrap-dark.css +24 -34
  121. package/styles/spreadsheet/bootstrap-dark.scss +23 -1
  122. package/styles/spreadsheet/bootstrap.css +24 -34
  123. package/styles/spreadsheet/bootstrap.scss +23 -1
  124. package/styles/spreadsheet/bootstrap4.css +24 -34
  125. package/styles/spreadsheet/bootstrap4.scss +23 -1
  126. package/styles/spreadsheet/bootstrap5-dark.css +24 -34
  127. package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
  128. package/styles/spreadsheet/bootstrap5.css +24 -34
  129. package/styles/spreadsheet/bootstrap5.scss +23 -1
  130. package/styles/spreadsheet/fabric-dark.css +24 -34
  131. package/styles/spreadsheet/fabric-dark.scss +23 -1
  132. package/styles/spreadsheet/fabric.css +24 -34
  133. package/styles/spreadsheet/fabric.scss +23 -1
  134. package/styles/spreadsheet/fluent-dark.css +24 -34
  135. package/styles/spreadsheet/fluent-dark.scss +22 -1
  136. package/styles/spreadsheet/fluent.css +24 -34
  137. package/styles/spreadsheet/fluent.scss +23 -1
  138. package/styles/spreadsheet/highcontrast-light.css +24 -34
  139. package/styles/spreadsheet/highcontrast-light.scss +22 -1
  140. package/styles/spreadsheet/highcontrast.css +24 -34
  141. package/styles/spreadsheet/highcontrast.scss +23 -1
  142. package/styles/spreadsheet/icons/_bootstrap-dark.scss +990 -0
  143. package/styles/spreadsheet/icons/_bootstrap.scss +990 -0
  144. package/styles/spreadsheet/icons/_bootstrap4.scss +994 -0
  145. package/styles/spreadsheet/icons/_bootstrap5-dark.scss +1 -0
  146. package/styles/spreadsheet/icons/_bootstrap5.scss +996 -0
  147. package/styles/spreadsheet/icons/_fabric-dark.scss +990 -0
  148. package/styles/spreadsheet/icons/_fabric.scss +994 -0
  149. package/styles/spreadsheet/icons/_fluent-dark.scss +1 -0
  150. package/styles/spreadsheet/icons/_fluent.scss +996 -0
  151. package/styles/spreadsheet/icons/_fusionnew.scss +996 -0
  152. package/styles/spreadsheet/icons/_highcontrast.scss +990 -0
  153. package/styles/spreadsheet/icons/_material-dark.scss +993 -0
  154. package/styles/spreadsheet/icons/_material.scss +995 -0
  155. package/styles/spreadsheet/icons/_material3.scss +996 -0
  156. package/styles/spreadsheet/icons/_tailwind-dark.scss +996 -0
  157. package/styles/spreadsheet/icons/_tailwind.scss +996 -0
  158. package/styles/spreadsheet/material-dark.css +24 -34
  159. package/styles/spreadsheet/material-dark.scss +23 -1
  160. package/styles/spreadsheet/material.css +24 -34
  161. package/styles/spreadsheet/material.scss +23 -1
  162. package/styles/spreadsheet/tailwind-dark.css +24 -34
  163. package/styles/spreadsheet/tailwind-dark.scss +22 -1
  164. package/styles/spreadsheet/tailwind.css +24 -34
  165. package/styles/spreadsheet/tailwind.scss +23 -1
  166. package/styles/tailwind-dark.css +24 -34
  167. package/styles/tailwind.css +24 -34
  168. package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
  169. package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -989
  170. package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
  171. package/@syncfusion/ej2-angular-spreadsheet.js +0 -929
  172. package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
  173. package/CHANGELOG.md +0 -1365
  174. package/dist/ej2-angular-spreadsheet.umd.js +0 -1583
  175. package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
  176. package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
  177. package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
  178. package/ej2-angular-spreadsheet.d.ts +0 -5
  179. package/ej2-angular-spreadsheet.metadata.json +0 -1
  180. package/postinstall/tagchange.js +0 -18
@@ -662,6 +662,9 @@
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
+ }
665
668
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
666
669
  font-size: 18px;
667
670
  line-height: 21px;
@@ -678,6 +681,9 @@
678
681
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
679
682
  margin-top: 10px;
680
683
  }
684
+ .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
685
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
686
+ }
681
687
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
682
688
  font-size: 18px;
683
689
  line-height: 21px;
@@ -1641,19 +1647,6 @@
1641
1647
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1642
1648
  right: 0;
1643
1649
  }
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
- }
1657
1650
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1658
1651
  position: relative;
1659
1652
  }
@@ -1951,6 +1944,9 @@
1951
1944
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
1952
1945
  text-align: left;
1953
1946
  }
1947
+ .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
1948
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
1949
+ }
1954
1950
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1955
1951
  font-size: 18px;
1956
1952
  line-height: 31px;
@@ -1968,6 +1964,9 @@
1968
1964
  line-height: 24px;
1969
1965
  margin-bottom: 4px;
1970
1966
  }
1967
+ .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
1968
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
1969
+ }
1971
1970
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1972
1971
  font-size: 18px;
1973
1972
  line-height: 21px;
@@ -1984,6 +1983,9 @@
1984
1983
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
1985
1984
  margin-top: 10px;
1986
1985
  }
1986
+ .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
1987
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
1988
+ }
1987
1989
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1988
1990
  font-size: 18px;
1989
1991
  line-height: 21px;
@@ -2093,36 +2095,33 @@
2093
2095
  font-family: "Calibri";
2094
2096
  }
2095
2097
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2096
- font-family: "Comic Sans MS";
2097
- }
2098
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2099
2098
  font-family: "Courier";
2100
2099
  }
2101
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2100
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2102
2101
  font-family: "Courier New";
2103
2102
  }
2104
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2103
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2105
2104
  font-family: "Din Condensed";
2106
2105
  }
2107
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2106
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2108
2107
  font-family: "Georgia";
2109
2108
  }
2110
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2109
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2111
2110
  font-family: "Helvetica";
2112
2111
  }
2113
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2112
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2114
2113
  font-family: "Helvetica New";
2115
2114
  }
2116
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2115
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2117
2116
  font-family: "Roboto";
2118
2117
  }
2119
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2118
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2120
2119
  font-family: "Tahoma";
2121
2120
  }
2122
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2121
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2123
2122
  font-family: "Times New Roman";
2124
2123
  }
2125
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2124
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2126
2125
  font-family: "Verdana";
2127
2126
  }
2128
2127
  .e-dropdown-popup.e-aggregate-list {
@@ -3006,15 +3005,6 @@
3006
3005
  .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 {
3007
3006
  border-left-color: #969696;
3008
3007
  }
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
- }
3018
3008
  .e-spreadsheet .e-copy-indicator div.e-top,
3019
3009
  .e-spreadsheet .e-range-indicator div.e-top,
3020
3010
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -715,6 +715,9 @@
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
+ }
718
721
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
719
722
  font-size: 18px;
720
723
  line-height: 21px;
@@ -731,6 +734,9 @@
731
734
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
732
735
  margin-top: 10px;
733
736
  }
737
+ .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
738
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
739
+ }
734
740
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
735
741
  font-size: 18px;
736
742
  line-height: 21px;
@@ -1685,19 +1691,6 @@
1685
1691
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1686
1692
  right: 0;
1687
1693
  }
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
- }
1701
1694
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1702
1695
  position: relative;
1703
1696
  }
@@ -1994,6 +1987,9 @@
1994
1987
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
1995
1988
  text-align: left;
1996
1989
  }
1990
+ .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
1991
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
1992
+ }
1997
1993
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
1998
1994
  font-size: 18px;
1999
1995
  line-height: 31px;
@@ -2011,6 +2007,9 @@
2011
2007
  line-height: 24px;
2012
2008
  margin-bottom: 4px;
2013
2009
  }
2010
+ .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
2011
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
2012
+ }
2014
2013
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2015
2014
  font-size: 18px;
2016
2015
  line-height: 21px;
@@ -2027,6 +2026,9 @@
2027
2026
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
2028
2027
  margin-top: 10px;
2029
2028
  }
2029
+ .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
2030
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
2031
+ }
2030
2032
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2031
2033
  font-size: 18px;
2032
2034
  line-height: 21px;
@@ -2136,36 +2138,33 @@
2136
2138
  font-family: "Calibri";
2137
2139
  }
2138
2140
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2139
- font-family: "Comic Sans MS";
2140
- }
2141
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2142
2141
  font-family: "Courier";
2143
2142
  }
2144
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2143
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2145
2144
  font-family: "Courier New";
2146
2145
  }
2147
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2146
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2148
2147
  font-family: "Din Condensed";
2149
2148
  }
2150
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2149
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2151
2150
  font-family: "Georgia";
2152
2151
  }
2153
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2152
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2154
2153
  font-family: "Helvetica";
2155
2154
  }
2156
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2155
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2157
2156
  font-family: "Helvetica New";
2158
2157
  }
2159
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2158
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2160
2159
  font-family: "Roboto";
2161
2160
  }
2162
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2161
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2163
2162
  font-family: "Tahoma";
2164
2163
  }
2165
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2164
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2166
2165
  font-family: "Times New Roman";
2167
2166
  }
2168
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2167
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2169
2168
  font-family: "Verdana";
2170
2169
  }
2171
2170
  .e-dropdown-popup.e-aggregate-list {
@@ -3047,15 +3046,6 @@
3047
3046
  .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 {
3048
3047
  border-left-color: #757575;
3049
3048
  }
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
- }
3059
3049
  .e-spreadsheet .e-copy-indicator div.e-top,
3060
3050
  .e-spreadsheet .e-range-indicator div.e-top,
3061
3051
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -743,6 +743,9 @@
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
+ }
746
749
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
747
750
  font-size: 18px;
748
751
  line-height: 21px;
@@ -759,6 +762,9 @@
759
762
  .e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
760
763
  margin-top: 10px;
761
764
  }
765
+ .e-spreadsheet .e-reenterpwd-dlg.e-dialog {
766
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
767
+ }
762
768
  .e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
763
769
  font-size: 18px;
764
770
  line-height: 21px;
@@ -1724,19 +1730,6 @@
1724
1730
  .e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
1725
1731
  right: 0;
1726
1732
  }
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
- }
1740
1733
  .e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
1741
1734
  position: relative;
1742
1735
  }
@@ -2032,6 +2025,9 @@
2032
2025
  .e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
2033
2026
  text-align: left;
2034
2027
  }
2028
+ .e-spreadsheet .e-protectworkbook-dlg.e-dialog {
2029
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
2030
+ }
2035
2031
  .e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2036
2032
  font-size: 18px;
2037
2033
  line-height: 31px;
@@ -2049,6 +2045,9 @@
2049
2045
  line-height: 24px;
2050
2046
  margin-bottom: 4px;
2051
2047
  }
2048
+ .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
2049
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
2050
+ }
2052
2051
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2053
2052
  font-size: 18px;
2054
2053
  line-height: 21px;
@@ -2065,6 +2064,9 @@
2065
2064
  .e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
2066
2065
  margin-top: 10px;
2067
2066
  }
2067
+ .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
2068
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
2069
+ }
2068
2070
  .e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
2069
2071
  font-size: 18px;
2070
2072
  line-height: 21px;
@@ -2174,36 +2176,33 @@
2174
2176
  font-family: "Calibri";
2175
2177
  }
2176
2178
  .e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
2177
- font-family: "Comic Sans MS";
2178
- }
2179
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2180
2179
  font-family: "Courier";
2181
2180
  }
2182
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2181
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
2183
2182
  font-family: "Courier New";
2184
2183
  }
2185
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2184
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
2186
2185
  font-family: "Din Condensed";
2187
2186
  }
2188
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2187
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
2189
2188
  font-family: "Georgia";
2190
2189
  }
2191
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2190
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
2192
2191
  font-family: "Helvetica";
2193
2192
  }
2194
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2193
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
2195
2194
  font-family: "Helvetica New";
2196
2195
  }
2197
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2196
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
2198
2197
  font-family: "Roboto";
2199
2198
  }
2200
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2199
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
2201
2200
  font-family: "Tahoma";
2202
2201
  }
2203
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2202
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
2204
2203
  font-family: "Times New Roman";
2205
2204
  }
2206
- .e-dropdown-popup.e-font-family ul .e-item:nth-child(17) {
2205
+ .e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
2207
2206
  font-family: "Verdana";
2208
2207
  }
2209
2208
  .e-dropdown-popup.e-aggregate-list {
@@ -3075,15 +3074,6 @@
3075
3074
  .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 {
3076
3075
  border-left-color: #cccccc;
3077
3076
  }
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
- }
3087
3077
  .e-spreadsheet .e-copy-indicator div.e-top,
3088
3078
  .e-spreadsheet .e-range-indicator div.e-top,
3089
3079
  .e-spreadsheet .e-formularef-indicator div.e-top {
@@ -0,0 +1,2 @@
1
+ @import 'layout.scss';
2
+ @import 'theme.scss';
@@ -0,0 +1,13 @@
1
+ $ribbon-skin: 'bootstrap' !default;
2
+ $ribbon-border-color: $grey-88 !default;
3
+ $ribbon-border: 1px solid $ribbon-border-color !default;
4
+ $ribbon-content-bg-color: $gray-darker !default;
5
+ $ribbon-header-bg-color: #191919 !default;
6
+ $file-menu-wrap-padding: 0 !default;
7
+ $drop-icon-margin: 16.5px 4px 17.5px !default;
8
+ $bigger-drop-icon-margin: 18.5px 5px 19.5px !default;
9
+ $expand-icon-color: $grey-dark-font !default;
10
+ $ribbon-header-height: 45px !default;
11
+ $ribbon-focus-text-color: $grey-dark-font !default;
12
+ $ribbon-focus-bg-color: $grey-44 !default;
13
+ $ribbon-comb-icon-color: $grey-dark-font !default;
@@ -0,0 +1,12 @@
1
+ $ribbon-skin: 'bootstrap' !default;
2
+ $ribbon-border-color: #e5e5e5 !default;
3
+ $ribbon-border: 1px solid $ribbon-border-color !default;
4
+ $ribbon-content-bg-color: $grey-white !default;
5
+ $ribbon-header-bg-color: $grey-f9 !default;
6
+ $file-menu-wrap-padding: 0 !default;
7
+ $drop-icon-margin: 16.5px 4px 17.5px !default;
8
+ $bigger-drop-icon-margin: 18.5px 5px 19.5px !default;
9
+ $expand-icon-color: $gray-light !default;
10
+ $ribbon-header-height: 45px !default;
11
+ $ribbon-focus-bg-color: $grey-lighter !default;
12
+ $ribbon-focus-text-color: $brand-primary-darken-25 !default;
@@ -0,0 +1,13 @@
1
+ $ribbon-skin: 'bootstrap4' !default;
2
+ $ribbon-border-color: $gray-300 !default;
3
+ $ribbon-border: 1px solid $ribbon-border-color !default;
4
+ $ribbon-header-bg-color: $gray-100 !default;
5
+ $ribbon-content-bg-color: $white !default;
6
+ $file-menu-wrap-padding: 0 !default;
7
+ $drop-icon-margin: 15px 5px !default;
8
+ $ribbon-comb-icon-color: $gray-700 !default;
9
+ $bigger-drop-icon-margin: 18.5px 5px 19.5px !default;
10
+ $expand-icon-color: $gray-600 !default;
11
+ $ribbon-header-height: 41px !default;
12
+ $ribbon-focus-text-color: darken($primary, 15%) !default;
13
+ $ribbon-focus-bg-color: #eee !default;
@@ -0,0 +1 @@
1
+ @import './bootstrap5-definition.scss';
@@ -0,0 +1,14 @@
1
+ $ribbon-skin: 'bootstrap5' !default;
2
+ $file-menu-wrap-padding: 0 !default;
3
+ $drop-icon-margin: 8px 4px !default;
4
+ $bigger-drop-icon-margin: 16px 5px !default;
5
+ $ribbon-border-color: $border-light !default;
6
+ $ribbon-border: 1px solid $ribbon-border-color !default;
7
+ $ribbon-content-bg-color: $content-bg-color !default;
8
+ $ribbon-header-bg-color: $content-bg-color-alt1 !default;
9
+ $separator-border-color: $border-light !default;
10
+ $expand-icon-color: $icon-color !default;
11
+ $ribbon-comb-icon-color: $icon-color !default;
12
+ $ribbon-focus-text-color: $primary-bg-color-pressed !default;
13
+ $ribbon-focused-wrap-focus-border-color: $icon-color !default;
14
+ $ribbon-focus-bg-color: rgba($content-bg-color-alt2, .12) !default;
@@ -0,0 +1,14 @@
1
+ $ribbon-skin: 'fabric' !default;
2
+ $border-color: $neutral-quintenary !default;
3
+ $ribbon-border: 1px solid $border-color !default;
4
+ $tab-header-height: 38px !default;
5
+ $bigger-tab-header-height: 48px !default;
6
+ $ribbon-header-bg-color: $neutral-lighter !default;
7
+ $file-menu-wrap-padding: 0 0 0 8px !default;
8
+ $drop-icon-margin: 12.5px 4px !default;
9
+ $bigger-drop-icon-margin: 14.5px 5px !default;
10
+ $ribbon-comb-icon-color: $neutral-light-font !default;
11
+ $expand-icon-color: $neutral-light-font !default;
12
+ $ribbon-focus-bg-color: initial !default;
13
+ $ribbon-focus-text-color: $neutral-light-fontalt !default;
14
+ $ribbon-focused-wrap-focus-border-color: $neutral-secondary-alt !default;
@@ -0,0 +1,14 @@
1
+ $ribbon-skin: 'fabric' !default;
2
+ $border-color: $neutral-light !default;
3
+ $ribbon-border: 1px solid $border-color !default;
4
+ $tab-header-height: 38px !default;
5
+ $bigger-tab-header-height: 48px !default;
6
+ $ribbon-header-bg-color: $neutral-white !default;
7
+ $ribbon-focused-wrap-focus-border-color: $neutral-secondary-alt !default;
8
+ $file-menu-wrap-padding: 0 0 0 8px !default;
9
+ $drop-icon-margin: 12.5px 4px !default;
10
+ $bigger-drop-icon-margin: 14.5px 5px !default;
11
+ $ribbon-comb-icon-color: $neutral-light-font !default;
12
+ $expand-icon-color: $neutral-secondary !default;
13
+ $ribbon-focus-bg-color: initial !default;
14
+ $ribbon-focus-text-color: $neutral-light-font !default;
@@ -0,0 +1 @@
1
+ @import './fluent-definition.scss';
@@ -0,0 +1,14 @@
1
+ $ribbon-skin: 'FluentUI' !default;
2
+ $file-menu-wrap-padding: 0 !default;
3
+ $drop-icon-margin: 8px 4px !default;
4
+ $bigger-drop-icon-margin: 16px 5px !default;
5
+ $ribbon-border-color: $border-light !default;
6
+ $ribbon-border: 1px solid $ribbon-border-color !default;
7
+ $ribbon-content-bg-color: $content-bg-color !default;
8
+ $ribbon-header-bg-color: $content-bg-color-alt1 !default;
9
+ $ribbon-comb-icon-color: $icon-color !default;
10
+ $separator-border-color: $border-light !default;
11
+ $ribbon-focus-text-color: $content-text-color !default;
12
+ $expand-icon-color: $icon-color !default;
13
+ $ribbon-focused-wrap-focus-border-color: $icon-color !default;
14
+ $ribbon-focus-bg-color: $content-bg-color-alt2 !default;
@@ -0,0 +1,14 @@
1
+ $ribbon-skin: 'bootstrap5' !default;
2
+ $file-menu-wrap-padding: 0 !default;
3
+ $drop-icon-margin: 8px 4px !default;
4
+ $bigger-drop-icon-margin: 16px 5px !default;
5
+ $ribbon-border-color: $border-light !default;
6
+ $ribbon-border: 1px solid $ribbon-border-color !default;
7
+ $ribbon-content-bg-color: $content-bg-color !default;
8
+ $ribbon-header-bg-color: $content-bg-color-alt1 !default;
9
+ $ribbon-comb-icon-color: $icon-color !default;
10
+ $separator-border-color: $border-light !default;
11
+ $ribbon-focus-text-color: $primary-bg-color-pressed !default;
12
+ $expand-icon-color: $icon-color !default;
13
+ $ribbon-focused-wrap-focus-border-color: $icon-color !default;
14
+ $ribbon-focus-bg-color: rgba($content-bg-color-alt2, .12) !default;
@@ -0,0 +1,12 @@
1
+ $ribbon-skin: 'highcontrast' !default;
2
+ $ribbon-border-color: $bg-base-100 !default;
3
+ $ribbon-border: 1px solid $ribbon-border-color !default;
4
+ $ribbon-header-bg-color: $bg-base-0 !default;
5
+ $file-menu-wrap-padding: 0 !default;
6
+ $ribbon-focused-wrap-focus-border-color: $hover-border !default;
7
+ $drop-icon-margin: 12.5px 4px !default;
8
+ $bigger-drop-icon-margin: 14.5px 5px !default;
9
+ $ribbon-comb-icon-color: $content-font !default;
10
+ $expand-icon-color: $content-font !default;
11
+ $ribbon-focus-bg-color: initial !default;
12
+ $ribbon-focus-text-color: $content-font !default;
@@ -0,0 +1,12 @@
1
+ $ribbon-skin: 'highcontrast' !default;
2
+ $ribbon-border-color: transparent !default;
3
+ $ribbon-border: 1px solid $ribbon-border-color !default;
4
+ $file-menu-wrap-padding: 0 !default;
5
+ $drop-icon-margin: 12.5px 4px !default;
6
+ $bigger-drop-icon-margin: 14.5px 5px !default;
7
+ $expand-icon-color: initial !default;
8
+ $ribbon-comb-icon-color: $content-font !default;
9
+ $ribbon-header-bg-color: transparent !default;
10
+ $ribbon-focused-wrap-focus-border-color: $hover-border !default;
11
+ $ribbon-focus-bg-color: initial !default;
12
+ $ribbon-focus-text-color: $content-font !default;