@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/tailwind-dark.css
CHANGED
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
}
|
|
261
261
|
.e-pivotview .e-member-editor-dialog .e-member-editor-container-outer-div {
|
|
262
262
|
display: inline-block;
|
|
263
|
-
height:
|
|
263
|
+
height: 214px;
|
|
264
264
|
max-width: 400px;
|
|
265
265
|
overflow: auto;
|
|
266
266
|
width: 100%;
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
padding-top: 12px;
|
|
304
304
|
}
|
|
305
305
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
306
|
-
height:
|
|
306
|
+
height: 182px;
|
|
307
307
|
}
|
|
308
308
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-editor-label-container {
|
|
309
309
|
opacity: 56%;
|
|
@@ -707,7 +707,7 @@
|
|
|
707
707
|
}
|
|
708
708
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
709
709
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
710
|
-
height:
|
|
710
|
+
height: 178px;
|
|
711
711
|
}
|
|
712
712
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
713
713
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-descend-icon,
|
|
@@ -733,7 +733,7 @@
|
|
|
733
733
|
}
|
|
734
734
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
735
735
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
736
|
-
height:
|
|
736
|
+
height: 132px !important;
|
|
737
737
|
}
|
|
738
738
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-label-filter,
|
|
739
739
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-value-filter,
|
|
@@ -862,19 +862,6 @@
|
|
|
862
862
|
margin-top: 8px;
|
|
863
863
|
}
|
|
864
864
|
|
|
865
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
866
|
-
height: 62px;
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
870
|
-
height: 52px;
|
|
871
|
-
padding-left: 10px;
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
875
|
-
margin-left: 24px !important;
|
|
876
|
-
}
|
|
877
|
-
|
|
878
865
|
/*! PivotView theme */
|
|
879
866
|
.e-pivotview .e-nextspan {
|
|
880
867
|
display: inline-block;
|
|
@@ -934,6 +921,8 @@
|
|
|
934
921
|
}
|
|
935
922
|
.e-pivotview .e-member-editor-dialog,
|
|
936
923
|
.e-pivotview .e-olap-editor-dialog {
|
|
924
|
+
min-height: 385px !important;
|
|
925
|
+
min-width: 350px !important;
|
|
937
926
|
visibility: hidden;
|
|
938
927
|
}
|
|
939
928
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -1010,9 +999,8 @@
|
|
|
1010
999
|
margin: -13px -5px !important;
|
|
1011
1000
|
}
|
|
1012
1001
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1013
|
-
|
|
1014
|
-
padding-
|
|
1015
|
-
padding-top: 0px !important;
|
|
1002
|
+
font-size: 12px !important;
|
|
1003
|
+
padding-top: 14px !important;
|
|
1016
1004
|
}
|
|
1017
1005
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1018
1006
|
margin: -10px 0 !important;
|
|
@@ -1051,12 +1039,7 @@
|
|
|
1051
1039
|
z-index: 1 !important;
|
|
1052
1040
|
}
|
|
1053
1041
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1054
|
-
visibility: hidden;
|
|
1055
|
-
}
|
|
1056
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1057
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1058
|
-
text-overflow: ellipsis;
|
|
1059
|
-
white-space: nowrap;
|
|
1042
|
+
visibility: hidden !important;
|
|
1060
1043
|
}
|
|
1061
1044
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1062
1045
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1254,7 +1237,7 @@
|
|
|
1254
1237
|
border: 1px solid #4b5563;
|
|
1255
1238
|
border-radius: 0;
|
|
1256
1239
|
box-shadow: none;
|
|
1257
|
-
color: #d1d5db;
|
|
1240
|
+
color: #d1d5db !important;
|
|
1258
1241
|
cursor: default;
|
|
1259
1242
|
display: -ms-flexbox;
|
|
1260
1243
|
display: flex;
|
|
@@ -1501,8 +1484,9 @@
|
|
|
1501
1484
|
color: #d1d5db !important;
|
|
1502
1485
|
font-size: 12px;
|
|
1503
1486
|
height: 18px;
|
|
1504
|
-
margin-left: 4px;
|
|
1487
|
+
margin-left: 4px !important;
|
|
1505
1488
|
width: 18px;
|
|
1489
|
+
padding-top: 2px;
|
|
1506
1490
|
}
|
|
1507
1491
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1508
1492
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1525,6 +1509,7 @@
|
|
|
1525
1509
|
width: 18px;
|
|
1526
1510
|
}
|
|
1527
1511
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1512
|
+
margin-top: 3px;
|
|
1528
1513
|
transform: rotateX(180deg);
|
|
1529
1514
|
}
|
|
1530
1515
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1596,7 +1581,7 @@
|
|
|
1596
1581
|
.e-pivotview th .e-collapse {
|
|
1597
1582
|
font-size: 10px !important;
|
|
1598
1583
|
margin-left: 0px;
|
|
1599
|
-
margin-top:
|
|
1584
|
+
margin-top: 0;
|
|
1600
1585
|
}
|
|
1601
1586
|
.e-pivotview .e-expand::before {
|
|
1602
1587
|
font-size: 18px;
|
|
@@ -1699,6 +1684,12 @@
|
|
|
1699
1684
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1700
1685
|
line-height: 1em !important;
|
|
1701
1686
|
}
|
|
1687
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1688
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1689
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1690
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1691
|
+
margin-top: 2px !important;
|
|
1692
|
+
}
|
|
1702
1693
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1703
1694
|
max-width: 155px;
|
|
1704
1695
|
}
|
|
@@ -1709,6 +1700,9 @@
|
|
|
1709
1700
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1710
1701
|
max-width: 200px;
|
|
1711
1702
|
}
|
|
1703
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1704
|
+
width: 100% !important;
|
|
1705
|
+
}
|
|
1712
1706
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1713
1707
|
width: 0 !important;
|
|
1714
1708
|
}
|
|
@@ -1826,7 +1820,7 @@
|
|
|
1826
1820
|
.e-bigger .e-pivotview th .e-collapse,
|
|
1827
1821
|
.e-bigger.e-pivotview th .e-expand,
|
|
1828
1822
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1829
|
-
margin-top:
|
|
1823
|
+
margin-top: 0;
|
|
1830
1824
|
}
|
|
1831
1825
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1832
1826
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
@@ -1870,6 +1864,7 @@
|
|
|
1870
1864
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1871
1865
|
font-size: 14px !important;
|
|
1872
1866
|
height: 20px;
|
|
1867
|
+
margin-top: 1px;
|
|
1873
1868
|
width: 20px;
|
|
1874
1869
|
}
|
|
1875
1870
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1966,6 +1961,7 @@
|
|
|
1966
1961
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1967
1962
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1968
1963
|
margin: -13px -10px !important;
|
|
1964
|
+
font-size: 16px !important;
|
|
1969
1965
|
}
|
|
1970
1966
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1971
1967
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -1975,7 +1971,7 @@
|
|
|
1975
1971
|
}
|
|
1976
1972
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container,
|
|
1977
1973
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container {
|
|
1978
|
-
height:
|
|
1974
|
+
height: 178px;
|
|
1979
1975
|
}
|
|
1980
1976
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
1981
1977
|
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
@@ -2173,6 +2169,9 @@
|
|
|
2173
2169
|
.e-pivot-calc-dialog-div .e-sort-descend::before {
|
|
2174
2170
|
content: "\e7d8" !important;
|
|
2175
2171
|
}
|
|
2172
|
+
.e-pivot-calc-dialog-div .e-field-list-search-icon::before {
|
|
2173
|
+
content: "\e754" !important;
|
|
2174
|
+
}
|
|
2176
2175
|
|
|
2177
2176
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2178
2177
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
@@ -2365,8 +2364,7 @@
|
|
|
2365
2364
|
|
|
2366
2365
|
.e-pivot-formatting-dialog {
|
|
2367
2366
|
max-height: 480px !important;
|
|
2368
|
-
|
|
2369
|
-
width: 628px !important;
|
|
2367
|
+
width: 640px !important;
|
|
2370
2368
|
}
|
|
2371
2369
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2372
2370
|
padding-bottom: 4px;
|
|
@@ -2380,6 +2378,7 @@
|
|
|
2380
2378
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2381
2379
|
padding-bottom: 14px;
|
|
2382
2380
|
padding-right: 18px;
|
|
2381
|
+
white-space: nowrap;
|
|
2383
2382
|
}
|
|
2384
2383
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2385
2384
|
vertical-align: bottom;
|
|
@@ -2396,6 +2395,7 @@
|
|
|
2396
2395
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
2397
2396
|
padding-left: 14px;
|
|
2398
2397
|
padding-top: 14px;
|
|
2398
|
+
width: 579px;
|
|
2399
2399
|
}
|
|
2400
2400
|
.e-pivot-formatting-dialog .e-format-outer-div {
|
|
2401
2401
|
background-color: #1f2937;
|
|
@@ -2471,6 +2471,9 @@
|
|
|
2471
2471
|
min-width: 320px !important;
|
|
2472
2472
|
width: 100% !important;
|
|
2473
2473
|
}
|
|
2474
|
+
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2475
|
+
width: 100% !important;
|
|
2476
|
+
}
|
|
2474
2477
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2475
2478
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2476
2479
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2518,8 +2521,7 @@
|
|
|
2518
2521
|
|
|
2519
2522
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2520
2523
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2521
|
-
|
|
2522
|
-
width: 680px !important;
|
|
2524
|
+
width: 730px !important;
|
|
2523
2525
|
}
|
|
2524
2526
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2525
2527
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2536,6 +2538,7 @@
|
|
|
2536
2538
|
.e-bigger .e-pivot-formatting-dialog .e-format-inner-div {
|
|
2537
2539
|
padding-left: 16px;
|
|
2538
2540
|
padding-top: 16px;
|
|
2541
|
+
width: 656px;
|
|
2539
2542
|
}
|
|
2540
2543
|
.e-bigger.e-pivot-formatting-dialog .e-format-outer-div,
|
|
2541
2544
|
.e-bigger .e-pivot-formatting-dialog .e-format-outer-div {
|
|
@@ -2787,7 +2790,7 @@
|
|
|
2787
2790
|
display: flex;
|
|
2788
2791
|
}
|
|
2789
2792
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
2790
|
-
height:
|
|
2793
|
+
height: 430px;
|
|
2791
2794
|
width: 50%;
|
|
2792
2795
|
}
|
|
2793
2796
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer {
|
|
@@ -2797,7 +2800,7 @@
|
|
|
2797
2800
|
}
|
|
2798
2801
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-treeview-outer-div {
|
|
2799
2802
|
display: inline-block;
|
|
2800
|
-
height:
|
|
2803
|
+
height: 395px;
|
|
2801
2804
|
overflow: auto;
|
|
2802
2805
|
width: 310px;
|
|
2803
2806
|
}
|
|
@@ -2929,8 +2932,8 @@
|
|
|
2929
2932
|
|
|
2930
2933
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2931
2934
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2932
|
-
max-height:
|
|
2933
|
-
min-width:
|
|
2935
|
+
max-height: 600px !important;
|
|
2936
|
+
min-width: 401px !important;
|
|
2934
2937
|
}
|
|
2935
2938
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2936
2939
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2976,17 +2979,17 @@
|
|
|
2976
2979
|
}
|
|
2977
2980
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2978
2981
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2979
|
-
max-height:
|
|
2980
|
-
min-width: 580px;
|
|
2982
|
+
max-height: 750px !important;
|
|
2983
|
+
min-width: 580px !important;
|
|
2981
2984
|
}
|
|
2982
2985
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2983
2986
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
2984
|
-
height:
|
|
2987
|
+
height: 570px;
|
|
2985
2988
|
width: 283px;
|
|
2986
2989
|
}
|
|
2987
2990
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-treeview-outer-div,
|
|
2988
2991
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-treeview-outer-div {
|
|
2989
|
-
height:
|
|
2992
|
+
height: 530px;
|
|
2990
2993
|
width: 325px;
|
|
2991
2994
|
}
|
|
2992
2995
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-all-field-title,
|
|
@@ -3054,7 +3057,7 @@
|
|
|
3054
3057
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3055
3058
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3056
3059
|
margin-left: -22px;
|
|
3057
|
-
overflow:
|
|
3060
|
+
overflow: auto !important;
|
|
3058
3061
|
}
|
|
3059
3062
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3060
3063
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3091,6 +3094,9 @@
|
|
|
3091
3094
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog.e-rtl .e-member-editor-outer-container ul {
|
|
3092
3095
|
margin-right: 0;
|
|
3093
3096
|
}
|
|
3097
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
3098
|
+
margin-left: 20px;
|
|
3099
|
+
}
|
|
3094
3100
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-clear-filter-button {
|
|
3095
3101
|
float: left;
|
|
3096
3102
|
margin: 0;
|
|
@@ -3152,7 +3158,7 @@
|
|
|
3152
3158
|
padding-top: 12px;
|
|
3153
3159
|
}
|
|
3154
3160
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
3155
|
-
height:
|
|
3161
|
+
height: 165px;
|
|
3156
3162
|
}
|
|
3157
3163
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
3158
3164
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter {
|
|
@@ -3189,6 +3195,10 @@
|
|
|
3189
3195
|
opacity: 56%;
|
|
3190
3196
|
padding: 14px 10px 9px 20px;
|
|
3191
3197
|
}
|
|
3198
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-toolbar .e-toolbar-items {
|
|
3199
|
+
margin-left: 0;
|
|
3200
|
+
margin-right: 20px;
|
|
3201
|
+
}
|
|
3192
3202
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container .e-editor-search-container .e-filter-sort {
|
|
3193
3203
|
margin-left: 0;
|
|
3194
3204
|
margin-right: 10px;
|
|
@@ -3213,6 +3223,10 @@
|
|
|
3213
3223
|
margin-left: 0;
|
|
3214
3224
|
margin-right: 10px;
|
|
3215
3225
|
}
|
|
3226
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul {
|
|
3227
|
+
min-height: 170px;
|
|
3228
|
+
overflow: auto;
|
|
3229
|
+
}
|
|
3216
3230
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-measure-icon,
|
|
3217
3231
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-dimension-icon,
|
|
3218
3232
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-attributeCDB-icon,
|
|
@@ -3329,8 +3343,8 @@
|
|
|
3329
3343
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content,
|
|
3330
3344
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3331
3345
|
overflow: hidden;
|
|
3332
|
-
padding: 0;
|
|
3333
|
-
padding
|
|
3346
|
+
padding: 0 !important;
|
|
3347
|
+
padding: 12px 0 0 0 !important;
|
|
3334
3348
|
}
|
|
3335
3349
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3336
3350
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3494,7 +3508,7 @@
|
|
|
3494
3508
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3495
3509
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3496
3510
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
3497
|
-
height:
|
|
3511
|
+
height: 130px;
|
|
3498
3512
|
}
|
|
3499
3513
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-editor-search-container .e-sort-ascend-icon,
|
|
3500
3514
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-editor-search-container .e-sort-descend-icon,
|
|
@@ -3568,7 +3582,7 @@
|
|
|
3568
3582
|
}
|
|
3569
3583
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
3570
3584
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
3571
|
-
height:
|
|
3585
|
+
height: 110px !important;
|
|
3572
3586
|
}
|
|
3573
3587
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
3574
3588
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter,
|
|
@@ -3604,7 +3618,7 @@
|
|
|
3604
3618
|
}
|
|
3605
3619
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter,
|
|
3606
3620
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter {
|
|
3607
|
-
min-width: 350px;
|
|
3621
|
+
min-width: 350px !important;
|
|
3608
3622
|
}
|
|
3609
3623
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
3610
3624
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
@@ -3719,6 +3733,25 @@
|
|
|
3719
3733
|
min-height: 36px;
|
|
3720
3734
|
min-width: 36px;
|
|
3721
3735
|
}
|
|
3736
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog,
|
|
3737
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
3738
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
3739
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
3740
|
+
max-height: 400px !important;
|
|
3741
|
+
min-width: 370px !important;
|
|
3742
|
+
}
|
|
3743
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3744
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
3745
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3746
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
3747
|
+
min-height: 113px !important;
|
|
3748
|
+
}
|
|
3749
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3750
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3751
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3752
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul {
|
|
3753
|
+
height: auto;
|
|
3754
|
+
}
|
|
3722
3755
|
|
|
3723
3756
|
.e-pivotfieldlist-container {
|
|
3724
3757
|
font-family: Inter;
|
|
@@ -3784,7 +3817,6 @@
|
|
|
3784
3817
|
.e-pivotfieldlist-container .e-dlg-header-content,
|
|
3785
3818
|
.e-pivotfieldlist-container .e-footer-content {
|
|
3786
3819
|
border: 0;
|
|
3787
|
-
height: 46px;
|
|
3788
3820
|
}
|
|
3789
3821
|
.e-pivotfieldlist-container .e-field-list-title {
|
|
3790
3822
|
display: -ms-flexbox;
|
|
@@ -3945,6 +3977,9 @@
|
|
|
3945
3977
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-list-text {
|
|
3946
3978
|
font-family: Inter;
|
|
3947
3979
|
}
|
|
3980
|
+
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li.e-disable {
|
|
3981
|
+
display: none !important;
|
|
3982
|
+
}
|
|
3948
3983
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree ul li {
|
|
3949
3984
|
margin-left: 0;
|
|
3950
3985
|
margin-right: 0;
|
|
@@ -4402,6 +4437,59 @@
|
|
|
4402
4437
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table.e-olap-axis-table {
|
|
4403
4438
|
width: 60%;
|
|
4404
4439
|
}
|
|
4440
|
+
.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
4441
|
+
max-height: 750px;
|
|
4442
|
+
}
|
|
4443
|
+
.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
4444
|
+
height: 261px;
|
|
4445
|
+
}
|
|
4446
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4447
|
+
min-height: 540px;
|
|
4448
|
+
}
|
|
4449
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4450
|
+
height: 369px;
|
|
4451
|
+
}
|
|
4452
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4453
|
+
height: 389px !important;
|
|
4454
|
+
}
|
|
4455
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
4456
|
+
height: 392px;
|
|
4457
|
+
}
|
|
4458
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
4459
|
+
height: 160px !important;
|
|
4460
|
+
}
|
|
4461
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt {
|
|
4462
|
+
color: #6b7280;
|
|
4463
|
+
padding: 25px 12px;
|
|
4464
|
+
text-align: center;
|
|
4465
|
+
width: 100%;
|
|
4466
|
+
}
|
|
4467
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt.e-disable {
|
|
4468
|
+
display: none;
|
|
4469
|
+
}
|
|
4470
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search {
|
|
4471
|
+
display: -ms-flexbox;
|
|
4472
|
+
display: flex;
|
|
4473
|
+
padding: 10px 18px;
|
|
4474
|
+
}
|
|
4475
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4476
|
+
float: right;
|
|
4477
|
+
font-size: 14px;
|
|
4478
|
+
}
|
|
4479
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group .e-input-group-icon,
|
|
4480
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
4481
|
+
border-width: 0 !important;
|
|
4482
|
+
cursor: text !important;
|
|
4483
|
+
}
|
|
4484
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group-icon:hover {
|
|
4485
|
+
background-color: transparent !important;
|
|
4486
|
+
border: transparent !important;
|
|
4487
|
+
color: currentColor !important;
|
|
4488
|
+
}
|
|
4489
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-tree-outer-div .e-disable,
|
|
4490
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-disable {
|
|
4491
|
+
display: none !important;
|
|
4492
|
+
}
|
|
4405
4493
|
.e-pivotfieldlist-container .e-calculated-field {
|
|
4406
4494
|
color: #fff;
|
|
4407
4495
|
font-size: 14px;
|
|
@@ -4486,7 +4574,7 @@
|
|
|
4486
4574
|
width: 100%;
|
|
4487
4575
|
}
|
|
4488
4576
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-field-table .e-field-list-tree-outer-div {
|
|
4489
|
-
height:
|
|
4577
|
+
height: 180px;
|
|
4490
4578
|
}
|
|
4491
4579
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-center-div {
|
|
4492
4580
|
display: none;
|
|
@@ -4550,6 +4638,11 @@
|
|
|
4550
4638
|
background-color: transparent;
|
|
4551
4639
|
color: rgba(255, 255, 255, 0.87);
|
|
4552
4640
|
}
|
|
4641
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4642
|
+
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4643
|
+
height: 210px;
|
|
4644
|
+
overflow: auto;
|
|
4645
|
+
}
|
|
4553
4646
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4554
4647
|
display: -ms-flexbox;
|
|
4555
4648
|
display: flex;
|
|
@@ -5442,4 +5535,41 @@
|
|
|
5442
5535
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-pivot-button .e-edit {
|
|
5443
5536
|
padding-left: 0;
|
|
5444
5537
|
padding-right: 4px;
|
|
5538
|
+
}
|
|
5539
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5540
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5541
|
+
max-height: 750px;
|
|
5542
|
+
}
|
|
5543
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container,
|
|
5544
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container {
|
|
5545
|
+
max-height: 800px;
|
|
5546
|
+
}
|
|
5547
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table,
|
|
5548
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
5549
|
+
height: 270px;
|
|
5550
|
+
}
|
|
5551
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5552
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5553
|
+
max-height: 600px !important;
|
|
5554
|
+
min-height: 566px !important;
|
|
5555
|
+
}
|
|
5556
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5557
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
5558
|
+
height: 387px;
|
|
5559
|
+
}
|
|
5560
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table,
|
|
5561
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
5562
|
+
height: 400px !important;
|
|
5563
|
+
}
|
|
5564
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table,
|
|
5565
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
5566
|
+
height: 404px;
|
|
5567
|
+
}
|
|
5568
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5569
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5570
|
+
height: 165px !important;
|
|
5571
|
+
}
|
|
5572
|
+
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5573
|
+
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5574
|
+
max-height: 179px;
|
|
5445
5575
|
}
|