@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
|
@@ -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;
|
|
@@ -245,6 +252,7 @@
|
|
|
245
252
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
246
253
|
box-shadow: none;
|
|
247
254
|
margin-left: 10px;
|
|
255
|
+
/* stylelint-disable */
|
|
248
256
|
}
|
|
249
257
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort {
|
|
250
258
|
background-color: #fff;
|
|
@@ -363,6 +371,7 @@
|
|
|
363
371
|
}
|
|
364
372
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
365
373
|
border: none;
|
|
374
|
+
/* stylelint-enable */
|
|
366
375
|
}
|
|
367
376
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
368
377
|
margin: 0 0 0 6px;
|
|
@@ -615,13 +624,16 @@
|
|
|
615
624
|
}
|
|
616
625
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
617
626
|
margin-left: 18px !important;
|
|
627
|
+
/* stylelint-enable */
|
|
618
628
|
}
|
|
619
629
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
630
|
+
/* stylelint-disable */
|
|
620
631
|
padding: 0 !important;
|
|
621
632
|
}
|
|
622
633
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
623
634
|
float: left;
|
|
624
635
|
font-weight: 500;
|
|
636
|
+
/* stylelint-enable */
|
|
625
637
|
}
|
|
626
638
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
627
639
|
float: right;
|
|
@@ -650,6 +662,7 @@
|
|
|
650
662
|
}
|
|
651
663
|
|
|
652
664
|
.e-pivotview-report-dialog {
|
|
665
|
+
/* stylelint-disable */
|
|
653
666
|
max-width: 350px !important;
|
|
654
667
|
}
|
|
655
668
|
|
|
@@ -669,6 +682,7 @@
|
|
|
669
682
|
max-width: 500px !important;
|
|
670
683
|
}
|
|
671
684
|
|
|
685
|
+
/* stylelint-enable */
|
|
672
686
|
.e-report-outer {
|
|
673
687
|
display: inline-block;
|
|
674
688
|
width: 100%;
|
|
@@ -680,6 +694,7 @@
|
|
|
680
694
|
width: 40%;
|
|
681
695
|
}
|
|
682
696
|
|
|
697
|
+
/* stylelint-disable */
|
|
683
698
|
.e-pivotview-report-input {
|
|
684
699
|
float: right;
|
|
685
700
|
width: 60% !important;
|
|
@@ -701,11 +716,16 @@
|
|
|
701
716
|
font-size: 18px !important;
|
|
702
717
|
}
|
|
703
718
|
|
|
719
|
+
/* stylelint-enable */
|
|
704
720
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
705
721
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
706
722
|
white-space: nowrap;
|
|
707
723
|
}
|
|
708
724
|
|
|
725
|
+
.e-drillthrough-dialog {
|
|
726
|
+
/* stylelint-disable */
|
|
727
|
+
/* stylelint-enable */
|
|
728
|
+
}
|
|
709
729
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
710
730
|
margin-bottom: 20px;
|
|
711
731
|
}
|
|
@@ -726,9 +746,18 @@
|
|
|
726
746
|
flex-wrap: wrap;
|
|
727
747
|
}
|
|
728
748
|
|
|
749
|
+
.e-bigger .e-pivotview,
|
|
750
|
+
.e-bigger.e-pivotview {
|
|
751
|
+
/* stylelint-disable */
|
|
752
|
+
/* stylelint-enable */
|
|
753
|
+
/* stylelint-disable */
|
|
754
|
+
/* stylelint-enable */
|
|
755
|
+
}
|
|
729
756
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
|
|
730
757
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
758
|
+
/* stylelint-disable */
|
|
731
759
|
height: 38px !important;
|
|
760
|
+
/* stylelint-enable */
|
|
732
761
|
}
|
|
733
762
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
734
763
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
@@ -892,6 +921,18 @@
|
|
|
892
921
|
}
|
|
893
922
|
|
|
894
923
|
/*! PivotView theme */
|
|
924
|
+
.e-pivotview {
|
|
925
|
+
/* stylelint-enable */
|
|
926
|
+
/* stylelint-disable */
|
|
927
|
+
/* stylelint-enable */
|
|
928
|
+
/* stylelint-disable */
|
|
929
|
+
/* stylelint-enable */
|
|
930
|
+
/* stylelint-disable */
|
|
931
|
+
/* stylelint-enable */
|
|
932
|
+
/* stylelint-disable */
|
|
933
|
+
/* stylelint-enable */
|
|
934
|
+
/* stylelint-enable */
|
|
935
|
+
}
|
|
895
936
|
.e-pivotview .e-nextspan {
|
|
896
937
|
display: inline-block;
|
|
897
938
|
width: 18px;
|
|
@@ -912,6 +953,7 @@
|
|
|
912
953
|
text-align: right;
|
|
913
954
|
}
|
|
914
955
|
.e-pivotview .e-grid .e-rowcell {
|
|
956
|
+
/* stylelint-disable */
|
|
915
957
|
font-size: 13px !important;
|
|
916
958
|
padding-left: 8px;
|
|
917
959
|
-webkit-user-select: none;
|
|
@@ -1123,12 +1165,18 @@
|
|
|
1123
1165
|
}
|
|
1124
1166
|
.e-pivotview .e-rowcell {
|
|
1125
1167
|
opacity: 1;
|
|
1168
|
+
/* stylelint-disable */
|
|
1169
|
+
/* stylelint-enable */
|
|
1126
1170
|
}
|
|
1127
1171
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1128
1172
|
-webkit-user-select: none;
|
|
1129
1173
|
-ms-user-select: none;
|
|
1130
1174
|
user-select: none;
|
|
1131
1175
|
}
|
|
1176
|
+
.e-pivotview .e-grouping-bar {
|
|
1177
|
+
/* stylelint-disable */
|
|
1178
|
+
/* stylelint-enable */
|
|
1179
|
+
}
|
|
1132
1180
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1133
1181
|
-ms-flex: auto;
|
|
1134
1182
|
flex: auto;
|
|
@@ -1256,7 +1304,9 @@
|
|
|
1256
1304
|
border: 1px solid #6c757d;
|
|
1257
1305
|
border-radius: 4px;
|
|
1258
1306
|
box-shadow: none;
|
|
1307
|
+
/* stylelint-disable */
|
|
1259
1308
|
color: #fff !important;
|
|
1309
|
+
/* stylelint-enable */
|
|
1260
1310
|
cursor: default;
|
|
1261
1311
|
display: -ms-flexbox;
|
|
1262
1312
|
display: flex;
|
|
@@ -1267,7 +1317,9 @@
|
|
|
1267
1317
|
text-transform: none;
|
|
1268
1318
|
vertical-align: bottom;
|
|
1269
1319
|
z-index: 1;
|
|
1270
|
-
font-weight:
|
|
1320
|
+
font-weight: normal;
|
|
1321
|
+
/* stylelint-disable */
|
|
1322
|
+
/* stylelint-enable */
|
|
1271
1323
|
}
|
|
1272
1324
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1273
1325
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1624,6 +1676,12 @@
|
|
|
1624
1676
|
.e-pivotview .e-expand::before {
|
|
1625
1677
|
font-size: 10px;
|
|
1626
1678
|
}
|
|
1679
|
+
.e-pivotview.e-rtl {
|
|
1680
|
+
/* stylelint-disable */
|
|
1681
|
+
/* stylelint-enable */
|
|
1682
|
+
/* stylelint-disable */
|
|
1683
|
+
/* stylelint-enable */
|
|
1684
|
+
}
|
|
1627
1685
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1628
1686
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1629
1687
|
margin-left: 0;
|
|
@@ -1695,8 +1753,10 @@
|
|
|
1695
1753
|
padding-right: 8px;
|
|
1696
1754
|
}
|
|
1697
1755
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1756
|
+
/* stylelint-disable */
|
|
1698
1757
|
padding-left: 8px;
|
|
1699
1758
|
padding-right: 0;
|
|
1759
|
+
/* stylelint-enable */
|
|
1700
1760
|
}
|
|
1701
1761
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1702
1762
|
margin-left: 4px;
|
|
@@ -1719,6 +1779,9 @@
|
|
|
1719
1779
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1720
1780
|
float: left;
|
|
1721
1781
|
}
|
|
1782
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1783
|
+
/* stylelint-disable */
|
|
1784
|
+
}
|
|
1722
1785
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1723
1786
|
line-height: 1em !important;
|
|
1724
1787
|
}
|
|
@@ -1830,6 +1893,13 @@
|
|
|
1830
1893
|
margin-right: 5px;
|
|
1831
1894
|
}
|
|
1832
1895
|
|
|
1896
|
+
.e-bigger .e-pivotview,
|
|
1897
|
+
.e-bigger.e-pivotview {
|
|
1898
|
+
/* stylelint-disable */
|
|
1899
|
+
/* stylelint-enable */
|
|
1900
|
+
/* stylelint-disable */
|
|
1901
|
+
/* stylelint-enable */
|
|
1902
|
+
}
|
|
1833
1903
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1834
1904
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1835
1905
|
margin: 6px;
|
|
@@ -1893,6 +1963,10 @@
|
|
|
1893
1963
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1894
1964
|
margin-top: 4px;
|
|
1895
1965
|
}
|
|
1966
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1967
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1968
|
+
/* stylelint-enable */
|
|
1969
|
+
}
|
|
1896
1970
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1897
1971
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1898
1972
|
height: 36px !important;
|
|
@@ -1934,6 +2008,7 @@
|
|
|
1934
2008
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1935
2009
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1936
2010
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2011
|
+
/* stylelint-disable */
|
|
1937
2012
|
font-size: 12px !important;
|
|
1938
2013
|
height: 20px;
|
|
1939
2014
|
margin-top: 2px;
|
|
@@ -2079,8 +2154,15 @@
|
|
|
2079
2154
|
}
|
|
2080
2155
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2081
2156
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2157
|
+
/* stylelint-disable */
|
|
2082
2158
|
font-size: 13px !important;
|
|
2083
2159
|
}
|
|
2160
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2161
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2162
|
+
/* stylelint-enable */
|
|
2163
|
+
/* stylelint-disable */
|
|
2164
|
+
/* stylelint-enable */
|
|
2165
|
+
}
|
|
2084
2166
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
2085
2167
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
2086
2168
|
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;
|
|
@@ -243,6 +250,7 @@
|
|
|
243
250
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
244
251
|
box-shadow: none;
|
|
245
252
|
margin-left: 10px;
|
|
253
|
+
/* stylelint-disable */
|
|
246
254
|
}
|
|
247
255
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
248
256
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -334,6 +342,7 @@
|
|
|
334
342
|
}
|
|
335
343
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
336
344
|
border: none;
|
|
345
|
+
/* stylelint-enable */
|
|
337
346
|
}
|
|
338
347
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
339
348
|
margin: 0 0 0 6px;
|
|
@@ -578,13 +587,16 @@
|
|
|
578
587
|
}
|
|
579
588
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
580
589
|
margin-left: 18px !important;
|
|
590
|
+
/* stylelint-enable */
|
|
581
591
|
}
|
|
582
592
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
593
|
+
/* stylelint-disable */
|
|
583
594
|
padding: 0 !important;
|
|
584
595
|
}
|
|
585
596
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
586
597
|
float: left;
|
|
587
598
|
font-weight: 500;
|
|
599
|
+
/* stylelint-enable */
|
|
588
600
|
}
|
|
589
601
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
590
602
|
float: right;
|
|
@@ -613,6 +625,7 @@
|
|
|
613
625
|
}
|
|
614
626
|
|
|
615
627
|
.e-pivotview-report-dialog {
|
|
628
|
+
/* stylelint-disable */
|
|
616
629
|
max-width: 350px !important;
|
|
617
630
|
}
|
|
618
631
|
|
|
@@ -632,6 +645,7 @@
|
|
|
632
645
|
max-width: 500px !important;
|
|
633
646
|
}
|
|
634
647
|
|
|
648
|
+
/* stylelint-enable */
|
|
635
649
|
.e-report-outer {
|
|
636
650
|
display: inline-block;
|
|
637
651
|
width: 100%;
|
|
@@ -644,6 +658,7 @@
|
|
|
644
658
|
padding-left: 12px;
|
|
645
659
|
}
|
|
646
660
|
|
|
661
|
+
/* stylelint-disable */
|
|
647
662
|
.e-pivotview-report-input {
|
|
648
663
|
float: right;
|
|
649
664
|
width: 60% !important;
|
|
@@ -665,11 +680,16 @@
|
|
|
665
680
|
font-size: 18px !important;
|
|
666
681
|
}
|
|
667
682
|
|
|
683
|
+
/* stylelint-enable */
|
|
668
684
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
669
685
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
670
686
|
white-space: nowrap;
|
|
671
687
|
}
|
|
672
688
|
|
|
689
|
+
.e-drillthrough-dialog {
|
|
690
|
+
/* stylelint-disable */
|
|
691
|
+
/* stylelint-enable */
|
|
692
|
+
}
|
|
673
693
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
674
694
|
margin-bottom: 20px;
|
|
675
695
|
margin-bottom: 18px;
|
|
@@ -691,6 +711,13 @@
|
|
|
691
711
|
flex-wrap: wrap;
|
|
692
712
|
}
|
|
693
713
|
|
|
714
|
+
.e-bigger .e-pivotview,
|
|
715
|
+
.e-bigger.e-pivotview {
|
|
716
|
+
/* stylelint-disable */
|
|
717
|
+
/* stylelint-enable */
|
|
718
|
+
/* stylelint-disable */
|
|
719
|
+
/* stylelint-enable */
|
|
720
|
+
}
|
|
694
721
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
695
722
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
696
723
|
height: 139px;
|
|
@@ -845,6 +872,18 @@
|
|
|
845
872
|
}
|
|
846
873
|
|
|
847
874
|
/*! PivotView theme */
|
|
875
|
+
.e-pivotview {
|
|
876
|
+
/* stylelint-enable */
|
|
877
|
+
/* stylelint-disable */
|
|
878
|
+
/* stylelint-enable */
|
|
879
|
+
/* stylelint-disable */
|
|
880
|
+
/* stylelint-enable */
|
|
881
|
+
/* stylelint-disable */
|
|
882
|
+
/* stylelint-enable */
|
|
883
|
+
/* stylelint-disable */
|
|
884
|
+
/* stylelint-enable */
|
|
885
|
+
/* stylelint-enable */
|
|
886
|
+
}
|
|
848
887
|
.e-pivotview .e-nextspan {
|
|
849
888
|
display: inline-block;
|
|
850
889
|
width: 18px;
|
|
@@ -865,6 +904,7 @@
|
|
|
865
904
|
text-align: right;
|
|
866
905
|
}
|
|
867
906
|
.e-pivotview .e-grid .e-rowcell {
|
|
907
|
+
/* stylelint-disable */
|
|
868
908
|
font-size: 14px !important;
|
|
869
909
|
padding-left: 8px;
|
|
870
910
|
-webkit-user-select: none;
|
|
@@ -1080,12 +1120,18 @@
|
|
|
1080
1120
|
}
|
|
1081
1121
|
.e-pivotview .e-rowcell {
|
|
1082
1122
|
opacity: 1;
|
|
1123
|
+
/* stylelint-disable */
|
|
1124
|
+
/* stylelint-enable */
|
|
1083
1125
|
}
|
|
1084
1126
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1085
1127
|
-webkit-user-select: none;
|
|
1086
1128
|
-ms-user-select: none;
|
|
1087
1129
|
user-select: none;
|
|
1088
1130
|
}
|
|
1131
|
+
.e-pivotview .e-grouping-bar {
|
|
1132
|
+
/* stylelint-disable */
|
|
1133
|
+
/* stylelint-enable */
|
|
1134
|
+
}
|
|
1089
1135
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1090
1136
|
-ms-flex: auto;
|
|
1091
1137
|
flex: auto;
|
|
@@ -1246,7 +1292,9 @@
|
|
|
1246
1292
|
border: 1px solid #495057;
|
|
1247
1293
|
border-radius: 4px;
|
|
1248
1294
|
box-shadow: none;
|
|
1295
|
+
/* stylelint-disable */
|
|
1249
1296
|
color: #e9ecef !important;
|
|
1297
|
+
/* stylelint-enable */
|
|
1250
1298
|
cursor: default;
|
|
1251
1299
|
display: -ms-flexbox;
|
|
1252
1300
|
display: flex;
|
|
@@ -1257,6 +1305,8 @@
|
|
|
1257
1305
|
text-transform: none;
|
|
1258
1306
|
vertical-align: bottom;
|
|
1259
1307
|
z-index: 1;
|
|
1308
|
+
/* stylelint-disable */
|
|
1309
|
+
/* stylelint-enable */
|
|
1260
1310
|
}
|
|
1261
1311
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1262
1312
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1597,6 +1647,12 @@
|
|
|
1597
1647
|
.e-pivotview .e-expand::before {
|
|
1598
1648
|
font-size: 20px;
|
|
1599
1649
|
}
|
|
1650
|
+
.e-pivotview.e-rtl {
|
|
1651
|
+
/* stylelint-disable */
|
|
1652
|
+
/* stylelint-enable */
|
|
1653
|
+
/* stylelint-disable */
|
|
1654
|
+
/* stylelint-enable */
|
|
1655
|
+
}
|
|
1600
1656
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1601
1657
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1602
1658
|
margin-left: 0;
|
|
@@ -1668,8 +1724,10 @@
|
|
|
1668
1724
|
padding-right: 8px;
|
|
1669
1725
|
}
|
|
1670
1726
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1727
|
+
/* stylelint-disable */
|
|
1671
1728
|
padding-left: 8px;
|
|
1672
1729
|
padding-right: 0;
|
|
1730
|
+
/* stylelint-enable */
|
|
1673
1731
|
}
|
|
1674
1732
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1675
1733
|
margin-left: 4px;
|
|
@@ -1692,6 +1750,9 @@
|
|
|
1692
1750
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1693
1751
|
float: left;
|
|
1694
1752
|
}
|
|
1753
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1754
|
+
/* stylelint-disable */
|
|
1755
|
+
}
|
|
1695
1756
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1696
1757
|
line-height: 1em !important;
|
|
1697
1758
|
}
|
|
@@ -1769,6 +1830,13 @@
|
|
|
1769
1830
|
margin-right: 5px;
|
|
1770
1831
|
}
|
|
1771
1832
|
|
|
1833
|
+
.e-bigger .e-pivotview,
|
|
1834
|
+
.e-bigger.e-pivotview {
|
|
1835
|
+
/* stylelint-disable */
|
|
1836
|
+
/* stylelint-enable */
|
|
1837
|
+
/* stylelint-disable */
|
|
1838
|
+
/* stylelint-enable */
|
|
1839
|
+
}
|
|
1772
1840
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1773
1841
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1774
1842
|
margin: 4px;
|
|
@@ -1831,6 +1899,10 @@
|
|
|
1831
1899
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1832
1900
|
margin-top: 0;
|
|
1833
1901
|
}
|
|
1902
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1903
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1904
|
+
/* stylelint-enable */
|
|
1905
|
+
}
|
|
1834
1906
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1835
1907
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1836
1908
|
height: 36px !important;
|
|
@@ -1871,6 +1943,7 @@
|
|
|
1871
1943
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1872
1944
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1873
1945
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1946
|
+
/* stylelint-disable */
|
|
1874
1947
|
font-size: 14px !important;
|
|
1875
1948
|
height: 20px;
|
|
1876
1949
|
margin-top: 2px;
|
|
@@ -2001,8 +2074,15 @@
|
|
|
2001
2074
|
}
|
|
2002
2075
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2003
2076
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2077
|
+
/* stylelint-disable */
|
|
2004
2078
|
font-size: 16px !important;
|
|
2005
2079
|
}
|
|
2080
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2081
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2082
|
+
/* stylelint-enable */
|
|
2083
|
+
/* stylelint-disable */
|
|
2084
|
+
/* stylelint-enable */
|
|
2085
|
+
}
|
|
2006
2086
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
2007
2087
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
2008
2088
|
padding-right: 10px !important;
|