@syncfusion/ej2-pivotview 20.1.57 → 20.2.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -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 +462 -193
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +466 -196
- 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 +126 -78
- 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/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 +5 -0
- 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/excel-export.js +2 -1
- 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 +9 -3
- 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 +18 -3
- 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 +189 -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/fabric-dark.css
CHANGED
|
@@ -836,18 +836,6 @@
|
|
|
836
836
|
margin-top: 5px;
|
|
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: -21px 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 {
|
|
@@ -1208,7 +1193,7 @@
|
|
|
1208
1193
|
border: 1px solid #414040;
|
|
1209
1194
|
border-radius: 0;
|
|
1210
1195
|
box-shadow: none;
|
|
1211
|
-
color: #dadada;
|
|
1196
|
+
color: #dadada !important;
|
|
1212
1197
|
cursor: default;
|
|
1213
1198
|
display: -ms-flexbox;
|
|
1214
1199
|
display: flex;
|
|
@@ -1455,8 +1440,9 @@
|
|
|
1455
1440
|
color: #dadada !important;
|
|
1456
1441
|
font-size: 12px;
|
|
1457
1442
|
height: 18px;
|
|
1458
|
-
margin-left: 4px;
|
|
1443
|
+
margin-left: 4px !important;
|
|
1459
1444
|
width: 18px;
|
|
1445
|
+
padding-top: 2px;
|
|
1460
1446
|
}
|
|
1461
1447
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1462
1448
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1479,6 +1465,7 @@
|
|
|
1479
1465
|
width: 18px;
|
|
1480
1466
|
}
|
|
1481
1467
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1468
|
+
margin-top: 3px;
|
|
1482
1469
|
transform: rotateX(180deg);
|
|
1483
1470
|
}
|
|
1484
1471
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1651,6 +1638,12 @@
|
|
|
1651
1638
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1652
1639
|
line-height: 1em !important;
|
|
1653
1640
|
}
|
|
1641
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1642
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1643
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1644
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1645
|
+
margin-top: 2px !important;
|
|
1646
|
+
}
|
|
1654
1647
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1655
1648
|
max-width: 155px;
|
|
1656
1649
|
}
|
|
@@ -1661,6 +1654,9 @@
|
|
|
1661
1654
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1662
1655
|
max-width: 200px;
|
|
1663
1656
|
}
|
|
1657
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1658
|
+
width: 100% !important;
|
|
1659
|
+
}
|
|
1664
1660
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1665
1661
|
width: 0 !important;
|
|
1666
1662
|
}
|
|
@@ -1820,6 +1816,7 @@
|
|
|
1820
1816
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1821
1817
|
font-size: 14px !important;
|
|
1822
1818
|
height: 20px;
|
|
1819
|
+
margin-top: 1px;
|
|
1823
1820
|
width: 20px;
|
|
1824
1821
|
}
|
|
1825
1822
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1903,7 +1900,7 @@
|
|
|
1903
1900
|
}
|
|
1904
1901
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1905
1902
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1906
|
-
margin: -
|
|
1903
|
+
margin: -18px -5px !important;
|
|
1907
1904
|
}
|
|
1908
1905
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1909
1906
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2261,6 +2258,10 @@
|
|
|
2261
2258
|
.e-pivotfieldlist-container .e-sort-descend::before {
|
|
2262
2259
|
content: "\e665" !important;
|
|
2263
2260
|
}
|
|
2261
|
+
.e-pivotfieldlist-wrapper .e-field-list-search-icon::before,
|
|
2262
|
+
.e-pivotfieldlist-container .e-field-list-search-icon::before {
|
|
2263
|
+
content: "\e275" !important;
|
|
2264
|
+
}
|
|
2264
2265
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before,
|
|
2265
2266
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
2266
2267
|
content: "\e7a3";
|
|
@@ -2296,7 +2297,6 @@
|
|
|
2296
2297
|
|
|
2297
2298
|
.e-pivot-formatting-dialog {
|
|
2298
2299
|
max-height: 480px !important;
|
|
2299
|
-
min-width: 645px !important;
|
|
2300
2300
|
width: 645px !important;
|
|
2301
2301
|
}
|
|
2302
2302
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2311,6 +2311,7 @@
|
|
|
2311
2311
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2312
2312
|
padding-bottom: 14px;
|
|
2313
2313
|
padding-right: 18px;
|
|
2314
|
+
white-space: nowrap;
|
|
2314
2315
|
}
|
|
2315
2316
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2316
2317
|
vertical-align: bottom;
|
|
@@ -2327,6 +2328,7 @@
|
|
|
2327
2328
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
2328
2329
|
padding-left: 14px;
|
|
2329
2330
|
padding-top: 14px;
|
|
2331
|
+
width: 579px;
|
|
2330
2332
|
}
|
|
2331
2333
|
.e-pivot-formatting-dialog .e-format-outer-div {
|
|
2332
2334
|
background-color: #282727;
|
|
@@ -2402,6 +2404,9 @@
|
|
|
2402
2404
|
min-width: 320px !important;
|
|
2403
2405
|
width: 100% !important;
|
|
2404
2406
|
}
|
|
2407
|
+
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2408
|
+
width: 100% !important;
|
|
2409
|
+
}
|
|
2405
2410
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2406
2411
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2407
2412
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2446,7 +2451,6 @@
|
|
|
2446
2451
|
|
|
2447
2452
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2448
2453
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2449
|
-
min-width: 706px !important;
|
|
2450
2454
|
width: 706px !important;
|
|
2451
2455
|
}
|
|
2452
2456
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2464,6 +2468,7 @@
|
|
|
2464
2468
|
.e-bigger .e-pivot-formatting-dialog .e-format-inner-div {
|
|
2465
2469
|
padding-left: 16px;
|
|
2466
2470
|
padding-top: 16px;
|
|
2471
|
+
width: 656px;
|
|
2467
2472
|
}
|
|
2468
2473
|
.e-bigger.e-pivot-formatting-dialog .e-format-outer-div,
|
|
2469
2474
|
.e-bigger .e-pivot-formatting-dialog .e-format-outer-div {
|
|
@@ -2837,8 +2842,8 @@
|
|
|
2837
2842
|
|
|
2838
2843
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2839
2844
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2840
|
-
max-height:
|
|
2841
|
-
min-width:
|
|
2845
|
+
max-height: 600px !important;
|
|
2846
|
+
min-width: 401px !important;
|
|
2842
2847
|
}
|
|
2843
2848
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2844
2849
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2879,8 +2884,8 @@
|
|
|
2879
2884
|
}
|
|
2880
2885
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2881
2886
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2882
|
-
max-height:
|
|
2883
|
-
min-width: 580px;
|
|
2887
|
+
max-height: 750px !important;
|
|
2888
|
+
min-width: 580px !important;
|
|
2884
2889
|
}
|
|
2885
2890
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2886
2891
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2956,7 +2961,7 @@
|
|
|
2956
2961
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
2957
2962
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
2958
2963
|
margin-left: -35px;
|
|
2959
|
-
overflow:
|
|
2964
|
+
overflow: auto !important;
|
|
2960
2965
|
}
|
|
2961
2966
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
2962
2967
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -2993,6 +2998,9 @@
|
|
|
2993
2998
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog.e-rtl .e-member-editor-outer-container ul {
|
|
2994
2999
|
margin-right: 0;
|
|
2995
3000
|
}
|
|
3001
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
3002
|
+
margin-left: 20px;
|
|
3003
|
+
}
|
|
2996
3004
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-clear-filter-button {
|
|
2997
3005
|
float: left;
|
|
2998
3006
|
margin: 0;
|
|
@@ -3087,6 +3095,10 @@
|
|
|
3087
3095
|
opacity: 100%;
|
|
3088
3096
|
padding: 15px 10px 8px 20px;
|
|
3089
3097
|
}
|
|
3098
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-toolbar .e-toolbar-items {
|
|
3099
|
+
margin-left: 0;
|
|
3100
|
+
margin-right: 20px;
|
|
3101
|
+
}
|
|
3090
3102
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container .e-editor-search-container .e-filter-sort {
|
|
3091
3103
|
margin-left: 0;
|
|
3092
3104
|
margin-right: 10px;
|
|
@@ -3111,6 +3123,10 @@
|
|
|
3111
3123
|
margin-left: 0;
|
|
3112
3124
|
margin-right: 10px;
|
|
3113
3125
|
}
|
|
3126
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul {
|
|
3127
|
+
min-height: 170px;
|
|
3128
|
+
overflow: auto;
|
|
3129
|
+
}
|
|
3114
3130
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-measure-icon,
|
|
3115
3131
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-dimension-icon,
|
|
3116
3132
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-attributeCDB-icon,
|
|
@@ -3226,7 +3242,7 @@
|
|
|
3226
3242
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content,
|
|
3227
3243
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3228
3244
|
overflow: hidden;
|
|
3229
|
-
padding: 0;
|
|
3245
|
+
padding: 0 !important;
|
|
3230
3246
|
}
|
|
3231
3247
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3232
3248
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3485,7 +3501,7 @@
|
|
|
3485
3501
|
}
|
|
3486
3502
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter,
|
|
3487
3503
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter {
|
|
3488
|
-
min-width: 350px;
|
|
3504
|
+
min-width: 350px !important;
|
|
3489
3505
|
}
|
|
3490
3506
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
3491
3507
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
@@ -3600,6 +3616,25 @@
|
|
|
3600
3616
|
min-height: 36px;
|
|
3601
3617
|
min-width: 36px;
|
|
3602
3618
|
}
|
|
3619
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog,
|
|
3620
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
3621
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
3622
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
3623
|
+
max-height: 400px !important;
|
|
3624
|
+
min-width: 370px !important;
|
|
3625
|
+
}
|
|
3626
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3627
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
3628
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3629
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
3630
|
+
min-height: 113px !important;
|
|
3631
|
+
}
|
|
3632
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3633
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3634
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3635
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul {
|
|
3636
|
+
height: auto;
|
|
3637
|
+
}
|
|
3603
3638
|
|
|
3604
3639
|
.e-pivotfieldlist-container {
|
|
3605
3640
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
@@ -3820,6 +3855,9 @@
|
|
|
3820
3855
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-list-text {
|
|
3821
3856
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
3822
3857
|
}
|
|
3858
|
+
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li.e-disable {
|
|
3859
|
+
display: none !important;
|
|
3860
|
+
}
|
|
3823
3861
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree ul li {
|
|
3824
3862
|
margin-left: 0;
|
|
3825
3863
|
margin-right: 0;
|
|
@@ -4265,6 +4303,59 @@
|
|
|
4265
4303
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table.e-olap-axis-table {
|
|
4266
4304
|
width: 60%;
|
|
4267
4305
|
}
|
|
4306
|
+
.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
4307
|
+
max-height: 750px;
|
|
4308
|
+
}
|
|
4309
|
+
.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
4310
|
+
height: 261px;
|
|
4311
|
+
}
|
|
4312
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4313
|
+
min-height: 540px;
|
|
4314
|
+
}
|
|
4315
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4316
|
+
height: 369px;
|
|
4317
|
+
}
|
|
4318
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4319
|
+
height: 392px !important;
|
|
4320
|
+
}
|
|
4321
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
4322
|
+
height: 392px;
|
|
4323
|
+
}
|
|
4324
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
4325
|
+
height: 162px !important;
|
|
4326
|
+
}
|
|
4327
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt {
|
|
4328
|
+
color: #bdbdbd;
|
|
4329
|
+
padding: 25px 12px;
|
|
4330
|
+
text-align: center;
|
|
4331
|
+
width: 100%;
|
|
4332
|
+
}
|
|
4333
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt.e-disable {
|
|
4334
|
+
display: none;
|
|
4335
|
+
}
|
|
4336
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search {
|
|
4337
|
+
display: -ms-flexbox;
|
|
4338
|
+
display: flex;
|
|
4339
|
+
padding: 10px 20px;
|
|
4340
|
+
}
|
|
4341
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4342
|
+
float: right;
|
|
4343
|
+
font-size: 14px;
|
|
4344
|
+
}
|
|
4345
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group .e-input-group-icon,
|
|
4346
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
4347
|
+
border-width: 0 !important;
|
|
4348
|
+
cursor: text !important;
|
|
4349
|
+
}
|
|
4350
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group-icon:hover {
|
|
4351
|
+
background-color: transparent !important;
|
|
4352
|
+
border: transparent !important;
|
|
4353
|
+
color: currentColor !important;
|
|
4354
|
+
}
|
|
4355
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-tree-outer-div .e-disable,
|
|
4356
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-disable {
|
|
4357
|
+
display: none !important;
|
|
4358
|
+
}
|
|
4268
4359
|
.e-pivotfieldlist-container .e-calculated-field {
|
|
4269
4360
|
color: #dadada;
|
|
4270
4361
|
font-size: 13px;
|
|
@@ -4349,7 +4440,7 @@
|
|
|
4349
4440
|
width: 100%;
|
|
4350
4441
|
}
|
|
4351
4442
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-field-table .e-field-list-tree-outer-div {
|
|
4352
|
-
height:
|
|
4443
|
+
height: 180px;
|
|
4353
4444
|
}
|
|
4354
4445
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-center-div {
|
|
4355
4446
|
display: none;
|
|
@@ -4411,6 +4502,11 @@
|
|
|
4411
4502
|
background-color: transparent;
|
|
4412
4503
|
color: #dadada;
|
|
4413
4504
|
}
|
|
4505
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4506
|
+
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4507
|
+
height: 210px;
|
|
4508
|
+
overflow: auto;
|
|
4509
|
+
}
|
|
4414
4510
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4415
4511
|
display: -ms-flexbox;
|
|
4416
4512
|
display: flex;
|
|
@@ -5301,4 +5397,41 @@
|
|
|
5301
5397
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-pivot-button .e-edit {
|
|
5302
5398
|
padding-left: 0;
|
|
5303
5399
|
padding-right: 4px;
|
|
5400
|
+
}
|
|
5401
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5402
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5403
|
+
max-height: 750px;
|
|
5404
|
+
}
|
|
5405
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container,
|
|
5406
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container {
|
|
5407
|
+
max-height: 800px;
|
|
5408
|
+
}
|
|
5409
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table,
|
|
5410
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
5411
|
+
height: 270px;
|
|
5412
|
+
}
|
|
5413
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5414
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5415
|
+
max-height: 600px !important;
|
|
5416
|
+
min-height: 570px !important;
|
|
5417
|
+
}
|
|
5418
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5419
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
5420
|
+
height: 387px;
|
|
5421
|
+
}
|
|
5422
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table,
|
|
5423
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
5424
|
+
height: 400px !important;
|
|
5425
|
+
}
|
|
5426
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table,
|
|
5427
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
5428
|
+
height: 404px;
|
|
5429
|
+
}
|
|
5430
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5431
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5432
|
+
height: 165px !important;
|
|
5433
|
+
}
|
|
5434
|
+
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5435
|
+
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5436
|
+
max-height: 164px;
|
|
5304
5437
|
}
|