@syncfusion/ej2-angular-pivotview 20.2.36-ngcc → 20.2.36
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 +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +62 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +150 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -0
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +13 -29
- package/styles/bootstrap.css +13 -29
- package/styles/bootstrap4.css +13 -29
- package/styles/bootstrap5-dark.css +17 -67
- package/styles/bootstrap5.css +17 -67
- package/styles/fabric-dark.css +13 -29
- package/styles/fabric.css +13 -29
- package/styles/fluent-dark.css +15 -33
- package/styles/fluent.css +15 -33
- package/styles/highcontrast-light.css +13 -29
- package/styles/highcontrast.css +13 -29
- package/styles/material-dark.css +13 -29
- package/styles/material.css +13 -29
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +185 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +185 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +189 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +185 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +186 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +186 -0
- package/styles/pivotfieldlist/_layout.scss +1855 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +186 -0
- package/styles/pivotfieldlist/_material-definition.scss +186 -0
- package/styles/pivotfieldlist/_material3-definition.scss +188 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +189 -0
- package/styles/pivotfieldlist/_theme.scss +1855 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +6 -17
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +6 -17
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +6 -17
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +6 -17
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +6 -17
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +6 -17
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +6 -17
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +6 -17
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +6 -17
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +6 -17
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +6 -17
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +357 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +358 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +357 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +357 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +357 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_material.scss +357 -0
- package/styles/pivotfieldlist/icons/_material3.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +356 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +356 -0
- package/styles/pivotfieldlist/material-dark.css +6 -17
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +6 -17
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +8 -19
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +8 -19
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +130 -0
- package/styles/pivotview/_bootstrap-definition.scss +127 -0
- package/styles/pivotview/_bootstrap4-definition.scss +127 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +130 -0
- package/styles/pivotview/_fabric-dark-definition.scss +129 -0
- package/styles/pivotview/_fabric-definition.scss +126 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +130 -0
- package/styles/pivotview/_fusionnew-definition.scss +130 -0
- package/styles/pivotview/_highcontrast-definition.scss +125 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +126 -0
- package/styles/pivotview/_layout.scss +1073 -0
- package/styles/pivotview/_material-dark-definition.scss +131 -0
- package/styles/pivotview/_material-definition.scss +128 -0
- package/styles/pivotview/_material3-definition.scss +130 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +129 -0
- package/styles/pivotview/_theme.scss +1556 -0
- package/styles/pivotview/bootstrap-dark.css +7 -12
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +7 -12
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +7 -12
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +11 -50
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +11 -50
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +7 -12
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +7 -12
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +9 -16
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +9 -16
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +7 -12
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +7 -12
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.css +7 -12
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +7 -12
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +11 -18
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +11 -18
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +19 -37
- package/styles/tailwind.css +19 -37
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -395
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -665
- package/dist/ej2-angular-pivotview.umd.js +0 -662
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -20
- package/schematics/generators/pivotview-default/index.d.ts +0 -3
- package/schematics/generators/pivotview-default/index.js +0 -8
- package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-default/sample-details.js +0 -7
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-default/schema.d.ts +0 -3
- package/schematics/generators/pivotview-default/schema.js +0 -2
- package/schematics/generators/pivotview-default/schema.json +0 -125
- package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/index.js +0 -8
- package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
- package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
- 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
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
@include export-module('pivotview-icons') {
|
|
2
|
+
.e-pivotview {
|
|
3
|
+
.e-expand::before {
|
|
4
|
+
content: '\e75c';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-collapse::before {
|
|
8
|
+
content: '\e734';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.e-rtl {
|
|
12
|
+
.e-expand::before {
|
|
13
|
+
content: '\e738';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-sort::before {
|
|
18
|
+
content: '\e7df';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-pv-filter::before {
|
|
22
|
+
content: '\e7f7';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-pv-filtered::before {
|
|
26
|
+
content: '\e735';
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-remove::before {
|
|
30
|
+
content: '\e7e7';
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.e-selected-option-icon::before {
|
|
34
|
+
content: '\e72b';
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-clear-filter-icon::before {
|
|
38
|
+
content: '\e72c';
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.e-dropdown-icon::before {
|
|
42
|
+
content: '\e729';
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.e-export::before {
|
|
46
|
+
content: '\e72e';
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.e-new-report::before {
|
|
50
|
+
content: '\e7dc';
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.e-save-report::before {
|
|
54
|
+
content: '\e7c8';
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.e-saveas-report::before {
|
|
58
|
+
content: '\e7ae';
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.e-rename-report::before {
|
|
62
|
+
content: '\e76d';
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.e-remove-report::before {
|
|
66
|
+
content: '\e820';
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.e-sub-total::before {
|
|
70
|
+
content: '\e702';
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.e-grand-total::before {
|
|
74
|
+
content: '\e74d';
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.e-toolbar-fieldlist::before {
|
|
78
|
+
content: '\e751';
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-toolbar-grid::before {
|
|
82
|
+
content: '\e7e9';
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.e-toolbar-chart::before {
|
|
86
|
+
content: '\e826';
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.e-toolbar-formatting::before {
|
|
90
|
+
content: '\e71b';
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.e-pivot-button .e-edit::before {
|
|
94
|
+
content: '\e730';
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-sort-ascend-icon::before {
|
|
98
|
+
content: '\e7a3';
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-sort-descend-icon::before {
|
|
102
|
+
content: '\e7b6';
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.e-pivotview-pdf-export::before {
|
|
107
|
+
content: '\e700';
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.e-pivotview-excel-export::before {
|
|
111
|
+
content: '\e7c1';
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.e-pivotview-csv-export::before {
|
|
115
|
+
content: '\e7ba';
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-pivotview-png-export::before {
|
|
119
|
+
content: '\e7ee';
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.e-pivotview-jpeg-export::before {
|
|
123
|
+
content: '\e786';
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.e-pivotview-svg-export::before {
|
|
127
|
+
content: '\e7cf';
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.e-mdx::before {
|
|
131
|
+
content: '\e7ac';
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.e-pivotview-select-icon::before {
|
|
135
|
+
content: '\e774';
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.e-pivotview-export::before {
|
|
139
|
+
content: '\e72e';
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.e-pivotview-grid::before {
|
|
143
|
+
content: '\e7e9';
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.e-pivotview-expand::before {
|
|
147
|
+
content: '\e7c9';
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.e-pivotview-collapse::before {
|
|
151
|
+
content: '\e80f';
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.e-pivot-format-menu::before {
|
|
155
|
+
content: '\e76d';
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.e-pivot-number-format-menu::before {
|
|
159
|
+
content: '\e787';
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.e-pivot-conditional-format-menu::before {
|
|
163
|
+
content: '\e71b';
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.e-pivot-format-toolbar::before {
|
|
167
|
+
content: '\e787';
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.e-pivotview-group::before {
|
|
171
|
+
content: '\e7a5';
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.e-pivotview-ungroup::before {
|
|
175
|
+
content: '\e779';
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.e-level-options {
|
|
179
|
+
.e-selected-level-icon::before {
|
|
180
|
+
content: '\e774';
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
@@ -965,6 +965,7 @@
|
|
|
965
965
|
}
|
|
966
966
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
967
967
|
font-size: 12px !important;
|
|
968
|
+
padding: 3px 4px 4px 4px !important;
|
|
968
969
|
}
|
|
969
970
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
970
971
|
margin: -10px 0 !important;
|
|
@@ -1004,6 +1005,11 @@
|
|
|
1004
1005
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1005
1006
|
visibility: hidden !important;
|
|
1006
1007
|
}
|
|
1008
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1009
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1010
|
+
text-overflow: ellipsis;
|
|
1011
|
+
white-space: nowrap;
|
|
1012
|
+
}
|
|
1007
1013
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1008
1014
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1009
1015
|
padding-left: 8px !important;
|
|
@@ -1466,7 +1472,6 @@
|
|
|
1466
1472
|
width: 18px;
|
|
1467
1473
|
}
|
|
1468
1474
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1469
|
-
margin-top: 3px;
|
|
1470
1475
|
transform: rotateX(180deg);
|
|
1471
1476
|
}
|
|
1472
1477
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1639,12 +1644,6 @@
|
|
|
1639
1644
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1640
1645
|
line-height: 1em !important;
|
|
1641
1646
|
}
|
|
1642
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1643
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1644
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1645
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1646
|
-
margin-top: 2px !important;
|
|
1647
|
-
}
|
|
1648
1647
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1649
1648
|
max-width: 155px;
|
|
1650
1649
|
}
|
|
@@ -1655,9 +1654,6 @@
|
|
|
1655
1654
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1656
1655
|
max-width: 200px;
|
|
1657
1656
|
}
|
|
1658
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1659
|
-
width: 100% !important;
|
|
1660
|
-
}
|
|
1661
1657
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1662
1658
|
width: 0 !important;
|
|
1663
1659
|
}
|
|
@@ -1817,7 +1813,6 @@
|
|
|
1817
1813
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1818
1814
|
font-size: 14px !important;
|
|
1819
1815
|
height: 20px;
|
|
1820
|
-
margin-top: 0;
|
|
1821
1816
|
width: 20px;
|
|
1822
1817
|
}
|
|
1823
1818
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1901,7 +1896,7 @@
|
|
|
1901
1896
|
}
|
|
1902
1897
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1903
1898
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1904
|
-
margin: -
|
|
1899
|
+
margin: -17px -10px !important;
|
|
1905
1900
|
}
|
|
1906
1901
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1907
1902
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-dark-definition.scss';
|
|
2
|
+
@import '../pivotfieldlist/material-dark-definition.scss';
|
|
3
|
+
@import 'material-dark-definition.scss';
|
|
4
|
+
@import 'icons/material-dark.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -966,6 +966,7 @@
|
|
|
966
966
|
}
|
|
967
967
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
968
968
|
font-size: 12px !important;
|
|
969
|
+
padding: 3px 4px 4px 4px !important;
|
|
969
970
|
}
|
|
970
971
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
971
972
|
margin: -10px 0 !important;
|
|
@@ -1005,6 +1006,11 @@
|
|
|
1005
1006
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1006
1007
|
visibility: hidden !important;
|
|
1007
1008
|
}
|
|
1009
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1010
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1011
|
+
text-overflow: ellipsis;
|
|
1012
|
+
white-space: nowrap;
|
|
1013
|
+
}
|
|
1008
1014
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1009
1015
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1010
1016
|
padding-left: 8px !important;
|
|
@@ -1467,7 +1473,6 @@
|
|
|
1467
1473
|
width: 18px;
|
|
1468
1474
|
}
|
|
1469
1475
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1470
|
-
margin-top: 3px;
|
|
1471
1476
|
transform: rotateX(180deg);
|
|
1472
1477
|
}
|
|
1473
1478
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1640,12 +1645,6 @@
|
|
|
1640
1645
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1641
1646
|
line-height: 1em !important;
|
|
1642
1647
|
}
|
|
1643
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1644
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1645
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1646
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1647
|
-
margin-top: 2px !important;
|
|
1648
|
-
}
|
|
1649
1648
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1650
1649
|
max-width: 155px;
|
|
1651
1650
|
}
|
|
@@ -1656,9 +1655,6 @@
|
|
|
1656
1655
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1657
1656
|
max-width: 200px;
|
|
1658
1657
|
}
|
|
1659
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1660
|
-
width: 100% !important;
|
|
1661
|
-
}
|
|
1662
1658
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1663
1659
|
width: 0 !important;
|
|
1664
1660
|
}
|
|
@@ -1818,7 +1814,6 @@
|
|
|
1818
1814
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1819
1815
|
font-size: 14px !important;
|
|
1820
1816
|
height: 20px;
|
|
1821
|
-
margin-top: 0;
|
|
1822
1817
|
width: 20px;
|
|
1823
1818
|
}
|
|
1824
1819
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1902,7 +1897,7 @@
|
|
|
1902
1897
|
}
|
|
1903
1898
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1904
1899
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1905
|
-
margin: -
|
|
1900
|
+
margin: -17px -10px !important;
|
|
1906
1901
|
}
|
|
1907
1902
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1908
1903
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -259,7 +259,7 @@
|
|
|
259
259
|
}
|
|
260
260
|
.e-pivotview .e-member-editor-dialog .e-member-editor-container-outer-div {
|
|
261
261
|
display: inline-block;
|
|
262
|
-
height:
|
|
262
|
+
height: 174px;
|
|
263
263
|
max-width: 400px;
|
|
264
264
|
overflow: auto;
|
|
265
265
|
width: 100%;
|
|
@@ -302,7 +302,7 @@
|
|
|
302
302
|
padding-top: 12px;
|
|
303
303
|
}
|
|
304
304
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
305
|
-
height:
|
|
305
|
+
height: 165px;
|
|
306
306
|
}
|
|
307
307
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-editor-label-container {
|
|
308
308
|
opacity: 56%;
|
|
@@ -706,7 +706,7 @@
|
|
|
706
706
|
}
|
|
707
707
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
708
708
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
709
|
-
height:
|
|
709
|
+
height: 140px;
|
|
710
710
|
}
|
|
711
711
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
712
712
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-descend-icon,
|
|
@@ -732,7 +732,7 @@
|
|
|
732
732
|
}
|
|
733
733
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
734
734
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
735
|
-
height:
|
|
735
|
+
height: 109px !important;
|
|
736
736
|
}
|
|
737
737
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-label-filter,
|
|
738
738
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-value-filter,
|
|
@@ -999,7 +999,7 @@
|
|
|
999
999
|
}
|
|
1000
1000
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1001
1001
|
font-size: 12px !important;
|
|
1002
|
-
padding
|
|
1002
|
+
padding: 4px 0 0 0 !important;
|
|
1003
1003
|
}
|
|
1004
1004
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1005
1005
|
margin: -10px 0 !important;
|
|
@@ -1040,6 +1040,11 @@
|
|
|
1040
1040
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1041
1041
|
visibility: hidden !important;
|
|
1042
1042
|
}
|
|
1043
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1044
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1045
|
+
text-overflow: ellipsis;
|
|
1046
|
+
white-space: nowrap;
|
|
1047
|
+
}
|
|
1043
1048
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1044
1049
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1045
1050
|
padding-left: 8px !important;
|
|
@@ -1508,7 +1513,6 @@
|
|
|
1508
1513
|
width: 18px;
|
|
1509
1514
|
}
|
|
1510
1515
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1511
|
-
margin-top: 3px;
|
|
1512
1516
|
transform: rotateX(180deg);
|
|
1513
1517
|
}
|
|
1514
1518
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1683,12 +1687,6 @@
|
|
|
1683
1687
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1684
1688
|
line-height: 1em !important;
|
|
1685
1689
|
}
|
|
1686
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1687
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1688
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1689
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1690
|
-
margin-top: 2px !important;
|
|
1691
|
-
}
|
|
1692
1690
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1693
1691
|
max-width: 155px;
|
|
1694
1692
|
}
|
|
@@ -1699,9 +1697,6 @@
|
|
|
1699
1697
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1700
1698
|
max-width: 200px;
|
|
1701
1699
|
}
|
|
1702
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1703
|
-
width: 100% !important;
|
|
1704
|
-
}
|
|
1705
1700
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1706
1701
|
width: 0 !important;
|
|
1707
1702
|
}
|
|
@@ -1863,7 +1858,6 @@
|
|
|
1863
1858
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1864
1859
|
font-size: 14px !important;
|
|
1865
1860
|
height: 20px;
|
|
1866
|
-
margin-top: 1px;
|
|
1867
1861
|
width: 20px;
|
|
1868
1862
|
}
|
|
1869
1863
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1960,7 +1954,6 @@
|
|
|
1960
1954
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1961
1955
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1962
1956
|
margin: -13px -10px !important;
|
|
1963
|
-
font-size: 16px !important;
|
|
1964
1957
|
}
|
|
1965
1958
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1966
1959
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -1970,7 +1963,7 @@
|
|
|
1970
1963
|
}
|
|
1971
1964
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container,
|
|
1972
1965
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container {
|
|
1973
|
-
height:
|
|
1966
|
+
height: 140px;
|
|
1974
1967
|
}
|
|
1975
1968
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
1976
1969
|
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
@@ -261,7 +261,7 @@
|
|
|
261
261
|
}
|
|
262
262
|
.e-pivotview .e-member-editor-dialog .e-member-editor-container-outer-div {
|
|
263
263
|
display: inline-block;
|
|
264
|
-
height:
|
|
264
|
+
height: 174px;
|
|
265
265
|
max-width: 400px;
|
|
266
266
|
overflow: auto;
|
|
267
267
|
width: 100%;
|
|
@@ -304,7 +304,7 @@
|
|
|
304
304
|
padding-top: 12px;
|
|
305
305
|
}
|
|
306
306
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
307
|
-
height:
|
|
307
|
+
height: 165px;
|
|
308
308
|
}
|
|
309
309
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-editor-label-container {
|
|
310
310
|
opacity: 56%;
|
|
@@ -708,7 +708,7 @@
|
|
|
708
708
|
}
|
|
709
709
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
710
710
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
711
|
-
height:
|
|
711
|
+
height: 140px;
|
|
712
712
|
}
|
|
713
713
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
714
714
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-descend-icon,
|
|
@@ -734,7 +734,7 @@
|
|
|
734
734
|
}
|
|
735
735
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
736
736
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
737
|
-
height:
|
|
737
|
+
height: 109px !important;
|
|
738
738
|
}
|
|
739
739
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-label-filter,
|
|
740
740
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-value-filter,
|
|
@@ -1001,7 +1001,7 @@
|
|
|
1001
1001
|
}
|
|
1002
1002
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1003
1003
|
font-size: 12px !important;
|
|
1004
|
-
padding
|
|
1004
|
+
padding: 4px 0 0 0 !important;
|
|
1005
1005
|
}
|
|
1006
1006
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1007
1007
|
margin: -10px 0 !important;
|
|
@@ -1042,6 +1042,11 @@
|
|
|
1042
1042
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1043
1043
|
visibility: hidden !important;
|
|
1044
1044
|
}
|
|
1045
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1046
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1047
|
+
text-overflow: ellipsis;
|
|
1048
|
+
white-space: nowrap;
|
|
1049
|
+
}
|
|
1045
1050
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1046
1051
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1047
1052
|
padding-left: 8px !important;
|
|
@@ -1510,7 +1515,6 @@
|
|
|
1510
1515
|
width: 18px;
|
|
1511
1516
|
}
|
|
1512
1517
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1513
|
-
margin-top: 3px;
|
|
1514
1518
|
transform: rotateX(180deg);
|
|
1515
1519
|
}
|
|
1516
1520
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1685,12 +1689,6 @@
|
|
|
1685
1689
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1686
1690
|
line-height: 1em !important;
|
|
1687
1691
|
}
|
|
1688
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1689
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1690
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1691
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1692
|
-
margin-top: 2px !important;
|
|
1693
|
-
}
|
|
1694
1692
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1695
1693
|
max-width: 155px;
|
|
1696
1694
|
}
|
|
@@ -1701,9 +1699,6 @@
|
|
|
1701
1699
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1702
1700
|
max-width: 200px;
|
|
1703
1701
|
}
|
|
1704
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1705
|
-
width: 100% !important;
|
|
1706
|
-
}
|
|
1707
1702
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1708
1703
|
width: 0 !important;
|
|
1709
1704
|
}
|
|
@@ -1865,7 +1860,6 @@
|
|
|
1865
1860
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1866
1861
|
font-size: 14px !important;
|
|
1867
1862
|
height: 20px;
|
|
1868
|
-
margin-top: 1px;
|
|
1869
1863
|
width: 20px;
|
|
1870
1864
|
}
|
|
1871
1865
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1962,7 +1956,6 @@
|
|
|
1962
1956
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1963
1957
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1964
1958
|
margin: -13px -10px !important;
|
|
1965
|
-
font-size: 16px !important;
|
|
1966
1959
|
}
|
|
1967
1960
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1968
1961
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -1972,7 +1965,7 @@
|
|
|
1972
1965
|
}
|
|
1973
1966
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container,
|
|
1974
1967
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container {
|
|
1975
|
-
height:
|
|
1968
|
+
height: 140px;
|
|
1976
1969
|
}
|
|
1977
1970
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
1978
1971
|
.e-bigger .e-pivotview .e-stackedheadertext,
|