@syncfusion/ej2-pivotview 20.1.58 → 20.2.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +29 -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 +530 -235
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +544 -246
- 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.d.ts +1 -1
- package/src/base/engine.js +129 -82
- package/src/base/olap/engine.js +2 -2
- package/src/base/olap/mdx-query.js +1 -1
- package/src/base/util.js +2 -2
- package/src/common/actions/event-base.d.ts +4 -2
- package/src/common/actions/event-base.js +45 -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 +10 -10
- 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.d.ts +1 -0
- package/src/common/popups/toolbar.js +26 -16
- package/src/pivotchart/base/pivotchart.js +3 -0
- 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/drill-through.js +2 -2
- package/src/pivotview/actions/virtualscroll.d.ts +1 -0
- package/src/pivotview/actions/virtualscroll.js +59 -30
- 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/model/chartsettings-model.d.ts +2 -2
- package/src/pivotview/model/chartsettings.d.ts +2 -2
- package/src/pivotview/model/chartsettings.js +2 -2
- package/src/pivotview/renderer/render.js +5 -2
- package/styles/bootstrap-dark.css +165 -32
- package/styles/bootstrap.css +165 -32
- package/styles/bootstrap4.css +166 -36
- package/styles/bootstrap5-dark.css +209 -45
- package/styles/bootstrap5.css +209 -45
- package/styles/fabric-dark.css +165 -32
- package/styles/fabric.css +165 -32
- package/styles/fluent-dark.css +183 -49
- package/styles/fluent.css +183 -49
- package/styles/highcontrast-light.css +165 -32
- package/styles/highcontrast.css +165 -32
- package/styles/material-dark.css +165 -32
- package/styles/material.css +165 -32
- 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 +30 -14
- 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 +146 -10
- package/styles/pivotfieldlist/bootstrap.css +146 -10
- package/styles/pivotfieldlist/bootstrap4.css +147 -11
- package/styles/pivotfieldlist/bootstrap5-dark.css +151 -15
- package/styles/pivotfieldlist/bootstrap5.css +151 -15
- package/styles/pivotfieldlist/fabric-dark.css +146 -10
- package/styles/pivotfieldlist/fabric.css +146 -10
- package/styles/pivotfieldlist/fluent-dark.css +154 -18
- package/styles/pivotfieldlist/fluent.css +154 -18
- package/styles/pivotfieldlist/highcontrast-light.css +146 -10
- package/styles/pivotfieldlist/highcontrast.css +146 -10
- 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 +146 -10
- package/styles/pivotfieldlist/material.css +146 -10
- package/styles/pivotfieldlist/tailwind-dark.css +155 -21
- package/styles/pivotfieldlist/tailwind.css +156 -21
- 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 +182 -52
- package/styles/tailwind.css +183 -52
package/styles/bootstrap4.css
CHANGED
|
@@ -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,
|
|
@@ -2412,6 +2406,10 @@
|
|
|
2412
2406
|
.e-pivotfieldlist-container .e-sort-descend::before {
|
|
2413
2407
|
content: "\e665" !important;
|
|
2414
2408
|
}
|
|
2409
|
+
.e-pivotfieldlist-wrapper .e-field-list-search-icon::before,
|
|
2410
|
+
.e-pivotfieldlist-container .e-field-list-search-icon::before {
|
|
2411
|
+
content: "\e724" !important;
|
|
2412
|
+
}
|
|
2415
2413
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before,
|
|
2416
2414
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
2417
2415
|
content: "\e7fc";
|
|
@@ -2447,7 +2445,6 @@
|
|
|
2447
2445
|
|
|
2448
2446
|
.e-pivot-formatting-dialog {
|
|
2449
2447
|
max-height: 480px !important;
|
|
2450
|
-
min-width: 625px !important;
|
|
2451
2448
|
width: 625px !important;
|
|
2452
2449
|
}
|
|
2453
2450
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2465,6 +2462,7 @@
|
|
|
2465
2462
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2466
2463
|
padding-bottom: 14px;
|
|
2467
2464
|
padding-right: 18px;
|
|
2465
|
+
white-space: nowrap;
|
|
2468
2466
|
}
|
|
2469
2467
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2470
2468
|
vertical-align: bottom;
|
|
@@ -2481,6 +2479,7 @@
|
|
|
2481
2479
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
2482
2480
|
padding-left: 14px;
|
|
2483
2481
|
padding-top: 14px;
|
|
2482
|
+
width: 579px;
|
|
2484
2483
|
}
|
|
2485
2484
|
.e-pivot-formatting-dialog .e-format-outer-div {
|
|
2486
2485
|
background-color: #fff;
|
|
@@ -2564,6 +2563,9 @@
|
|
|
2564
2563
|
min-width: 320px !important;
|
|
2565
2564
|
width: 100% !important;
|
|
2566
2565
|
}
|
|
2566
|
+
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2567
|
+
width: 100% !important;
|
|
2568
|
+
}
|
|
2567
2569
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2568
2570
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2569
2571
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2608,7 +2610,6 @@
|
|
|
2608
2610
|
|
|
2609
2611
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2610
2612
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2611
|
-
min-width: 670px !important;
|
|
2612
2613
|
width: 670px !important;
|
|
2613
2614
|
}
|
|
2614
2615
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2626,6 +2627,7 @@
|
|
|
2626
2627
|
.e-bigger .e-pivot-formatting-dialog .e-format-inner-div {
|
|
2627
2628
|
padding-left: 16px;
|
|
2628
2629
|
padding-top: 16px;
|
|
2630
|
+
width: 656px;
|
|
2629
2631
|
}
|
|
2630
2632
|
.e-bigger.e-pivot-formatting-dialog .e-format-outer-div,
|
|
2631
2633
|
.e-bigger .e-pivot-formatting-dialog .e-format-outer-div {
|
|
@@ -3003,8 +3005,8 @@
|
|
|
3003
3005
|
|
|
3004
3006
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
3005
3007
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3006
|
-
max-height:
|
|
3007
|
-
min-width:
|
|
3008
|
+
max-height: 600px !important;
|
|
3009
|
+
min-width: 401px !important;
|
|
3008
3010
|
}
|
|
3009
3011
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
3010
3012
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -3045,8 +3047,8 @@
|
|
|
3045
3047
|
}
|
|
3046
3048
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
3047
3049
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
3048
|
-
max-height:
|
|
3049
|
-
min-width: 580px;
|
|
3050
|
+
max-height: 750px !important;
|
|
3051
|
+
min-width: 580px !important;
|
|
3050
3052
|
}
|
|
3051
3053
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
3052
3054
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -3126,7 +3128,7 @@
|
|
|
3126
3128
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3127
3129
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3128
3130
|
margin-left: -25px;
|
|
3129
|
-
overflow:
|
|
3131
|
+
overflow: auto !important;
|
|
3130
3132
|
}
|
|
3131
3133
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3132
3134
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3163,6 +3165,9 @@
|
|
|
3163
3165
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog.e-rtl .e-member-editor-outer-container ul {
|
|
3164
3166
|
margin-right: 0;
|
|
3165
3167
|
}
|
|
3168
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
3169
|
+
margin-left: 20px;
|
|
3170
|
+
}
|
|
3166
3171
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-clear-filter-button {
|
|
3167
3172
|
float: left;
|
|
3168
3173
|
margin: 0;
|
|
@@ -3285,6 +3290,10 @@
|
|
|
3285
3290
|
opacity: 100%;
|
|
3286
3291
|
padding: 18px 10px 12px 20px;
|
|
3287
3292
|
}
|
|
3293
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-toolbar .e-toolbar-items {
|
|
3294
|
+
margin-left: 0;
|
|
3295
|
+
margin-right: 20px;
|
|
3296
|
+
}
|
|
3288
3297
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container .e-editor-search-container .e-filter-sort {
|
|
3289
3298
|
margin-left: 0;
|
|
3290
3299
|
margin-right: 10px;
|
|
@@ -3309,6 +3318,10 @@
|
|
|
3309
3318
|
margin-left: 0;
|
|
3310
3319
|
margin-right: 10px;
|
|
3311
3320
|
}
|
|
3321
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul {
|
|
3322
|
+
min-height: 170px;
|
|
3323
|
+
overflow: auto;
|
|
3324
|
+
}
|
|
3312
3325
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-measure-icon,
|
|
3313
3326
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-dimension-icon,
|
|
3314
3327
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-attributeCDB-icon,
|
|
@@ -3424,7 +3437,7 @@
|
|
|
3424
3437
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content,
|
|
3425
3438
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3426
3439
|
overflow: hidden;
|
|
3427
|
-
padding: 0;
|
|
3440
|
+
padding: 0 !important;
|
|
3428
3441
|
}
|
|
3429
3442
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3430
3443
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3665,7 +3678,7 @@
|
|
|
3665
3678
|
}
|
|
3666
3679
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
3667
3680
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
3668
|
-
height:
|
|
3681
|
+
height: 125px !important;
|
|
3669
3682
|
}
|
|
3670
3683
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
3671
3684
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter,
|
|
@@ -3701,7 +3714,7 @@
|
|
|
3701
3714
|
}
|
|
3702
3715
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter,
|
|
3703
3716
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter {
|
|
3704
|
-
min-width: 350px;
|
|
3717
|
+
min-width: 350px !important;
|
|
3705
3718
|
}
|
|
3706
3719
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
3707
3720
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
@@ -3816,6 +3829,25 @@
|
|
|
3816
3829
|
min-height: 36px;
|
|
3817
3830
|
min-width: 36px;
|
|
3818
3831
|
}
|
|
3832
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog,
|
|
3833
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
3834
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
3835
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
3836
|
+
max-height: 400px !important;
|
|
3837
|
+
min-width: 370px !important;
|
|
3838
|
+
}
|
|
3839
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3840
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
3841
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3842
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
3843
|
+
min-height: 113px !important;
|
|
3844
|
+
}
|
|
3845
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3846
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3847
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3848
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul {
|
|
3849
|
+
height: auto;
|
|
3850
|
+
}
|
|
3819
3851
|
|
|
3820
3852
|
.e-pivotfieldlist-container {
|
|
3821
3853
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
@@ -4037,6 +4069,9 @@
|
|
|
4037
4069
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-list-text {
|
|
4038
4070
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
4039
4071
|
}
|
|
4072
|
+
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li.e-disable {
|
|
4073
|
+
display: none !important;
|
|
4074
|
+
}
|
|
4040
4075
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree ul li {
|
|
4041
4076
|
margin-left: 0;
|
|
4042
4077
|
margin-right: 0;
|
|
@@ -4484,6 +4519,59 @@
|
|
|
4484
4519
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table.e-olap-axis-table {
|
|
4485
4520
|
width: 60%;
|
|
4486
4521
|
}
|
|
4522
|
+
.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
4523
|
+
max-height: 750px;
|
|
4524
|
+
}
|
|
4525
|
+
.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
4526
|
+
height: 261px;
|
|
4527
|
+
}
|
|
4528
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4529
|
+
min-height: 540px;
|
|
4530
|
+
}
|
|
4531
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4532
|
+
height: 369px;
|
|
4533
|
+
}
|
|
4534
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4535
|
+
height: 394px !important;
|
|
4536
|
+
}
|
|
4537
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
4538
|
+
height: 392px;
|
|
4539
|
+
}
|
|
4540
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
4541
|
+
height: 159px !important;
|
|
4542
|
+
}
|
|
4543
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt {
|
|
4544
|
+
color: #adb5bd;
|
|
4545
|
+
padding: 25px 12px;
|
|
4546
|
+
text-align: center;
|
|
4547
|
+
width: 100%;
|
|
4548
|
+
}
|
|
4549
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt.e-disable {
|
|
4550
|
+
display: none;
|
|
4551
|
+
}
|
|
4552
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search {
|
|
4553
|
+
display: -ms-flexbox;
|
|
4554
|
+
display: flex;
|
|
4555
|
+
padding: 10px 20px;
|
|
4556
|
+
}
|
|
4557
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4558
|
+
float: right;
|
|
4559
|
+
font-size: 14px;
|
|
4560
|
+
}
|
|
4561
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group .e-input-group-icon,
|
|
4562
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
4563
|
+
border-width: 0 !important;
|
|
4564
|
+
cursor: text !important;
|
|
4565
|
+
}
|
|
4566
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group-icon:hover {
|
|
4567
|
+
background-color: transparent !important;
|
|
4568
|
+
border: transparent !important;
|
|
4569
|
+
color: currentColor !important;
|
|
4570
|
+
}
|
|
4571
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-tree-outer-div .e-disable,
|
|
4572
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-disable {
|
|
4573
|
+
display: none !important;
|
|
4574
|
+
}
|
|
4487
4575
|
.e-pivotfieldlist-container .e-calculated-field {
|
|
4488
4576
|
color: #f8f9fa;
|
|
4489
4577
|
font-size: 14px;
|
|
@@ -4569,7 +4657,7 @@
|
|
|
4569
4657
|
width: 100%;
|
|
4570
4658
|
}
|
|
4571
4659
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-field-table .e-field-list-tree-outer-div {
|
|
4572
|
-
height:
|
|
4660
|
+
height: 180px;
|
|
4573
4661
|
}
|
|
4574
4662
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-center-div {
|
|
4575
4663
|
display: none;
|
|
@@ -4631,6 +4719,11 @@
|
|
|
4631
4719
|
background-color: transparent;
|
|
4632
4720
|
color: #333;
|
|
4633
4721
|
}
|
|
4722
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4723
|
+
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4724
|
+
height: 210px;
|
|
4725
|
+
overflow: auto;
|
|
4726
|
+
}
|
|
4634
4727
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4635
4728
|
display: -ms-flexbox;
|
|
4636
4729
|
display: flex;
|
|
@@ -5546,4 +5639,41 @@
|
|
|
5546
5639
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-pivot-button .e-edit {
|
|
5547
5640
|
padding-left: 0;
|
|
5548
5641
|
padding-right: 8px;
|
|
5642
|
+
}
|
|
5643
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5644
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5645
|
+
max-height: 750px;
|
|
5646
|
+
}
|
|
5647
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container,
|
|
5648
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container {
|
|
5649
|
+
max-height: 800px;
|
|
5650
|
+
}
|
|
5651
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table,
|
|
5652
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
5653
|
+
height: 270px;
|
|
5654
|
+
}
|
|
5655
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5656
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5657
|
+
max-height: 600px !important;
|
|
5658
|
+
min-height: 578px !important;
|
|
5659
|
+
}
|
|
5660
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5661
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
5662
|
+
height: 387px;
|
|
5663
|
+
}
|
|
5664
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table,
|
|
5665
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
5666
|
+
height: 410px !important;
|
|
5667
|
+
}
|
|
5668
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table,
|
|
5669
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
5670
|
+
height: 410px;
|
|
5671
|
+
}
|
|
5672
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5673
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5674
|
+
height: 161px !important;
|
|
5675
|
+
}
|
|
5676
|
+
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5677
|
+
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5678
|
+
max-height: 177px;
|
|
5549
5679
|
}
|