@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
|
@@ -837,18 +837,6 @@
|
|
|
837
837
|
margin-top: 8px;
|
|
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: -15px 0 !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 #414141;
|
|
1211
1196
|
border-radius: 4px;
|
|
1212
1197
|
box-shadow: none;
|
|
1213
|
-
color: #f0f0f0;
|
|
1198
|
+
color: #f0f0f0 !important;
|
|
1214
1199
|
cursor: default;
|
|
1215
1200
|
display: -ms-flexbox;
|
|
1216
1201
|
display: flex;
|
|
@@ -1457,8 +1442,9 @@
|
|
|
1457
1442
|
color: #f0f0f0 !important;
|
|
1458
1443
|
font-size: 10px;
|
|
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: -13px -11px !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,
|
|
@@ -836,18 +836,6 @@
|
|
|
836
836
|
margin-top: 8px;
|
|
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: -15px 0 !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 #e6e6e6;
|
|
1210
1195
|
border-radius: 4px;
|
|
1211
1196
|
box-shadow: none;
|
|
1212
|
-
color: #333;
|
|
1197
|
+
color: #333 !important;
|
|
1213
1198
|
cursor: default;
|
|
1214
1199
|
display: -ms-flexbox;
|
|
1215
1200
|
display: flex;
|
|
@@ -1456,8 +1441,9 @@
|
|
|
1456
1441
|
color: #333 !important;
|
|
1457
1442
|
font-size: 10px;
|
|
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: 1px;
|
|
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: -14px -9px !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,
|
|
@@ -891,18 +891,6 @@
|
|
|
891
891
|
margin-top: 2px;
|
|
892
892
|
}
|
|
893
893
|
|
|
894
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
895
|
-
height: 62px;
|
|
896
|
-
}
|
|
897
|
-
|
|
898
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
899
|
-
padding-left: 10px;
|
|
900
|
-
}
|
|
901
|
-
|
|
902
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
903
|
-
margin-left: 24px !important;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
894
|
/*! PivotView theme */
|
|
907
895
|
.e-pivotview .e-nextspan {
|
|
908
896
|
display: inline-block;
|
|
@@ -960,6 +948,8 @@
|
|
|
960
948
|
}
|
|
961
949
|
.e-pivotview .e-member-editor-dialog,
|
|
962
950
|
.e-pivotview .e-olap-editor-dialog {
|
|
951
|
+
min-height: 385px !important;
|
|
952
|
+
min-width: 350px !important;
|
|
963
953
|
visibility: hidden;
|
|
964
954
|
}
|
|
965
955
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -1031,9 +1021,7 @@
|
|
|
1031
1021
|
padding: 15px;
|
|
1032
1022
|
}
|
|
1033
1023
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1034
|
-
|
|
1035
|
-
padding-bottom: 3px !important;
|
|
1036
|
-
padding-top: 3px !important;
|
|
1024
|
+
font-size: 12px !important;
|
|
1037
1025
|
}
|
|
1038
1026
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1039
1027
|
margin: -10px 0 !important;
|
|
@@ -1074,12 +1062,7 @@
|
|
|
1074
1062
|
z-index: 1 !important;
|
|
1075
1063
|
}
|
|
1076
1064
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1077
|
-
visibility: hidden;
|
|
1078
|
-
}
|
|
1079
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1080
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1081
|
-
text-overflow: ellipsis;
|
|
1082
|
-
white-space: nowrap;
|
|
1065
|
+
visibility: hidden !important;
|
|
1083
1066
|
}
|
|
1084
1067
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1085
1068
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1273,7 +1256,7 @@
|
|
|
1273
1256
|
border: 1px solid #6c757d;
|
|
1274
1257
|
border-radius: 4px;
|
|
1275
1258
|
box-shadow: none;
|
|
1276
|
-
color: #fff;
|
|
1259
|
+
color: #fff !important;
|
|
1277
1260
|
cursor: default;
|
|
1278
1261
|
display: -ms-flexbox;
|
|
1279
1262
|
display: flex;
|
|
@@ -1541,9 +1524,9 @@
|
|
|
1541
1524
|
color: rgba(255, 255, 255, 0.8) !important;
|
|
1542
1525
|
font-size: 10px;
|
|
1543
1526
|
height: 18px;
|
|
1544
|
-
margin-left: 4px;
|
|
1527
|
+
margin-left: 4px !important;
|
|
1545
1528
|
width: 18px;
|
|
1546
|
-
|
|
1529
|
+
padding-top: 2px;
|
|
1547
1530
|
}
|
|
1548
1531
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1549
1532
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1566,6 +1549,7 @@
|
|
|
1566
1549
|
width: 18px;
|
|
1567
1550
|
}
|
|
1568
1551
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1552
|
+
margin-top: 3px;
|
|
1569
1553
|
transform: rotateX(180deg);
|
|
1570
1554
|
}
|
|
1571
1555
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1738,6 +1722,12 @@
|
|
|
1738
1722
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1739
1723
|
line-height: 1em !important;
|
|
1740
1724
|
}
|
|
1725
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1726
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1727
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1728
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1729
|
+
margin-top: 2px !important;
|
|
1730
|
+
}
|
|
1741
1731
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1742
1732
|
max-width: 155px;
|
|
1743
1733
|
padding: 3px 10px;
|
|
@@ -1773,6 +1763,9 @@
|
|
|
1773
1763
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1774
1764
|
margin-top: 2px;
|
|
1775
1765
|
}
|
|
1766
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1767
|
+
width: 100% !important;
|
|
1768
|
+
}
|
|
1776
1769
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1777
1770
|
width: 0 !important;
|
|
1778
1771
|
}
|
|
@@ -1943,6 +1936,7 @@
|
|
|
1943
1936
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1944
1937
|
font-size: 12px !important;
|
|
1945
1938
|
height: 20px;
|
|
1939
|
+
margin-top: 2px;
|
|
1946
1940
|
width: 20px;
|
|
1947
1941
|
padding-left: 12px;
|
|
1948
1942
|
}
|
|
@@ -2054,7 +2048,7 @@
|
|
|
2054
2048
|
}
|
|
2055
2049
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
2056
2050
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
2057
|
-
margin: -
|
|
2051
|
+
margin: -14px -8px !important;
|
|
2058
2052
|
font-size: 12px !important;
|
|
2059
2053
|
}
|
|
2060
2054
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
@@ -844,18 +844,6 @@
|
|
|
844
844
|
margin-top: 12px;
|
|
845
845
|
}
|
|
846
846
|
|
|
847
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
848
|
-
height: 62px;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
852
|
-
padding-left: 10px;
|
|
853
|
-
}
|
|
854
|
-
|
|
855
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
856
|
-
margin-left: 24px !important;
|
|
857
|
-
}
|
|
858
|
-
|
|
859
847
|
/*! PivotView theme */
|
|
860
848
|
.e-pivotview .e-nextspan {
|
|
861
849
|
display: inline-block;
|
|
@@ -914,6 +902,8 @@
|
|
|
914
902
|
}
|
|
915
903
|
.e-pivotview .e-member-editor-dialog,
|
|
916
904
|
.e-pivotview .e-olap-editor-dialog {
|
|
905
|
+
min-height: 385px !important;
|
|
906
|
+
min-width: 350px !important;
|
|
917
907
|
visibility: hidden;
|
|
918
908
|
}
|
|
919
909
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -986,10 +976,8 @@
|
|
|
986
976
|
padding: 15px;
|
|
987
977
|
}
|
|
988
978
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
989
|
-
padding: 1px 4px !important;
|
|
990
979
|
font-size: 12px !important;
|
|
991
|
-
padding-
|
|
992
|
-
padding-top: 4px !important;
|
|
980
|
+
padding-right: 5px !important;
|
|
993
981
|
}
|
|
994
982
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
995
983
|
margin: -10px 0 !important;
|
|
@@ -1030,12 +1018,7 @@
|
|
|
1030
1018
|
z-index: 1 !important;
|
|
1031
1019
|
}
|
|
1032
1020
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1033
|
-
visibility: hidden;
|
|
1034
|
-
}
|
|
1035
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1036
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1037
|
-
text-overflow: ellipsis;
|
|
1038
|
-
white-space: nowrap;
|
|
1021
|
+
visibility: hidden !important;
|
|
1039
1022
|
}
|
|
1040
1023
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1041
1024
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1201,6 +1184,38 @@
|
|
|
1201
1184
|
font-size: 14px;
|
|
1202
1185
|
font-weight: normal;
|
|
1203
1186
|
}
|
|
1187
|
+
.e-pivotview .e-group-values .e-pivot-button .e-sort,
|
|
1188
|
+
.e-pivotview .e-group-values .e-pivot-button .e-dropdown-icon,
|
|
1189
|
+
.e-pivotview .e-group-values .e-pivot-button .e-pv-filter,
|
|
1190
|
+
.e-pivotview .e-group-values .e-pivot-button .e-pv-filtered,
|
|
1191
|
+
.e-pivotview .e-group-values .e-pivot-button .e-remove,
|
|
1192
|
+
.e-pivotview .e-group-values .e-pivot-button .e-edit,
|
|
1193
|
+
.e-pivotview .e-group-columns .e-pivot-button .e-sort,
|
|
1194
|
+
.e-pivotview .e-group-columns .e-pivot-button .e-dropdown-icon,
|
|
1195
|
+
.e-pivotview .e-group-columns .e-pivot-button .e-pv-filter,
|
|
1196
|
+
.e-pivotview .e-group-columns .e-pivot-button .e-pv-filtered,
|
|
1197
|
+
.e-pivotview .e-group-columns .e-pivot-button .e-remove,
|
|
1198
|
+
.e-pivotview .e-group-columns .e-pivot-button .e-edit,
|
|
1199
|
+
.e-pivotview .e-group-filters .e-pivot-button .e-sort,
|
|
1200
|
+
.e-pivotview .e-group-filters .e-pivot-button .e-dropdown-icon,
|
|
1201
|
+
.e-pivotview .e-group-filters .e-pivot-button .e-pv-filter,
|
|
1202
|
+
.e-pivotview .e-group-filters .e-pivot-button .e-pv-filtered,
|
|
1203
|
+
.e-pivotview .e-group-filters .e-pivot-button .e-remove,
|
|
1204
|
+
.e-pivotview .e-group-filters .e-pivot-button .e-edit,
|
|
1205
|
+
.e-pivotview .e-group-rows .e-pivot-button .e-sort,
|
|
1206
|
+
.e-pivotview .e-group-rows .e-pivot-button .e-dropdown-icon,
|
|
1207
|
+
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filter,
|
|
1208
|
+
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filtered,
|
|
1209
|
+
.e-pivotview .e-group-rows .e-pivot-button .e-remove,
|
|
1210
|
+
.e-pivotview .e-group-rows .e-pivot-button .e-edit,
|
|
1211
|
+
.e-pivotview .e-group-all-fields .e-pivot-button .e-sort,
|
|
1212
|
+
.e-pivotview .e-group-all-fields .e-pivot-button .e-dropdown-icon,
|
|
1213
|
+
.e-pivotview .e-group-all-fields .e-pivot-button .e-pv-filter,
|
|
1214
|
+
.e-pivotview .e-group-all-fields .e-pivot-button .e-pv-filtered,
|
|
1215
|
+
.e-pivotview .e-group-all-fields .e-pivot-button .e-remove,
|
|
1216
|
+
.e-pivotview .e-group-all-fields .e-pivot-button .e-edit {
|
|
1217
|
+
margin-top: 1px;
|
|
1218
|
+
}
|
|
1204
1219
|
.e-pivotview .e-grouping-bar .e-pvt-btn-div,
|
|
1205
1220
|
.e-pivotview .e-group-rows .e-pvt-btn-div {
|
|
1206
1221
|
display: -ms-inline-flexbox;
|
|
@@ -1231,14 +1246,14 @@
|
|
|
1231
1246
|
border: 1px solid #495057;
|
|
1232
1247
|
border-radius: 4px;
|
|
1233
1248
|
box-shadow: none;
|
|
1234
|
-
color: #e9ecef;
|
|
1249
|
+
color: #e9ecef !important;
|
|
1235
1250
|
cursor: default;
|
|
1236
1251
|
display: -ms-flexbox;
|
|
1237
1252
|
display: flex;
|
|
1238
1253
|
font-weight: normal;
|
|
1239
1254
|
height: 24px;
|
|
1240
1255
|
line-height: 0.9em;
|
|
1241
|
-
padding:
|
|
1256
|
+
padding: 3px 8px;
|
|
1242
1257
|
text-transform: none;
|
|
1243
1258
|
vertical-align: bottom;
|
|
1244
1259
|
z-index: 1;
|
|
@@ -1427,7 +1442,7 @@
|
|
|
1427
1442
|
pointer-events: none;
|
|
1428
1443
|
}
|
|
1429
1444
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
1430
|
-
padding:
|
|
1445
|
+
padding: 3px 8px;
|
|
1431
1446
|
width: 180px;
|
|
1432
1447
|
}
|
|
1433
1448
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button:hover {
|
|
@@ -1479,8 +1494,9 @@
|
|
|
1479
1494
|
color: #fff !important;
|
|
1480
1495
|
font-size: 12px;
|
|
1481
1496
|
height: 18px;
|
|
1482
|
-
margin-left: 4px;
|
|
1497
|
+
margin-left: 4px !important;
|
|
1483
1498
|
width: 18px;
|
|
1499
|
+
padding-top: 2px;
|
|
1484
1500
|
}
|
|
1485
1501
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1486
1502
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1503,6 +1519,7 @@
|
|
|
1503
1519
|
width: 18px;
|
|
1504
1520
|
}
|
|
1505
1521
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1522
|
+
margin-top: 3px;
|
|
1506
1523
|
transform: rotateX(180deg);
|
|
1507
1524
|
}
|
|
1508
1525
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1557,7 +1574,7 @@
|
|
|
1557
1574
|
width: auto;
|
|
1558
1575
|
}
|
|
1559
1576
|
.e-pivotview .e-collapse::before {
|
|
1560
|
-
font-size:
|
|
1577
|
+
font-size: 20px;
|
|
1561
1578
|
}
|
|
1562
1579
|
.e-pivotview .e-expand,
|
|
1563
1580
|
.e-pivotview .e-collapse {
|
|
@@ -1575,7 +1592,7 @@
|
|
|
1575
1592
|
.e-pivotview th .e-collapse {
|
|
1576
1593
|
font-size: 10px !important;
|
|
1577
1594
|
margin-left: 0px;
|
|
1578
|
-
margin-top:
|
|
1595
|
+
margin-top: 0;
|
|
1579
1596
|
}
|
|
1580
1597
|
.e-pivotview .e-expand::before {
|
|
1581
1598
|
font-size: 20px;
|
|
@@ -1678,6 +1695,12 @@
|
|
|
1678
1695
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1679
1696
|
line-height: 1em !important;
|
|
1680
1697
|
}
|
|
1698
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1699
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1700
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1701
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1702
|
+
margin-top: 2px !important;
|
|
1703
|
+
}
|
|
1681
1704
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1682
1705
|
max-width: 155px;
|
|
1683
1706
|
}
|
|
@@ -1688,6 +1711,9 @@
|
|
|
1688
1711
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1689
1712
|
max-width: 200px;
|
|
1690
1713
|
}
|
|
1714
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1715
|
+
width: 100% !important;
|
|
1716
|
+
}
|
|
1691
1717
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1692
1718
|
width: 0 !important;
|
|
1693
1719
|
}
|
|
@@ -1803,7 +1829,7 @@
|
|
|
1803
1829
|
.e-bigger .e-pivotview th .e-collapse,
|
|
1804
1830
|
.e-bigger.e-pivotview th .e-expand,
|
|
1805
1831
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1806
|
-
margin-top:
|
|
1832
|
+
margin-top: 0;
|
|
1807
1833
|
}
|
|
1808
1834
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1809
1835
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
@@ -1847,6 +1873,7 @@
|
|
|
1847
1873
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1848
1874
|
font-size: 14px !important;
|
|
1849
1875
|
height: 20px;
|
|
1876
|
+
margin-top: 2px;
|
|
1850
1877
|
width: 20px;
|
|
1851
1878
|
}
|
|
1852
1879
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1942,8 +1969,9 @@
|
|
|
1942
1969
|
}
|
|
1943
1970
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1944
1971
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1945
|
-
margin: -
|
|
1972
|
+
margin: -15px -8px !important;
|
|
1946
1973
|
font-size: 12px !important;
|
|
1974
|
+
padding-top: 28px;
|
|
1947
1975
|
}
|
|
1948
1976
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1949
1977
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2020,7 +2048,7 @@
|
|
|
2020
2048
|
}
|
|
2021
2049
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
2022
2050
|
.e-bigger.e-pivotview .e-collapse::before {
|
|
2023
|
-
font-size:
|
|
2051
|
+
font-size: 24px;
|
|
2024
2052
|
}
|
|
2025
2053
|
|
|
2026
2054
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|