@syncfusion/ej2-angular-spreadsheet 20.3.59-ngcc → 20.3.59
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.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 +9 -12
- package/styles/bootstrap.css +9 -12
- package/styles/bootstrap4.css +9 -12
- package/styles/bootstrap5-dark.css +9 -12
- package/styles/bootstrap5.css +9 -12
- package/styles/fabric-dark.css +9 -12
- package/styles/fabric.css +9 -12
- package/styles/fluent-dark.css +9 -12
- package/styles/fluent.css +9 -12
- package/styles/highcontrast-light.css +9 -12
- package/styles/highcontrast.css +9 -12
- package/styles/material-dark.css +9 -12
- package/styles/material.css +9 -12
- 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 +3015 -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 +9 -12
- package/styles/spreadsheet/bootstrap-dark.scss +23 -1
- package/styles/spreadsheet/bootstrap.css +9 -12
- package/styles/spreadsheet/bootstrap.scss +23 -1
- package/styles/spreadsheet/bootstrap4.css +9 -12
- package/styles/spreadsheet/bootstrap4.scss +23 -1
- package/styles/spreadsheet/bootstrap5-dark.css +9 -12
- package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
- package/styles/spreadsheet/bootstrap5.css +9 -12
- package/styles/spreadsheet/bootstrap5.scss +23 -1
- package/styles/spreadsheet/fabric-dark.css +9 -12
- package/styles/spreadsheet/fabric-dark.scss +23 -1
- package/styles/spreadsheet/fabric.css +9 -12
- package/styles/spreadsheet/fabric.scss +23 -1
- package/styles/spreadsheet/fluent-dark.css +9 -12
- package/styles/spreadsheet/fluent-dark.scss +22 -1
- package/styles/spreadsheet/fluent.css +9 -12
- package/styles/spreadsheet/fluent.scss +23 -1
- package/styles/spreadsheet/highcontrast-light.css +9 -12
- package/styles/spreadsheet/highcontrast-light.scss +22 -1
- package/styles/spreadsheet/highcontrast.css +9 -12
- 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 +9 -12
- package/styles/spreadsheet/material-dark.scss +23 -1
- package/styles/spreadsheet/material.css +9 -12
- package/styles/spreadsheet/material.scss +23 -1
- package/styles/spreadsheet/tailwind-dark.css +9 -12
- package/styles/spreadsheet/tailwind-dark.scss +22 -1
- package/styles/spreadsheet/tailwind.css +9 -12
- package/styles/spreadsheet/tailwind.scss +23 -1
- package/styles/tailwind-dark.css +9 -12
- package/styles/tailwind.css +9 -12
- 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 -1344
- package/dist/ej2-angular-spreadsheet.umd.js +0 -1586
- 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
|
@@ -2123,36 +2123,33 @@
|
|
|
2123
2123
|
font-family: "Calibri";
|
|
2124
2124
|
}
|
|
2125
2125
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2126
|
-
font-family: "Comic Sans MS";
|
|
2127
|
-
}
|
|
2128
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2129
2126
|
font-family: "Courier";
|
|
2130
2127
|
}
|
|
2131
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2128
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2132
2129
|
font-family: "Courier New";
|
|
2133
2130
|
}
|
|
2134
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2131
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2135
2132
|
font-family: "Din Condensed";
|
|
2136
2133
|
}
|
|
2137
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2134
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2138
2135
|
font-family: "Georgia";
|
|
2139
2136
|
}
|
|
2140
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2137
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2141
2138
|
font-family: "Helvetica";
|
|
2142
2139
|
}
|
|
2143
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2140
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2144
2141
|
font-family: "Helvetica New";
|
|
2145
2142
|
}
|
|
2146
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2143
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2147
2144
|
font-family: "Roboto";
|
|
2148
2145
|
}
|
|
2149
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2146
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2150
2147
|
font-family: "Tahoma";
|
|
2151
2148
|
}
|
|
2152
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2149
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2153
2150
|
font-family: "Times New Roman";
|
|
2154
2151
|
}
|
|
2155
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2152
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2156
2153
|
font-family: "Verdana";
|
|
2157
2154
|
}
|
|
2158
2155
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-dark-definition.scss';
|
|
2
|
+
@import '../ribbon/material-dark-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/material-dark-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/material-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/material-dark-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/material-dark-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/material-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/material-dark-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/material-dark-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/material-dark-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/material-dark-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/material-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/material-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/material-dark-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/material-dark-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/material-dark-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/material-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/material-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material-dark-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/material-dark-definition.scss';
|
|
21
|
+
@import 'material-dark-definition.scss';
|
|
22
|
+
@import 'icons/material-dark.scss';
|
|
23
|
+
@import 'all.scss';
|
|
@@ -2161,36 +2161,33 @@
|
|
|
2161
2161
|
font-family: "Calibri";
|
|
2162
2162
|
}
|
|
2163
2163
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2164
|
-
font-family: "Comic Sans MS";
|
|
2165
|
-
}
|
|
2166
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2167
2164
|
font-family: "Courier";
|
|
2168
2165
|
}
|
|
2169
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2166
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2170
2167
|
font-family: "Courier New";
|
|
2171
2168
|
}
|
|
2172
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2169
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2173
2170
|
font-family: "Din Condensed";
|
|
2174
2171
|
}
|
|
2175
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2172
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2176
2173
|
font-family: "Georgia";
|
|
2177
2174
|
}
|
|
2178
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2175
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2179
2176
|
font-family: "Helvetica";
|
|
2180
2177
|
}
|
|
2181
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2178
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2182
2179
|
font-family: "Helvetica New";
|
|
2183
2180
|
}
|
|
2184
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2181
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2185
2182
|
font-family: "Roboto";
|
|
2186
2183
|
}
|
|
2187
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2184
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2188
2185
|
font-family: "Tahoma";
|
|
2189
2186
|
}
|
|
2190
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2187
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2191
2188
|
font-family: "Times New Roman";
|
|
2192
2189
|
}
|
|
2193
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2190
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2194
2191
|
font-family: "Verdana";
|
|
2195
2192
|
}
|
|
2196
2193
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-definition.scss';
|
|
2
|
+
@import '../ribbon/material-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/material-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/material-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/material-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/material-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/material-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/material-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/material-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/material-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/material-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/material-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/material-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/material-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/material-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/material-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/material-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/material-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/material-definition.scss';
|
|
21
|
+
@import 'material-definition.scss';
|
|
22
|
+
@import 'icons/material.scss';
|
|
23
|
+
@import 'all.scss';
|
|
@@ -2137,36 +2137,33 @@
|
|
|
2137
2137
|
font-family: "Calibri";
|
|
2138
2138
|
}
|
|
2139
2139
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2140
|
-
font-family: "Comic Sans MS";
|
|
2141
|
-
}
|
|
2142
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2143
2140
|
font-family: "Courier";
|
|
2144
2141
|
}
|
|
2145
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2142
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2146
2143
|
font-family: "Courier New";
|
|
2147
2144
|
}
|
|
2148
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2145
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2149
2146
|
font-family: "Din Condensed";
|
|
2150
2147
|
}
|
|
2151
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2148
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2152
2149
|
font-family: "Georgia";
|
|
2153
2150
|
}
|
|
2154
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2151
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2155
2152
|
font-family: "Helvetica";
|
|
2156
2153
|
}
|
|
2157
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2154
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2158
2155
|
font-family: "Helvetica New";
|
|
2159
2156
|
}
|
|
2160
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2157
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2161
2158
|
font-family: "Roboto";
|
|
2162
2159
|
}
|
|
2163
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2160
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2164
2161
|
font-family: "Tahoma";
|
|
2165
2162
|
}
|
|
2166
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2163
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2167
2164
|
font-family: "Times New Roman";
|
|
2168
2165
|
}
|
|
2169
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2166
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2170
2167
|
font-family: "Verdana";
|
|
2171
2168
|
}
|
|
2172
2169
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -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';
|
|
@@ -2137,36 +2137,33 @@
|
|
|
2137
2137
|
font-family: "Calibri";
|
|
2138
2138
|
}
|
|
2139
2139
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2140
|
-
font-family: "Comic Sans MS";
|
|
2141
|
-
}
|
|
2142
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2143
2140
|
font-family: "Courier";
|
|
2144
2141
|
}
|
|
2145
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2142
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2146
2143
|
font-family: "Courier New";
|
|
2147
2144
|
}
|
|
2148
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2145
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2149
2146
|
font-family: "Din Condensed";
|
|
2150
2147
|
}
|
|
2151
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2148
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2152
2149
|
font-family: "Georgia";
|
|
2153
2150
|
}
|
|
2154
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2151
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2155
2152
|
font-family: "Helvetica";
|
|
2156
2153
|
}
|
|
2157
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2154
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2158
2155
|
font-family: "Helvetica New";
|
|
2159
2156
|
}
|
|
2160
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2157
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2161
2158
|
font-family: "Roboto";
|
|
2162
2159
|
}
|
|
2163
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2160
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2164
2161
|
font-family: "Tahoma";
|
|
2165
2162
|
}
|
|
2166
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2163
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2167
2164
|
font-family: "Times New Roman";
|
|
2168
2165
|
}
|
|
2169
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2166
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2170
2167
|
font-family: "Verdana";
|
|
2171
2168
|
}
|
|
2172
2169
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-definition.scss';
|
|
2
|
+
@import '../ribbon/tailwind-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/tailwind-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/tailwind-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/tailwind-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/tailwind-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/tailwind-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/tailwind-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/tailwind-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/tailwind-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/tailwind-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/tailwind-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/tailwind-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/tailwind-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/tailwind-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/tailwind-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/tailwind-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/tailwind-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/tailwind-definition.scss';
|
|
21
|
+
@import 'tailwind-definition.scss';
|
|
22
|
+
@import 'icons/tailwind.scss';
|
|
23
|
+
@import 'all.scss';
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -2138,36 +2138,33 @@
|
|
|
2138
2138
|
font-family: "Calibri";
|
|
2139
2139
|
}
|
|
2140
2140
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2141
|
-
font-family: "Comic Sans MS";
|
|
2142
|
-
}
|
|
2143
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2144
2141
|
font-family: "Courier";
|
|
2145
2142
|
}
|
|
2146
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2143
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2147
2144
|
font-family: "Courier New";
|
|
2148
2145
|
}
|
|
2149
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2146
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2150
2147
|
font-family: "Din Condensed";
|
|
2151
2148
|
}
|
|
2152
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2149
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2153
2150
|
font-family: "Georgia";
|
|
2154
2151
|
}
|
|
2155
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2152
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2156
2153
|
font-family: "Helvetica";
|
|
2157
2154
|
}
|
|
2158
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2155
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2159
2156
|
font-family: "Helvetica New";
|
|
2160
2157
|
}
|
|
2161
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2158
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2162
2159
|
font-family: "Roboto";
|
|
2163
2160
|
}
|
|
2164
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2161
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2165
2162
|
font-family: "Tahoma";
|
|
2166
2163
|
}
|
|
2167
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2164
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2168
2165
|
font-family: "Times New Roman";
|
|
2169
2166
|
}
|
|
2170
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2167
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2171
2168
|
font-family: "Verdana";
|
|
2172
2169
|
}
|
|
2173
2170
|
.e-dropdown-popup.e-aggregate-list {
|
package/styles/tailwind.css
CHANGED
|
@@ -2138,36 +2138,33 @@
|
|
|
2138
2138
|
font-family: "Calibri";
|
|
2139
2139
|
}
|
|
2140
2140
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2141
|
-
font-family: "Comic Sans MS";
|
|
2142
|
-
}
|
|
2143
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2144
2141
|
font-family: "Courier";
|
|
2145
2142
|
}
|
|
2146
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2143
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2147
2144
|
font-family: "Courier New";
|
|
2148
2145
|
}
|
|
2149
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2146
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2150
2147
|
font-family: "Din Condensed";
|
|
2151
2148
|
}
|
|
2152
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2149
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2153
2150
|
font-family: "Georgia";
|
|
2154
2151
|
}
|
|
2155
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2152
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2156
2153
|
font-family: "Helvetica";
|
|
2157
2154
|
}
|
|
2158
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2155
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2159
2156
|
font-family: "Helvetica New";
|
|
2160
2157
|
}
|
|
2161
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2158
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2162
2159
|
font-family: "Roboto";
|
|
2163
2160
|
}
|
|
2164
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2161
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2165
2162
|
font-family: "Tahoma";
|
|
2166
2163
|
}
|
|
2167
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2164
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2168
2165
|
font-family: "Times New Roman";
|
|
2169
2166
|
}
|
|
2170
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2167
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2171
2168
|
font-family: "Verdana";
|
|
2172
2169
|
}
|
|
2173
2170
|
.e-dropdown-popup.e-aggregate-list {
|