@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
|
@@ -261,7 +261,7 @@
|
|
|
261
261
|
}
|
|
262
262
|
.e-pivotview .e-member-editor-dialog .e-member-editor-container-outer-div {
|
|
263
263
|
display: inline-block;
|
|
264
|
-
height:
|
|
264
|
+
height: 214px;
|
|
265
265
|
max-width: 400px;
|
|
266
266
|
overflow: auto;
|
|
267
267
|
width: 100%;
|
|
@@ -304,7 +304,7 @@
|
|
|
304
304
|
padding-top: 12px;
|
|
305
305
|
}
|
|
306
306
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
307
|
-
height:
|
|
307
|
+
height: 182px;
|
|
308
308
|
}
|
|
309
309
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-editor-label-container {
|
|
310
310
|
opacity: 56%;
|
|
@@ -708,7 +708,7 @@
|
|
|
708
708
|
}
|
|
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
710
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
711
|
-
height:
|
|
711
|
+
height: 178px;
|
|
712
712
|
}
|
|
713
713
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
714
714
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-descend-icon,
|
|
@@ -734,7 +734,7 @@
|
|
|
734
734
|
}
|
|
735
735
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
736
736
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
737
|
-
height:
|
|
737
|
+
height: 132px !important;
|
|
738
738
|
}
|
|
739
739
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-label-filter,
|
|
740
740
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-value-filter,
|
|
@@ -863,19 +863,6 @@
|
|
|
863
863
|
margin-top: 8px;
|
|
864
864
|
}
|
|
865
865
|
|
|
866
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
867
|
-
height: 62px;
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
871
|
-
height: 52px;
|
|
872
|
-
padding-left: 10px;
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
876
|
-
margin-left: 24px !important;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
866
|
/*! PivotView theme */
|
|
880
867
|
.e-pivotview .e-nextspan {
|
|
881
868
|
display: inline-block;
|
|
@@ -935,6 +922,8 @@
|
|
|
935
922
|
}
|
|
936
923
|
.e-pivotview .e-member-editor-dialog,
|
|
937
924
|
.e-pivotview .e-olap-editor-dialog {
|
|
925
|
+
min-height: 385px !important;
|
|
926
|
+
min-width: 350px !important;
|
|
938
927
|
visibility: hidden;
|
|
939
928
|
}
|
|
940
929
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -1011,9 +1000,8 @@
|
|
|
1011
1000
|
margin: -13px -5px !important;
|
|
1012
1001
|
}
|
|
1013
1002
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1014
|
-
|
|
1015
|
-
padding-
|
|
1016
|
-
padding-top: 0px !important;
|
|
1003
|
+
font-size: 12px !important;
|
|
1004
|
+
padding-top: 14px !important;
|
|
1017
1005
|
}
|
|
1018
1006
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1019
1007
|
margin: -10px 0 !important;
|
|
@@ -1052,12 +1040,7 @@
|
|
|
1052
1040
|
z-index: 1 !important;
|
|
1053
1041
|
}
|
|
1054
1042
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1055
|
-
visibility: hidden;
|
|
1056
|
-
}
|
|
1057
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1058
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1059
|
-
text-overflow: ellipsis;
|
|
1060
|
-
white-space: nowrap;
|
|
1043
|
+
visibility: hidden !important;
|
|
1061
1044
|
}
|
|
1062
1045
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1063
1046
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1255,7 +1238,7 @@
|
|
|
1255
1238
|
border: 1px solid #e5e7eb;
|
|
1256
1239
|
border-radius: 0;
|
|
1257
1240
|
box-shadow: none;
|
|
1258
|
-
color: #374151;
|
|
1241
|
+
color: #374151 !important;
|
|
1259
1242
|
cursor: default;
|
|
1260
1243
|
display: -ms-flexbox;
|
|
1261
1244
|
display: flex;
|
|
@@ -1502,8 +1485,9 @@
|
|
|
1502
1485
|
color: #6b7280 !important;
|
|
1503
1486
|
font-size: 12px;
|
|
1504
1487
|
height: 18px;
|
|
1505
|
-
margin-left: 4px;
|
|
1488
|
+
margin-left: 4px !important;
|
|
1506
1489
|
width: 18px;
|
|
1490
|
+
padding-top: 2px;
|
|
1507
1491
|
}
|
|
1508
1492
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1509
1493
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1526,6 +1510,7 @@
|
|
|
1526
1510
|
width: 18px;
|
|
1527
1511
|
}
|
|
1528
1512
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1513
|
+
margin-top: 3px;
|
|
1529
1514
|
transform: rotateX(180deg);
|
|
1530
1515
|
}
|
|
1531
1516
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1597,7 +1582,7 @@
|
|
|
1597
1582
|
.e-pivotview th .e-collapse {
|
|
1598
1583
|
font-size: 10px !important;
|
|
1599
1584
|
margin-left: 0px;
|
|
1600
|
-
margin-top:
|
|
1585
|
+
margin-top: 0;
|
|
1601
1586
|
}
|
|
1602
1587
|
.e-pivotview .e-expand::before {
|
|
1603
1588
|
font-size: 18px;
|
|
@@ -1700,6 +1685,12 @@
|
|
|
1700
1685
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1701
1686
|
line-height: 1em !important;
|
|
1702
1687
|
}
|
|
1688
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1689
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1690
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1691
|
+
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1692
|
+
margin-top: 2px !important;
|
|
1693
|
+
}
|
|
1703
1694
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1704
1695
|
max-width: 155px;
|
|
1705
1696
|
}
|
|
@@ -1710,6 +1701,9 @@
|
|
|
1710
1701
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1711
1702
|
max-width: 200px;
|
|
1712
1703
|
}
|
|
1704
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1705
|
+
width: 100% !important;
|
|
1706
|
+
}
|
|
1713
1707
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1714
1708
|
width: 0 !important;
|
|
1715
1709
|
}
|
|
@@ -1827,7 +1821,7 @@
|
|
|
1827
1821
|
.e-bigger .e-pivotview th .e-collapse,
|
|
1828
1822
|
.e-bigger.e-pivotview th .e-expand,
|
|
1829
1823
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1830
|
-
margin-top:
|
|
1824
|
+
margin-top: 0;
|
|
1831
1825
|
}
|
|
1832
1826
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1833
1827
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
@@ -1871,6 +1865,7 @@
|
|
|
1871
1865
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1872
1866
|
font-size: 14px !important;
|
|
1873
1867
|
height: 20px;
|
|
1868
|
+
margin-top: 1px;
|
|
1874
1869
|
width: 20px;
|
|
1875
1870
|
}
|
|
1876
1871
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1967,6 +1962,7 @@
|
|
|
1967
1962
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1968
1963
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1969
1964
|
margin: -13px -10px !important;
|
|
1965
|
+
font-size: 16px !important;
|
|
1970
1966
|
}
|
|
1971
1967
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1972
1968
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -1976,7 +1972,7 @@
|
|
|
1976
1972
|
}
|
|
1977
1973
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container,
|
|
1978
1974
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container {
|
|
1979
|
-
height:
|
|
1975
|
+
height: 178px;
|
|
1980
1976
|
}
|
|
1981
1977
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
1982
1978
|
.e-bigger .e-pivotview .e-stackedheadertext,
|