@syncfusion/ej2-pivotview 20.1.61 → 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 +12 -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 +281 -99
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +283 -100
- 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 +2 -2
- package/src/base/olap/engine.js +12 -0
- 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/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/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/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/renderer/render.js +3 -0
- 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.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 {
|
|
@@ -1206,7 +1191,7 @@
|
|
|
1206
1191
|
border: 1px solid #dadada;
|
|
1207
1192
|
border-radius: 0;
|
|
1208
1193
|
box-shadow: none;
|
|
1209
|
-
color: #333;
|
|
1194
|
+
color: #333 !important;
|
|
1210
1195
|
cursor: default;
|
|
1211
1196
|
display: -ms-flexbox;
|
|
1212
1197
|
display: flex;
|
|
@@ -1453,8 +1438,9 @@
|
|
|
1453
1438
|
color: #666 !important;
|
|
1454
1439
|
font-size: 12px;
|
|
1455
1440
|
height: 18px;
|
|
1456
|
-
margin-left: 4px;
|
|
1441
|
+
margin-left: 4px !important;
|
|
1457
1442
|
width: 18px;
|
|
1443
|
+
padding-top: 2px;
|
|
1458
1444
|
}
|
|
1459
1445
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1460
1446
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1477,6 +1463,7 @@
|
|
|
1477
1463
|
width: 18px;
|
|
1478
1464
|
}
|
|
1479
1465
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1466
|
+
margin-top: 3px;
|
|
1480
1467
|
transform: rotateX(180deg);
|
|
1481
1468
|
}
|
|
1482
1469
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1649,6 +1636,12 @@
|
|
|
1649
1636
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1650
1637
|
line-height: 1em !important;
|
|
1651
1638
|
}
|
|
1639
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1640
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1641
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1642
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1643
|
+
margin-top: 2px !important;
|
|
1644
|
+
}
|
|
1652
1645
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1653
1646
|
max-width: 155px;
|
|
1654
1647
|
}
|
|
@@ -1659,6 +1652,9 @@
|
|
|
1659
1652
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1660
1653
|
max-width: 200px;
|
|
1661
1654
|
}
|
|
1655
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1656
|
+
width: 100% !important;
|
|
1657
|
+
}
|
|
1662
1658
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1663
1659
|
width: 0 !important;
|
|
1664
1660
|
}
|
|
@@ -1818,6 +1814,7 @@
|
|
|
1818
1814
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1819
1815
|
font-size: 14px !important;
|
|
1820
1816
|
height: 20px;
|
|
1817
|
+
margin-top: 1px;
|
|
1821
1818
|
width: 20px;
|
|
1822
1819
|
}
|
|
1823
1820
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1901,7 +1898,7 @@
|
|
|
1901
1898
|
}
|
|
1902
1899
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1903
1900
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1904
|
-
margin: -
|
|
1901
|
+
margin: -18px -5px !important;
|
|
1905
1902
|
}
|
|
1906
1903
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1907
1904
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2258,6 +2255,10 @@
|
|
|
2258
2255
|
.e-pivotfieldlist-container .e-sort-descend::before {
|
|
2259
2256
|
content: "\e665" !important;
|
|
2260
2257
|
}
|
|
2258
|
+
.e-pivotfieldlist-wrapper .e-field-list-search-icon::before,
|
|
2259
|
+
.e-pivotfieldlist-container .e-field-list-search-icon::before {
|
|
2260
|
+
content: "\e60e" !important;
|
|
2261
|
+
}
|
|
2261
2262
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before,
|
|
2262
2263
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
2263
2264
|
content: "\e7a3";
|
|
@@ -2293,7 +2294,6 @@
|
|
|
2293
2294
|
|
|
2294
2295
|
.e-pivot-formatting-dialog {
|
|
2295
2296
|
max-height: 480px !important;
|
|
2296
|
-
min-width: 645px !important;
|
|
2297
2297
|
width: 645px !important;
|
|
2298
2298
|
}
|
|
2299
2299
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2308,6 +2308,7 @@
|
|
|
2308
2308
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2309
2309
|
padding-bottom: 14px;
|
|
2310
2310
|
padding-right: 18px;
|
|
2311
|
+
white-space: nowrap;
|
|
2311
2312
|
}
|
|
2312
2313
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2313
2314
|
vertical-align: bottom;
|
|
@@ -2324,6 +2325,7 @@
|
|
|
2324
2325
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
2325
2326
|
padding-left: 14px;
|
|
2326
2327
|
padding-top: 14px;
|
|
2328
|
+
width: 579px;
|
|
2327
2329
|
}
|
|
2328
2330
|
.e-pivot-formatting-dialog .e-format-outer-div {
|
|
2329
2331
|
background-color: #fff;
|
|
@@ -2399,6 +2401,9 @@
|
|
|
2399
2401
|
min-width: 320px !important;
|
|
2400
2402
|
width: 100% !important;
|
|
2401
2403
|
}
|
|
2404
|
+
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2405
|
+
width: 100% !important;
|
|
2406
|
+
}
|
|
2402
2407
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2403
2408
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2404
2409
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2443,7 +2448,6 @@
|
|
|
2443
2448
|
|
|
2444
2449
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2445
2450
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2446
|
-
min-width: 706px !important;
|
|
2447
2451
|
width: 706px !important;
|
|
2448
2452
|
}
|
|
2449
2453
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2461,6 +2465,7 @@
|
|
|
2461
2465
|
.e-bigger .e-pivot-formatting-dialog .e-format-inner-div {
|
|
2462
2466
|
padding-left: 16px;
|
|
2463
2467
|
padding-top: 16px;
|
|
2468
|
+
width: 656px;
|
|
2464
2469
|
}
|
|
2465
2470
|
.e-bigger.e-pivot-formatting-dialog .e-format-outer-div,
|
|
2466
2471
|
.e-bigger .e-pivot-formatting-dialog .e-format-outer-div {
|
|
@@ -2834,8 +2839,8 @@
|
|
|
2834
2839
|
|
|
2835
2840
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2836
2841
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2837
|
-
max-height:
|
|
2838
|
-
min-width:
|
|
2842
|
+
max-height: 600px !important;
|
|
2843
|
+
min-width: 401px !important;
|
|
2839
2844
|
}
|
|
2840
2845
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2841
2846
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2876,8 +2881,8 @@
|
|
|
2876
2881
|
}
|
|
2877
2882
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2878
2883
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2879
|
-
max-height:
|
|
2880
|
-
min-width: 580px;
|
|
2884
|
+
max-height: 750px !important;
|
|
2885
|
+
min-width: 580px !important;
|
|
2881
2886
|
}
|
|
2882
2887
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2883
2888
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2953,7 +2958,7 @@
|
|
|
2953
2958
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
2954
2959
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
2955
2960
|
margin-left: -35px;
|
|
2956
|
-
overflow:
|
|
2961
|
+
overflow: auto !important;
|
|
2957
2962
|
}
|
|
2958
2963
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
2959
2964
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -2990,6 +2995,9 @@
|
|
|
2990
2995
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog.e-rtl .e-member-editor-outer-container ul {
|
|
2991
2996
|
margin-right: 0;
|
|
2992
2997
|
}
|
|
2998
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
2999
|
+
margin-left: 20px;
|
|
3000
|
+
}
|
|
2993
3001
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-clear-filter-button {
|
|
2994
3002
|
float: left;
|
|
2995
3003
|
margin: 0;
|
|
@@ -3084,6 +3092,10 @@
|
|
|
3084
3092
|
opacity: 100%;
|
|
3085
3093
|
padding: 15px 10px 8px 20px;
|
|
3086
3094
|
}
|
|
3095
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-toolbar .e-toolbar-items {
|
|
3096
|
+
margin-left: 0;
|
|
3097
|
+
margin-right: 20px;
|
|
3098
|
+
}
|
|
3087
3099
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container .e-editor-search-container .e-filter-sort {
|
|
3088
3100
|
margin-left: 0;
|
|
3089
3101
|
margin-right: 10px;
|
|
@@ -3108,6 +3120,10 @@
|
|
|
3108
3120
|
margin-left: 0;
|
|
3109
3121
|
margin-right: 10px;
|
|
3110
3122
|
}
|
|
3123
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul {
|
|
3124
|
+
min-height: 170px;
|
|
3125
|
+
overflow: auto;
|
|
3126
|
+
}
|
|
3111
3127
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-measure-icon,
|
|
3112
3128
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-dimension-icon,
|
|
3113
3129
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-attributeCDB-icon,
|
|
@@ -3223,7 +3239,7 @@
|
|
|
3223
3239
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content,
|
|
3224
3240
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3225
3241
|
overflow: hidden;
|
|
3226
|
-
padding: 0;
|
|
3242
|
+
padding: 0 !important;
|
|
3227
3243
|
}
|
|
3228
3244
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3229
3245
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3482,7 +3498,7 @@
|
|
|
3482
3498
|
}
|
|
3483
3499
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter,
|
|
3484
3500
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter {
|
|
3485
|
-
min-width: 350px;
|
|
3501
|
+
min-width: 350px !important;
|
|
3486
3502
|
}
|
|
3487
3503
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
3488
3504
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
@@ -3597,6 +3613,25 @@
|
|
|
3597
3613
|
min-height: 36px;
|
|
3598
3614
|
min-width: 36px;
|
|
3599
3615
|
}
|
|
3616
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog,
|
|
3617
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
3618
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
3619
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
3620
|
+
max-height: 400px !important;
|
|
3621
|
+
min-width: 370px !important;
|
|
3622
|
+
}
|
|
3623
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3624
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
3625
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3626
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
3627
|
+
min-height: 113px !important;
|
|
3628
|
+
}
|
|
3629
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3630
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3631
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3632
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul {
|
|
3633
|
+
height: auto;
|
|
3634
|
+
}
|
|
3600
3635
|
|
|
3601
3636
|
.e-pivotfieldlist-container {
|
|
3602
3637
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
@@ -3817,6 +3852,9 @@
|
|
|
3817
3852
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-list-text {
|
|
3818
3853
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
3819
3854
|
}
|
|
3855
|
+
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li.e-disable {
|
|
3856
|
+
display: none !important;
|
|
3857
|
+
}
|
|
3820
3858
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree ul li {
|
|
3821
3859
|
margin-left: 0;
|
|
3822
3860
|
margin-right: 0;
|
|
@@ -4262,6 +4300,59 @@
|
|
|
4262
4300
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table.e-olap-axis-table {
|
|
4263
4301
|
width: 60%;
|
|
4264
4302
|
}
|
|
4303
|
+
.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
4304
|
+
max-height: 750px;
|
|
4305
|
+
}
|
|
4306
|
+
.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
4307
|
+
height: 261px;
|
|
4308
|
+
}
|
|
4309
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4310
|
+
min-height: 540px;
|
|
4311
|
+
}
|
|
4312
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4313
|
+
height: 369px;
|
|
4314
|
+
}
|
|
4315
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4316
|
+
height: 392px !important;
|
|
4317
|
+
}
|
|
4318
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
4319
|
+
height: 392px;
|
|
4320
|
+
}
|
|
4321
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
4322
|
+
height: 162px !important;
|
|
4323
|
+
}
|
|
4324
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt {
|
|
4325
|
+
color: #bdbdbd;
|
|
4326
|
+
padding: 25px 12px;
|
|
4327
|
+
text-align: center;
|
|
4328
|
+
width: 100%;
|
|
4329
|
+
}
|
|
4330
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt.e-disable {
|
|
4331
|
+
display: none;
|
|
4332
|
+
}
|
|
4333
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search {
|
|
4334
|
+
display: -ms-flexbox;
|
|
4335
|
+
display: flex;
|
|
4336
|
+
padding: 10px 20px;
|
|
4337
|
+
}
|
|
4338
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4339
|
+
float: right;
|
|
4340
|
+
font-size: 14px;
|
|
4341
|
+
}
|
|
4342
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group .e-input-group-icon,
|
|
4343
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
4344
|
+
border-width: 0 !important;
|
|
4345
|
+
cursor: text !important;
|
|
4346
|
+
}
|
|
4347
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group-icon:hover {
|
|
4348
|
+
background-color: transparent !important;
|
|
4349
|
+
border: transparent !important;
|
|
4350
|
+
color: currentColor !important;
|
|
4351
|
+
}
|
|
4352
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-tree-outer-div .e-disable,
|
|
4353
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-disable {
|
|
4354
|
+
display: none !important;
|
|
4355
|
+
}
|
|
4265
4356
|
.e-pivotfieldlist-container .e-calculated-field {
|
|
4266
4357
|
color: #333;
|
|
4267
4358
|
font-size: 13px;
|
|
@@ -4346,7 +4437,7 @@
|
|
|
4346
4437
|
width: 100%;
|
|
4347
4438
|
}
|
|
4348
4439
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-field-table .e-field-list-tree-outer-div {
|
|
4349
|
-
height:
|
|
4440
|
+
height: 180px;
|
|
4350
4441
|
}
|
|
4351
4442
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-center-div {
|
|
4352
4443
|
display: none;
|
|
@@ -4408,6 +4499,11 @@
|
|
|
4408
4499
|
background-color: transparent;
|
|
4409
4500
|
color: #333;
|
|
4410
4501
|
}
|
|
4502
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4503
|
+
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4504
|
+
height: 210px;
|
|
4505
|
+
overflow: auto;
|
|
4506
|
+
}
|
|
4411
4507
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4412
4508
|
display: -ms-flexbox;
|
|
4413
4509
|
display: flex;
|
|
@@ -5298,4 +5394,41 @@
|
|
|
5298
5394
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-pivot-button .e-edit {
|
|
5299
5395
|
padding-left: 0;
|
|
5300
5396
|
padding-right: 4px;
|
|
5397
|
+
}
|
|
5398
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5399
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5400
|
+
max-height: 750px;
|
|
5401
|
+
}
|
|
5402
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container,
|
|
5403
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container {
|
|
5404
|
+
max-height: 800px;
|
|
5405
|
+
}
|
|
5406
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table,
|
|
5407
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
5408
|
+
height: 270px;
|
|
5409
|
+
}
|
|
5410
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5411
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5412
|
+
max-height: 600px !important;
|
|
5413
|
+
min-height: 575px !important;
|
|
5414
|
+
}
|
|
5415
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5416
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
5417
|
+
height: 387px;
|
|
5418
|
+
}
|
|
5419
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table,
|
|
5420
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
5421
|
+
height: 400px !important;
|
|
5422
|
+
}
|
|
5423
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table,
|
|
5424
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
5425
|
+
height: 404px;
|
|
5426
|
+
}
|
|
5427
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5428
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5429
|
+
height: 165px !important;
|
|
5430
|
+
}
|
|
5431
|
+
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5432
|
+
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5433
|
+
max-height: 166px;
|
|
5301
5434
|
}
|