@syncfusion/ej2-pivotview 20.1.61 → 20.2.39
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/CHANGELOG.md +30 -0
- package/dist/ej2-pivotview.umd.min.js +2 -2
- package/dist/ej2-pivotview.umd.min.js.map +1 -1
- package/dist/es6/ej2-pivotview.es2015.js +391 -157
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +403 -166
- package/dist/es6/ej2-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-pivotview.min.js +2 -2
- package/dist/global/ej2-pivotview.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/helpers/e2e/index.js +9 -7
- package/helpers/e2e/pivotfieldlist.js +47 -31
- package/helpers/e2e/pivotview.js +68 -52
- package/package.json +22 -22
- package/src/base/engine.js +13 -11
- package/src/base/olap/engine.js +14 -2
- package/src/base/olap/mdx-query.js +1 -1
- package/src/common/actions/event-base.d.ts +4 -2
- package/src/common/actions/event-base.js +18 -10
- package/src/common/actions/field-list.js +2 -1
- package/src/common/actions/pivot-button.js +4 -4
- package/src/common/base/constant.d.ts +8 -0
- package/src/common/base/constant.js +8 -0
- package/src/common/base/css-constant.d.ts +16 -0
- package/src/common/base/css-constant.js +16 -0
- package/src/common/calculatedfield/calculated-field.js +24 -15
- package/src/common/conditionalformatting/conditional-formatting.js +5 -5
- package/src/common/grouping-bar/grouping-bar.js +1 -1
- package/src/common/popups/aggregate-menu.js +4 -3
- package/src/common/popups/drillthrough-dialog.js +5 -4
- package/src/common/popups/error-dialog.js +1 -1
- package/src/common/popups/filter-dialog.js +25 -14
- package/src/common/popups/formatting-dialog.js +2 -2
- package/src/common/popups/grouping.js +14 -7
- package/src/common/popups/toolbar.js +11 -10
- package/src/pivotchart/base/pivotchart.js +16 -6
- package/src/pivotfieldlist/base/field-list-model.d.ts +5 -0
- package/src/pivotfieldlist/base/field-list.d.ts +4 -0
- package/src/pivotfieldlist/base/field-list.js +11 -6
- package/src/pivotfieldlist/renderer/dialog-renderer.js +17 -9
- package/src/pivotfieldlist/renderer/tree-renderer.d.ts +4 -0
- package/src/pivotfieldlist/renderer/tree-renderer.js +102 -8
- package/src/pivotview/actions/virtualscroll.d.ts +1 -0
- package/src/pivotview/actions/virtualscroll.js +61 -32
- package/src/pivotview/base/pivotview-model.d.ts +7 -0
- package/src/pivotview/base/pivotview.d.ts +6 -0
- package/src/pivotview/base/pivotview.js +25 -12
- package/src/pivotview/renderer/render.js +4 -1
- package/styles/bootstrap-dark.css +166 -33
- package/styles/bootstrap.css +166 -33
- package/styles/bootstrap4.css +167 -37
- package/styles/bootstrap5-dark.css +210 -46
- package/styles/bootstrap5.css +210 -46
- package/styles/fabric-dark.css +166 -33
- package/styles/fabric.css +166 -33
- package/styles/fluent-dark.css +184 -50
- package/styles/fluent.css +184 -50
- package/styles/highcontrast-light.css +166 -33
- package/styles/highcontrast.css +166 -33
- package/styles/material-dark.css +166 -33
- package/styles/material.css +166 -33
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +10 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +10 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +11 -1
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +15 -6
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +10 -1
- package/styles/pivotfieldlist/_fabric-definition.scss +10 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +18 -8
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +10 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +10 -0
- package/styles/pivotfieldlist/_layout.scss +31 -15
- package/styles/pivotfieldlist/_material-dark-definition.scss +10 -0
- package/styles/pivotfieldlist/_material-definition.scss +10 -0
- package/styles/pivotfieldlist/_material3-definition.scss +190 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +19 -10
- package/styles/pivotfieldlist/_theme.scss +142 -7
- package/styles/pivotfieldlist/bootstrap-dark.css +147 -11
- package/styles/pivotfieldlist/bootstrap.css +147 -11
- package/styles/pivotfieldlist/bootstrap4.css +148 -12
- package/styles/pivotfieldlist/bootstrap5-dark.css +152 -16
- package/styles/pivotfieldlist/bootstrap5.css +152 -16
- package/styles/pivotfieldlist/fabric-dark.css +147 -11
- package/styles/pivotfieldlist/fabric.css +147 -11
- package/styles/pivotfieldlist/fluent-dark.css +155 -19
- package/styles/pivotfieldlist/fluent.css +155 -19
- package/styles/pivotfieldlist/highcontrast-light.css +147 -11
- package/styles/pivotfieldlist/highcontrast.css +147 -11
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +5 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +5 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +5 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +5 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +5 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +5 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +5 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +5 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +5 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +5 -0
- package/styles/pivotfieldlist/icons/_material.scss +4 -0
- package/styles/pivotfieldlist/icons/_material3.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +4 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +4 -0
- package/styles/pivotfieldlist/material-dark.css +147 -11
- package/styles/pivotfieldlist/material.css +147 -11
- package/styles/pivotfieldlist/tailwind-dark.css +156 -22
- package/styles/pivotfieldlist/tailwind.css +157 -22
- package/styles/pivotview/_bootstrap-dark-definition.scss +4 -2
- package/styles/pivotview/_bootstrap-definition.scss +4 -2
- package/styles/pivotview/_bootstrap4-definition.scss +4 -2
- package/styles/pivotview/_bootstrap5-definition.scss +9 -8
- package/styles/pivotview/_fabric-dark-definition.scss +4 -1
- package/styles/pivotview/_fabric-definition.scss +4 -2
- package/styles/pivotview/_fluent-definition.scss +11 -9
- package/styles/pivotview/_fusionnew-definition.scss +131 -0
- package/styles/pivotview/_highcontrast-definition.scss +4 -2
- package/styles/pivotview/_highcontrast-light-definition.scss +4 -2
- package/styles/pivotview/_layout.scss +3 -17
- package/styles/pivotview/_material-dark-definition.scss +4 -1
- package/styles/pivotview/_material-definition.scss +4 -2
- package/styles/pivotview/_material3-definition.scss +131 -0
- package/styles/pivotview/_tailwind-definition.scss +8 -5
- package/styles/pivotview/_theme.scss +47 -27
- package/styles/pivotview/bootstrap-dark.css +19 -22
- package/styles/pivotview/bootstrap.css +19 -22
- package/styles/pivotview/bootstrap4.css +19 -25
- package/styles/pivotview/bootstrap5-dark.css +58 -30
- package/styles/pivotview/bootstrap5.css +58 -30
- package/styles/pivotview/fabric-dark.css +19 -22
- package/styles/pivotview/fabric.css +19 -22
- package/styles/pivotview/fluent-dark.css +29 -31
- package/styles/pivotview/fluent.css +29 -31
- package/styles/pivotview/highcontrast-light.css +19 -22
- package/styles/pivotview/highcontrast.css +19 -22
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/material-dark.css +19 -22
- package/styles/pivotview/material.css +19 -22
- package/styles/pivotview/tailwind-dark.css +27 -31
- package/styles/pivotview/tailwind.css +27 -31
- package/styles/tailwind-dark.css +183 -53
- package/styles/tailwind.css +184 -53
|
@@ -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
|
+
}
|
|
@@ -836,18 +836,6 @@
|
|
|
836
836
|
margin-top: 12px;
|
|
837
837
|
}
|
|
838
838
|
|
|
839
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
840
|
-
height: 62px;
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
844
|
-
padding-left: 10px;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
848
|
-
margin-left: 24px !important;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
839
|
/*! PivotView theme */
|
|
852
840
|
.e-pivotview .e-nextspan {
|
|
853
841
|
display: inline-block;
|
|
@@ -905,6 +893,8 @@
|
|
|
905
893
|
}
|
|
906
894
|
.e-pivotview .e-member-editor-dialog,
|
|
907
895
|
.e-pivotview .e-olap-editor-dialog {
|
|
896
|
+
min-height: 385px !important;
|
|
897
|
+
min-width: 350px !important;
|
|
908
898
|
visibility: hidden;
|
|
909
899
|
}
|
|
910
900
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -974,7 +964,7 @@
|
|
|
974
964
|
margin: -6px 5px !important;
|
|
975
965
|
}
|
|
976
966
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
977
|
-
|
|
967
|
+
font-size: 12px !important;
|
|
978
968
|
}
|
|
979
969
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
980
970
|
margin: -10px 0 !important;
|
|
@@ -1012,12 +1002,7 @@
|
|
|
1012
1002
|
z-index: 1 !important;
|
|
1013
1003
|
}
|
|
1014
1004
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1015
|
-
visibility: hidden;
|
|
1016
|
-
}
|
|
1017
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1018
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1019
|
-
text-overflow: ellipsis;
|
|
1020
|
-
white-space: nowrap;
|
|
1005
|
+
visibility: hidden !important;
|
|
1021
1006
|
}
|
|
1022
1007
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1023
1008
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1209,7 +1194,7 @@
|
|
|
1209
1194
|
border: 1px solid none;
|
|
1210
1195
|
border-radius: 25px;
|
|
1211
1196
|
box-shadow: none;
|
|
1212
|
-
color: #fff;
|
|
1197
|
+
color: #fff !important;
|
|
1213
1198
|
cursor: default;
|
|
1214
1199
|
display: -ms-flexbox;
|
|
1215
1200
|
display: flex;
|
|
@@ -1456,8 +1441,9 @@
|
|
|
1456
1441
|
color: rgba(255, 255, 255, 0.7) !important;
|
|
1457
1442
|
font-size: 12px;
|
|
1458
1443
|
height: 18px;
|
|
1459
|
-
margin-left: 4px;
|
|
1444
|
+
margin-left: 4px !important;
|
|
1460
1445
|
width: 18px;
|
|
1446
|
+
padding-top: 2px;
|
|
1461
1447
|
}
|
|
1462
1448
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1463
1449
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1480,6 +1466,7 @@
|
|
|
1480
1466
|
width: 18px;
|
|
1481
1467
|
}
|
|
1482
1468
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1469
|
+
margin-top: 3px;
|
|
1483
1470
|
transform: rotateX(180deg);
|
|
1484
1471
|
}
|
|
1485
1472
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1652,6 +1639,12 @@
|
|
|
1652
1639
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1653
1640
|
line-height: 1em !important;
|
|
1654
1641
|
}
|
|
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
|
+
}
|
|
1655
1648
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1656
1649
|
max-width: 155px;
|
|
1657
1650
|
}
|
|
@@ -1662,6 +1655,9 @@
|
|
|
1662
1655
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1663
1656
|
max-width: 200px;
|
|
1664
1657
|
}
|
|
1658
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1659
|
+
width: 100% !important;
|
|
1660
|
+
}
|
|
1665
1661
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1666
1662
|
width: 0 !important;
|
|
1667
1663
|
}
|
|
@@ -1821,6 +1817,7 @@
|
|
|
1821
1817
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1822
1818
|
font-size: 14px !important;
|
|
1823
1819
|
height: 20px;
|
|
1820
|
+
margin-top: 0;
|
|
1824
1821
|
width: 20px;
|
|
1825
1822
|
}
|
|
1826
1823
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1904,7 +1901,7 @@
|
|
|
1904
1901
|
}
|
|
1905
1902
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1906
1903
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1907
|
-
margin: -
|
|
1904
|
+
margin: -11px -10px !important;
|
|
1908
1905
|
}
|
|
1909
1906
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1910
1907
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -837,18 +837,6 @@
|
|
|
837
837
|
margin-top: 12px;
|
|
838
838
|
}
|
|
839
839
|
|
|
840
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
841
|
-
height: 62px;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
845
|
-
padding-left: 10px;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
849
|
-
margin-left: 24px !important;
|
|
850
|
-
}
|
|
851
|
-
|
|
852
840
|
/*! PivotView theme */
|
|
853
841
|
.e-pivotview .e-nextspan {
|
|
854
842
|
display: inline-block;
|
|
@@ -906,6 +894,8 @@
|
|
|
906
894
|
}
|
|
907
895
|
.e-pivotview .e-member-editor-dialog,
|
|
908
896
|
.e-pivotview .e-olap-editor-dialog {
|
|
897
|
+
min-height: 385px !important;
|
|
898
|
+
min-width: 350px !important;
|
|
909
899
|
visibility: hidden;
|
|
910
900
|
}
|
|
911
901
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -975,7 +965,7 @@
|
|
|
975
965
|
margin: -6px 5px !important;
|
|
976
966
|
}
|
|
977
967
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
978
|
-
|
|
968
|
+
font-size: 12px !important;
|
|
979
969
|
}
|
|
980
970
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
981
971
|
margin: -10px 0 !important;
|
|
@@ -1013,12 +1003,7 @@
|
|
|
1013
1003
|
z-index: 1 !important;
|
|
1014
1004
|
}
|
|
1015
1005
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1016
|
-
visibility: hidden;
|
|
1017
|
-
}
|
|
1018
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1019
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1020
|
-
text-overflow: ellipsis;
|
|
1021
|
-
white-space: nowrap;
|
|
1006
|
+
visibility: hidden !important;
|
|
1022
1007
|
}
|
|
1023
1008
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1024
1009
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1210,7 +1195,7 @@
|
|
|
1210
1195
|
border: 1px solid #e0e0e0;
|
|
1211
1196
|
border-radius: 25px;
|
|
1212
1197
|
box-shadow: none;
|
|
1213
|
-
color: #000;
|
|
1198
|
+
color: #000 !important;
|
|
1214
1199
|
cursor: default;
|
|
1215
1200
|
display: -ms-flexbox;
|
|
1216
1201
|
display: flex;
|
|
@@ -1457,8 +1442,9 @@
|
|
|
1457
1442
|
color: rgba(0, 0, 0, 0.54) !important;
|
|
1458
1443
|
font-size: 12px;
|
|
1459
1444
|
height: 18px;
|
|
1460
|
-
margin-left: 4px;
|
|
1445
|
+
margin-left: 4px !important;
|
|
1461
1446
|
width: 18px;
|
|
1447
|
+
padding-top: 2px;
|
|
1462
1448
|
}
|
|
1463
1449
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1464
1450
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1481,6 +1467,7 @@
|
|
|
1481
1467
|
width: 18px;
|
|
1482
1468
|
}
|
|
1483
1469
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1470
|
+
margin-top: 3px;
|
|
1484
1471
|
transform: rotateX(180deg);
|
|
1485
1472
|
}
|
|
1486
1473
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1653,6 +1640,12 @@
|
|
|
1653
1640
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1654
1641
|
line-height: 1em !important;
|
|
1655
1642
|
}
|
|
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
|
+
}
|
|
1656
1649
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1657
1650
|
max-width: 155px;
|
|
1658
1651
|
}
|
|
@@ -1663,6 +1656,9 @@
|
|
|
1663
1656
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1664
1657
|
max-width: 200px;
|
|
1665
1658
|
}
|
|
1659
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1660
|
+
width: 100% !important;
|
|
1661
|
+
}
|
|
1666
1662
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1667
1663
|
width: 0 !important;
|
|
1668
1664
|
}
|
|
@@ -1822,6 +1818,7 @@
|
|
|
1822
1818
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1823
1819
|
font-size: 14px !important;
|
|
1824
1820
|
height: 20px;
|
|
1821
|
+
margin-top: 0;
|
|
1825
1822
|
width: 20px;
|
|
1826
1823
|
}
|
|
1827
1824
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1905,7 +1902,7 @@
|
|
|
1905
1902
|
}
|
|
1906
1903
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1907
1904
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1908
|
-
margin: -
|
|
1905
|
+
margin: -12px -10px !important;
|
|
1909
1906
|
}
|
|
1910
1907
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1911
1908
|
.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: 214px;
|
|
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: 182px;
|
|
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: 178px;
|
|
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: 132px !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,
|
|
@@ -861,19 +861,6 @@
|
|
|
861
861
|
margin-top: 8px;
|
|
862
862
|
}
|
|
863
863
|
|
|
864
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
865
|
-
height: 62px;
|
|
866
|
-
}
|
|
867
|
-
|
|
868
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
869
|
-
height: 52px;
|
|
870
|
-
padding-left: 10px;
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
874
|
-
margin-left: 24px !important;
|
|
875
|
-
}
|
|
876
|
-
|
|
877
864
|
/*! PivotView theme */
|
|
878
865
|
.e-pivotview .e-nextspan {
|
|
879
866
|
display: inline-block;
|
|
@@ -933,6 +920,8 @@
|
|
|
933
920
|
}
|
|
934
921
|
.e-pivotview .e-member-editor-dialog,
|
|
935
922
|
.e-pivotview .e-olap-editor-dialog {
|
|
923
|
+
min-height: 385px !important;
|
|
924
|
+
min-width: 350px !important;
|
|
936
925
|
visibility: hidden;
|
|
937
926
|
}
|
|
938
927
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -1009,9 +998,8 @@
|
|
|
1009
998
|
margin: -13px -5px !important;
|
|
1010
999
|
}
|
|
1011
1000
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1012
|
-
|
|
1013
|
-
padding-
|
|
1014
|
-
padding-top: 0px !important;
|
|
1001
|
+
font-size: 12px !important;
|
|
1002
|
+
padding-top: 14px !important;
|
|
1015
1003
|
}
|
|
1016
1004
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1017
1005
|
margin: -10px 0 !important;
|
|
@@ -1050,12 +1038,7 @@
|
|
|
1050
1038
|
z-index: 1 !important;
|
|
1051
1039
|
}
|
|
1052
1040
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1053
|
-
visibility: hidden;
|
|
1054
|
-
}
|
|
1055
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1056
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1057
|
-
text-overflow: ellipsis;
|
|
1058
|
-
white-space: nowrap;
|
|
1041
|
+
visibility: hidden !important;
|
|
1059
1042
|
}
|
|
1060
1043
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1061
1044
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1253,7 +1236,7 @@
|
|
|
1253
1236
|
border: 1px solid #4b5563;
|
|
1254
1237
|
border-radius: 0;
|
|
1255
1238
|
box-shadow: none;
|
|
1256
|
-
color: #d1d5db;
|
|
1239
|
+
color: #d1d5db !important;
|
|
1257
1240
|
cursor: default;
|
|
1258
1241
|
display: -ms-flexbox;
|
|
1259
1242
|
display: flex;
|
|
@@ -1500,8 +1483,9 @@
|
|
|
1500
1483
|
color: #d1d5db !important;
|
|
1501
1484
|
font-size: 12px;
|
|
1502
1485
|
height: 18px;
|
|
1503
|
-
margin-left: 4px;
|
|
1486
|
+
margin-left: 4px !important;
|
|
1504
1487
|
width: 18px;
|
|
1488
|
+
padding-top: 2px;
|
|
1505
1489
|
}
|
|
1506
1490
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1507
1491
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1524,6 +1508,7 @@
|
|
|
1524
1508
|
width: 18px;
|
|
1525
1509
|
}
|
|
1526
1510
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1511
|
+
margin-top: 3px;
|
|
1527
1512
|
transform: rotateX(180deg);
|
|
1528
1513
|
}
|
|
1529
1514
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1595,7 +1580,7 @@
|
|
|
1595
1580
|
.e-pivotview th .e-collapse {
|
|
1596
1581
|
font-size: 10px !important;
|
|
1597
1582
|
margin-left: 0px;
|
|
1598
|
-
margin-top:
|
|
1583
|
+
margin-top: 0;
|
|
1599
1584
|
}
|
|
1600
1585
|
.e-pivotview .e-expand::before {
|
|
1601
1586
|
font-size: 18px;
|
|
@@ -1698,6 +1683,12 @@
|
|
|
1698
1683
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1699
1684
|
line-height: 1em !important;
|
|
1700
1685
|
}
|
|
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
|
+
}
|
|
1701
1692
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1702
1693
|
max-width: 155px;
|
|
1703
1694
|
}
|
|
@@ -1708,6 +1699,9 @@
|
|
|
1708
1699
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1709
1700
|
max-width: 200px;
|
|
1710
1701
|
}
|
|
1702
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1703
|
+
width: 100% !important;
|
|
1704
|
+
}
|
|
1711
1705
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1712
1706
|
width: 0 !important;
|
|
1713
1707
|
}
|
|
@@ -1825,7 +1819,7 @@
|
|
|
1825
1819
|
.e-bigger .e-pivotview th .e-collapse,
|
|
1826
1820
|
.e-bigger.e-pivotview th .e-expand,
|
|
1827
1821
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1828
|
-
margin-top:
|
|
1822
|
+
margin-top: 0;
|
|
1829
1823
|
}
|
|
1830
1824
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1831
1825
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
@@ -1869,6 +1863,7 @@
|
|
|
1869
1863
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1870
1864
|
font-size: 14px !important;
|
|
1871
1865
|
height: 20px;
|
|
1866
|
+
margin-top: 1px;
|
|
1872
1867
|
width: 20px;
|
|
1873
1868
|
}
|
|
1874
1869
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1965,6 +1960,7 @@
|
|
|
1965
1960
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1966
1961
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1967
1962
|
margin: -13px -10px !important;
|
|
1963
|
+
font-size: 16px !important;
|
|
1968
1964
|
}
|
|
1969
1965
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1970
1966
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -1974,7 +1970,7 @@
|
|
|
1974
1970
|
}
|
|
1975
1971
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container,
|
|
1976
1972
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container {
|
|
1977
|
-
height:
|
|
1973
|
+
height: 178px;
|
|
1978
1974
|
}
|
|
1979
1975
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
1980
1976
|
.e-bigger .e-pivotview .e-stackedheadertext,
|