@syncfusion/ej2-angular-pivotview 20.2.38-ngcc → 20.2.38
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 +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 +233 -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 +191 -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 +1852 -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 +1862 -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 +358 -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 +357 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +358 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +357 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +357 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +357 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_material.scss +357 -0
- package/styles/pivotfieldlist/icons/_material3.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +356 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +356 -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 +131 -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 +131 -0
- package/styles/pivotview/_fusionnew-definition.scss +131 -0
- package/styles/pivotview/_highcontrast-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
- package/styles/pivotview/_layout.scss +1073 -0
- package/styles/pivotview/_material-dark-definition.scss +132 -0
- package/styles/pivotview/_material-definition.scss +128 -0
- package/styles/pivotview/_material3-definition.scss +131 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +130 -0
- package/styles/pivotview/_theme.scss +1583 -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 -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/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: 550px !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 {
|
|
@@ -2631,9 +2740,11 @@
|
|
|
2631
2740
|
}
|
|
2632
2741
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2633
2742
|
color: #6b7280;
|
|
2743
|
+
/* stylelint-disable */
|
|
2634
2744
|
float: right !important;
|
|
2635
2745
|
margin: 0;
|
|
2636
2746
|
margin-right: 12px !important;
|
|
2747
|
+
/* stylelint-enable */
|
|
2637
2748
|
}
|
|
2638
2749
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2639
2750
|
cursor: default;
|
|
@@ -2684,12 +2795,14 @@
|
|
|
2684
2795
|
margin-right: 4px;
|
|
2685
2796
|
pointer-events: auto;
|
|
2686
2797
|
width: 24px;
|
|
2798
|
+
/* stylelint-disable */
|
|
2687
2799
|
height: 20px;
|
|
2688
2800
|
margin-top: 0;
|
|
2689
2801
|
padding: 0 5px;
|
|
2690
2802
|
position: relative;
|
|
2691
2803
|
bottom: 1px;
|
|
2692
2804
|
width: 20px;
|
|
2805
|
+
/* stylelint-enable */
|
|
2693
2806
|
}
|
|
2694
2807
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item.e-active span.e-icons {
|
|
2695
2808
|
color: #6b7280;
|
|
@@ -2935,8 +3048,11 @@
|
|
|
2935
3048
|
|
|
2936
3049
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2937
3050
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3051
|
+
/* stylelint-disable */
|
|
2938
3052
|
max-height: 600px !important;
|
|
2939
3053
|
min-width: 401px !important;
|
|
3054
|
+
/* stylelint-enable */
|
|
3055
|
+
/* stylelint-disable */
|
|
2940
3056
|
}
|
|
2941
3057
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2942
3058
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -3022,6 +3138,9 @@
|
|
|
3022
3138
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3023
3139
|
max-width: 400px !important;
|
|
3024
3140
|
min-width: 320px !important;
|
|
3141
|
+
/* stylelint-enable */
|
|
3142
|
+
/* stylelint-disable */
|
|
3143
|
+
/* stylelint-enable */
|
|
3025
3144
|
}
|
|
3026
3145
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
3027
3146
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3059,8 +3178,10 @@
|
|
|
3059
3178
|
}
|
|
3060
3179
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3061
3180
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3181
|
+
/* stylelint-disable */
|
|
3062
3182
|
margin-left: -22px;
|
|
3063
3183
|
overflow: auto !important;
|
|
3184
|
+
/* stylelint-enable */
|
|
3064
3185
|
}
|
|
3065
3186
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3066
3187
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3079,6 +3200,10 @@
|
|
|
3079
3200
|
margin-left: 0;
|
|
3080
3201
|
margin-right: -22px;
|
|
3081
3202
|
}
|
|
3203
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3204
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3205
|
+
/* stylelint-disable */
|
|
3206
|
+
}
|
|
3082
3207
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3083
3208
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3084
3209
|
margin-left: 0;
|
|
@@ -3140,6 +3265,7 @@
|
|
|
3140
3265
|
}
|
|
3141
3266
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3142
3267
|
border: 0;
|
|
3268
|
+
/* stylelint-enable */
|
|
3143
3269
|
}
|
|
3144
3270
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3145
3271
|
margin: 0 0 0 6px;
|
|
@@ -3169,6 +3295,8 @@
|
|
|
3169
3295
|
overflow: auto;
|
|
3170
3296
|
padding: 20px;
|
|
3171
3297
|
padding-bottom: 0;
|
|
3298
|
+
/* stylelint-disable */
|
|
3299
|
+
/* stylelint-enable */
|
|
3172
3300
|
padding-top: 0;
|
|
3173
3301
|
}
|
|
3174
3302
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
@@ -3209,6 +3337,9 @@
|
|
|
3209
3337
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3210
3338
|
float: right;
|
|
3211
3339
|
}
|
|
3340
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3341
|
+
/* stylelint-disable */
|
|
3342
|
+
}
|
|
3212
3343
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3213
3344
|
margin-left: 0;
|
|
3214
3345
|
}
|
|
@@ -3348,6 +3479,7 @@
|
|
|
3348
3479
|
overflow: hidden;
|
|
3349
3480
|
padding: 0 !important;
|
|
3350
3481
|
padding: 12px 0 0 0 !important;
|
|
3482
|
+
/* stylelint-enable */
|
|
3351
3483
|
}
|
|
3352
3484
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3353
3485
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3419,6 +3551,11 @@
|
|
|
3419
3551
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3420
3552
|
padding-right: 0;
|
|
3421
3553
|
}
|
|
3554
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3555
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3556
|
+
/* stylelint-disable */
|
|
3557
|
+
/* stylelint-enable */
|
|
3558
|
+
}
|
|
3422
3559
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3423
3560
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3424
3561
|
padding-left: 24px;
|
|
@@ -3468,6 +3605,7 @@
|
|
|
3468
3605
|
padding: 4px;
|
|
3469
3606
|
}
|
|
3470
3607
|
|
|
3608
|
+
/* stylelint-disable */
|
|
3471
3609
|
.e-button-drag-clone {
|
|
3472
3610
|
background-color: #e5e7eb !important;
|
|
3473
3611
|
border: 1px solid #e5e7eb;
|
|
@@ -3507,6 +3645,12 @@
|
|
|
3507
3645
|
width: auto !important;
|
|
3508
3646
|
}
|
|
3509
3647
|
|
|
3648
|
+
/* stylelint-enable */
|
|
3649
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3650
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3651
|
+
/* stylelint-disable */
|
|
3652
|
+
/* stylelint-enable */
|
|
3653
|
+
}
|
|
3510
3654
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3511
3655
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3512
3656
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3571,6 +3715,10 @@
|
|
|
3571
3715
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3572
3716
|
margin-left: 10px;
|
|
3573
3717
|
}
|
|
3718
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3719
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3720
|
+
/* stylelint-disable */
|
|
3721
|
+
}
|
|
3574
3722
|
.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,
|
|
3575
3723
|
.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 {
|
|
3576
3724
|
margin: 0 0 0 6px;
|
|
@@ -3723,6 +3871,7 @@
|
|
|
3723
3871
|
background-color: #e5e7eb;
|
|
3724
3872
|
}
|
|
3725
3873
|
|
|
3874
|
+
/* stylelint-disable */
|
|
3726
3875
|
*.e-rtl .e-select-table {
|
|
3727
3876
|
padding: 8px 5px;
|
|
3728
3877
|
}
|
|
@@ -3761,6 +3910,8 @@
|
|
|
3761
3910
|
font-size: 14px;
|
|
3762
3911
|
max-width: 700px;
|
|
3763
3912
|
min-width: 300px;
|
|
3913
|
+
/* stylelint-enable */
|
|
3914
|
+
/* stylelint-enable */
|
|
3764
3915
|
}
|
|
3765
3916
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3766
3917
|
display: -ms-flexbox;
|
|
@@ -3883,6 +4034,8 @@
|
|
|
3883
4034
|
display: -ms-flexbox;
|
|
3884
4035
|
display: flex;
|
|
3885
4036
|
padding-right: 18px;
|
|
4037
|
+
/* stylelint-disable */
|
|
4038
|
+
/* stylelint-enable */
|
|
3886
4039
|
}
|
|
3887
4040
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3888
4041
|
-ms-flex: auto;
|
|
@@ -3894,7 +4047,9 @@
|
|
|
3894
4047
|
color: #374151;
|
|
3895
4048
|
cursor: pointer;
|
|
3896
4049
|
font-size: 14px;
|
|
4050
|
+
/* stylelint-disable */
|
|
3897
4051
|
height: 20px !important;
|
|
4052
|
+
/* stylelint-enable */
|
|
3898
4053
|
padding: 6px 0 0 4px;
|
|
3899
4054
|
width: 20px;
|
|
3900
4055
|
}
|
|
@@ -3927,9 +4082,13 @@
|
|
|
3927
4082
|
}
|
|
3928
4083
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3929
4084
|
overflow: hidden;
|
|
4085
|
+
/* stylelint-disable */
|
|
4086
|
+
/* stylelint-enable */
|
|
3930
4087
|
}
|
|
3931
4088
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3932
4089
|
margin-left: -30px;
|
|
4090
|
+
/* stylelint-disable */
|
|
4091
|
+
/* stylelint-enable */
|
|
3933
4092
|
}
|
|
3934
4093
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3935
4094
|
cursor: default;
|
|
@@ -4451,6 +4610,8 @@
|
|
|
4451
4610
|
}
|
|
4452
4611
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4453
4612
|
height: 369px;
|
|
4613
|
+
/* stylelint-disable */
|
|
4614
|
+
/* stylelint-enable */
|
|
4454
4615
|
}
|
|
4455
4616
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4456
4617
|
height: 389px !important;
|
|
@@ -4474,6 +4635,7 @@
|
|
|
4474
4635
|
display: -ms-flexbox;
|
|
4475
4636
|
display: flex;
|
|
4476
4637
|
padding: 10px 18px;
|
|
4638
|
+
/* stylelint-disable */
|
|
4477
4639
|
}
|
|
4478
4640
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4479
4641
|
float: right;
|
|
@@ -4510,6 +4672,8 @@
|
|
|
4510
4672
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4511
4673
|
margin-left: 0;
|
|
4512
4674
|
margin-right: -30px;
|
|
4675
|
+
/* stylelint-disable */
|
|
4676
|
+
/* stylelint-enable */
|
|
4513
4677
|
}
|
|
4514
4678
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4515
4679
|
font-family: Inter;
|
|
@@ -4540,6 +4704,8 @@
|
|
|
4540
4704
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4541
4705
|
padding-left: 18px;
|
|
4542
4706
|
padding-right: 0;
|
|
4707
|
+
/* stylelint-disable */
|
|
4708
|
+
/* stylelint-enable */
|
|
4543
4709
|
}
|
|
4544
4710
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4545
4711
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4621,8 +4787,10 @@
|
|
|
4621
4787
|
}
|
|
4622
4788
|
.e-pivotfieldlist-container.e-device {
|
|
4623
4789
|
height: 100%;
|
|
4790
|
+
/* stylelint-disable */
|
|
4624
4791
|
max-height: 100% !important;
|
|
4625
4792
|
max-width: 100% !important;
|
|
4793
|
+
/* stylelint-enable */
|
|
4626
4794
|
min-height: 500px;
|
|
4627
4795
|
width: 100%;
|
|
4628
4796
|
}
|
|
@@ -4729,6 +4897,8 @@
|
|
|
4729
4897
|
padding: 9px 16px;
|
|
4730
4898
|
text-transform: none;
|
|
4731
4899
|
width: 100%;
|
|
4900
|
+
/* stylelint-disable */
|
|
4901
|
+
/* stylelint-enable */
|
|
4732
4902
|
}
|
|
4733
4903
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4734
4904
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4920,6 +5090,10 @@
|
|
|
4920
5090
|
vertical-align: middle;
|
|
4921
5091
|
width: 70%;
|
|
4922
5092
|
}
|
|
5093
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5094
|
+
/* stylelint-disable */
|
|
5095
|
+
/* stylelint-enable */
|
|
5096
|
+
}
|
|
4923
5097
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4924
5098
|
background-color: #fff;
|
|
4925
5099
|
border: 1px solid #e5e7eb;
|
|
@@ -4967,6 +5141,10 @@
|
|
|
4967
5141
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
4968
5142
|
margin-right: 12px;
|
|
4969
5143
|
}
|
|
5144
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5145
|
+
/* stylelint-disable */
|
|
5146
|
+
/* stylelint-enable */
|
|
5147
|
+
}
|
|
4970
5148
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
4971
5149
|
left: 16px;
|
|
4972
5150
|
right: auto;
|
|
@@ -5116,6 +5294,10 @@
|
|
|
5116
5294
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5117
5295
|
max-height: 600px;
|
|
5118
5296
|
}
|
|
5297
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5298
|
+
/* stylelint-disable */
|
|
5299
|
+
/* stylelint-enable */
|
|
5300
|
+
}
|
|
5119
5301
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5120
5302
|
margin-left: 12px;
|
|
5121
5303
|
margin-right: 0;
|
|
@@ -5136,6 +5318,11 @@
|
|
|
5136
5318
|
margin-left: 20px;
|
|
5137
5319
|
}
|
|
5138
5320
|
|
|
5321
|
+
/* stylelint-disable */
|
|
5322
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5323
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5324
|
+
/* stylelint-enable */
|
|
5325
|
+
}
|
|
5139
5326
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5140
5327
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5141
5328
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5287,6 +5474,16 @@
|
|
|
5287
5474
|
margin-top: 4px;
|
|
5288
5475
|
padding: 0 12px;
|
|
5289
5476
|
}
|
|
5477
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5478
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5479
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5480
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
5481
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5482
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5483
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5484
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5485
|
+
/* stylelint-disable */
|
|
5486
|
+
}
|
|
5290
5487
|
.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,
|
|
5291
5488
|
.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,
|
|
5292
5489
|
.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,
|
|
@@ -5298,6 +5495,7 @@
|
|
|
5298
5495
|
font-size: 14px;
|
|
5299
5496
|
height: 36px !important;
|
|
5300
5497
|
padding: 9px 16px !important;
|
|
5498
|
+
/* stylelint-enable */
|
|
5301
5499
|
}
|
|
5302
5500
|
.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,
|
|
5303
5501
|
.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,
|
|
@@ -5422,6 +5620,10 @@
|
|
|
5422
5620
|
.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 {
|
|
5423
5621
|
padding-top: 7px;
|
|
5424
5622
|
}
|
|
5623
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5624
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5625
|
+
/* stylelint-disable */
|
|
5626
|
+
}
|
|
5425
5627
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5426
5628
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5427
5629
|
padding-left: 16px;
|
|
@@ -5434,6 +5636,7 @@
|
|
|
5434
5636
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5435
5637
|
padding-left: 0;
|
|
5436
5638
|
padding-right: 5px;
|
|
5639
|
+
/* stylelint-enable */
|
|
5437
5640
|
}
|
|
5438
5641
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5439
5642
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5472,6 +5675,8 @@
|
|
|
5472
5675
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5473
5676
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5474
5677
|
padding-left: 16px;
|
|
5678
|
+
/* stylelint-disable */
|
|
5679
|
+
/* stylelint-enable */
|
|
5475
5680
|
}
|
|
5476
5681
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5477
5682
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5539,6 +5744,10 @@
|
|
|
5539
5744
|
padding-left: 0;
|
|
5540
5745
|
padding-right: 4px;
|
|
5541
5746
|
}
|
|
5747
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5748
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5749
|
+
/* stylelint-disable */
|
|
5750
|
+
}
|
|
5542
5751
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5543
5752
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5544
5753
|
max-height: 750px;
|
|
@@ -5575,4 +5784,6 @@
|
|
|
5575
5784
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5576
5785
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5577
5786
|
max-height: 179px;
|
|
5578
|
-
}
|
|
5787
|
+
}
|
|
5788
|
+
|
|
5789
|
+
/* stylelint-enable */
|