@syncfusion/ej2-angular-pivotview 20.2.43-ngcc → 20.2.43
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 -1
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +212 -1
- package/styles/bootstrap.css +212 -1
- package/styles/bootstrap4.css +208 -2
- package/styles/bootstrap5-dark.css +214 -1
- package/styles/bootstrap5.css +214 -1
- package/styles/fabric-dark.css +212 -1
- package/styles/fabric.css +212 -1
- package/styles/fluent-dark.css +214 -1
- package/styles/fluent.css +214 -1
- package/styles/highcontrast-light.css +212 -1
- package/styles/highcontrast.css +212 -1
- package/styles/material-dark.css +212 -1
- package/styles/material.css +212 -1
- 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 +1848 -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 +1857 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +130 -1
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +130 -1
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +125 -1
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +134 -1
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +134 -1
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +130 -1
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +130 -1
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +132 -1
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +132 -1
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +130 -1
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +130 -1
- 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 +130 -1
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +130 -1
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +132 -1
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +132 -1
- 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 +212 -1
- package/styles/tailwind.css +212 -1
- 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 -696
- package/dist/ej2-angular-pivotview.umd.js +0 -667
- 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/tailwind.css
CHANGED
|
@@ -157,6 +157,12 @@
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
/*! PivotView layout */
|
|
160
|
+
.e-pivotview {
|
|
161
|
+
/* stylelint-disable */
|
|
162
|
+
/* stylelint-enable */
|
|
163
|
+
/* stylelint-enable */
|
|
164
|
+
/* stylelint-disable */
|
|
165
|
+
}
|
|
160
166
|
.e-pivotview .e-value-field-settings,
|
|
161
167
|
.e-pivotview .e-member-editor-dialog,
|
|
162
168
|
.e-pivotview .e-group-field-settings {
|
|
@@ -231,6 +237,7 @@
|
|
|
231
237
|
}
|
|
232
238
|
.e-pivotview .e-member-editor-dialog {
|
|
233
239
|
min-width: 320px;
|
|
240
|
+
/* stylelint-disable */
|
|
234
241
|
}
|
|
235
242
|
.e-pivotview .e-member-editor-dialog .e-editor-search-container {
|
|
236
243
|
display: -ms-flexbox;
|
|
@@ -250,6 +257,7 @@
|
|
|
250
257
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
251
258
|
box-shadow: none;
|
|
252
259
|
margin-left: 10px;
|
|
260
|
+
/* stylelint-disable */
|
|
253
261
|
}
|
|
254
262
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
255
263
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -343,6 +351,7 @@
|
|
|
343
351
|
}
|
|
344
352
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
345
353
|
border: none;
|
|
354
|
+
/* stylelint-enable */
|
|
346
355
|
}
|
|
347
356
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
348
357
|
margin: 0 0 0 6px;
|
|
@@ -588,13 +597,16 @@
|
|
|
588
597
|
}
|
|
589
598
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
590
599
|
margin-left: 18px !important;
|
|
600
|
+
/* stylelint-enable */
|
|
591
601
|
}
|
|
592
602
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
603
|
+
/* stylelint-disable */
|
|
593
604
|
padding: 0 !important;
|
|
594
605
|
}
|
|
595
606
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
596
607
|
float: left;
|
|
597
608
|
font-weight: 500;
|
|
609
|
+
/* stylelint-enable */
|
|
598
610
|
}
|
|
599
611
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
600
612
|
float: right;
|
|
@@ -623,6 +635,7 @@
|
|
|
623
635
|
}
|
|
624
636
|
|
|
625
637
|
.e-pivotview-report-dialog {
|
|
638
|
+
/* stylelint-disable */
|
|
626
639
|
max-width: 350px !important;
|
|
627
640
|
}
|
|
628
641
|
|
|
@@ -642,6 +655,7 @@
|
|
|
642
655
|
max-width: 500px !important;
|
|
643
656
|
}
|
|
644
657
|
|
|
658
|
+
/* stylelint-enable */
|
|
645
659
|
.e-report-outer {
|
|
646
660
|
display: inline-block;
|
|
647
661
|
width: 100%;
|
|
@@ -653,6 +667,7 @@
|
|
|
653
667
|
width: 40%;
|
|
654
668
|
}
|
|
655
669
|
|
|
670
|
+
/* stylelint-disable */
|
|
656
671
|
.e-pivotview-report-input {
|
|
657
672
|
float: right;
|
|
658
673
|
width: 60% !important;
|
|
@@ -674,11 +689,16 @@
|
|
|
674
689
|
font-size: 18px !important;
|
|
675
690
|
}
|
|
676
691
|
|
|
692
|
+
/* stylelint-enable */
|
|
677
693
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
678
694
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
679
695
|
white-space: nowrap;
|
|
680
696
|
}
|
|
681
697
|
|
|
698
|
+
.e-drillthrough-dialog {
|
|
699
|
+
/* stylelint-disable */
|
|
700
|
+
/* stylelint-enable */
|
|
701
|
+
}
|
|
682
702
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
683
703
|
margin-bottom: 20px;
|
|
684
704
|
}
|
|
@@ -699,6 +719,13 @@
|
|
|
699
719
|
flex-wrap: wrap;
|
|
700
720
|
}
|
|
701
721
|
|
|
722
|
+
.e-bigger .e-pivotview,
|
|
723
|
+
.e-bigger.e-pivotview {
|
|
724
|
+
/* stylelint-disable */
|
|
725
|
+
/* stylelint-enable */
|
|
726
|
+
/* stylelint-disable */
|
|
727
|
+
/* stylelint-enable */
|
|
728
|
+
}
|
|
702
729
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item .e-menu-icon,
|
|
703
730
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item .e-menu-icon {
|
|
704
731
|
line-height: 50px;
|
|
@@ -865,6 +892,18 @@
|
|
|
865
892
|
}
|
|
866
893
|
|
|
867
894
|
/*! PivotView theme */
|
|
895
|
+
.e-pivotview {
|
|
896
|
+
/* stylelint-enable */
|
|
897
|
+
/* stylelint-disable */
|
|
898
|
+
/* stylelint-enable */
|
|
899
|
+
/* stylelint-disable */
|
|
900
|
+
/* stylelint-enable */
|
|
901
|
+
/* stylelint-disable */
|
|
902
|
+
/* stylelint-enable */
|
|
903
|
+
/* stylelint-disable */
|
|
904
|
+
/* stylelint-enable */
|
|
905
|
+
/* stylelint-enable */
|
|
906
|
+
}
|
|
868
907
|
.e-pivotview .e-nextspan {
|
|
869
908
|
display: inline-block;
|
|
870
909
|
width: 18px;
|
|
@@ -885,6 +924,7 @@
|
|
|
885
924
|
text-align: right;
|
|
886
925
|
}
|
|
887
926
|
.e-pivotview .e-grid .e-rowcell {
|
|
927
|
+
/* stylelint-disable */
|
|
888
928
|
font-size: 14px !important;
|
|
889
929
|
padding-left: 8px;
|
|
890
930
|
-webkit-user-select: none;
|
|
@@ -1105,12 +1145,18 @@
|
|
|
1105
1145
|
}
|
|
1106
1146
|
.e-pivotview .e-rowcell {
|
|
1107
1147
|
opacity: 1;
|
|
1148
|
+
/* stylelint-disable */
|
|
1149
|
+
/* stylelint-enable */
|
|
1108
1150
|
}
|
|
1109
1151
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1110
1152
|
-webkit-user-select: none;
|
|
1111
1153
|
-ms-user-select: none;
|
|
1112
1154
|
user-select: none;
|
|
1113
1155
|
}
|
|
1156
|
+
.e-pivotview .e-grouping-bar {
|
|
1157
|
+
/* stylelint-disable */
|
|
1158
|
+
/* stylelint-enable */
|
|
1159
|
+
}
|
|
1114
1160
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1115
1161
|
-ms-flex: auto;
|
|
1116
1162
|
flex: auto;
|
|
@@ -1239,7 +1285,9 @@
|
|
|
1239
1285
|
border: 1px solid #e5e7eb;
|
|
1240
1286
|
border-radius: 0;
|
|
1241
1287
|
box-shadow: none;
|
|
1288
|
+
/* stylelint-disable */
|
|
1242
1289
|
color: #374151 !important;
|
|
1290
|
+
/* stylelint-enable */
|
|
1243
1291
|
cursor: default;
|
|
1244
1292
|
display: -ms-flexbox;
|
|
1245
1293
|
display: flex;
|
|
@@ -1250,6 +1298,8 @@
|
|
|
1250
1298
|
text-transform: none;
|
|
1251
1299
|
vertical-align: bottom;
|
|
1252
1300
|
z-index: 1;
|
|
1301
|
+
/* stylelint-disable */
|
|
1302
|
+
/* stylelint-enable */
|
|
1253
1303
|
}
|
|
1254
1304
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1255
1305
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1588,6 +1638,12 @@
|
|
|
1588
1638
|
.e-pivotview .e-expand::before {
|
|
1589
1639
|
font-size: 18px;
|
|
1590
1640
|
}
|
|
1641
|
+
.e-pivotview.e-rtl {
|
|
1642
|
+
/* stylelint-disable */
|
|
1643
|
+
/* stylelint-enable */
|
|
1644
|
+
/* stylelint-disable */
|
|
1645
|
+
/* stylelint-enable */
|
|
1646
|
+
}
|
|
1591
1647
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1592
1648
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1593
1649
|
margin-left: 0;
|
|
@@ -1659,8 +1715,10 @@
|
|
|
1659
1715
|
padding-right: 8px;
|
|
1660
1716
|
}
|
|
1661
1717
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1718
|
+
/* stylelint-disable */
|
|
1662
1719
|
padding-left: 8px;
|
|
1663
1720
|
padding-right: 0;
|
|
1721
|
+
/* stylelint-enable */
|
|
1664
1722
|
}
|
|
1665
1723
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1666
1724
|
margin-left: 4px;
|
|
@@ -1683,6 +1741,9 @@
|
|
|
1683
1741
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1684
1742
|
float: left;
|
|
1685
1743
|
}
|
|
1744
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1745
|
+
/* stylelint-disable */
|
|
1746
|
+
}
|
|
1686
1747
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1687
1748
|
line-height: 1em !important;
|
|
1688
1749
|
}
|
|
@@ -1760,6 +1821,13 @@
|
|
|
1760
1821
|
margin-right: 5px;
|
|
1761
1822
|
}
|
|
1762
1823
|
|
|
1824
|
+
.e-bigger .e-pivotview,
|
|
1825
|
+
.e-bigger.e-pivotview {
|
|
1826
|
+
/* stylelint-disable */
|
|
1827
|
+
/* stylelint-enable */
|
|
1828
|
+
/* stylelint-disable */
|
|
1829
|
+
/* stylelint-enable */
|
|
1830
|
+
}
|
|
1763
1831
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1764
1832
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1765
1833
|
margin: 0;
|
|
@@ -1824,6 +1892,10 @@
|
|
|
1824
1892
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1825
1893
|
margin-top: 0;
|
|
1826
1894
|
}
|
|
1895
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1896
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1897
|
+
/* stylelint-enable */
|
|
1898
|
+
}
|
|
1827
1899
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1828
1900
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1829
1901
|
height: 36px !important;
|
|
@@ -1864,6 +1936,7 @@
|
|
|
1864
1936
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1865
1937
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1866
1938
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1939
|
+
/* stylelint-disable */
|
|
1867
1940
|
font-size: 14px !important;
|
|
1868
1941
|
height: 20px;
|
|
1869
1942
|
margin-top: 1px;
|
|
@@ -1993,9 +2066,16 @@
|
|
|
1993
2066
|
}
|
|
1994
2067
|
.e-bigger .e-pivotview .e-rowcell,
|
|
1995
2068
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2069
|
+
/* stylelint-disable */
|
|
1996
2070
|
font-size: 16px !important;
|
|
1997
2071
|
padding: 0 12px;
|
|
1998
2072
|
}
|
|
2073
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2074
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2075
|
+
/* stylelint-enable */
|
|
2076
|
+
/* stylelint-disable */
|
|
2077
|
+
/* stylelint-enable */
|
|
2078
|
+
}
|
|
1999
2079
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
2000
2080
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
2001
2081
|
padding-right: 10px !important;
|
|
@@ -2074,6 +2154,10 @@
|
|
|
2074
2154
|
content: "\e774";
|
|
2075
2155
|
}
|
|
2076
2156
|
|
|
2157
|
+
.e-pivot-calc-dialog-div {
|
|
2158
|
+
/* stylelint-disable */
|
|
2159
|
+
/* stylelint-enable */
|
|
2160
|
+
}
|
|
2077
2161
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
2078
2162
|
content: "\e726";
|
|
2079
2163
|
}
|
|
@@ -2172,6 +2256,11 @@
|
|
|
2172
2256
|
content: "\e7d8" !important;
|
|
2173
2257
|
}
|
|
2174
2258
|
|
|
2259
|
+
.e-pivotfieldlist-wrapper,
|
|
2260
|
+
.e-pivotfieldlist-container {
|
|
2261
|
+
/* stylelint-disable */
|
|
2262
|
+
/* stylelint-enable */
|
|
2263
|
+
}
|
|
2175
2264
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2176
2265
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
2177
2266
|
content: "\e773";
|
|
@@ -2366,8 +2455,10 @@
|
|
|
2366
2455
|
}
|
|
2367
2456
|
|
|
2368
2457
|
.e-pivot-formatting-dialog {
|
|
2458
|
+
/* stylelint-disable */
|
|
2369
2459
|
max-height: 480px !important;
|
|
2370
2460
|
width: 640px !important;
|
|
2461
|
+
/* stylelint-enable */
|
|
2371
2462
|
}
|
|
2372
2463
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2373
2464
|
padding-bottom: 4px;
|
|
@@ -2442,7 +2533,9 @@
|
|
|
2442
2533
|
border: 1px solid #e5e7eb;
|
|
2443
2534
|
border-radius: 4px;
|
|
2444
2535
|
height: 28px;
|
|
2536
|
+
/* stylelint-disable */
|
|
2445
2537
|
margin: 0 !important;
|
|
2538
|
+
/* stylelint-enable */
|
|
2446
2539
|
padding-left: 6px;
|
|
2447
2540
|
padding-top: 6px;
|
|
2448
2541
|
width: 80px;
|
|
@@ -2463,7 +2556,9 @@
|
|
|
2463
2556
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
2464
2557
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
2465
2558
|
border: 1px solid #e5e7eb;
|
|
2559
|
+
/* stylelint-disable */
|
|
2466
2560
|
border-radius: 0 !important;
|
|
2561
|
+
/* stylelint-enable */
|
|
2467
2562
|
height: 40%;
|
|
2468
2563
|
left: -3px;
|
|
2469
2564
|
position: absolute;
|
|
@@ -2471,8 +2566,10 @@
|
|
|
2471
2566
|
width: 150%;
|
|
2472
2567
|
}
|
|
2473
2568
|
.e-pivot-formatting-dialog.e-device {
|
|
2569
|
+
/* stylelint-disable */
|
|
2474
2570
|
min-width: 320px !important;
|
|
2475
2571
|
width: 100% !important;
|
|
2572
|
+
/* stylelint-enable */
|
|
2476
2573
|
}
|
|
2477
2574
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2478
2575
|
width: 100% !important;
|
|
@@ -2524,7 +2621,11 @@
|
|
|
2524
2621
|
|
|
2525
2622
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2526
2623
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2624
|
+
/* stylelint-disable */
|
|
2527
2625
|
width: 730px !important;
|
|
2626
|
+
/* stylelint-enable */
|
|
2627
|
+
/* stylelint-disable */
|
|
2628
|
+
/* stylelint-enable */
|
|
2528
2629
|
}
|
|
2529
2630
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2530
2631
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2563,8 +2664,10 @@
|
|
|
2563
2664
|
}
|
|
2564
2665
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
2565
2666
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
2667
|
+
/* stylelint-disable */
|
|
2566
2668
|
min-width: 320px !important;
|
|
2567
2669
|
width: 100% !important;
|
|
2670
|
+
/* stylelint-enable */
|
|
2568
2671
|
}
|
|
2569
2672
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
2570
2673
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -2584,8 +2687,14 @@
|
|
|
2584
2687
|
}
|
|
2585
2688
|
|
|
2586
2689
|
.e-pivot-calc-dialog-div {
|
|
2690
|
+
/* stylelint-disable */
|
|
2587
2691
|
max-height: 600px !important;
|
|
2692
|
+
/* stylelint-enable */
|
|
2588
2693
|
min-width: 290px;
|
|
2694
|
+
/* stylelint-disable */
|
|
2695
|
+
/* stylelint-enable */
|
|
2696
|
+
/* stylelint-disable */
|
|
2697
|
+
/* stylelint-enable */
|
|
2589
2698
|
}
|
|
2590
2699
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
2591
2700
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -2634,9 +2743,11 @@
|
|
|
2634
2743
|
}
|
|
2635
2744
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2636
2745
|
color: #6b7280;
|
|
2746
|
+
/* stylelint-disable */
|
|
2637
2747
|
float: right !important;
|
|
2638
2748
|
margin: 0;
|
|
2639
2749
|
margin-right: 12px !important;
|
|
2750
|
+
/* stylelint-enable */
|
|
2640
2751
|
}
|
|
2641
2752
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2642
2753
|
cursor: default;
|
|
@@ -2687,12 +2798,14 @@
|
|
|
2687
2798
|
margin-right: 4px;
|
|
2688
2799
|
pointer-events: auto;
|
|
2689
2800
|
width: 24px;
|
|
2801
|
+
/* stylelint-disable */
|
|
2690
2802
|
height: 20px;
|
|
2691
2803
|
margin-top: 0;
|
|
2692
2804
|
padding: 0 5px;
|
|
2693
2805
|
position: relative;
|
|
2694
2806
|
bottom: 1px;
|
|
2695
2807
|
width: 20px;
|
|
2808
|
+
/* stylelint-enable */
|
|
2696
2809
|
}
|
|
2697
2810
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item.e-active span.e-icons {
|
|
2698
2811
|
color: #6b7280;
|
|
@@ -2938,8 +3051,11 @@
|
|
|
2938
3051
|
|
|
2939
3052
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2940
3053
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3054
|
+
/* stylelint-disable */
|
|
2941
3055
|
max-height: 600px !important;
|
|
2942
3056
|
min-width: 401px !important;
|
|
3057
|
+
/* stylelint-enable */
|
|
3058
|
+
/* stylelint-disable */
|
|
2943
3059
|
}
|
|
2944
3060
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2945
3061
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -3025,6 +3141,9 @@
|
|
|
3025
3141
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3026
3142
|
max-width: 400px !important;
|
|
3027
3143
|
min-width: 320px !important;
|
|
3144
|
+
/* stylelint-enable */
|
|
3145
|
+
/* stylelint-disable */
|
|
3146
|
+
/* stylelint-enable */
|
|
3028
3147
|
}
|
|
3029
3148
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
3030
3149
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3062,8 +3181,10 @@
|
|
|
3062
3181
|
}
|
|
3063
3182
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3064
3183
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3184
|
+
/* stylelint-disable */
|
|
3065
3185
|
margin-left: -22px;
|
|
3066
3186
|
overflow: auto !important;
|
|
3187
|
+
/* stylelint-enable */
|
|
3067
3188
|
}
|
|
3068
3189
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3069
3190
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3082,6 +3203,10 @@
|
|
|
3082
3203
|
margin-left: 0;
|
|
3083
3204
|
margin-right: -22px;
|
|
3084
3205
|
}
|
|
3206
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3207
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3208
|
+
/* stylelint-disable */
|
|
3209
|
+
}
|
|
3085
3210
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3086
3211
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3087
3212
|
margin-left: 0;
|
|
@@ -3143,6 +3268,7 @@
|
|
|
3143
3268
|
}
|
|
3144
3269
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3145
3270
|
border: 0;
|
|
3271
|
+
/* stylelint-enable */
|
|
3146
3272
|
}
|
|
3147
3273
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3148
3274
|
margin: 0 0 0 6px;
|
|
@@ -3172,6 +3298,8 @@
|
|
|
3172
3298
|
overflow: auto;
|
|
3173
3299
|
padding: 20px;
|
|
3174
3300
|
padding-bottom: 0;
|
|
3301
|
+
/* stylelint-disable */
|
|
3302
|
+
/* stylelint-enable */
|
|
3175
3303
|
padding-top: 0;
|
|
3176
3304
|
}
|
|
3177
3305
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
@@ -3212,6 +3340,9 @@
|
|
|
3212
3340
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3213
3341
|
float: right;
|
|
3214
3342
|
}
|
|
3343
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3344
|
+
/* stylelint-disable */
|
|
3345
|
+
}
|
|
3215
3346
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3216
3347
|
margin-left: 0;
|
|
3217
3348
|
}
|
|
@@ -3351,6 +3482,7 @@
|
|
|
3351
3482
|
overflow: hidden;
|
|
3352
3483
|
padding: 0 !important;
|
|
3353
3484
|
padding: 12px 0 0 0 !important;
|
|
3485
|
+
/* stylelint-enable */
|
|
3354
3486
|
}
|
|
3355
3487
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3356
3488
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3422,6 +3554,11 @@
|
|
|
3422
3554
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3423
3555
|
padding-right: 0;
|
|
3424
3556
|
}
|
|
3557
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3558
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3559
|
+
/* stylelint-disable */
|
|
3560
|
+
/* stylelint-enable */
|
|
3561
|
+
}
|
|
3425
3562
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3426
3563
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3427
3564
|
padding-left: 24px;
|
|
@@ -3471,6 +3608,7 @@
|
|
|
3471
3608
|
padding: 4px;
|
|
3472
3609
|
}
|
|
3473
3610
|
|
|
3611
|
+
/* stylelint-disable */
|
|
3474
3612
|
.e-button-drag-clone {
|
|
3475
3613
|
background-color: #e5e7eb !important;
|
|
3476
3614
|
border: 1px solid #e5e7eb;
|
|
@@ -3510,6 +3648,12 @@
|
|
|
3510
3648
|
width: auto !important;
|
|
3511
3649
|
}
|
|
3512
3650
|
|
|
3651
|
+
/* stylelint-enable */
|
|
3652
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3653
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3654
|
+
/* stylelint-disable */
|
|
3655
|
+
/* stylelint-enable */
|
|
3656
|
+
}
|
|
3513
3657
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3514
3658
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3515
3659
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3574,6 +3718,10 @@
|
|
|
3574
3718
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3575
3719
|
margin-left: 10px;
|
|
3576
3720
|
}
|
|
3721
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3722
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3723
|
+
/* stylelint-disable */
|
|
3724
|
+
}
|
|
3577
3725
|
.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,
|
|
3578
3726
|
.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 {
|
|
3579
3727
|
margin: 0 0 0 6px;
|
|
@@ -3726,6 +3874,7 @@
|
|
|
3726
3874
|
background-color: #e5e7eb;
|
|
3727
3875
|
}
|
|
3728
3876
|
|
|
3877
|
+
/* stylelint-disable */
|
|
3729
3878
|
*.e-rtl .e-select-table {
|
|
3730
3879
|
padding: 8px 5px;
|
|
3731
3880
|
}
|
|
@@ -3764,6 +3913,8 @@
|
|
|
3764
3913
|
font-size: 14px;
|
|
3765
3914
|
max-width: 700px;
|
|
3766
3915
|
min-width: 300px;
|
|
3916
|
+
/* stylelint-enable */
|
|
3917
|
+
/* stylelint-enable */
|
|
3767
3918
|
}
|
|
3768
3919
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3769
3920
|
display: -ms-flexbox;
|
|
@@ -3886,6 +4037,8 @@
|
|
|
3886
4037
|
display: -ms-flexbox;
|
|
3887
4038
|
display: flex;
|
|
3888
4039
|
padding-right: 18px;
|
|
4040
|
+
/* stylelint-disable */
|
|
4041
|
+
/* stylelint-enable */
|
|
3889
4042
|
}
|
|
3890
4043
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3891
4044
|
-ms-flex: auto;
|
|
@@ -3897,7 +4050,9 @@
|
|
|
3897
4050
|
color: #374151;
|
|
3898
4051
|
cursor: pointer;
|
|
3899
4052
|
font-size: 14px;
|
|
4053
|
+
/* stylelint-disable */
|
|
3900
4054
|
height: 20px !important;
|
|
4055
|
+
/* stylelint-enable */
|
|
3901
4056
|
padding: 6px 0 0 4px;
|
|
3902
4057
|
width: 20px;
|
|
3903
4058
|
}
|
|
@@ -3930,9 +4085,13 @@
|
|
|
3930
4085
|
}
|
|
3931
4086
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3932
4087
|
overflow: hidden;
|
|
4088
|
+
/* stylelint-disable */
|
|
4089
|
+
/* stylelint-enable */
|
|
3933
4090
|
}
|
|
3934
4091
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3935
4092
|
margin-left: -30px;
|
|
4093
|
+
/* stylelint-disable */
|
|
4094
|
+
/* stylelint-enable */
|
|
3936
4095
|
}
|
|
3937
4096
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3938
4097
|
cursor: default;
|
|
@@ -4454,6 +4613,8 @@
|
|
|
4454
4613
|
}
|
|
4455
4614
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4456
4615
|
height: 369px;
|
|
4616
|
+
/* stylelint-disable */
|
|
4617
|
+
/* stylelint-enable */
|
|
4457
4618
|
}
|
|
4458
4619
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4459
4620
|
height: 389px !important;
|
|
@@ -4477,6 +4638,7 @@
|
|
|
4477
4638
|
display: -ms-flexbox;
|
|
4478
4639
|
display: flex;
|
|
4479
4640
|
padding: 10px 18px;
|
|
4641
|
+
/* stylelint-disable */
|
|
4480
4642
|
}
|
|
4481
4643
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4482
4644
|
float: right;
|
|
@@ -4513,6 +4675,8 @@
|
|
|
4513
4675
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4514
4676
|
margin-left: 0;
|
|
4515
4677
|
margin-right: -30px;
|
|
4678
|
+
/* stylelint-disable */
|
|
4679
|
+
/* stylelint-enable */
|
|
4516
4680
|
}
|
|
4517
4681
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4518
4682
|
font-family: Inter;
|
|
@@ -4543,6 +4707,8 @@
|
|
|
4543
4707
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4544
4708
|
padding-left: 18px;
|
|
4545
4709
|
padding-right: 0;
|
|
4710
|
+
/* stylelint-disable */
|
|
4711
|
+
/* stylelint-enable */
|
|
4546
4712
|
}
|
|
4547
4713
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4548
4714
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4624,8 +4790,10 @@
|
|
|
4624
4790
|
}
|
|
4625
4791
|
.e-pivotfieldlist-container.e-device {
|
|
4626
4792
|
height: 100%;
|
|
4793
|
+
/* stylelint-disable */
|
|
4627
4794
|
max-height: 100% !important;
|
|
4628
4795
|
max-width: 100% !important;
|
|
4796
|
+
/* stylelint-enable */
|
|
4629
4797
|
min-height: 500px;
|
|
4630
4798
|
width: 100%;
|
|
4631
4799
|
}
|
|
@@ -4732,6 +4900,8 @@
|
|
|
4732
4900
|
padding: 9px 16px;
|
|
4733
4901
|
text-transform: none;
|
|
4734
4902
|
width: 100%;
|
|
4903
|
+
/* stylelint-disable */
|
|
4904
|
+
/* stylelint-enable */
|
|
4735
4905
|
}
|
|
4736
4906
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4737
4907
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4923,6 +5093,10 @@
|
|
|
4923
5093
|
vertical-align: middle;
|
|
4924
5094
|
width: 70%;
|
|
4925
5095
|
}
|
|
5096
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5097
|
+
/* stylelint-disable */
|
|
5098
|
+
/* stylelint-enable */
|
|
5099
|
+
}
|
|
4926
5100
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4927
5101
|
background-color: #fff;
|
|
4928
5102
|
border: 1px solid #e5e7eb;
|
|
@@ -4969,6 +5143,10 @@
|
|
|
4969
5143
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
4970
5144
|
margin-right: 12px;
|
|
4971
5145
|
}
|
|
5146
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5147
|
+
/* stylelint-disable */
|
|
5148
|
+
/* stylelint-enable */
|
|
5149
|
+
}
|
|
4972
5150
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
4973
5151
|
left: 16px;
|
|
4974
5152
|
right: auto;
|
|
@@ -5118,6 +5296,10 @@
|
|
|
5118
5296
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5119
5297
|
max-height: 600px;
|
|
5120
5298
|
}
|
|
5299
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5300
|
+
/* stylelint-disable */
|
|
5301
|
+
/* stylelint-enable */
|
|
5302
|
+
}
|
|
5121
5303
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5122
5304
|
margin-left: 12px;
|
|
5123
5305
|
margin-right: 0;
|
|
@@ -5138,6 +5320,11 @@
|
|
|
5138
5320
|
margin-left: 20px;
|
|
5139
5321
|
}
|
|
5140
5322
|
|
|
5323
|
+
/* stylelint-disable */
|
|
5324
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5325
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5326
|
+
/* stylelint-enable */
|
|
5327
|
+
}
|
|
5141
5328
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5142
5329
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5143
5330
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5289,6 +5476,16 @@
|
|
|
5289
5476
|
margin-top: 4px;
|
|
5290
5477
|
padding: 0 12px;
|
|
5291
5478
|
}
|
|
5479
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5480
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5481
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5482
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
5483
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5484
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5485
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5486
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5487
|
+
/* stylelint-disable */
|
|
5488
|
+
}
|
|
5292
5489
|
.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,
|
|
5293
5490
|
.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,
|
|
5294
5491
|
.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,
|
|
@@ -5300,6 +5497,7 @@
|
|
|
5300
5497
|
font-size: 14px;
|
|
5301
5498
|
height: 36px !important;
|
|
5302
5499
|
padding: 9px 16px !important;
|
|
5500
|
+
/* stylelint-enable */
|
|
5303
5501
|
}
|
|
5304
5502
|
.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,
|
|
5305
5503
|
.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,
|
|
@@ -5424,6 +5622,10 @@
|
|
|
5424
5622
|
.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 {
|
|
5425
5623
|
padding-top: 7px;
|
|
5426
5624
|
}
|
|
5625
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5626
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5627
|
+
/* stylelint-disable */
|
|
5628
|
+
}
|
|
5427
5629
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5428
5630
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5429
5631
|
padding-left: 16px;
|
|
@@ -5436,6 +5638,7 @@
|
|
|
5436
5638
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5437
5639
|
padding-left: 0;
|
|
5438
5640
|
padding-right: 5px;
|
|
5641
|
+
/* stylelint-enable */
|
|
5439
5642
|
}
|
|
5440
5643
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5441
5644
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5474,6 +5677,8 @@
|
|
|
5474
5677
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5475
5678
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5476
5679
|
padding-left: 16px;
|
|
5680
|
+
/* stylelint-disable */
|
|
5681
|
+
/* stylelint-enable */
|
|
5477
5682
|
}
|
|
5478
5683
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5479
5684
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5541,6 +5746,10 @@
|
|
|
5541
5746
|
padding-left: 0;
|
|
5542
5747
|
padding-right: 4px;
|
|
5543
5748
|
}
|
|
5749
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5750
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5751
|
+
/* stylelint-disable */
|
|
5752
|
+
}
|
|
5544
5753
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5545
5754
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5546
5755
|
max-height: 750px;
|
|
@@ -5577,4 +5786,6 @@
|
|
|
5577
5786
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5578
5787
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5579
5788
|
max-height: 179px;
|
|
5580
|
-
}
|
|
5789
|
+
}
|
|
5790
|
+
|
|
5791
|
+
/* stylelint-enable */
|