@syncfusion/ej2-angular-pivotview 20.2.38-ngcc → 20.2.39
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +62 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +150 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -0
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +213 -2
- package/styles/bootstrap.css +213 -2
- package/styles/bootstrap4.css +209 -3
- package/styles/bootstrap5-dark.css +215 -2
- package/styles/bootstrap5.css +215 -2
- package/styles/fabric-dark.css +213 -2
- package/styles/fabric.css +213 -2
- package/styles/fluent-dark.css +216 -3
- package/styles/fluent.css +216 -3
- package/styles/highcontrast-light.css +213 -2
- package/styles/highcontrast.css +213 -2
- package/styles/material-dark.css +213 -2
- package/styles/material.css +213 -2
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +190 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +186 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +187 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +187 -0
- package/styles/pivotfieldlist/_layout.scss +1844 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +187 -0
- package/styles/pivotfieldlist/_material-definition.scss +187 -0
- package/styles/pivotfieldlist/_material3-definition.scss +190 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +190 -0
- package/styles/pivotfieldlist/_theme.scss +1858 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +131 -2
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +131 -2
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +126 -2
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +135 -2
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +135 -2
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +131 -2
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +131 -2
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +134 -3
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +134 -3
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +131 -2
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +131 -2
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_material.scss +358 -0
- package/styles/pivotfieldlist/icons/_material3.scss +353 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
- package/styles/pivotfieldlist/material-dark.css +131 -2
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +131 -2
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +134 -3
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +134 -3
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +131 -0
- package/styles/pivotview/_bootstrap-definition.scss +128 -0
- package/styles/pivotview/_bootstrap4-definition.scss +128 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +133 -0
- package/styles/pivotview/_fabric-dark-definition.scss +130 -0
- package/styles/pivotview/_fabric-definition.scss +127 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +133 -0
- package/styles/pivotview/_fusionnew-definition.scss +133 -0
- package/styles/pivotview/_highcontrast-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
- package/styles/pivotview/_layout.scss +1072 -0
- package/styles/pivotview/_material-dark-definition.scss +134 -0
- package/styles/pivotview/_material-definition.scss +130 -0
- package/styles/pivotview/_material3-definition.scss +133 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +133 -0
- package/styles/pivotview/_theme.scss +1581 -0
- package/styles/pivotview/bootstrap-dark.css +82 -0
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +82 -0
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +83 -1
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +80 -0
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +80 -0
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +82 -0
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +82 -0
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +82 -0
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +82 -0
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +82 -0
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +82 -0
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.css +82 -0
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +82 -0
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +80 -0
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +80 -0
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +214 -3
- package/styles/tailwind.css +214 -3
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -395
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -674
- package/dist/ej2-angular-pivotview.umd.js +0 -666
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -20
- package/schematics/generators/pivotview-default/index.d.ts +0 -3
- package/schematics/generators/pivotview-default/index.js +0 -8
- package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-default/sample-details.js +0 -7
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-default/schema.d.ts +0 -3
- package/schematics/generators/pivotview-default/schema.js +0 -2
- package/schematics/generators/pivotview-default/schema.json +0 -125
- package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/index.js +0 -8
- package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
- package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/bootstrap5.css
CHANGED
|
@@ -155,6 +155,12 @@
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
/*! PivotView layout */
|
|
158
|
+
.e-pivotview {
|
|
159
|
+
/* stylelint-disable */
|
|
160
|
+
/* stylelint-enable */
|
|
161
|
+
/* stylelint-enable */
|
|
162
|
+
/* stylelint-disable */
|
|
163
|
+
}
|
|
158
164
|
.e-pivotview .e-value-field-settings,
|
|
159
165
|
.e-pivotview .e-member-editor-dialog,
|
|
160
166
|
.e-pivotview .e-group-field-settings {
|
|
@@ -229,6 +235,7 @@
|
|
|
229
235
|
}
|
|
230
236
|
.e-pivotview .e-member-editor-dialog {
|
|
231
237
|
min-width: 320px;
|
|
238
|
+
/* stylelint-disable */
|
|
232
239
|
}
|
|
233
240
|
.e-pivotview .e-member-editor-dialog .e-editor-search-container {
|
|
234
241
|
display: -ms-flexbox;
|
|
@@ -245,6 +252,7 @@
|
|
|
245
252
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
246
253
|
box-shadow: none;
|
|
247
254
|
margin-left: 10px;
|
|
255
|
+
/* stylelint-disable */
|
|
248
256
|
}
|
|
249
257
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
250
258
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -336,6 +344,7 @@
|
|
|
336
344
|
}
|
|
337
345
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
338
346
|
border: none;
|
|
347
|
+
/* stylelint-enable */
|
|
339
348
|
}
|
|
340
349
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
341
350
|
margin: 0 0 0 6px;
|
|
@@ -580,13 +589,16 @@
|
|
|
580
589
|
}
|
|
581
590
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
582
591
|
margin-left: 18px !important;
|
|
592
|
+
/* stylelint-enable */
|
|
583
593
|
}
|
|
584
594
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
595
|
+
/* stylelint-disable */
|
|
585
596
|
padding: 0 !important;
|
|
586
597
|
}
|
|
587
598
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
588
599
|
float: left;
|
|
589
600
|
font-weight: 500;
|
|
601
|
+
/* stylelint-enable */
|
|
590
602
|
}
|
|
591
603
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
592
604
|
float: right;
|
|
@@ -615,6 +627,7 @@
|
|
|
615
627
|
}
|
|
616
628
|
|
|
617
629
|
.e-pivotview-report-dialog {
|
|
630
|
+
/* stylelint-disable */
|
|
618
631
|
max-width: 350px !important;
|
|
619
632
|
}
|
|
620
633
|
|
|
@@ -634,6 +647,7 @@
|
|
|
634
647
|
max-width: 500px !important;
|
|
635
648
|
}
|
|
636
649
|
|
|
650
|
+
/* stylelint-enable */
|
|
637
651
|
.e-report-outer {
|
|
638
652
|
display: inline-block;
|
|
639
653
|
width: 100%;
|
|
@@ -646,6 +660,7 @@
|
|
|
646
660
|
padding-left: 12px;
|
|
647
661
|
}
|
|
648
662
|
|
|
663
|
+
/* stylelint-disable */
|
|
649
664
|
.e-pivotview-report-input {
|
|
650
665
|
float: right;
|
|
651
666
|
width: 60% !important;
|
|
@@ -667,11 +682,16 @@
|
|
|
667
682
|
font-size: 18px !important;
|
|
668
683
|
}
|
|
669
684
|
|
|
685
|
+
/* stylelint-enable */
|
|
670
686
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
671
687
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
672
688
|
white-space: nowrap;
|
|
673
689
|
}
|
|
674
690
|
|
|
691
|
+
.e-drillthrough-dialog {
|
|
692
|
+
/* stylelint-disable */
|
|
693
|
+
/* stylelint-enable */
|
|
694
|
+
}
|
|
675
695
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
676
696
|
margin-bottom: 20px;
|
|
677
697
|
margin-bottom: 18px;
|
|
@@ -693,6 +713,13 @@
|
|
|
693
713
|
flex-wrap: wrap;
|
|
694
714
|
}
|
|
695
715
|
|
|
716
|
+
.e-bigger .e-pivotview,
|
|
717
|
+
.e-bigger.e-pivotview {
|
|
718
|
+
/* stylelint-disable */
|
|
719
|
+
/* stylelint-enable */
|
|
720
|
+
/* stylelint-disable */
|
|
721
|
+
/* stylelint-enable */
|
|
722
|
+
}
|
|
696
723
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
697
724
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
698
725
|
height: 139px;
|
|
@@ -847,6 +874,18 @@
|
|
|
847
874
|
}
|
|
848
875
|
|
|
849
876
|
/*! PivotView theme */
|
|
877
|
+
.e-pivotview {
|
|
878
|
+
/* stylelint-enable */
|
|
879
|
+
/* stylelint-disable */
|
|
880
|
+
/* stylelint-enable */
|
|
881
|
+
/* stylelint-disable */
|
|
882
|
+
/* stylelint-enable */
|
|
883
|
+
/* stylelint-disable */
|
|
884
|
+
/* stylelint-enable */
|
|
885
|
+
/* stylelint-disable */
|
|
886
|
+
/* stylelint-enable */
|
|
887
|
+
/* stylelint-enable */
|
|
888
|
+
}
|
|
850
889
|
.e-pivotview .e-nextspan {
|
|
851
890
|
display: inline-block;
|
|
852
891
|
width: 18px;
|
|
@@ -867,6 +906,7 @@
|
|
|
867
906
|
text-align: right;
|
|
868
907
|
}
|
|
869
908
|
.e-pivotview .e-grid .e-rowcell {
|
|
909
|
+
/* stylelint-disable */
|
|
870
910
|
font-size: 14px !important;
|
|
871
911
|
padding-left: 8px;
|
|
872
912
|
-webkit-user-select: none;
|
|
@@ -1082,12 +1122,18 @@
|
|
|
1082
1122
|
}
|
|
1083
1123
|
.e-pivotview .e-rowcell {
|
|
1084
1124
|
opacity: 1;
|
|
1125
|
+
/* stylelint-disable */
|
|
1126
|
+
/* stylelint-enable */
|
|
1085
1127
|
}
|
|
1086
1128
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1087
1129
|
-webkit-user-select: none;
|
|
1088
1130
|
-ms-user-select: none;
|
|
1089
1131
|
user-select: none;
|
|
1090
1132
|
}
|
|
1133
|
+
.e-pivotview .e-grouping-bar {
|
|
1134
|
+
/* stylelint-disable */
|
|
1135
|
+
/* stylelint-enable */
|
|
1136
|
+
}
|
|
1091
1137
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1092
1138
|
-ms-flex: auto;
|
|
1093
1139
|
flex: auto;
|
|
@@ -1248,7 +1294,9 @@
|
|
|
1248
1294
|
border: 1px solid #dee2e6;
|
|
1249
1295
|
border-radius: 4px;
|
|
1250
1296
|
box-shadow: none;
|
|
1297
|
+
/* stylelint-disable */
|
|
1251
1298
|
color: #343a40 !important;
|
|
1299
|
+
/* stylelint-enable */
|
|
1252
1300
|
cursor: default;
|
|
1253
1301
|
display: -ms-flexbox;
|
|
1254
1302
|
display: flex;
|
|
@@ -1259,6 +1307,8 @@
|
|
|
1259
1307
|
text-transform: none;
|
|
1260
1308
|
vertical-align: bottom;
|
|
1261
1309
|
z-index: 1;
|
|
1310
|
+
/* stylelint-disable */
|
|
1311
|
+
/* stylelint-enable */
|
|
1262
1312
|
}
|
|
1263
1313
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1264
1314
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1599,6 +1649,12 @@
|
|
|
1599
1649
|
.e-pivotview .e-expand::before {
|
|
1600
1650
|
font-size: 20px;
|
|
1601
1651
|
}
|
|
1652
|
+
.e-pivotview.e-rtl {
|
|
1653
|
+
/* stylelint-disable */
|
|
1654
|
+
/* stylelint-enable */
|
|
1655
|
+
/* stylelint-disable */
|
|
1656
|
+
/* stylelint-enable */
|
|
1657
|
+
}
|
|
1602
1658
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1603
1659
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1604
1660
|
margin-left: 0;
|
|
@@ -1670,8 +1726,10 @@
|
|
|
1670
1726
|
padding-right: 8px;
|
|
1671
1727
|
}
|
|
1672
1728
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1729
|
+
/* stylelint-disable */
|
|
1673
1730
|
padding-left: 8px;
|
|
1674
1731
|
padding-right: 0;
|
|
1732
|
+
/* stylelint-enable */
|
|
1675
1733
|
}
|
|
1676
1734
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1677
1735
|
margin-left: 4px;
|
|
@@ -1694,6 +1752,9 @@
|
|
|
1694
1752
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1695
1753
|
float: left;
|
|
1696
1754
|
}
|
|
1755
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1756
|
+
/* stylelint-disable */
|
|
1757
|
+
}
|
|
1697
1758
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1698
1759
|
line-height: 1em !important;
|
|
1699
1760
|
}
|
|
@@ -1771,6 +1832,13 @@
|
|
|
1771
1832
|
margin-right: 5px;
|
|
1772
1833
|
}
|
|
1773
1834
|
|
|
1835
|
+
.e-bigger .e-pivotview,
|
|
1836
|
+
.e-bigger.e-pivotview {
|
|
1837
|
+
/* stylelint-disable */
|
|
1838
|
+
/* stylelint-enable */
|
|
1839
|
+
/* stylelint-disable */
|
|
1840
|
+
/* stylelint-enable */
|
|
1841
|
+
}
|
|
1774
1842
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1775
1843
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1776
1844
|
margin: 4px;
|
|
@@ -1833,6 +1901,10 @@
|
|
|
1833
1901
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1834
1902
|
margin-top: 0;
|
|
1835
1903
|
}
|
|
1904
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1905
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1906
|
+
/* stylelint-enable */
|
|
1907
|
+
}
|
|
1836
1908
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1837
1909
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1838
1910
|
height: 36px !important;
|
|
@@ -1873,6 +1945,7 @@
|
|
|
1873
1945
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1874
1946
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1875
1947
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1948
|
+
/* stylelint-disable */
|
|
1876
1949
|
font-size: 14px !important;
|
|
1877
1950
|
height: 20px;
|
|
1878
1951
|
margin-top: 2px;
|
|
@@ -2003,8 +2076,15 @@
|
|
|
2003
2076
|
}
|
|
2004
2077
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2005
2078
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2079
|
+
/* stylelint-disable */
|
|
2006
2080
|
font-size: 16px !important;
|
|
2007
2081
|
}
|
|
2082
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2083
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2084
|
+
/* stylelint-enable */
|
|
2085
|
+
/* stylelint-disable */
|
|
2086
|
+
/* stylelint-enable */
|
|
2087
|
+
}
|
|
2008
2088
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
2009
2089
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
2010
2090
|
padding-right: 10px !important;
|
|
@@ -2083,6 +2163,10 @@
|
|
|
2083
2163
|
content: "\e774";
|
|
2084
2164
|
}
|
|
2085
2165
|
|
|
2166
|
+
.e-pivot-calc-dialog-div {
|
|
2167
|
+
/* stylelint-disable */
|
|
2168
|
+
/* stylelint-enable */
|
|
2169
|
+
}
|
|
2086
2170
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
2087
2171
|
content: "\e726";
|
|
2088
2172
|
}
|
|
@@ -2181,6 +2265,11 @@
|
|
|
2181
2265
|
content: "\e7d8" !important;
|
|
2182
2266
|
}
|
|
2183
2267
|
|
|
2268
|
+
.e-pivotfieldlist-wrapper,
|
|
2269
|
+
.e-pivotfieldlist-container {
|
|
2270
|
+
/* stylelint-disable */
|
|
2271
|
+
/* stylelint-enable */
|
|
2272
|
+
}
|
|
2184
2273
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2185
2274
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
2186
2275
|
content: "\e773";
|
|
@@ -2375,8 +2464,10 @@
|
|
|
2375
2464
|
}
|
|
2376
2465
|
|
|
2377
2466
|
.e-pivot-formatting-dialog {
|
|
2467
|
+
/* stylelint-disable */
|
|
2378
2468
|
max-height: 480px !important;
|
|
2379
2469
|
width: 628px !important;
|
|
2470
|
+
/* stylelint-enable */
|
|
2380
2471
|
}
|
|
2381
2472
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2382
2473
|
padding-bottom: 4px;
|
|
@@ -2425,7 +2516,9 @@
|
|
|
2425
2516
|
float: right;
|
|
2426
2517
|
padding-right: 12px;
|
|
2427
2518
|
padding-top: 12px;
|
|
2519
|
+
/* stylelint-disable */
|
|
2428
2520
|
color: #212529 !important;
|
|
2521
|
+
/* stylelint-enable */
|
|
2429
2522
|
}
|
|
2430
2523
|
.e-pivot-formatting-dialog .e-format-delete-button:hover,
|
|
2431
2524
|
.e-pivot-formatting-dialog .e-format-delete-button:focus,
|
|
@@ -2453,7 +2546,9 @@
|
|
|
2453
2546
|
border: 1px solid #dee2e6;
|
|
2454
2547
|
border-radius: 4px;
|
|
2455
2548
|
height: 28px;
|
|
2549
|
+
/* stylelint-disable */
|
|
2456
2550
|
margin: 0 !important;
|
|
2551
|
+
/* stylelint-enable */
|
|
2457
2552
|
padding-left: 6px;
|
|
2458
2553
|
padding-top: 6px;
|
|
2459
2554
|
width: 80px;
|
|
@@ -2462,7 +2557,9 @@
|
|
|
2462
2557
|
background: none;
|
|
2463
2558
|
margin: 0 2px;
|
|
2464
2559
|
width: 14px;
|
|
2560
|
+
/* stylelint-disable */
|
|
2465
2561
|
color: #212529 !important;
|
|
2562
|
+
/* stylelint-enable */
|
|
2466
2563
|
}
|
|
2467
2564
|
.e-pivot-formatting-dialog .e-format-color-picker .e-split-btn-wrapper .e-split-btn .e-selected-color:hover {
|
|
2468
2565
|
color: #6c757d !important;
|
|
@@ -2478,7 +2575,9 @@
|
|
|
2478
2575
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
2479
2576
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
2480
2577
|
border: 1px solid #dee2e6;
|
|
2578
|
+
/* stylelint-disable */
|
|
2481
2579
|
border-radius: 0 !important;
|
|
2580
|
+
/* stylelint-enable */
|
|
2482
2581
|
height: 40%;
|
|
2483
2582
|
left: -3px;
|
|
2484
2583
|
position: absolute;
|
|
@@ -2486,8 +2585,10 @@
|
|
|
2486
2585
|
width: 150%;
|
|
2487
2586
|
}
|
|
2488
2587
|
.e-pivot-formatting-dialog.e-device {
|
|
2588
|
+
/* stylelint-disable */
|
|
2489
2589
|
min-width: 320px !important;
|
|
2490
2590
|
width: 100% !important;
|
|
2591
|
+
/* stylelint-enable */
|
|
2491
2592
|
}
|
|
2492
2593
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2493
2594
|
width: 100% !important;
|
|
@@ -2536,7 +2637,11 @@
|
|
|
2536
2637
|
|
|
2537
2638
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2538
2639
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2640
|
+
/* stylelint-disable */
|
|
2539
2641
|
width: 680px !important;
|
|
2642
|
+
/* stylelint-enable */
|
|
2643
|
+
/* stylelint-disable */
|
|
2644
|
+
/* stylelint-enable */
|
|
2540
2645
|
}
|
|
2541
2646
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2542
2647
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2576,8 +2681,10 @@
|
|
|
2576
2681
|
}
|
|
2577
2682
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
2578
2683
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
2684
|
+
/* stylelint-disable */
|
|
2579
2685
|
min-width: 320px !important;
|
|
2580
2686
|
width: 100% !important;
|
|
2687
|
+
/* stylelint-enable */
|
|
2581
2688
|
}
|
|
2582
2689
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
2583
2690
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -2596,8 +2703,14 @@
|
|
|
2596
2703
|
}
|
|
2597
2704
|
|
|
2598
2705
|
.e-pivot-calc-dialog-div {
|
|
2706
|
+
/* stylelint-disable */
|
|
2599
2707
|
max-height: 550px !important;
|
|
2708
|
+
/* stylelint-enable */
|
|
2600
2709
|
min-width: 290px;
|
|
2710
|
+
/* stylelint-disable */
|
|
2711
|
+
/* stylelint-enable */
|
|
2712
|
+
/* stylelint-disable */
|
|
2713
|
+
/* stylelint-enable */
|
|
2601
2714
|
}
|
|
2602
2715
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
2603
2716
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -2642,9 +2755,11 @@
|
|
|
2642
2755
|
color: #6c757d;
|
|
2643
2756
|
}
|
|
2644
2757
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2758
|
+
/* stylelint-disable */
|
|
2645
2759
|
float: right !important;
|
|
2646
2760
|
margin: 0;
|
|
2647
2761
|
margin-right: 12px !important;
|
|
2762
|
+
/* stylelint-enable */
|
|
2648
2763
|
}
|
|
2649
2764
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2650
2765
|
cursor: default;
|
|
@@ -2804,7 +2919,7 @@
|
|
|
2804
2919
|
display: inline-block;
|
|
2805
2920
|
height: 460px;
|
|
2806
2921
|
overflow: auto;
|
|
2807
|
-
width:
|
|
2922
|
+
width: 100% !important;
|
|
2808
2923
|
}
|
|
2809
2924
|
.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-treeview {
|
|
2810
2925
|
display: inline-table;
|
|
@@ -2932,8 +3047,11 @@
|
|
|
2932
3047
|
|
|
2933
3048
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2934
3049
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3050
|
+
/* stylelint-disable */
|
|
2935
3051
|
max-height: 600px !important;
|
|
2936
3052
|
min-width: 401px !important;
|
|
3053
|
+
/* stylelint-enable */
|
|
3054
|
+
/* stylelint-disable */
|
|
2937
3055
|
}
|
|
2938
3056
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2939
3057
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -3018,6 +3136,9 @@
|
|
|
3018
3136
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3019
3137
|
max-width: 400px !important;
|
|
3020
3138
|
min-width: 320px !important;
|
|
3139
|
+
/* stylelint-enable */
|
|
3140
|
+
/* stylelint-disable */
|
|
3141
|
+
/* stylelint-enable */
|
|
3021
3142
|
}
|
|
3022
3143
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
3023
3144
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3055,8 +3176,10 @@
|
|
|
3055
3176
|
}
|
|
3056
3177
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3057
3178
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3179
|
+
/* stylelint-disable */
|
|
3058
3180
|
margin-left: -22px;
|
|
3059
3181
|
overflow: auto !important;
|
|
3182
|
+
/* stylelint-enable */
|
|
3060
3183
|
}
|
|
3061
3184
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3062
3185
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3075,6 +3198,10 @@
|
|
|
3075
3198
|
margin-left: 0;
|
|
3076
3199
|
margin-right: -22px;
|
|
3077
3200
|
}
|
|
3201
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3202
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3203
|
+
/* stylelint-disable */
|
|
3204
|
+
}
|
|
3078
3205
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3079
3206
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3080
3207
|
margin-left: 0;
|
|
@@ -3136,6 +3263,7 @@
|
|
|
3136
3263
|
}
|
|
3137
3264
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3138
3265
|
border: 0;
|
|
3266
|
+
/* stylelint-enable */
|
|
3139
3267
|
}
|
|
3140
3268
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3141
3269
|
margin: 0 0 0 6px;
|
|
@@ -3164,6 +3292,8 @@
|
|
|
3164
3292
|
overflow: auto;
|
|
3165
3293
|
padding: 20px;
|
|
3166
3294
|
padding-bottom: 0;
|
|
3295
|
+
/* stylelint-disable */
|
|
3296
|
+
/* stylelint-enable */
|
|
3167
3297
|
}
|
|
3168
3298
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3169
3299
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -3202,6 +3332,9 @@
|
|
|
3202
3332
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3203
3333
|
float: right;
|
|
3204
3334
|
}
|
|
3335
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3336
|
+
/* stylelint-disable */
|
|
3337
|
+
}
|
|
3205
3338
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3206
3339
|
margin-left: 0;
|
|
3207
3340
|
}
|
|
@@ -3339,6 +3472,7 @@
|
|
|
3339
3472
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3340
3473
|
overflow: hidden;
|
|
3341
3474
|
padding: 0 !important;
|
|
3475
|
+
/* stylelint-enable */
|
|
3342
3476
|
}
|
|
3343
3477
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3344
3478
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3410,6 +3544,11 @@
|
|
|
3410
3544
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3411
3545
|
padding-right: 0;
|
|
3412
3546
|
}
|
|
3547
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3548
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3549
|
+
/* stylelint-disable */
|
|
3550
|
+
/* stylelint-enable */
|
|
3551
|
+
}
|
|
3413
3552
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3414
3553
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3415
3554
|
padding-left: 24px;
|
|
@@ -3459,6 +3598,7 @@
|
|
|
3459
3598
|
padding: 4px;
|
|
3460
3599
|
}
|
|
3461
3600
|
|
|
3601
|
+
/* stylelint-disable */
|
|
3462
3602
|
.e-button-drag-clone {
|
|
3463
3603
|
background-color: #dee2e6 !important;
|
|
3464
3604
|
border: 1px solid #dee2e6;
|
|
@@ -3498,6 +3638,12 @@
|
|
|
3498
3638
|
width: auto !important;
|
|
3499
3639
|
}
|
|
3500
3640
|
|
|
3641
|
+
/* stylelint-enable */
|
|
3642
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3643
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3644
|
+
/* stylelint-disable */
|
|
3645
|
+
/* stylelint-enable */
|
|
3646
|
+
}
|
|
3501
3647
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3502
3648
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3503
3649
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3562,6 +3708,10 @@
|
|
|
3562
3708
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3563
3709
|
margin-left: 10px;
|
|
3564
3710
|
}
|
|
3711
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3712
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3713
|
+
/* stylelint-disable */
|
|
3714
|
+
}
|
|
3565
3715
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text,
|
|
3566
3716
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3567
3717
|
margin: 0 0 0 6px;
|
|
@@ -3710,6 +3860,7 @@
|
|
|
3710
3860
|
background-color: #dee2e6;
|
|
3711
3861
|
}
|
|
3712
3862
|
|
|
3863
|
+
/* stylelint-disable */
|
|
3713
3864
|
*.e-rtl .e-select-table {
|
|
3714
3865
|
padding: 8px 5px;
|
|
3715
3866
|
}
|
|
@@ -3748,6 +3899,8 @@
|
|
|
3748
3899
|
font-size: 14px;
|
|
3749
3900
|
max-width: 700px;
|
|
3750
3901
|
min-width: 300px;
|
|
3902
|
+
/* stylelint-enable */
|
|
3903
|
+
/* stylelint-enable */
|
|
3751
3904
|
}
|
|
3752
3905
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3753
3906
|
display: -ms-flexbox;
|
|
@@ -3873,6 +4026,8 @@
|
|
|
3873
4026
|
display: -ms-flexbox;
|
|
3874
4027
|
display: flex;
|
|
3875
4028
|
padding-right: 18px;
|
|
4029
|
+
/* stylelint-disable */
|
|
4030
|
+
/* stylelint-enable */
|
|
3876
4031
|
}
|
|
3877
4032
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3878
4033
|
-ms-flex: auto;
|
|
@@ -3884,7 +4039,9 @@
|
|
|
3884
4039
|
color: #495057;
|
|
3885
4040
|
cursor: pointer;
|
|
3886
4041
|
font-size: 14px;
|
|
4042
|
+
/* stylelint-disable */
|
|
3887
4043
|
height: 20px !important;
|
|
4044
|
+
/* stylelint-enable */
|
|
3888
4045
|
padding: 6px 0 0 4px;
|
|
3889
4046
|
width: 20px;
|
|
3890
4047
|
}
|
|
@@ -3917,9 +4074,13 @@
|
|
|
3917
4074
|
}
|
|
3918
4075
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3919
4076
|
overflow: hidden;
|
|
4077
|
+
/* stylelint-disable */
|
|
4078
|
+
/* stylelint-enable */
|
|
3920
4079
|
}
|
|
3921
4080
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3922
4081
|
margin-left: -30px;
|
|
4082
|
+
/* stylelint-disable */
|
|
4083
|
+
/* stylelint-enable */
|
|
3923
4084
|
}
|
|
3924
4085
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3925
4086
|
cursor: default;
|
|
@@ -4432,6 +4593,8 @@
|
|
|
4432
4593
|
}
|
|
4433
4594
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4434
4595
|
height: 369px;
|
|
4596
|
+
/* stylelint-disable */
|
|
4597
|
+
/* stylelint-enable */
|
|
4435
4598
|
}
|
|
4436
4599
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4437
4600
|
height: 392px !important;
|
|
@@ -4455,6 +4618,7 @@
|
|
|
4455
4618
|
display: -ms-flexbox;
|
|
4456
4619
|
display: flex;
|
|
4457
4620
|
padding: 10px 18px;
|
|
4621
|
+
/* stylelint-disable */
|
|
4458
4622
|
}
|
|
4459
4623
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4460
4624
|
float: right;
|
|
@@ -4491,6 +4655,8 @@
|
|
|
4491
4655
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4492
4656
|
margin-left: 0;
|
|
4493
4657
|
margin-right: -30px;
|
|
4658
|
+
/* stylelint-disable */
|
|
4659
|
+
/* stylelint-enable */
|
|
4494
4660
|
}
|
|
4495
4661
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4496
4662
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
@@ -4521,6 +4687,8 @@
|
|
|
4521
4687
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4522
4688
|
padding-left: 18px;
|
|
4523
4689
|
padding-right: 0;
|
|
4690
|
+
/* stylelint-disable */
|
|
4691
|
+
/* stylelint-enable */
|
|
4524
4692
|
}
|
|
4525
4693
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4526
4694
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4602,8 +4770,10 @@
|
|
|
4602
4770
|
}
|
|
4603
4771
|
.e-pivotfieldlist-container.e-device {
|
|
4604
4772
|
height: 100%;
|
|
4773
|
+
/* stylelint-disable */
|
|
4605
4774
|
max-height: 100% !important;
|
|
4606
4775
|
max-width: 100% !important;
|
|
4776
|
+
/* stylelint-enable */
|
|
4607
4777
|
min-height: 500px;
|
|
4608
4778
|
width: 100%;
|
|
4609
4779
|
}
|
|
@@ -4710,6 +4880,8 @@
|
|
|
4710
4880
|
width: 100%;
|
|
4711
4881
|
background-color: #fff;
|
|
4712
4882
|
color: #212529;
|
|
4883
|
+
/* stylelint-disable */
|
|
4884
|
+
/* stylelint-enable */
|
|
4713
4885
|
}
|
|
4714
4886
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4715
4887
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4903,6 +5075,10 @@
|
|
|
4903
5075
|
width: 70%;
|
|
4904
5076
|
color: #212529;
|
|
4905
5077
|
}
|
|
5078
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5079
|
+
/* stylelint-disable */
|
|
5080
|
+
/* stylelint-enable */
|
|
5081
|
+
}
|
|
4906
5082
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4907
5083
|
background-color: #fff;
|
|
4908
5084
|
border: 1px solid #dee2e6;
|
|
@@ -4950,6 +5126,10 @@
|
|
|
4950
5126
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
4951
5127
|
margin-right: 12px;
|
|
4952
5128
|
}
|
|
5129
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5130
|
+
/* stylelint-disable */
|
|
5131
|
+
/* stylelint-enable */
|
|
5132
|
+
}
|
|
4953
5133
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
4954
5134
|
left: 16px;
|
|
4955
5135
|
right: auto;
|
|
@@ -5100,6 +5280,10 @@
|
|
|
5100
5280
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5101
5281
|
max-height: 600px;
|
|
5102
5282
|
}
|
|
5283
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5284
|
+
/* stylelint-disable */
|
|
5285
|
+
/* stylelint-enable */
|
|
5286
|
+
}
|
|
5103
5287
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5104
5288
|
margin-left: 12px;
|
|
5105
5289
|
margin-right: 0;
|
|
@@ -5120,6 +5304,11 @@
|
|
|
5120
5304
|
margin-left: 20px;
|
|
5121
5305
|
}
|
|
5122
5306
|
|
|
5307
|
+
/* stylelint-disable */
|
|
5308
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5309
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5310
|
+
/* stylelint-enable */
|
|
5311
|
+
}
|
|
5123
5312
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5124
5313
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5125
5314
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5271,6 +5460,16 @@
|
|
|
5271
5460
|
margin-top: 4px;
|
|
5272
5461
|
padding: 0 12px;
|
|
5273
5462
|
}
|
|
5463
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5464
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5465
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5466
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
5467
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5468
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5469
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5470
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5471
|
+
/* stylelint-disable */
|
|
5472
|
+
}
|
|
5274
5473
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content .e-pvt-btn-div .e-pivot-button,
|
|
5275
5474
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content .e-pvt-btn-div .e-pivot-button,
|
|
5276
5475
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content .e-pvt-btn-div .e-pivot-button,
|
|
@@ -5282,6 +5481,7 @@
|
|
|
5282
5481
|
font-size: 14px;
|
|
5283
5482
|
height: 36px !important;
|
|
5284
5483
|
padding: 9px 16px !important;
|
|
5484
|
+
/* stylelint-enable */
|
|
5285
5485
|
}
|
|
5286
5486
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content .e-pvt-btn-div .e-pivot-button .e-content,
|
|
5287
5487
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content .e-pvt-btn-div .e-pivot-button .e-content,
|
|
@@ -5406,6 +5606,10 @@
|
|
|
5406
5606
|
.e-bigger.e-pivotfieldlist-container.e-static .e-field-list-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-container .e-axis-icon-container {
|
|
5407
5607
|
padding-top: 7px;
|
|
5408
5608
|
}
|
|
5609
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5610
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5611
|
+
/* stylelint-disable */
|
|
5612
|
+
}
|
|
5409
5613
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5410
5614
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5411
5615
|
padding-left: 12px;
|
|
@@ -5418,6 +5622,7 @@
|
|
|
5418
5622
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5419
5623
|
padding-left: 0;
|
|
5420
5624
|
padding-right: 5px;
|
|
5625
|
+
/* stylelint-enable */
|
|
5421
5626
|
}
|
|
5422
5627
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5423
5628
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5456,6 +5661,8 @@
|
|
|
5456
5661
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5457
5662
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5458
5663
|
padding-left: 20px;
|
|
5664
|
+
/* stylelint-disable */
|
|
5665
|
+
/* stylelint-enable */
|
|
5459
5666
|
}
|
|
5460
5667
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5461
5668
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5523,6 +5730,10 @@
|
|
|
5523
5730
|
padding-left: 0;
|
|
5524
5731
|
padding-right: 4px;
|
|
5525
5732
|
}
|
|
5733
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5734
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5735
|
+
/* stylelint-disable */
|
|
5736
|
+
}
|
|
5526
5737
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5527
5738
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5528
5739
|
max-height: 750px;
|
|
@@ -5559,4 +5770,6 @@
|
|
|
5559
5770
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5560
5771
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5561
5772
|
max-height: 187px;
|
|
5562
|
-
}
|
|
5773
|
+
}
|
|
5774
|
+
|
|
5775
|
+
/* stylelint-enable */
|