@syncfusion/ej2-angular-pivotview 20.2.39-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 +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 +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 +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 -683
- 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
|
@@ -156,6 +156,12 @@
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
/*! PivotView layout */
|
|
159
|
+
.e-pivotview {
|
|
160
|
+
/* stylelint-disable */
|
|
161
|
+
/* stylelint-enable */
|
|
162
|
+
/* stylelint-enable */
|
|
163
|
+
/* stylelint-disable */
|
|
164
|
+
}
|
|
159
165
|
.e-pivotview .e-value-field-settings,
|
|
160
166
|
.e-pivotview .e-member-editor-dialog,
|
|
161
167
|
.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;
|
|
@@ -242,6 +249,7 @@
|
|
|
242
249
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
243
250
|
box-shadow: none;
|
|
244
251
|
margin-left: 10px;
|
|
252
|
+
/* stylelint-disable */
|
|
245
253
|
}
|
|
246
254
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
247
255
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -333,6 +341,7 @@
|
|
|
333
341
|
}
|
|
334
342
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
335
343
|
border: none;
|
|
344
|
+
/* stylelint-enable */
|
|
336
345
|
}
|
|
337
346
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
338
347
|
margin: 0 0 0 6px;
|
|
@@ -568,13 +577,16 @@
|
|
|
568
577
|
}
|
|
569
578
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
570
579
|
margin-left: 18px !important;
|
|
580
|
+
/* stylelint-enable */
|
|
571
581
|
}
|
|
572
582
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
583
|
+
/* stylelint-disable */
|
|
573
584
|
padding: 0 !important;
|
|
574
585
|
}
|
|
575
586
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
576
587
|
float: left;
|
|
577
588
|
font-weight: 500;
|
|
589
|
+
/* stylelint-enable */
|
|
578
590
|
}
|
|
579
591
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
580
592
|
float: right;
|
|
@@ -603,6 +615,7 @@
|
|
|
603
615
|
}
|
|
604
616
|
|
|
605
617
|
.e-pivotview-report-dialog {
|
|
618
|
+
/* stylelint-disable */
|
|
606
619
|
max-width: 350px !important;
|
|
607
620
|
}
|
|
608
621
|
|
|
@@ -622,6 +635,7 @@
|
|
|
622
635
|
max-width: 500px !important;
|
|
623
636
|
}
|
|
624
637
|
|
|
638
|
+
/* stylelint-enable */
|
|
625
639
|
.e-report-outer {
|
|
626
640
|
display: inline-block;
|
|
627
641
|
width: 100%;
|
|
@@ -633,6 +647,7 @@
|
|
|
633
647
|
width: 40%;
|
|
634
648
|
}
|
|
635
649
|
|
|
650
|
+
/* stylelint-disable */
|
|
636
651
|
.e-pivotview-report-input {
|
|
637
652
|
float: right;
|
|
638
653
|
width: 60% !important;
|
|
@@ -654,11 +669,16 @@
|
|
|
654
669
|
font-size: 18px !important;
|
|
655
670
|
}
|
|
656
671
|
|
|
672
|
+
/* stylelint-enable */
|
|
657
673
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
658
674
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
659
675
|
white-space: nowrap;
|
|
660
676
|
}
|
|
661
677
|
|
|
678
|
+
.e-drillthrough-dialog {
|
|
679
|
+
/* stylelint-disable */
|
|
680
|
+
/* stylelint-enable */
|
|
681
|
+
}
|
|
662
682
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
663
683
|
margin-bottom: 20px;
|
|
664
684
|
}
|
|
@@ -679,9 +699,18 @@
|
|
|
679
699
|
flex-wrap: wrap;
|
|
680
700
|
}
|
|
681
701
|
|
|
702
|
+
.e-bigger .e-pivotview,
|
|
703
|
+
.e-bigger.e-pivotview {
|
|
704
|
+
/* stylelint-disable */
|
|
705
|
+
/* stylelint-enable */
|
|
706
|
+
/* stylelint-disable */
|
|
707
|
+
/* stylelint-enable */
|
|
708
|
+
}
|
|
682
709
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
|
|
683
710
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
711
|
+
/* stylelint-disable */
|
|
684
712
|
height: 48px !important;
|
|
713
|
+
/* stylelint-enable */
|
|
685
714
|
}
|
|
686
715
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
687
716
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
@@ -837,6 +866,18 @@
|
|
|
837
866
|
}
|
|
838
867
|
|
|
839
868
|
/*! PivotView theme */
|
|
869
|
+
.e-pivotview {
|
|
870
|
+
/* stylelint-enable */
|
|
871
|
+
/* stylelint-disable */
|
|
872
|
+
/* stylelint-enable */
|
|
873
|
+
/* stylelint-disable */
|
|
874
|
+
/* stylelint-enable */
|
|
875
|
+
/* stylelint-disable */
|
|
876
|
+
/* stylelint-enable */
|
|
877
|
+
/* stylelint-disable */
|
|
878
|
+
/* stylelint-enable */
|
|
879
|
+
/* stylelint-enable */
|
|
880
|
+
}
|
|
840
881
|
.e-pivotview .e-nextspan {
|
|
841
882
|
display: inline-block;
|
|
842
883
|
width: 18px;
|
|
@@ -857,6 +898,7 @@
|
|
|
857
898
|
text-align: right;
|
|
858
899
|
}
|
|
859
900
|
.e-pivotview .e-grid .e-rowcell {
|
|
901
|
+
/* stylelint-disable */
|
|
860
902
|
font-size: 13px !important;
|
|
861
903
|
padding-left: 8px;
|
|
862
904
|
-webkit-user-select: none;
|
|
@@ -1060,12 +1102,18 @@
|
|
|
1060
1102
|
}
|
|
1061
1103
|
.e-pivotview .e-rowcell {
|
|
1062
1104
|
opacity: 1;
|
|
1105
|
+
/* stylelint-disable */
|
|
1106
|
+
/* stylelint-enable */
|
|
1063
1107
|
}
|
|
1064
1108
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1065
1109
|
-webkit-user-select: none;
|
|
1066
1110
|
-ms-user-select: none;
|
|
1067
1111
|
user-select: none;
|
|
1068
1112
|
}
|
|
1113
|
+
.e-pivotview .e-grouping-bar {
|
|
1114
|
+
/* stylelint-disable */
|
|
1115
|
+
/* stylelint-enable */
|
|
1116
|
+
}
|
|
1069
1117
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1070
1118
|
-ms-flex: auto;
|
|
1071
1119
|
flex: auto;
|
|
@@ -1191,7 +1239,9 @@
|
|
|
1191
1239
|
border: 1px solid #dadada;
|
|
1192
1240
|
border-radius: 0;
|
|
1193
1241
|
box-shadow: none;
|
|
1242
|
+
/* stylelint-disable */
|
|
1194
1243
|
color: #333 !important;
|
|
1244
|
+
/* stylelint-enable */
|
|
1195
1245
|
cursor: default;
|
|
1196
1246
|
display: -ms-flexbox;
|
|
1197
1247
|
display: flex;
|
|
@@ -1202,6 +1252,8 @@
|
|
|
1202
1252
|
text-transform: none;
|
|
1203
1253
|
vertical-align: bottom;
|
|
1204
1254
|
z-index: 1;
|
|
1255
|
+
/* stylelint-disable */
|
|
1256
|
+
/* stylelint-enable */
|
|
1205
1257
|
}
|
|
1206
1258
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1207
1259
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1538,6 +1590,12 @@
|
|
|
1538
1590
|
.e-pivotview .e-expand::before {
|
|
1539
1591
|
font-size: 10px;
|
|
1540
1592
|
}
|
|
1593
|
+
.e-pivotview.e-rtl {
|
|
1594
|
+
/* stylelint-disable */
|
|
1595
|
+
/* stylelint-enable */
|
|
1596
|
+
/* stylelint-disable */
|
|
1597
|
+
/* stylelint-enable */
|
|
1598
|
+
}
|
|
1541
1599
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1542
1600
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1543
1601
|
margin-left: 0;
|
|
@@ -1609,8 +1667,10 @@
|
|
|
1609
1667
|
padding-right: 8px;
|
|
1610
1668
|
}
|
|
1611
1669
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1670
|
+
/* stylelint-disable */
|
|
1612
1671
|
padding-left: 8px;
|
|
1613
1672
|
padding-right: 0;
|
|
1673
|
+
/* stylelint-enable */
|
|
1614
1674
|
}
|
|
1615
1675
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1616
1676
|
margin-left: 4px;
|
|
@@ -1633,6 +1693,9 @@
|
|
|
1633
1693
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1634
1694
|
float: left;
|
|
1635
1695
|
}
|
|
1696
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1697
|
+
/* stylelint-disable */
|
|
1698
|
+
}
|
|
1636
1699
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1637
1700
|
line-height: 1em !important;
|
|
1638
1701
|
}
|
|
@@ -1710,6 +1773,13 @@
|
|
|
1710
1773
|
margin-right: 5px;
|
|
1711
1774
|
}
|
|
1712
1775
|
|
|
1776
|
+
.e-bigger .e-pivotview,
|
|
1777
|
+
.e-bigger.e-pivotview {
|
|
1778
|
+
/* stylelint-disable */
|
|
1779
|
+
/* stylelint-enable */
|
|
1780
|
+
/* stylelint-disable */
|
|
1781
|
+
/* stylelint-enable */
|
|
1782
|
+
}
|
|
1713
1783
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1714
1784
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1715
1785
|
margin: 5px;
|
|
@@ -1772,6 +1842,10 @@
|
|
|
1772
1842
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1773
1843
|
margin-top: 7px;
|
|
1774
1844
|
}
|
|
1845
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1846
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1847
|
+
/* stylelint-enable */
|
|
1848
|
+
}
|
|
1775
1849
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1776
1850
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1777
1851
|
height: 36px !important;
|
|
@@ -1812,6 +1886,7 @@
|
|
|
1812
1886
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1813
1887
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1814
1888
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1889
|
+
/* stylelint-disable */
|
|
1815
1890
|
font-size: 14px !important;
|
|
1816
1891
|
height: 20px;
|
|
1817
1892
|
margin-top: 1px;
|
|
@@ -1928,8 +2003,15 @@
|
|
|
1928
2003
|
}
|
|
1929
2004
|
.e-bigger .e-pivotview .e-rowcell,
|
|
1930
2005
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2006
|
+
/* stylelint-disable */
|
|
1931
2007
|
font-size: 13px !important;
|
|
1932
2008
|
}
|
|
2009
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2010
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2011
|
+
/* stylelint-enable */
|
|
2012
|
+
/* stylelint-disable */
|
|
2013
|
+
/* stylelint-enable */
|
|
2014
|
+
}
|
|
1933
2015
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
1934
2016
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
1935
2017
|
padding-right: 10px !important;
|
|
@@ -153,6 +153,12 @@
|
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
/*! PivotView layout */
|
|
156
|
+
.e-pivotview {
|
|
157
|
+
/* stylelint-disable */
|
|
158
|
+
/* stylelint-enable */
|
|
159
|
+
/* stylelint-enable */
|
|
160
|
+
/* stylelint-disable */
|
|
161
|
+
}
|
|
156
162
|
.e-pivotview .e-value-field-settings,
|
|
157
163
|
.e-pivotview .e-member-editor-dialog,
|
|
158
164
|
.e-pivotview .e-group-field-settings {
|
|
@@ -227,6 +233,7 @@
|
|
|
227
233
|
}
|
|
228
234
|
.e-pivotview .e-member-editor-dialog {
|
|
229
235
|
min-width: 320px;
|
|
236
|
+
/* stylelint-disable */
|
|
230
237
|
}
|
|
231
238
|
.e-pivotview .e-member-editor-dialog .e-editor-search-container {
|
|
232
239
|
display: -ms-flexbox;
|
|
@@ -241,6 +248,7 @@
|
|
|
241
248
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
242
249
|
box-shadow: none;
|
|
243
250
|
margin-left: 10px;
|
|
251
|
+
/* stylelint-disable */
|
|
244
252
|
}
|
|
245
253
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
246
254
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -332,6 +340,7 @@
|
|
|
332
340
|
}
|
|
333
341
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
334
342
|
border: none;
|
|
343
|
+
/* stylelint-enable */
|
|
335
344
|
}
|
|
336
345
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
337
346
|
margin: 0 0 0 6px;
|
|
@@ -589,13 +598,16 @@
|
|
|
589
598
|
}
|
|
590
599
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
591
600
|
margin-left: 18px !important;
|
|
601
|
+
/* stylelint-enable */
|
|
592
602
|
}
|
|
593
603
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
604
|
+
/* stylelint-disable */
|
|
594
605
|
padding: 0 !important;
|
|
595
606
|
}
|
|
596
607
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
597
608
|
float: left;
|
|
598
609
|
font-weight: 500;
|
|
610
|
+
/* stylelint-enable */
|
|
599
611
|
}
|
|
600
612
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
601
613
|
float: right;
|
|
@@ -624,6 +636,7 @@
|
|
|
624
636
|
}
|
|
625
637
|
|
|
626
638
|
.e-pivotview-report-dialog {
|
|
639
|
+
/* stylelint-disable */
|
|
627
640
|
max-width: 350px !important;
|
|
628
641
|
}
|
|
629
642
|
|
|
@@ -643,6 +656,7 @@
|
|
|
643
656
|
max-width: 500px !important;
|
|
644
657
|
}
|
|
645
658
|
|
|
659
|
+
/* stylelint-enable */
|
|
646
660
|
.e-report-outer {
|
|
647
661
|
display: inline-block;
|
|
648
662
|
width: 100%;
|
|
@@ -655,6 +669,7 @@
|
|
|
655
669
|
width: 40%;
|
|
656
670
|
}
|
|
657
671
|
|
|
672
|
+
/* stylelint-disable */
|
|
658
673
|
.e-pivotview-report-input {
|
|
659
674
|
float: right;
|
|
660
675
|
width: 60% !important;
|
|
@@ -676,11 +691,16 @@
|
|
|
676
691
|
font-size: 18px !important;
|
|
677
692
|
}
|
|
678
693
|
|
|
694
|
+
/* stylelint-enable */
|
|
679
695
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
680
696
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
681
697
|
white-space: nowrap;
|
|
682
698
|
}
|
|
683
699
|
|
|
700
|
+
.e-drillthrough-dialog {
|
|
701
|
+
/* stylelint-disable */
|
|
702
|
+
/* stylelint-enable */
|
|
703
|
+
}
|
|
684
704
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
685
705
|
margin-bottom: 20px;
|
|
686
706
|
}
|
|
@@ -701,9 +721,18 @@
|
|
|
701
721
|
flex-wrap: wrap;
|
|
702
722
|
}
|
|
703
723
|
|
|
724
|
+
.e-bigger .e-pivotview,
|
|
725
|
+
.e-bigger.e-pivotview {
|
|
726
|
+
/* stylelint-disable */
|
|
727
|
+
/* stylelint-enable */
|
|
728
|
+
/* stylelint-disable */
|
|
729
|
+
/* stylelint-enable */
|
|
730
|
+
}
|
|
704
731
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
|
|
705
732
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
733
|
+
/* stylelint-disable */
|
|
706
734
|
height: 26px !important;
|
|
735
|
+
/* stylelint-enable */
|
|
707
736
|
}
|
|
708
737
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
709
738
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
@@ -859,6 +888,18 @@
|
|
|
859
888
|
}
|
|
860
889
|
|
|
861
890
|
/*! PivotView theme */
|
|
891
|
+
.e-pivotview {
|
|
892
|
+
/* stylelint-enable */
|
|
893
|
+
/* stylelint-disable */
|
|
894
|
+
/* stylelint-enable */
|
|
895
|
+
/* stylelint-disable */
|
|
896
|
+
/* stylelint-enable */
|
|
897
|
+
/* stylelint-disable */
|
|
898
|
+
/* stylelint-enable */
|
|
899
|
+
/* stylelint-disable */
|
|
900
|
+
/* stylelint-enable */
|
|
901
|
+
/* stylelint-enable */
|
|
902
|
+
}
|
|
862
903
|
.e-pivotview .e-nextspan {
|
|
863
904
|
display: inline-block;
|
|
864
905
|
width: 18px;
|
|
@@ -879,6 +920,7 @@
|
|
|
879
920
|
text-align: right;
|
|
880
921
|
}
|
|
881
922
|
.e-pivotview .e-grid .e-rowcell {
|
|
923
|
+
/* stylelint-disable */
|
|
882
924
|
font-size: 14px !important;
|
|
883
925
|
padding-left: 8px;
|
|
884
926
|
-webkit-user-select: none;
|
|
@@ -1087,12 +1129,18 @@
|
|
|
1087
1129
|
}
|
|
1088
1130
|
.e-pivotview .e-rowcell {
|
|
1089
1131
|
opacity: 1;
|
|
1132
|
+
/* stylelint-disable */
|
|
1133
|
+
/* stylelint-enable */
|
|
1090
1134
|
}
|
|
1091
1135
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1092
1136
|
-webkit-user-select: none;
|
|
1093
1137
|
-ms-user-select: none;
|
|
1094
1138
|
user-select: none;
|
|
1095
1139
|
}
|
|
1140
|
+
.e-pivotview .e-grouping-bar {
|
|
1141
|
+
/* stylelint-disable */
|
|
1142
|
+
/* stylelint-enable */
|
|
1143
|
+
}
|
|
1096
1144
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1097
1145
|
-ms-flex: auto;
|
|
1098
1146
|
flex: auto;
|
|
@@ -1222,7 +1270,9 @@
|
|
|
1222
1270
|
border: 1px solid #252423;
|
|
1223
1271
|
border-radius: 2px;
|
|
1224
1272
|
box-shadow: none;
|
|
1273
|
+
/* stylelint-disable */
|
|
1225
1274
|
color: #d2d0ce !important;
|
|
1275
|
+
/* stylelint-enable */
|
|
1226
1276
|
cursor: default;
|
|
1227
1277
|
display: -ms-flexbox;
|
|
1228
1278
|
display: flex;
|
|
@@ -1233,6 +1283,8 @@
|
|
|
1233
1283
|
text-transform: none;
|
|
1234
1284
|
vertical-align: bottom;
|
|
1235
1285
|
z-index: 1;
|
|
1286
|
+
/* stylelint-disable */
|
|
1287
|
+
/* stylelint-enable */
|
|
1236
1288
|
}
|
|
1237
1289
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1238
1290
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1573,6 +1625,12 @@
|
|
|
1573
1625
|
.e-pivotview .e-expand::before {
|
|
1574
1626
|
font-size: 18px;
|
|
1575
1627
|
}
|
|
1628
|
+
.e-pivotview.e-rtl {
|
|
1629
|
+
/* stylelint-disable */
|
|
1630
|
+
/* stylelint-enable */
|
|
1631
|
+
/* stylelint-disable */
|
|
1632
|
+
/* stylelint-enable */
|
|
1633
|
+
}
|
|
1576
1634
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1577
1635
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1578
1636
|
margin-left: 0;
|
|
@@ -1644,8 +1702,10 @@
|
|
|
1644
1702
|
padding-right: 8px;
|
|
1645
1703
|
}
|
|
1646
1704
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1705
|
+
/* stylelint-disable */
|
|
1647
1706
|
padding-left: 8px;
|
|
1648
1707
|
padding-right: 0;
|
|
1708
|
+
/* stylelint-enable */
|
|
1649
1709
|
}
|
|
1650
1710
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1651
1711
|
margin-left: 4px;
|
|
@@ -1668,6 +1728,9 @@
|
|
|
1668
1728
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1669
1729
|
float: left;
|
|
1670
1730
|
}
|
|
1731
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1732
|
+
/* stylelint-disable */
|
|
1733
|
+
}
|
|
1671
1734
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1672
1735
|
line-height: 1em !important;
|
|
1673
1736
|
}
|
|
@@ -1745,6 +1808,13 @@
|
|
|
1745
1808
|
margin-right: 5px;
|
|
1746
1809
|
}
|
|
1747
1810
|
|
|
1811
|
+
.e-bigger .e-pivotview,
|
|
1812
|
+
.e-bigger.e-pivotview {
|
|
1813
|
+
/* stylelint-disable */
|
|
1814
|
+
/* stylelint-enable */
|
|
1815
|
+
/* stylelint-disable */
|
|
1816
|
+
/* stylelint-enable */
|
|
1817
|
+
}
|
|
1748
1818
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1749
1819
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1750
1820
|
margin: 4px;
|
|
@@ -1807,6 +1877,10 @@
|
|
|
1807
1877
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1808
1878
|
margin-top: 0;
|
|
1809
1879
|
}
|
|
1880
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1881
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1882
|
+
/* stylelint-enable */
|
|
1883
|
+
}
|
|
1810
1884
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1811
1885
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1812
1886
|
height: 36px !important;
|
|
@@ -1847,6 +1921,7 @@
|
|
|
1847
1921
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1848
1922
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1849
1923
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1924
|
+
/* stylelint-disable */
|
|
1850
1925
|
font-size: 14px !important;
|
|
1851
1926
|
height: 20px;
|
|
1852
1927
|
margin-top: 2px;
|
|
@@ -1976,8 +2051,15 @@
|
|
|
1976
2051
|
}
|
|
1977
2052
|
.e-bigger .e-pivotview .e-rowcell,
|
|
1978
2053
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2054
|
+
/* stylelint-disable */
|
|
1979
2055
|
font-size: 16px !important;
|
|
1980
2056
|
}
|
|
2057
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2058
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2059
|
+
/* stylelint-enable */
|
|
2060
|
+
/* stylelint-disable */
|
|
2061
|
+
/* stylelint-enable */
|
|
2062
|
+
}
|
|
1981
2063
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
1982
2064
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
1983
2065
|
padding-right: 10px !important;
|