@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.
- package/README.md +67 -144
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +14 -0
- package/esm2020/src/spreadsheet/cells.directive.mjs +71 -0
- package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
- package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
- package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
- package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
- package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +80 -0
- package/esm2020/src/spreadsheet/spreadsheet.component.mjs +202 -0
- package/esm2020/src/spreadsheet/spreadsheet.module.mjs +106 -0
- package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/package.json +38 -36
- package/schematics/utils/lib-details.d.ts +2 -2
- package/src/spreadsheet/cells.directive.d.ts +5 -0
- package/src/spreadsheet/chart.directive.d.ts +5 -0
- package/src/spreadsheet/columns.directive.d.ts +5 -0
- package/src/spreadsheet/conditionalformats.directive.d.ts +5 -0
- package/src/spreadsheet/definednames.directive.d.ts +5 -0
- package/src/spreadsheet/image.directive.d.ts +5 -0
- package/src/spreadsheet/ranges.directive.d.ts +5 -0
- package/src/spreadsheet/rows.directive.d.ts +5 -0
- package/src/spreadsheet/sheets.directive.d.ts +5 -0
- package/src/spreadsheet/spreadsheet-all.module.d.ts +6 -0
- package/src/spreadsheet/spreadsheet.component.d.ts +3 -0
- package/src/spreadsheet/spreadsheet.module.d.ts +15 -0
- package/styles/bootstrap-dark.css +24 -34
- package/styles/bootstrap.css +24 -34
- package/styles/bootstrap4.css +24 -34
- package/styles/bootstrap5-dark.css +24 -34
- package/styles/bootstrap5.css +24 -34
- package/styles/fabric-dark.css +24 -34
- package/styles/fabric.css +24 -34
- package/styles/fluent-dark.css +24 -34
- package/styles/fluent.css +24 -34
- package/styles/highcontrast-light.css +24 -34
- package/styles/highcontrast.css +24 -34
- package/styles/material-dark.css +24 -34
- package/styles/material.css +24 -34
- package/styles/ribbon/_all.scss +2 -0
- package/styles/ribbon/_bootstrap-dark-definition.scss +13 -0
- package/styles/ribbon/_bootstrap-definition.scss +12 -0
- package/styles/ribbon/_bootstrap4-definition.scss +13 -0
- package/styles/ribbon/_bootstrap5-dark-definition.scss +1 -0
- package/styles/ribbon/_bootstrap5-definition.scss +14 -0
- package/styles/ribbon/_fabric-dark-definition.scss +14 -0
- package/styles/ribbon/_fabric-definition.scss +14 -0
- package/styles/ribbon/_fluent-dark-definition.scss +1 -0
- package/styles/ribbon/_fluent-definition.scss +14 -0
- package/styles/ribbon/_fusionnew-definition.scss +14 -0
- package/styles/ribbon/_highcontrast-definition.scss +12 -0
- package/styles/ribbon/_highcontrast-light-definition.scss +12 -0
- package/styles/ribbon/_layout.scss +241 -0
- package/styles/ribbon/_material-dark-definition.scss +15 -0
- package/styles/ribbon/_material-definition.scss +12 -0
- package/styles/ribbon/_material3-definition.scss +15 -0
- package/styles/ribbon/_mixin.scss +89 -0
- package/styles/ribbon/_tailwind-dark-definition.scss +1 -0
- package/styles/ribbon/_tailwind-definition.scss +13 -0
- package/styles/ribbon/_theme.scss +154 -0
- package/styles/ribbon/bootstrap-dark.scss +4 -1
- package/styles/ribbon/bootstrap.scss +4 -1
- package/styles/ribbon/bootstrap4.scss +4 -1
- package/styles/ribbon/bootstrap5-dark.scss +4 -1
- package/styles/ribbon/bootstrap5.scss +4 -1
- package/styles/ribbon/fabric-dark.scss +4 -1
- package/styles/ribbon/fabric.scss +4 -1
- package/styles/ribbon/fluent-dark.scss +4 -1
- package/styles/ribbon/fluent.scss +4 -1
- package/styles/ribbon/highcontrast-light.scss +3 -1
- package/styles/ribbon/highcontrast.scss +4 -1
- package/styles/ribbon/icons/_bootstrap-dark.scss +15 -0
- package/styles/ribbon/icons/_bootstrap.scss +15 -0
- package/styles/ribbon/icons/_bootstrap4.scss +9 -0
- package/styles/ribbon/icons/_bootstrap5-dark.scss +1 -0
- package/styles/ribbon/icons/_bootstrap5.scss +15 -0
- package/styles/ribbon/icons/_fabric-dark.scss +9 -0
- package/styles/ribbon/icons/_fabric.scss +9 -0
- package/styles/ribbon/icons/_fluent-dark.scss +1 -0
- package/styles/ribbon/icons/_fluent.scss +15 -0
- package/styles/ribbon/icons/_fusionnew.scss +15 -0
- package/styles/ribbon/icons/_highcontrast.scss +9 -0
- package/styles/ribbon/icons/_material-dark.scss +15 -0
- package/styles/ribbon/icons/_material.scss +15 -0
- package/styles/ribbon/icons/_material3.scss +15 -0
- package/styles/ribbon/icons/_tailwind-dark.scss +15 -0
- package/styles/ribbon/icons/_tailwind.scss +15 -0
- package/styles/ribbon/material-dark.scss +4 -1
- package/styles/ribbon/material.scss +4 -1
- package/styles/ribbon/tailwind-dark.scss +4 -1
- package/styles/ribbon/tailwind.scss +4 -1
- package/styles/spreadsheet/_all.scss +2 -0
- package/styles/spreadsheet/_bootstrap-dark-definition.scss +154 -0
- package/styles/spreadsheet/_bootstrap-definition.scss +154 -0
- package/styles/spreadsheet/_bootstrap4-definition.scss +153 -0
- package/styles/spreadsheet/_bootstrap5-dark-definition.scss +1 -0
- package/styles/spreadsheet/_bootstrap5-definition.scss +156 -0
- package/styles/spreadsheet/_fabric-dark-definition.scss +151 -0
- package/styles/spreadsheet/_fabric-definition.scss +151 -0
- package/styles/spreadsheet/_fluent-dark-definition.scss +1 -0
- package/styles/spreadsheet/_fluent-definition.scss +152 -0
- package/styles/spreadsheet/_fusionnew-definition.scss +151 -0
- package/styles/spreadsheet/_highcontrast-definition.scss +150 -0
- package/styles/spreadsheet/_highcontrast-light-definition.scss +146 -0
- package/styles/spreadsheet/_layout.scss +3025 -0
- package/styles/spreadsheet/_material-dark-definition.scss +153 -0
- package/styles/spreadsheet/_material-definition.scss +151 -0
- package/styles/spreadsheet/_material3-definition.scss +151 -0
- package/styles/spreadsheet/_tailwind-dark-definition.scss +1 -0
- package/styles/spreadsheet/_tailwind-definition.scss +158 -0
- package/styles/spreadsheet/_theme.scss +1365 -0
- package/styles/spreadsheet/bootstrap-dark.css +24 -34
- package/styles/spreadsheet/bootstrap-dark.scss +23 -1
- package/styles/spreadsheet/bootstrap.css +24 -34
- package/styles/spreadsheet/bootstrap.scss +23 -1
- package/styles/spreadsheet/bootstrap4.css +24 -34
- package/styles/spreadsheet/bootstrap4.scss +23 -1
- package/styles/spreadsheet/bootstrap5-dark.css +24 -34
- package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
- package/styles/spreadsheet/bootstrap5.css +24 -34
- package/styles/spreadsheet/bootstrap5.scss +23 -1
- package/styles/spreadsheet/fabric-dark.css +24 -34
- package/styles/spreadsheet/fabric-dark.scss +23 -1
- package/styles/spreadsheet/fabric.css +24 -34
- package/styles/spreadsheet/fabric.scss +23 -1
- package/styles/spreadsheet/fluent-dark.css +24 -34
- package/styles/spreadsheet/fluent-dark.scss +22 -1
- package/styles/spreadsheet/fluent.css +24 -34
- package/styles/spreadsheet/fluent.scss +23 -1
- package/styles/spreadsheet/highcontrast-light.css +24 -34
- package/styles/spreadsheet/highcontrast-light.scss +22 -1
- package/styles/spreadsheet/highcontrast.css +24 -34
- package/styles/spreadsheet/highcontrast.scss +23 -1
- package/styles/spreadsheet/icons/_bootstrap-dark.scss +990 -0
- package/styles/spreadsheet/icons/_bootstrap.scss +990 -0
- package/styles/spreadsheet/icons/_bootstrap4.scss +994 -0
- package/styles/spreadsheet/icons/_bootstrap5-dark.scss +1 -0
- package/styles/spreadsheet/icons/_bootstrap5.scss +996 -0
- package/styles/spreadsheet/icons/_fabric-dark.scss +990 -0
- package/styles/spreadsheet/icons/_fabric.scss +994 -0
- package/styles/spreadsheet/icons/_fluent-dark.scss +1 -0
- package/styles/spreadsheet/icons/_fluent.scss +996 -0
- package/styles/spreadsheet/icons/_fusionnew.scss +996 -0
- package/styles/spreadsheet/icons/_highcontrast.scss +990 -0
- package/styles/spreadsheet/icons/_material-dark.scss +993 -0
- package/styles/spreadsheet/icons/_material.scss +995 -0
- package/styles/spreadsheet/icons/_material3.scss +996 -0
- package/styles/spreadsheet/icons/_tailwind-dark.scss +996 -0
- package/styles/spreadsheet/icons/_tailwind.scss +996 -0
- package/styles/spreadsheet/material-dark.css +24 -34
- package/styles/spreadsheet/material-dark.scss +23 -1
- package/styles/spreadsheet/material.css +24 -34
- package/styles/spreadsheet/material.scss +23 -1
- package/styles/spreadsheet/tailwind-dark.css +24 -34
- package/styles/spreadsheet/tailwind-dark.scss +22 -1
- package/styles/spreadsheet/tailwind.css +24 -34
- package/styles/spreadsheet/tailwind.scss +23 -1
- package/styles/tailwind-dark.css +24 -34
- package/styles/tailwind.css +24 -34
- package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
- package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -989
- package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-spreadsheet.js +0 -929
- package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
- package/CHANGELOG.md +0 -1365
- package/dist/ej2-angular-spreadsheet.umd.js +0 -1583
- package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
- package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
- package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
- package/ej2-angular-spreadsheet.d.ts +0 -5
- package/ej2-angular-spreadsheet.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
package/styles/tailwind-dark.css
CHANGED
|
@@ -705,6 +705,9 @@
|
|
|
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
|
+
}
|
|
708
711
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
709
712
|
font-size: 18px;
|
|
710
713
|
line-height: 21px;
|
|
@@ -721,6 +724,9 @@
|
|
|
721
724
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
722
725
|
margin-top: 10px;
|
|
723
726
|
}
|
|
727
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
728
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
729
|
+
}
|
|
724
730
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
725
731
|
font-size: 18px;
|
|
726
732
|
line-height: 21px;
|
|
@@ -1684,19 +1690,6 @@
|
|
|
1684
1690
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1685
1691
|
right: 0;
|
|
1686
1692
|
}
|
|
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
|
-
}
|
|
1700
1693
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1701
1694
|
position: relative;
|
|
1702
1695
|
}
|
|
@@ -2007,6 +2000,9 @@
|
|
|
2007
2000
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
2008
2001
|
text-align: left;
|
|
2009
2002
|
}
|
|
2003
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
2004
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2005
|
+
}
|
|
2010
2006
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2011
2007
|
font-size: 18px;
|
|
2012
2008
|
line-height: 31px;
|
|
@@ -2024,6 +2020,9 @@
|
|
|
2024
2020
|
line-height: 24px;
|
|
2025
2021
|
margin-bottom: 4px;
|
|
2026
2022
|
}
|
|
2023
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
2024
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2025
|
+
}
|
|
2027
2026
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2028
2027
|
font-size: 18px;
|
|
2029
2028
|
line-height: 21px;
|
|
@@ -2040,6 +2039,9 @@
|
|
|
2040
2039
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2041
2040
|
margin-top: 10px;
|
|
2042
2041
|
}
|
|
2042
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
2043
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2044
|
+
}
|
|
2043
2045
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2044
2046
|
font-size: 18px;
|
|
2045
2047
|
line-height: 21px;
|
|
@@ -2151,36 +2153,33 @@
|
|
|
2151
2153
|
font-family: "Calibri";
|
|
2152
2154
|
}
|
|
2153
2155
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2154
|
-
font-family: "Comic Sans MS";
|
|
2155
|
-
}
|
|
2156
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2157
2156
|
font-family: "Courier";
|
|
2158
2157
|
}
|
|
2159
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2158
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2160
2159
|
font-family: "Courier New";
|
|
2161
2160
|
}
|
|
2162
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2161
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2163
2162
|
font-family: "Din Condensed";
|
|
2164
2163
|
}
|
|
2165
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2164
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2166
2165
|
font-family: "Georgia";
|
|
2167
2166
|
}
|
|
2168
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2167
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2169
2168
|
font-family: "Helvetica";
|
|
2170
2169
|
}
|
|
2171
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2170
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2172
2171
|
font-family: "Helvetica New";
|
|
2173
2172
|
}
|
|
2174
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2173
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2175
2174
|
font-family: "Roboto";
|
|
2176
2175
|
}
|
|
2177
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2176
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2178
2177
|
font-family: "Tahoma";
|
|
2179
2178
|
}
|
|
2180
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2179
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2181
2180
|
font-family: "Times New Roman";
|
|
2182
2181
|
}
|
|
2183
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2182
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2184
2183
|
font-family: "Verdana";
|
|
2185
2184
|
}
|
|
2186
2185
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3083,15 +3082,6 @@
|
|
|
3083
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 {
|
|
3084
3083
|
border-left-color: #39414c;
|
|
3085
3084
|
}
|
|
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
|
-
}
|
|
3095
3085
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3096
3086
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3097
3087
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
package/styles/tailwind.css
CHANGED
|
@@ -705,6 +705,9 @@
|
|
|
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
|
+
}
|
|
708
711
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
709
712
|
font-size: 18px;
|
|
710
713
|
line-height: 21px;
|
|
@@ -721,6 +724,9 @@
|
|
|
721
724
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
722
725
|
margin-top: 10px;
|
|
723
726
|
}
|
|
727
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
728
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
729
|
+
}
|
|
724
730
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
725
731
|
font-size: 18px;
|
|
726
732
|
line-height: 21px;
|
|
@@ -1684,19 +1690,6 @@
|
|
|
1684
1690
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1685
1691
|
right: 0;
|
|
1686
1692
|
}
|
|
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
|
-
}
|
|
1700
1693
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1701
1694
|
position: relative;
|
|
1702
1695
|
}
|
|
@@ -2007,6 +2000,9 @@
|
|
|
2007
2000
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
2008
2001
|
text-align: left;
|
|
2009
2002
|
}
|
|
2003
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
2004
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2005
|
+
}
|
|
2010
2006
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2011
2007
|
font-size: 18px;
|
|
2012
2008
|
line-height: 31px;
|
|
@@ -2024,6 +2020,9 @@
|
|
|
2024
2020
|
line-height: 24px;
|
|
2025
2021
|
margin-bottom: 4px;
|
|
2026
2022
|
}
|
|
2023
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
2024
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2025
|
+
}
|
|
2027
2026
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2028
2027
|
font-size: 18px;
|
|
2029
2028
|
line-height: 21px;
|
|
@@ -2040,6 +2039,9 @@
|
|
|
2040
2039
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2041
2040
|
margin-top: 10px;
|
|
2042
2041
|
}
|
|
2042
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
2043
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2044
|
+
}
|
|
2043
2045
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2044
2046
|
font-size: 18px;
|
|
2045
2047
|
line-height: 21px;
|
|
@@ -2151,36 +2153,33 @@
|
|
|
2151
2153
|
font-family: "Calibri";
|
|
2152
2154
|
}
|
|
2153
2155
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2154
|
-
font-family: "Comic Sans MS";
|
|
2155
|
-
}
|
|
2156
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2157
2156
|
font-family: "Courier";
|
|
2158
2157
|
}
|
|
2159
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2158
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2160
2159
|
font-family: "Courier New";
|
|
2161
2160
|
}
|
|
2162
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2161
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2163
2162
|
font-family: "Din Condensed";
|
|
2164
2163
|
}
|
|
2165
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2164
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2166
2165
|
font-family: "Georgia";
|
|
2167
2166
|
}
|
|
2168
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2167
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2169
2168
|
font-family: "Helvetica";
|
|
2170
2169
|
}
|
|
2171
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2170
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2172
2171
|
font-family: "Helvetica New";
|
|
2173
2172
|
}
|
|
2174
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2173
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2175
2174
|
font-family: "Roboto";
|
|
2176
2175
|
}
|
|
2177
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2176
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2178
2177
|
font-family: "Tahoma";
|
|
2179
2178
|
}
|
|
2180
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2179
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2181
2180
|
font-family: "Times New Roman";
|
|
2182
2181
|
}
|
|
2183
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2182
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2184
2183
|
font-family: "Verdana";
|
|
2185
2184
|
}
|
|
2186
2185
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3083,15 +3082,6 @@
|
|
|
3083
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 {
|
|
3084
3083
|
border-left-color: #ced2d9;
|
|
3085
3084
|
}
|
|
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
|
-
}
|
|
3095
3085
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3096
3086
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3097
3087
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|