@syncfusion/ej2-angular-spreadsheet 20.2.38-ngcc → 20.2.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/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 +27 -13
- package/schematics/utils/lib-details.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 +99 -123
- package/styles/bootstrap.css +99 -123
- package/styles/bootstrap4.css +100 -124
- package/styles/bootstrap5-dark.css +100 -128
- package/styles/bootstrap5.css +100 -128
- package/styles/fabric-dark.css +99 -120
- package/styles/fabric.css +99 -120
- package/styles/fluent-dark.css +113 -136
- package/styles/fluent.css +113 -136
- package/styles/highcontrast-light.css +99 -120
- package/styles/highcontrast.css +99 -120
- package/styles/material-dark.css +99 -122
- package/styles/material.css +99 -122
- 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 +243 -0
- package/styles/ribbon/_material-dark-definition.scss +15 -0
- package/styles/ribbon/_material-definition.scss +13 -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 +115 -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 +133 -0
- package/styles/spreadsheet/_bootstrap-definition.scss +133 -0
- package/styles/spreadsheet/_bootstrap4-definition.scss +132 -0
- package/styles/spreadsheet/_bootstrap5-dark-definition.scss +1 -0
- package/styles/spreadsheet/_bootstrap5-definition.scss +134 -0
- package/styles/spreadsheet/_fabric-dark-definition.scss +130 -0
- package/styles/spreadsheet/_fabric-definition.scss +130 -0
- package/styles/spreadsheet/_fluent-dark-definition.scss +1 -0
- package/styles/spreadsheet/_fluent-definition.scss +134 -0
- package/styles/spreadsheet/_fusionnew-definition.scss +134 -0
- package/styles/spreadsheet/_highcontrast-definition.scss +130 -0
- package/styles/spreadsheet/_highcontrast-light-definition.scss +130 -0
- package/styles/spreadsheet/_layout.scss +2981 -0
- package/styles/spreadsheet/_material-dark-definition.scss +133 -0
- package/styles/spreadsheet/_material-definition.scss +131 -0
- package/styles/spreadsheet/_material3-definition.scss +134 -0
- package/styles/spreadsheet/_tailwind-dark-definition.scss +1 -0
- package/styles/spreadsheet/_tailwind-definition.scss +136 -0
- package/styles/spreadsheet/_theme.scss +1356 -0
- package/styles/spreadsheet/bootstrap-dark.css +99 -123
- package/styles/spreadsheet/bootstrap-dark.scss +23 -1
- package/styles/spreadsheet/bootstrap.css +99 -123
- package/styles/spreadsheet/bootstrap.scss +23 -1
- package/styles/spreadsheet/bootstrap4.css +100 -124
- package/styles/spreadsheet/bootstrap4.scss +23 -1
- package/styles/spreadsheet/bootstrap5-dark.css +100 -128
- package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
- package/styles/spreadsheet/bootstrap5.css +100 -128
- package/styles/spreadsheet/bootstrap5.scss +23 -1
- package/styles/spreadsheet/fabric-dark.css +99 -120
- package/styles/spreadsheet/fabric-dark.scss +23 -1
- package/styles/spreadsheet/fabric.css +99 -120
- package/styles/spreadsheet/fabric.scss +23 -1
- package/styles/spreadsheet/fluent-dark.css +113 -136
- package/styles/spreadsheet/fluent-dark.scss +22 -1
- package/styles/spreadsheet/fluent.css +113 -136
- package/styles/spreadsheet/fluent.scss +23 -1
- package/styles/spreadsheet/highcontrast-light.css +99 -120
- package/styles/spreadsheet/highcontrast-light.scss +22 -1
- package/styles/spreadsheet/highcontrast.css +99 -120
- 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 +995 -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 +99 -122
- package/styles/spreadsheet/material-dark.scss +23 -1
- package/styles/spreadsheet/material.css +99 -122
- package/styles/spreadsheet/material.scss +23 -1
- package/styles/spreadsheet/tailwind-dark.css +101 -121
- package/styles/spreadsheet/tailwind-dark.scss +22 -1
- package/styles/spreadsheet/tailwind.css +101 -121
- package/styles/spreadsheet/tailwind.scss +23 -1
- package/styles/tailwind-dark.css +101 -121
- package/styles/tailwind.css +101 -121
- 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 -1160
- package/dist/ej2-angular-spreadsheet.umd.js +0 -1585
- 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/schematics/collection.json +0 -10
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -680,65 +680,58 @@
|
|
|
680
680
|
-ms-user-select: none;
|
|
681
681
|
user-select: none;
|
|
682
682
|
}
|
|
683
|
-
.e-spreadsheet .e-protect-dlg
|
|
683
|
+
.e-spreadsheet .e-protect-dlg {
|
|
684
684
|
height: 470px;
|
|
685
685
|
width: 287px;
|
|
686
686
|
}
|
|
687
|
-
.e-spreadsheet .e-protect-dlg
|
|
687
|
+
.e-spreadsheet .e-protect-dlg .e-sheet-password-content .e-header {
|
|
688
688
|
font-size: 14px;
|
|
689
689
|
line-height: 28px;
|
|
690
690
|
margin-bottom: 4px;
|
|
691
691
|
}
|
|
692
|
-
.e-spreadsheet .e-custom-format-dlg
|
|
692
|
+
.e-spreadsheet .e-custom-format-dlg {
|
|
693
693
|
height: 510px !important;
|
|
694
694
|
width: 530px !important;
|
|
695
695
|
}
|
|
696
|
-
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-footer-content {
|
|
697
|
-
padding: 0;
|
|
698
|
-
}
|
|
699
|
-
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-dlg-content {
|
|
700
|
-
display: inline-table;
|
|
701
|
-
padding-top: 3px;
|
|
702
|
-
}
|
|
703
696
|
.e-spreadsheet .e-dlg-header-content {
|
|
704
697
|
padding: 18px;
|
|
705
698
|
}
|
|
706
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
699
|
+
.e-spreadsheet .e-unprotectworksheet-dlg {
|
|
707
700
|
left: 0 !important;
|
|
708
701
|
}
|
|
709
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
702
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-header-content .e-dlg-header {
|
|
710
703
|
font-size: 18px;
|
|
711
704
|
line-height: 21px;
|
|
712
705
|
}
|
|
713
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
706
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-alert-span {
|
|
714
707
|
color: #f87171;
|
|
715
708
|
font-size: 12px;
|
|
716
709
|
padding-top: 7px;
|
|
717
710
|
}
|
|
718
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
711
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-header {
|
|
719
712
|
font-size: 14px;
|
|
720
713
|
line-height: 16px;
|
|
721
714
|
}
|
|
722
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
715
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
723
716
|
margin-top: 10px;
|
|
724
717
|
}
|
|
725
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
718
|
+
.e-spreadsheet .e-reenterpwd-dlg {
|
|
726
719
|
left: 0 !important;
|
|
727
720
|
}
|
|
728
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
721
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-header-content .e-dlg-header {
|
|
729
722
|
font-size: 18px;
|
|
730
723
|
line-height: 21px;
|
|
731
724
|
}
|
|
732
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
725
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-alert-span {
|
|
733
726
|
color: #f87171;
|
|
734
727
|
font-size: 12px;
|
|
735
728
|
padding-top: 7px;
|
|
736
729
|
}
|
|
737
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
730
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-header {
|
|
738
731
|
font-size: 14px;
|
|
739
732
|
line-height: 16px;
|
|
740
733
|
}
|
|
741
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
734
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-input {
|
|
742
735
|
margin-top: 10px;
|
|
743
736
|
}
|
|
744
737
|
.e-spreadsheet .e-goto-dlg {
|
|
@@ -791,6 +784,13 @@
|
|
|
791
784
|
margin-right: 2.8%;
|
|
792
785
|
width: 80%;
|
|
793
786
|
}
|
|
787
|
+
.e-spreadsheet .e-custom-format-dlg .e-footer-content {
|
|
788
|
+
padding: 0;
|
|
789
|
+
}
|
|
790
|
+
.e-spreadsheet .e-custom-format-dlg .e-dlg-content {
|
|
791
|
+
display: inline-table;
|
|
792
|
+
padding-top: 3px;
|
|
793
|
+
}
|
|
794
794
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-custom-sample {
|
|
795
795
|
margin: 10px 10px 10px 0;
|
|
796
796
|
}
|
|
@@ -1128,8 +1128,8 @@
|
|
|
1128
1128
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1129
1129
|
background-color: #22d3ee;
|
|
1130
1130
|
cursor: ns-resize;
|
|
1131
|
-
left: 50%;
|
|
1132
1131
|
position: absolute;
|
|
1132
|
+
right: 50%;
|
|
1133
1133
|
top: 0;
|
|
1134
1134
|
transform: translate(-50%, -50%);
|
|
1135
1135
|
}
|
|
@@ -1144,8 +1144,8 @@
|
|
|
1144
1144
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1145
1145
|
background-color: #22d3ee;
|
|
1146
1146
|
cursor: ns-resize;
|
|
1147
|
-
left: 50%;
|
|
1148
1147
|
position: absolute;
|
|
1148
|
+
right: 50%;
|
|
1149
1149
|
top: 100%;
|
|
1150
1150
|
transform: translate(-50%, -50%);
|
|
1151
1151
|
}
|
|
@@ -1741,24 +1741,24 @@
|
|
|
1741
1741
|
direction: ltr;
|
|
1742
1742
|
text-align: left;
|
|
1743
1743
|
}
|
|
1744
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1744
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-header-content {
|
|
1745
1745
|
padding: 18px;
|
|
1746
1746
|
}
|
|
1747
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1747
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content {
|
|
1748
1748
|
padding-bottom: 0;
|
|
1749
1749
|
padding-left: 0;
|
|
1750
1750
|
padding-right: 0;
|
|
1751
1751
|
}
|
|
1752
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1752
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-dialog {
|
|
1753
1753
|
padding-top: 15px;
|
|
1754
1754
|
}
|
|
1755
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1755
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection {
|
|
1756
1756
|
padding-top: 18px;
|
|
1757
1757
|
}
|
|
1758
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1758
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection .e-input-group {
|
|
1759
1759
|
min-width: 220px;
|
|
1760
1760
|
}
|
|
1761
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1761
|
+
.e-spreadsheet .e-customsort-dlg .e-footer-content .e-sort-addbtn {
|
|
1762
1762
|
float: left;
|
|
1763
1763
|
margin-left: 0;
|
|
1764
1764
|
}
|
|
@@ -1888,84 +1888,84 @@
|
|
|
1888
1888
|
font-size: 14px;
|
|
1889
1889
|
line-height: 28px;
|
|
1890
1890
|
}
|
|
1891
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1892
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1891
|
+
.e-spreadsheet .e-hyperlink-dlg,
|
|
1892
|
+
.e-spreadsheet .e-edithyperlink-dlg {
|
|
1893
1893
|
max-height: 640px !important;
|
|
1894
1894
|
}
|
|
1895
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1896
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1895
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content,
|
|
1896
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content {
|
|
1897
1897
|
padding: 24px 24px 16px;
|
|
1898
1898
|
}
|
|
1899
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1900
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1899
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content .e-dlg-header,
|
|
1900
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content .e-dlg-header {
|
|
1901
1901
|
font-size: 18px;
|
|
1902
1902
|
line-height: 21px;
|
|
1903
1903
|
}
|
|
1904
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1905
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1904
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content,
|
|
1905
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content {
|
|
1906
1906
|
padding-bottom: 0;
|
|
1907
1907
|
padding-left: 0;
|
|
1908
1908
|
padding-right: 0;
|
|
1909
1909
|
}
|
|
1910
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1911
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1910
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header,
|
|
1911
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header {
|
|
1912
1912
|
padding: 0 24px 0 25px;
|
|
1913
1913
|
}
|
|
1914
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1915
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1914
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items,
|
|
1915
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items {
|
|
1916
1916
|
height: 100%;
|
|
1917
1917
|
}
|
|
1918
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1919
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1918
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item,
|
|
1919
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item {
|
|
1920
1920
|
text-align: center;
|
|
1921
1921
|
width: 136px;
|
|
1922
1922
|
}
|
|
1923
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1924
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1923
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text,
|
|
1924
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text {
|
|
1925
1925
|
font-size: 13px;
|
|
1926
1926
|
line-height: 15px;
|
|
1927
1927
|
}
|
|
1928
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1929
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1928
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content,
|
|
1929
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content {
|
|
1930
1930
|
padding-top: 24px;
|
|
1931
1931
|
}
|
|
1932
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1933
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1932
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont,
|
|
1933
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont {
|
|
1934
1934
|
margin: 0 0 15.5px 24px;
|
|
1935
1935
|
}
|
|
1936
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1937
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1936
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header,
|
|
1937
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header {
|
|
1938
1938
|
font-size: 14px;
|
|
1939
1939
|
line-height: 16px;
|
|
1940
1940
|
}
|
|
1941
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1942
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1941
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text,
|
|
1942
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text {
|
|
1943
1943
|
margin-top: 8px;
|
|
1944
1944
|
font-size: 14px;
|
|
1945
1945
|
height: 32px;
|
|
1946
1946
|
line-height: 16px;
|
|
1947
1947
|
width: 275px;
|
|
1948
1948
|
}
|
|
1949
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1950
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1949
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled,
|
|
1950
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled {
|
|
1951
1951
|
border-bottom-width: 2px;
|
|
1952
1952
|
}
|
|
1953
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1954
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1953
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont,
|
|
1954
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont {
|
|
1955
1955
|
border: 1px solid #4b5563;
|
|
1956
1956
|
height: 165px;
|
|
1957
1957
|
margin: 8px 24px 0 0;
|
|
1958
1958
|
overflow: auto;
|
|
1959
1959
|
width: 273px;
|
|
1960
1960
|
}
|
|
1961
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1962
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1961
|
+
.e-spreadsheet .e-hyperlink-dlg .e-footer-content,
|
|
1962
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-footer-content {
|
|
1963
1963
|
margin: 4px 0;
|
|
1964
1964
|
}
|
|
1965
|
-
.e-spreadsheet .e-open-dlg
|
|
1965
|
+
.e-spreadsheet .e-open-dlg {
|
|
1966
1966
|
width: 360px;
|
|
1967
1967
|
}
|
|
1968
|
-
.e-spreadsheet .e-open-dlg
|
|
1968
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
1969
1969
|
color: #f87171;
|
|
1970
1970
|
font-size: 12px;
|
|
1971
1971
|
padding-top: 7px;
|
|
@@ -1984,12 +1984,6 @@
|
|
|
1984
1984
|
font-size: 12px;
|
|
1985
1985
|
padding-top: 7px;
|
|
1986
1986
|
}
|
|
1987
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1988
|
-
padding-right: 12px;
|
|
1989
|
-
}
|
|
1990
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
1991
|
-
padding: 12px 0;
|
|
1992
|
-
}
|
|
1993
1987
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
1994
1988
|
margin: 0;
|
|
1995
1989
|
padding-bottom: 8px;
|
|
@@ -1998,62 +1992,62 @@
|
|
|
1998
1992
|
.e-spreadsheet .e-find-dlg .e-footer-content {
|
|
1999
1993
|
text-align: left;
|
|
2000
1994
|
}
|
|
2001
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1995
|
+
.e-spreadsheet .e-protectworkbook-dlg {
|
|
2002
1996
|
left: 0 !important;
|
|
2003
1997
|
}
|
|
2004
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1998
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2005
1999
|
font-size: 18px;
|
|
2006
2000
|
line-height: 31px;
|
|
2007
2001
|
}
|
|
2008
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2002
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2009
2003
|
color: #f87171;
|
|
2010
2004
|
font-size: 12px;
|
|
2011
2005
|
padding-top: 12px;
|
|
2012
2006
|
}
|
|
2013
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2007
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2014
2008
|
padding-top: 12px;
|
|
2015
2009
|
}
|
|
2016
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2010
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2017
2011
|
font-size: 12px;
|
|
2018
2012
|
line-height: 24px;
|
|
2019
2013
|
margin-bottom: 4px;
|
|
2020
2014
|
}
|
|
2021
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2015
|
+
.e-spreadsheet .e-unprotectworkbook-dlg {
|
|
2022
2016
|
left: 0 !important;
|
|
2023
2017
|
}
|
|
2024
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2018
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2025
2019
|
font-size: 18px;
|
|
2026
2020
|
line-height: 21px;
|
|
2027
2021
|
}
|
|
2028
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2022
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-alert-span {
|
|
2029
2023
|
color: #f87171;
|
|
2030
2024
|
font-size: 12px;
|
|
2031
2025
|
padding-top: 7px;
|
|
2032
2026
|
}
|
|
2033
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2027
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-header {
|
|
2034
2028
|
font-size: 14px;
|
|
2035
2029
|
line-height: 16px;
|
|
2036
2030
|
}
|
|
2037
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2031
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2038
2032
|
margin-top: 10px;
|
|
2039
2033
|
}
|
|
2040
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2034
|
+
.e-spreadsheet .e-importprotectworkbook-dlg {
|
|
2041
2035
|
left: 0 !important;
|
|
2042
2036
|
}
|
|
2043
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2037
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2044
2038
|
font-size: 18px;
|
|
2045
2039
|
line-height: 21px;
|
|
2046
2040
|
}
|
|
2047
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2041
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-alert-span {
|
|
2048
2042
|
color: #f87171;
|
|
2049
2043
|
font-size: 12px;
|
|
2050
2044
|
padding-top: 7px;
|
|
2051
2045
|
}
|
|
2052
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2046
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-header {
|
|
2053
2047
|
font-size: 14px;
|
|
2054
2048
|
line-height: 16px;
|
|
2055
2049
|
}
|
|
2056
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2050
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-input {
|
|
2057
2051
|
margin-top: 10px;
|
|
2058
2052
|
}
|
|
2059
2053
|
.e-spreadsheet .e-filter-icon {
|
|
@@ -2070,7 +2064,7 @@
|
|
|
2070
2064
|
height: 18px;
|
|
2071
2065
|
margin-right: -1px;
|
|
2072
2066
|
padding: 0;
|
|
2073
|
-
position:
|
|
2067
|
+
position: relative;
|
|
2074
2068
|
right: 0;
|
|
2075
2069
|
width: 20px;
|
|
2076
2070
|
z-index: 2;
|
|
@@ -2097,9 +2091,6 @@
|
|
|
2097
2091
|
cursor: row-resize;
|
|
2098
2092
|
}
|
|
2099
2093
|
|
|
2100
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2101
|
-
max-width: initial;
|
|
2102
|
-
}
|
|
2103
2094
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2104
2095
|
font-size: 13px;
|
|
2105
2096
|
max-width: 200px;
|
|
@@ -2151,36 +2142,33 @@
|
|
|
2151
2142
|
font-family: "Calibri";
|
|
2152
2143
|
}
|
|
2153
2144
|
.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
2145
|
font-family: "Courier";
|
|
2158
2146
|
}
|
|
2159
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2147
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2160
2148
|
font-family: "Courier New";
|
|
2161
2149
|
}
|
|
2162
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2150
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2163
2151
|
font-family: "Din Condensed";
|
|
2164
2152
|
}
|
|
2165
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2153
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2166
2154
|
font-family: "Georgia";
|
|
2167
2155
|
}
|
|
2168
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2156
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2169
2157
|
font-family: "Helvetica";
|
|
2170
2158
|
}
|
|
2171
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2159
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2172
2160
|
font-family: "Helvetica New";
|
|
2173
2161
|
}
|
|
2174
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2162
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2175
2163
|
font-family: "Roboto";
|
|
2176
2164
|
}
|
|
2177
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2165
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2178
2166
|
font-family: "Tahoma";
|
|
2179
2167
|
}
|
|
2180
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2168
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2181
2169
|
font-family: "Times New Roman";
|
|
2182
2170
|
}
|
|
2183
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2171
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2184
2172
|
font-family: "Verdana";
|
|
2185
2173
|
}
|
|
2186
2174
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2452,42 +2440,42 @@
|
|
|
2452
2440
|
width: 100%;
|
|
2453
2441
|
}
|
|
2454
2442
|
|
|
2455
|
-
.e-spreadsheet-function-dlg
|
|
2443
|
+
.e-spreadsheet-function-dlg {
|
|
2456
2444
|
min-height: 518px;
|
|
2457
2445
|
-webkit-user-select: none;
|
|
2458
2446
|
-ms-user-select: none;
|
|
2459
2447
|
user-select: none;
|
|
2460
2448
|
}
|
|
2461
|
-
.e-spreadsheet-function-dlg
|
|
2449
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content {
|
|
2462
2450
|
padding: 18px;
|
|
2463
2451
|
}
|
|
2464
|
-
.e-spreadsheet-function-dlg
|
|
2452
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content .e-dlg-header {
|
|
2465
2453
|
font-size: 16px;
|
|
2466
2454
|
font-weight: 400;
|
|
2467
2455
|
}
|
|
2468
|
-
.e-spreadsheet-function-dlg
|
|
2456
|
+
.e-spreadsheet-function-dlg .e-dlg-content {
|
|
2469
2457
|
overflow: hidden;
|
|
2470
2458
|
padding-left: 18px;
|
|
2471
2459
|
padding-right: 18px;
|
|
2472
2460
|
}
|
|
2473
|
-
.e-spreadsheet-function-dlg
|
|
2461
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-category-content {
|
|
2474
2462
|
font-size: 12px;
|
|
2475
2463
|
font-weight: 500;
|
|
2476
2464
|
margin-bottom: 0;
|
|
2477
2465
|
font-weight: 600;
|
|
2478
2466
|
padding: 10px 0;
|
|
2479
2467
|
}
|
|
2480
|
-
.e-spreadsheet-function-dlg
|
|
2468
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-description {
|
|
2481
2469
|
margin-left: -4px;
|
|
2482
2470
|
margin-top: 5px;
|
|
2483
2471
|
padding: 4px;
|
|
2484
2472
|
}
|
|
2485
|
-
.e-spreadsheet-function-dlg
|
|
2473
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-description-content {
|
|
2486
2474
|
font-size: 14px;
|
|
2487
2475
|
font-weight: 500;
|
|
2488
2476
|
padding-top: 10px;
|
|
2489
2477
|
}
|
|
2490
|
-
.e-spreadsheet-function-dlg
|
|
2478
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-list {
|
|
2491
2479
|
border: 1px solid #4b5563;
|
|
2492
2480
|
cursor: default;
|
|
2493
2481
|
margin-top: 6px;
|
|
@@ -2497,9 +2485,6 @@
|
|
|
2497
2485
|
.e-xlflmenu .e-xlfl-maindiv {
|
|
2498
2486
|
padding-top: 10px;
|
|
2499
2487
|
}
|
|
2500
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2501
|
-
width: auto;
|
|
2502
|
-
}
|
|
2503
2488
|
|
|
2504
2489
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2505
2490
|
line-height: 25px;
|
|
@@ -2605,11 +2590,6 @@
|
|
|
2605
2590
|
height: auto;
|
|
2606
2591
|
width: auto;
|
|
2607
2592
|
}
|
|
2608
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2609
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2610
|
-
height: auto;
|
|
2611
|
-
overflow: hidden;
|
|
2612
|
-
}
|
|
2613
2593
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2614
2594
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2615
2595
|
font-size: 20px;
|
|
@@ -2713,8 +2693,8 @@
|
|
|
2713
2693
|
margin-right: 2.8%;
|
|
2714
2694
|
width: 77%;
|
|
2715
2695
|
}
|
|
2716
|
-
.e-bigger .e-spreadsheet .e-customsort-dlg
|
|
2717
|
-
.e-bigger.e-spreadsheet .e-customsort-dlg
|
|
2696
|
+
.e-bigger .e-spreadsheet .e-customsort-dlg,
|
|
2697
|
+
.e-bigger.e-spreadsheet .e-customsort-dlg {
|
|
2718
2698
|
width: 590px !important;
|
|
2719
2699
|
width: 630px !important;
|
|
2720
2700
|
}
|
|
@@ -2747,18 +2727,18 @@
|
|
|
2747
2727
|
.e-bigger.e-spreadsheet .e-goto-dlg .e-btn {
|
|
2748
2728
|
font-size: 12px;
|
|
2749
2729
|
}
|
|
2750
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2751
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2730
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span,
|
|
2731
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2752
2732
|
color: #f87171;
|
|
2753
2733
|
font-size: 14px;
|
|
2754
2734
|
padding-top: 16px;
|
|
2755
2735
|
}
|
|
2756
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2757
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2736
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content,
|
|
2737
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2758
2738
|
padding-top: 16px;
|
|
2759
2739
|
}
|
|
2760
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2761
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2740
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header,
|
|
2741
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2762
2742
|
font-size: 14px;
|
|
2763
2743
|
line-height: 28px;
|
|
2764
2744
|
margin-bottom: 4px;
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/tailwind-dark-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/check-box/tailwind-dark-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/radio-button/tailwind-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/switch/tailwind-dark-definition.scss';
|
|
6
|
+
@import 'ej2-navigations/styles/toolbar/tailwind-dark-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/tab/tailwind-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/context-menu/tailwind-dark-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/menu/tailwind-dark-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/treeview/tailwind-dark-definition.scss';
|
|
11
|
+
@import 'ej2-grids/styles/excel-filter/tailwind-dark-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/tailwind-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datetimepicker/tailwind-dark-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/color-picker/tailwind-dark-definition.scss';
|
|
15
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/tailwind-dark-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/split-button/tailwind-dark-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/list-box/tailwind-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/combo-box/tailwind-dark-definition.scss';
|
|
20
|
+
@import 'tailwind-dark-definition.scss';
|
|
21
|
+
@import 'icons/tailwind-dark.scss';
|
|
22
|
+
@import 'all.scss';
|