@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
|
@@ -21,7 +21,7 @@ $field-list-toggle-padding-size: 8px !default;
|
|
|
21
21
|
$field-list-editor-dialog-footer-padding: 10px !default;
|
|
22
22
|
$field-list-toggle-size: 31px !default;
|
|
23
23
|
$field-list-toggle-bigger-size: 36px !default;
|
|
24
|
-
$field-list-member-filter-list-bigger-height:
|
|
24
|
+
$field-list-member-filter-list-bigger-height: 130px !default;
|
|
25
25
|
$pivot-calculated-formula-font-family: Inter !default;
|
|
26
26
|
$pivot-calculated-formula-font-padding: 5px 8px !default;
|
|
27
27
|
$pivot-calculated-header-opacity: .87 !default;
|
|
@@ -51,16 +51,16 @@ $field-list-static-header-icon-wrapper-padding: $field-list-header-icon-wrapper-
|
|
|
51
51
|
$field-list-static-bigger-header-icon-wrapper-padding: $field-list-bigger-header-icon-wrapper-padding !default;
|
|
52
52
|
$pivot-calculated-icon-opacity: .87 !default;
|
|
53
53
|
$field-list-bigger-button-line-height: 1.1em !default;
|
|
54
|
-
$field-list-excel-member-filter-height:
|
|
54
|
+
$field-list-excel-member-filter-height: 165px !default;
|
|
55
55
|
$field-list-excel-filter-height: 248px !default;
|
|
56
|
-
$field-list-excel-member-filter-bigger-height:
|
|
56
|
+
$field-list-excel-member-filter-bigger-height: 110px !default;
|
|
57
57
|
$field-list-excel-filter-bigger-height: 220px !default;
|
|
58
58
|
$format-label-font-opacity: .87 !default;
|
|
59
59
|
$format-label-font-weight: 500 !default;
|
|
60
60
|
$format-preview-bigger-height: 30px !default;
|
|
61
61
|
$format-outer-border-radius: 4px !default;
|
|
62
|
-
$format-dialog-width:
|
|
63
|
-
$format-dialog-bigger-width:
|
|
62
|
+
$format-dialog-width: 640px !default;
|
|
63
|
+
$format-dialog-bigger-width: 730px !default;
|
|
64
64
|
$field-list-editor-label-padding-size: 14px 10px 16px 20px !default;
|
|
65
65
|
$field-list-editor-label-font: 500 13px Inter !default;
|
|
66
66
|
$field-list-editor-label-opacity: .87 !default;
|
|
@@ -70,6 +70,15 @@ $field-list-editor-label-excel-opacity: 56%;
|
|
|
70
70
|
$field-list-back-margin: 5px !default;
|
|
71
71
|
$field-list-sort-wrapper-padding-size: 10px !default;
|
|
72
72
|
$field-list-calc-expand-icon-padding: 8px !default;
|
|
73
|
+
$field-list-search-padding-size: 10px $field-list-title-padding-size !default;
|
|
74
|
+
$field-list-member-prompt-padding-size: 25px 12px !default;
|
|
75
|
+
$field-list-search-popup-table-height: 389px !default;
|
|
76
|
+
$field-list-search-popup-axis-content-height: 160px !default;
|
|
77
|
+
$field-list-search-popup-container-bigger-height: 566px !default;
|
|
78
|
+
$field-list-search-popup-table-bigger-height: 400px !default;
|
|
79
|
+
$field-list-search-popup-axis-table-bigger-height: 404px !default;
|
|
80
|
+
$field-list-search-popup-axis-content-bigger-height: 165px !default;
|
|
81
|
+
$field-list-filter-toolbar-items-margin: 20px !default;
|
|
73
82
|
|
|
74
83
|
// normal variables
|
|
75
84
|
$field-list-active-color: $icon-color !default;
|
|
@@ -120,7 +129,6 @@ $field-list-sort-select-color: $icon-color !default;
|
|
|
120
129
|
$field-list-border: $field-list-default-border-color !default;
|
|
121
130
|
$field-list-cal-button-text-color: $secondary-text-color !default;
|
|
122
131
|
|
|
123
|
-
|
|
124
132
|
/*! component's common definitions and variables */
|
|
125
133
|
$field-list-static-padding-size: 10px !default;
|
|
126
134
|
$field-list-treeview-padding-size: -30px !default;
|
|
@@ -172,10 +180,11 @@ $format-label-font-size: 13px !default;
|
|
|
172
180
|
$format-label-bigger-font-size: 14px !default;
|
|
173
181
|
$format-preview-height: 28px !default;
|
|
174
182
|
$format-preview-width: 80px !default;
|
|
175
|
-
$olap-tree-wrapper-height:
|
|
176
|
-
$olap-tree-outer-div-height:
|
|
177
|
-
$olap-bigger-tree-wrapper-height:
|
|
178
|
-
$olap-bigger-tree-outer-div-height:
|
|
183
|
+
$olap-tree-wrapper-height: 430px;
|
|
184
|
+
$olap-tree-outer-div-height: 395px;
|
|
185
|
+
$olap-bigger-tree-wrapper-height: 570px;
|
|
186
|
+
$olap-bigger-tree-outer-div-height: 530px;
|
|
179
187
|
$field-list-text-transform: uppercase !default;
|
|
180
188
|
$olap-bigger-tree-width: 283px !default;
|
|
181
189
|
$olap-bigger-tree-outer-div-width: 325px !default;
|
|
190
|
+
$field-list-adaptive-outerdiv-height: 179px !default;
|
|
@@ -58,6 +58,20 @@
|
|
|
58
58
|
min-height: $field-list-toggle-bigger-size;
|
|
59
59
|
min-width: $field-list-toggle-bigger-size;
|
|
60
60
|
}
|
|
61
|
+
|
|
62
|
+
.e-member-editor-dialog,
|
|
63
|
+
.e-olap-editor-dialog {
|
|
64
|
+
max-height: 400px !important;
|
|
65
|
+
min-width: 370px !important;
|
|
66
|
+
|
|
67
|
+
.e-member-editor-container-outer-div {
|
|
68
|
+
min-height: 113px !important;
|
|
69
|
+
|
|
70
|
+
.e-list-parent .e-ul {
|
|
71
|
+
height: auto;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
61
75
|
}
|
|
62
76
|
|
|
63
77
|
.e-pivotfieldlist-container {
|
|
@@ -147,9 +161,6 @@
|
|
|
147
161
|
.e-dlg-header-content,
|
|
148
162
|
.e-footer-content {
|
|
149
163
|
border: 0;
|
|
150
|
-
@if ($skin-name == 'tailwind') {
|
|
151
|
-
height: 46px;
|
|
152
|
-
}
|
|
153
164
|
}
|
|
154
165
|
|
|
155
166
|
.e-dlg-header-content {
|
|
@@ -367,6 +378,12 @@
|
|
|
367
378
|
font-family: $field-list-font-family;
|
|
368
379
|
}
|
|
369
380
|
}
|
|
381
|
+
|
|
382
|
+
// sass-lint:disable-all
|
|
383
|
+
li.e-disable {
|
|
384
|
+
display: none !important;
|
|
385
|
+
}
|
|
386
|
+
// sass-lint:enable-all
|
|
370
387
|
}
|
|
371
388
|
|
|
372
389
|
&.e-olap-field-list-tree {
|
|
@@ -439,7 +456,6 @@
|
|
|
439
456
|
padding: 5px $field-list-header-padding;
|
|
440
457
|
}
|
|
441
458
|
|
|
442
|
-
|
|
443
459
|
.e-axis-icon-container {
|
|
444
460
|
height: 20px;
|
|
445
461
|
padding-top: $field-list-header-icon-wrapper-padding;
|
|
@@ -702,6 +718,80 @@
|
|
|
702
718
|
}
|
|
703
719
|
}
|
|
704
720
|
|
|
721
|
+
&.e-search-mode {
|
|
722
|
+
&.e-static {
|
|
723
|
+
max-height: 750px;
|
|
724
|
+
|
|
725
|
+
.e-field-list-container .e-field-table {
|
|
726
|
+
height: 261px;
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
&.e-popup {
|
|
731
|
+
min-height: 540px;
|
|
732
|
+
|
|
733
|
+
.e-field-list-container {
|
|
734
|
+
height: 369px;
|
|
735
|
+
|
|
736
|
+
// sass-lint:disable-all
|
|
737
|
+
.e-field-table {
|
|
738
|
+
height: $field-list-search-popup-table-height !important;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.e-axis-table {
|
|
742
|
+
height: 392px;
|
|
743
|
+
|
|
744
|
+
.e-axis-content {
|
|
745
|
+
height: $field-list-search-popup-axis-content-height !important;
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
// sass-lint:enable-all
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.e-member-prompt {
|
|
753
|
+
color: $field-list-drag-icon-color;
|
|
754
|
+
padding: $field-list-member-prompt-padding-size;
|
|
755
|
+
text-align: center;
|
|
756
|
+
width: 100%;
|
|
757
|
+
|
|
758
|
+
&.e-disable {
|
|
759
|
+
display: none;
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.e-field-table {
|
|
764
|
+
.e-field-list-search {
|
|
765
|
+
display: flex;
|
|
766
|
+
padding: $field-list-search-padding-size;
|
|
767
|
+
|
|
768
|
+
.e-field-list-search-input .e-field-list-search-icon {
|
|
769
|
+
float: right;
|
|
770
|
+
font-size: $field-list-header-icon-size;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
// sass-lint:disable-all
|
|
774
|
+
.e-input-group .e-input-group-icon,
|
|
775
|
+
.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
776
|
+
border-width: 0 !important;
|
|
777
|
+
cursor: text !important;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.e-input-group-icon:hover {
|
|
781
|
+
background-color: transparent !important;
|
|
782
|
+
border: transparent !important;
|
|
783
|
+
color: currentColor !important;
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.e-field-list-tree-outer-div .e-disable,
|
|
788
|
+
.e-disable {
|
|
789
|
+
display: none !important;
|
|
790
|
+
}
|
|
791
|
+
// sass-lint:disable-all
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
|
|
705
795
|
// sass-lint:disable-all
|
|
706
796
|
.e-calculated-field {
|
|
707
797
|
color: $field-list-cal-button-text-color;
|
|
@@ -827,7 +917,7 @@
|
|
|
827
917
|
width: 100%;
|
|
828
918
|
|
|
829
919
|
.e-field-list-tree-outer-div {
|
|
830
|
-
height:
|
|
920
|
+
height: 180px;
|
|
831
921
|
}
|
|
832
922
|
}
|
|
833
923
|
|
|
@@ -919,6 +1009,11 @@
|
|
|
919
1009
|
background-color: transparent;
|
|
920
1010
|
color: $field-list-mobile-header-font-color;
|
|
921
1011
|
}
|
|
1012
|
+
|
|
1013
|
+
.e-dlg-content .e-field-list-tree-outer-div {
|
|
1014
|
+
height: 210px;
|
|
1015
|
+
overflow: auto;
|
|
1016
|
+
}
|
|
922
1017
|
}
|
|
923
1018
|
|
|
924
1019
|
.e-title-mobile-header {
|
|
@@ -1506,7 +1601,6 @@
|
|
|
1506
1601
|
}
|
|
1507
1602
|
|
|
1508
1603
|
.e-axis-table {
|
|
1509
|
-
|
|
1510
1604
|
.e-left-axis-fields .e-field-list-filters,
|
|
1511
1605
|
.e-left-axis-fields .e-field-list-rows,
|
|
1512
1606
|
.e-right-axis-fields .e-field-list-columns,
|
|
@@ -1725,7 +1819,48 @@
|
|
|
1725
1819
|
}
|
|
1726
1820
|
}
|
|
1727
1821
|
}
|
|
1728
|
-
}
|
|
1729
1822
|
|
|
1823
|
+
&.e-search-mode {
|
|
1824
|
+
&.e-static {
|
|
1825
|
+
max-height: 750px;
|
|
1826
|
+
|
|
1827
|
+
.e-field-list-container {
|
|
1828
|
+
max-height: 800px;
|
|
1829
|
+
|
|
1830
|
+
.e-field-table {
|
|
1831
|
+
height: 270px;
|
|
1832
|
+
}
|
|
1833
|
+
}
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
// sass-lint:disable-all
|
|
1837
|
+
&.e-popup {
|
|
1838
|
+
max-height: 600px !important;
|
|
1839
|
+
min-height: $field-list-search-popup-container-bigger-height !important;
|
|
1840
|
+
|
|
1841
|
+
.e-field-list-container {
|
|
1842
|
+
height: 387px;
|
|
1843
|
+
|
|
1844
|
+
.e-field-table {
|
|
1845
|
+
height: $field-list-search-popup-table-bigger-height !important;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
.e-axis-table {
|
|
1849
|
+
height: $field-list-search-popup-axis-table-bigger-height;
|
|
1850
|
+
|
|
1851
|
+
.e-axis-content {
|
|
1852
|
+
height: $field-list-search-popup-axis-content-bigger-height !important;
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
}
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.e-adaptive-field-list-dialog {
|
|
1860
|
+
.e-dlg-content .e-field-list-tree-outer-div {
|
|
1861
|
+
max-height: $field-list-adaptive-outerdiv-height;
|
|
1862
|
+
}
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1730
1865
|
// sass-lint:enable-all
|
|
1731
1866
|
}
|
|
@@ -281,6 +281,10 @@
|
|
|
281
281
|
.e-pivotfieldlist-container .e-sort-descend::before {
|
|
282
282
|
content: "\e665" !important;
|
|
283
283
|
}
|
|
284
|
+
.e-pivotfieldlist-wrapper .e-field-list-search-icon::before,
|
|
285
|
+
.e-pivotfieldlist-container .e-field-list-search-icon::before {
|
|
286
|
+
content: "\e993" !important;
|
|
287
|
+
}
|
|
284
288
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before,
|
|
285
289
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
286
290
|
content: "\e7a3";
|
|
@@ -316,7 +320,6 @@
|
|
|
316
320
|
|
|
317
321
|
.e-pivot-formatting-dialog {
|
|
318
322
|
max-height: 480px !important;
|
|
319
|
-
min-width: 625px !important;
|
|
320
323
|
width: 625px !important;
|
|
321
324
|
}
|
|
322
325
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -331,6 +334,7 @@
|
|
|
331
334
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
332
335
|
padding-bottom: 14px;
|
|
333
336
|
padding-right: 18px;
|
|
337
|
+
white-space: nowrap;
|
|
334
338
|
}
|
|
335
339
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
336
340
|
vertical-align: bottom;
|
|
@@ -347,6 +351,7 @@
|
|
|
347
351
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
348
352
|
padding-left: 14px;
|
|
349
353
|
padding-top: 14px;
|
|
354
|
+
width: 579px;
|
|
350
355
|
}
|
|
351
356
|
.e-pivot-formatting-dialog .e-format-outer-div {
|
|
352
357
|
background-color: #1a1a1a;
|
|
@@ -422,6 +427,9 @@
|
|
|
422
427
|
min-width: 320px !important;
|
|
423
428
|
width: 100% !important;
|
|
424
429
|
}
|
|
430
|
+
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
431
|
+
width: 100% !important;
|
|
432
|
+
}
|
|
425
433
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
426
434
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
427
435
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -466,7 +474,6 @@
|
|
|
466
474
|
|
|
467
475
|
.e-bigger.e-pivot-formatting-dialog,
|
|
468
476
|
.e-bigger .e-pivot-formatting-dialog {
|
|
469
|
-
min-width: 670px !important;
|
|
470
477
|
width: 670px !important;
|
|
471
478
|
}
|
|
472
479
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -484,6 +491,7 @@
|
|
|
484
491
|
.e-bigger .e-pivot-formatting-dialog .e-format-inner-div {
|
|
485
492
|
padding-left: 16px;
|
|
486
493
|
padding-top: 16px;
|
|
494
|
+
width: 656px;
|
|
487
495
|
}
|
|
488
496
|
.e-bigger.e-pivot-formatting-dialog .e-format-outer-div,
|
|
489
497
|
.e-bigger .e-pivot-formatting-dialog .e-format-outer-div {
|
|
@@ -857,8 +865,8 @@
|
|
|
857
865
|
|
|
858
866
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
859
867
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
860
|
-
max-height:
|
|
861
|
-
min-width:
|
|
868
|
+
max-height: 600px !important;
|
|
869
|
+
min-width: 401px !important;
|
|
862
870
|
}
|
|
863
871
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
864
872
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -899,8 +907,8 @@
|
|
|
899
907
|
}
|
|
900
908
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
901
909
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
902
|
-
max-height:
|
|
903
|
-
min-width: 580px;
|
|
910
|
+
max-height: 750px !important;
|
|
911
|
+
min-width: 580px !important;
|
|
904
912
|
}
|
|
905
913
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
906
914
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -976,7 +984,7 @@
|
|
|
976
984
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
977
985
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
978
986
|
margin-left: -35px;
|
|
979
|
-
overflow:
|
|
987
|
+
overflow: auto !important;
|
|
980
988
|
}
|
|
981
989
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
982
990
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -1013,6 +1021,9 @@
|
|
|
1013
1021
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog.e-rtl .e-member-editor-outer-container ul {
|
|
1014
1022
|
margin-right: 0;
|
|
1015
1023
|
}
|
|
1024
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
1025
|
+
margin-left: 20px;
|
|
1026
|
+
}
|
|
1016
1027
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-clear-filter-button {
|
|
1017
1028
|
float: left;
|
|
1018
1029
|
margin: 0;
|
|
@@ -1107,6 +1118,10 @@
|
|
|
1107
1118
|
opacity: 100%;
|
|
1108
1119
|
padding: 18px 10px 12px 20px;
|
|
1109
1120
|
}
|
|
1121
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-toolbar .e-toolbar-items {
|
|
1122
|
+
margin-left: 0;
|
|
1123
|
+
margin-right: 20px;
|
|
1124
|
+
}
|
|
1110
1125
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container .e-editor-search-container .e-filter-sort {
|
|
1111
1126
|
margin-left: 0;
|
|
1112
1127
|
margin-right: 10px;
|
|
@@ -1131,6 +1146,10 @@
|
|
|
1131
1146
|
margin-left: 0;
|
|
1132
1147
|
margin-right: 10px;
|
|
1133
1148
|
}
|
|
1149
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul {
|
|
1150
|
+
min-height: 170px;
|
|
1151
|
+
overflow: auto;
|
|
1152
|
+
}
|
|
1134
1153
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-measure-icon,
|
|
1135
1154
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-dimension-icon,
|
|
1136
1155
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-attributeCDB-icon,
|
|
@@ -1246,7 +1265,7 @@
|
|
|
1246
1265
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content,
|
|
1247
1266
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
1248
1267
|
overflow: hidden;
|
|
1249
|
-
padding: 0;
|
|
1268
|
+
padding: 0 !important;
|
|
1250
1269
|
}
|
|
1251
1270
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
1252
1271
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -1505,7 +1524,7 @@
|
|
|
1505
1524
|
}
|
|
1506
1525
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter,
|
|
1507
1526
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter {
|
|
1508
|
-
min-width: 350px;
|
|
1527
|
+
min-width: 350px !important;
|
|
1509
1528
|
}
|
|
1510
1529
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
1511
1530
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
@@ -1620,6 +1639,25 @@
|
|
|
1620
1639
|
min-height: 36px;
|
|
1621
1640
|
min-width: 36px;
|
|
1622
1641
|
}
|
|
1642
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog,
|
|
1643
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
1644
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
1645
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
1646
|
+
max-height: 400px !important;
|
|
1647
|
+
min-width: 370px !important;
|
|
1648
|
+
}
|
|
1649
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1650
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
1651
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1652
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
1653
|
+
min-height: 113px !important;
|
|
1654
|
+
}
|
|
1655
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
1656
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
1657
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
1658
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul {
|
|
1659
|
+
height: auto;
|
|
1660
|
+
}
|
|
1623
1661
|
|
|
1624
1662
|
.e-pivotfieldlist-container {
|
|
1625
1663
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
@@ -1840,6 +1878,9 @@
|
|
|
1840
1878
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-list-text {
|
|
1841
1879
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
1842
1880
|
}
|
|
1881
|
+
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li.e-disable {
|
|
1882
|
+
display: none !important;
|
|
1883
|
+
}
|
|
1843
1884
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree ul li {
|
|
1844
1885
|
margin-left: 0;
|
|
1845
1886
|
margin-right: 0;
|
|
@@ -2285,6 +2326,59 @@
|
|
|
2285
2326
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table.e-olap-axis-table {
|
|
2286
2327
|
width: 60%;
|
|
2287
2328
|
}
|
|
2329
|
+
.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
2330
|
+
max-height: 750px;
|
|
2331
|
+
}
|
|
2332
|
+
.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
2333
|
+
height: 261px;
|
|
2334
|
+
}
|
|
2335
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2336
|
+
min-height: 540px;
|
|
2337
|
+
}
|
|
2338
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2339
|
+
height: 369px;
|
|
2340
|
+
}
|
|
2341
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
2342
|
+
height: 392px !important;
|
|
2343
|
+
}
|
|
2344
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
2345
|
+
height: 392px;
|
|
2346
|
+
}
|
|
2347
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
2348
|
+
height: 162px !important;
|
|
2349
|
+
}
|
|
2350
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt {
|
|
2351
|
+
color: #f0f0f0;
|
|
2352
|
+
padding: 25px 12px;
|
|
2353
|
+
text-align: center;
|
|
2354
|
+
width: 100%;
|
|
2355
|
+
}
|
|
2356
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt.e-disable {
|
|
2357
|
+
display: none;
|
|
2358
|
+
}
|
|
2359
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search {
|
|
2360
|
+
display: -ms-flexbox;
|
|
2361
|
+
display: flex;
|
|
2362
|
+
padding: 10px 20px;
|
|
2363
|
+
}
|
|
2364
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
2365
|
+
float: right;
|
|
2366
|
+
font-size: 14px;
|
|
2367
|
+
}
|
|
2368
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group .e-input-group-icon,
|
|
2369
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
2370
|
+
border-width: 0 !important;
|
|
2371
|
+
cursor: text !important;
|
|
2372
|
+
}
|
|
2373
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group-icon:hover {
|
|
2374
|
+
background-color: transparent !important;
|
|
2375
|
+
border: transparent !important;
|
|
2376
|
+
color: currentColor !important;
|
|
2377
|
+
}
|
|
2378
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-tree-outer-div .e-disable,
|
|
2379
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-disable {
|
|
2380
|
+
display: none !important;
|
|
2381
|
+
}
|
|
2288
2382
|
.e-pivotfieldlist-container .e-calculated-field {
|
|
2289
2383
|
color: #f0f0f0;
|
|
2290
2384
|
font-size: 13px;
|
|
@@ -2369,7 +2463,7 @@
|
|
|
2369
2463
|
width: 100%;
|
|
2370
2464
|
}
|
|
2371
2465
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-field-table .e-field-list-tree-outer-div {
|
|
2372
|
-
height:
|
|
2466
|
+
height: 180px;
|
|
2373
2467
|
}
|
|
2374
2468
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-center-div {
|
|
2375
2469
|
display: none;
|
|
@@ -2431,6 +2525,11 @@
|
|
|
2431
2525
|
background-color: transparent;
|
|
2432
2526
|
color: #fff;
|
|
2433
2527
|
}
|
|
2528
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2529
|
+
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2530
|
+
height: 210px;
|
|
2531
|
+
overflow: auto;
|
|
2532
|
+
}
|
|
2434
2533
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2435
2534
|
display: -ms-flexbox;
|
|
2436
2535
|
display: flex;
|
|
@@ -3321,4 +3420,41 @@
|
|
|
3321
3420
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-pivot-button .e-edit {
|
|
3322
3421
|
padding-left: 0;
|
|
3323
3422
|
padding-right: 4px;
|
|
3423
|
+
}
|
|
3424
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
3425
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
3426
|
+
max-height: 750px;
|
|
3427
|
+
}
|
|
3428
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container,
|
|
3429
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container {
|
|
3430
|
+
max-height: 800px;
|
|
3431
|
+
}
|
|
3432
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table,
|
|
3433
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
3434
|
+
height: 270px;
|
|
3435
|
+
}
|
|
3436
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3437
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3438
|
+
max-height: 600px !important;
|
|
3439
|
+
min-height: 580px !important;
|
|
3440
|
+
}
|
|
3441
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3442
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
3443
|
+
height: 387px;
|
|
3444
|
+
}
|
|
3445
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table,
|
|
3446
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
3447
|
+
height: 402px !important;
|
|
3448
|
+
}
|
|
3449
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table,
|
|
3450
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
3451
|
+
height: 404px;
|
|
3452
|
+
}
|
|
3453
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3454
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3455
|
+
height: 165px !important;
|
|
3456
|
+
}
|
|
3457
|
+
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3458
|
+
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3459
|
+
max-height: 190px;
|
|
3324
3460
|
}
|