@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
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
content: "\e774";
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
.e-pivot-calc-dialog-div {
|
|
28
|
+
/* stylelint-disable */
|
|
29
|
+
/* stylelint-enable */
|
|
30
|
+
}
|
|
27
31
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
28
32
|
content: "\e726";
|
|
29
33
|
}
|
|
@@ -122,6 +126,11 @@
|
|
|
122
126
|
content: "\e7d8" !important;
|
|
123
127
|
}
|
|
124
128
|
|
|
129
|
+
.e-pivotfieldlist-wrapper,
|
|
130
|
+
.e-pivotfieldlist-container {
|
|
131
|
+
/* stylelint-disable */
|
|
132
|
+
/* stylelint-enable */
|
|
133
|
+
}
|
|
125
134
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
126
135
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
127
136
|
content: "\e773";
|
|
@@ -316,8 +325,10 @@
|
|
|
316
325
|
}
|
|
317
326
|
|
|
318
327
|
.e-pivot-formatting-dialog {
|
|
328
|
+
/* stylelint-disable */
|
|
319
329
|
max-height: 480px !important;
|
|
320
330
|
width: 629px !important;
|
|
331
|
+
/* stylelint-enable */
|
|
321
332
|
}
|
|
322
333
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
323
334
|
padding-bottom: 4px;
|
|
@@ -392,7 +403,9 @@
|
|
|
392
403
|
border: 1px solid #a19f9d;
|
|
393
404
|
border-radius: 2px;
|
|
394
405
|
height: 28px;
|
|
406
|
+
/* stylelint-disable */
|
|
395
407
|
margin: 0 !important;
|
|
408
|
+
/* stylelint-enable */
|
|
396
409
|
padding-left: 6px;
|
|
397
410
|
padding-top: 6px;
|
|
398
411
|
width: 80px;
|
|
@@ -413,7 +426,9 @@
|
|
|
413
426
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
414
427
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
415
428
|
border: 1px solid #a19f9d;
|
|
429
|
+
/* stylelint-disable */
|
|
416
430
|
border-radius: 0 !important;
|
|
431
|
+
/* stylelint-enable */
|
|
417
432
|
height: 40%;
|
|
418
433
|
left: -3px;
|
|
419
434
|
position: absolute;
|
|
@@ -421,8 +436,10 @@
|
|
|
421
436
|
width: 150%;
|
|
422
437
|
}
|
|
423
438
|
.e-pivot-formatting-dialog.e-device {
|
|
439
|
+
/* stylelint-disable */
|
|
424
440
|
min-width: 320px !important;
|
|
425
441
|
width: 100% !important;
|
|
442
|
+
/* stylelint-enable */
|
|
426
443
|
}
|
|
427
444
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
428
445
|
width: 100% !important;
|
|
@@ -471,7 +488,11 @@
|
|
|
471
488
|
|
|
472
489
|
.e-bigger.e-pivot-formatting-dialog,
|
|
473
490
|
.e-bigger .e-pivot-formatting-dialog {
|
|
491
|
+
/* stylelint-disable */
|
|
474
492
|
width: 714px !important;
|
|
493
|
+
/* stylelint-enable */
|
|
494
|
+
/* stylelint-disable */
|
|
495
|
+
/* stylelint-enable */
|
|
475
496
|
}
|
|
476
497
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
477
498
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -510,8 +531,10 @@
|
|
|
510
531
|
}
|
|
511
532
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
512
533
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
534
|
+
/* stylelint-disable */
|
|
513
535
|
min-width: 320px !important;
|
|
514
536
|
width: 100% !important;
|
|
537
|
+
/* stylelint-enable */
|
|
515
538
|
}
|
|
516
539
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
517
540
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -530,8 +553,14 @@
|
|
|
530
553
|
}
|
|
531
554
|
|
|
532
555
|
.e-pivot-calc-dialog-div {
|
|
556
|
+
/* stylelint-disable */
|
|
533
557
|
max-height: 550px !important;
|
|
558
|
+
/* stylelint-enable */
|
|
534
559
|
min-width: 290px;
|
|
560
|
+
/* stylelint-disable */
|
|
561
|
+
/* stylelint-enable */
|
|
562
|
+
/* stylelint-disable */
|
|
563
|
+
/* stylelint-enable */
|
|
535
564
|
}
|
|
536
565
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
537
566
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -539,7 +568,9 @@
|
|
|
539
568
|
}
|
|
540
569
|
.e-pivot-calc-dialog-div .e-dlg-content {
|
|
541
570
|
padding-bottom: 18px;
|
|
571
|
+
/* stylelint-disable */
|
|
542
572
|
padding-top: 1px !important;
|
|
573
|
+
/* stylelint-enable */
|
|
543
574
|
}
|
|
544
575
|
.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
545
576
|
.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -578,9 +609,11 @@
|
|
|
578
609
|
}
|
|
579
610
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
580
611
|
color: #a19f9d;
|
|
612
|
+
/* stylelint-disable */
|
|
581
613
|
float: right !important;
|
|
582
614
|
margin: 0;
|
|
583
615
|
margin-right: 12px !important;
|
|
616
|
+
/* stylelint-enable */
|
|
584
617
|
}
|
|
585
618
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
586
619
|
cursor: default;
|
|
@@ -872,8 +905,11 @@
|
|
|
872
905
|
|
|
873
906
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
874
907
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
908
|
+
/* stylelint-disable */
|
|
875
909
|
max-height: 600px !important;
|
|
876
910
|
min-width: 401px !important;
|
|
911
|
+
/* stylelint-enable */
|
|
912
|
+
/* stylelint-disable */
|
|
877
913
|
}
|
|
878
914
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
879
915
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -958,6 +994,9 @@
|
|
|
958
994
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
959
995
|
max-width: 400px !important;
|
|
960
996
|
min-width: 320px !important;
|
|
997
|
+
/* stylelint-enable */
|
|
998
|
+
/* stylelint-disable */
|
|
999
|
+
/* stylelint-enable */
|
|
961
1000
|
}
|
|
962
1001
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
963
1002
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -995,8 +1034,10 @@
|
|
|
995
1034
|
}
|
|
996
1035
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
997
1036
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
1037
|
+
/* stylelint-disable */
|
|
998
1038
|
margin-left: -22px;
|
|
999
1039
|
overflow: auto !important;
|
|
1040
|
+
/* stylelint-enable */
|
|
1000
1041
|
}
|
|
1001
1042
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
1002
1043
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -1015,6 +1056,10 @@
|
|
|
1015
1056
|
margin-left: 0;
|
|
1016
1057
|
margin-right: -22px;
|
|
1017
1058
|
}
|
|
1059
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
1060
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
1061
|
+
/* stylelint-disable */
|
|
1062
|
+
}
|
|
1018
1063
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
1019
1064
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
1020
1065
|
margin-left: 0;
|
|
@@ -1078,6 +1123,7 @@
|
|
|
1078
1123
|
}
|
|
1079
1124
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
1080
1125
|
border: 0;
|
|
1126
|
+
/* stylelint-enable */
|
|
1081
1127
|
}
|
|
1082
1128
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
1083
1129
|
margin: 0 0 0 6px;
|
|
@@ -1105,6 +1151,8 @@
|
|
|
1105
1151
|
overflow: auto;
|
|
1106
1152
|
padding: 20px;
|
|
1107
1153
|
padding-bottom: 0;
|
|
1154
|
+
/* stylelint-disable */
|
|
1155
|
+
/* stylelint-enable */
|
|
1108
1156
|
}
|
|
1109
1157
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
1110
1158
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -1143,6 +1191,9 @@
|
|
|
1143
1191
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
1144
1192
|
float: right;
|
|
1145
1193
|
}
|
|
1194
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
1195
|
+
/* stylelint-disable */
|
|
1196
|
+
}
|
|
1146
1197
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
1147
1198
|
margin-left: 0;
|
|
1148
1199
|
}
|
|
@@ -1281,6 +1332,7 @@
|
|
|
1281
1332
|
overflow: hidden;
|
|
1282
1333
|
padding: 0 !important;
|
|
1283
1334
|
padding-top: 1px;
|
|
1335
|
+
/* stylelint-enable */
|
|
1284
1336
|
}
|
|
1285
1337
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
1286
1338
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -1347,6 +1399,11 @@
|
|
|
1347
1399
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
1348
1400
|
padding-right: 0;
|
|
1349
1401
|
}
|
|
1402
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
1403
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
1404
|
+
/* stylelint-disable */
|
|
1405
|
+
/* stylelint-enable */
|
|
1406
|
+
}
|
|
1350
1407
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
1351
1408
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
1352
1409
|
padding-left: 24px;
|
|
@@ -1396,6 +1453,7 @@
|
|
|
1396
1453
|
padding: 4px;
|
|
1397
1454
|
}
|
|
1398
1455
|
|
|
1456
|
+
/* stylelint-disable */
|
|
1399
1457
|
.e-button-drag-clone {
|
|
1400
1458
|
background-color: #292827 !important;
|
|
1401
1459
|
border: 1px solid #292827;
|
|
@@ -1435,6 +1493,12 @@
|
|
|
1435
1493
|
width: auto !important;
|
|
1436
1494
|
}
|
|
1437
1495
|
|
|
1496
|
+
/* stylelint-enable */
|
|
1497
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
1498
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
1499
|
+
/* stylelint-disable */
|
|
1500
|
+
/* stylelint-enable */
|
|
1501
|
+
}
|
|
1438
1502
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
1439
1503
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
1440
1504
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -1499,6 +1563,10 @@
|
|
|
1499
1563
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
1500
1564
|
margin-left: 10px;
|
|
1501
1565
|
}
|
|
1566
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
1567
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
1568
|
+
/* stylelint-disable */
|
|
1569
|
+
}
|
|
1502
1570
|
.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,
|
|
1503
1571
|
.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 {
|
|
1504
1572
|
margin: 0 0 0 6px;
|
|
@@ -1647,6 +1715,7 @@
|
|
|
1647
1715
|
background-color: #292827;
|
|
1648
1716
|
}
|
|
1649
1717
|
|
|
1718
|
+
/* stylelint-disable */
|
|
1650
1719
|
*.e-rtl .e-select-table {
|
|
1651
1720
|
padding: 8px 5px;
|
|
1652
1721
|
}
|
|
@@ -1685,6 +1754,8 @@
|
|
|
1685
1754
|
font-size: 14px;
|
|
1686
1755
|
max-width: 700px;
|
|
1687
1756
|
min-width: 300px;
|
|
1757
|
+
/* stylelint-enable */
|
|
1758
|
+
/* stylelint-enable */
|
|
1688
1759
|
}
|
|
1689
1760
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
1690
1761
|
display: -ms-flexbox;
|
|
@@ -1807,6 +1878,8 @@
|
|
|
1807
1878
|
display: -ms-flexbox;
|
|
1808
1879
|
display: flex;
|
|
1809
1880
|
padding-right: 18px;
|
|
1881
|
+
/* stylelint-disable */
|
|
1882
|
+
/* stylelint-enable */
|
|
1810
1883
|
}
|
|
1811
1884
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
1812
1885
|
-ms-flex: auto;
|
|
@@ -1818,7 +1891,9 @@
|
|
|
1818
1891
|
color: #a19f9d;
|
|
1819
1892
|
cursor: pointer;
|
|
1820
1893
|
font-size: 14px;
|
|
1894
|
+
/* stylelint-disable */
|
|
1821
1895
|
height: 20px !important;
|
|
1896
|
+
/* stylelint-enable */
|
|
1822
1897
|
padding: 6px 0 0 4px;
|
|
1823
1898
|
width: 20px;
|
|
1824
1899
|
}
|
|
@@ -1855,9 +1930,13 @@
|
|
|
1855
1930
|
}
|
|
1856
1931
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
1857
1932
|
overflow: hidden;
|
|
1933
|
+
/* stylelint-disable */
|
|
1934
|
+
/* stylelint-enable */
|
|
1858
1935
|
}
|
|
1859
1936
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
1860
1937
|
margin-left: -30px;
|
|
1938
|
+
/* stylelint-disable */
|
|
1939
|
+
/* stylelint-enable */
|
|
1861
1940
|
}
|
|
1862
1941
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
1863
1942
|
cursor: default;
|
|
@@ -2367,6 +2446,8 @@
|
|
|
2367
2446
|
}
|
|
2368
2447
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2369
2448
|
height: 369px;
|
|
2449
|
+
/* stylelint-disable */
|
|
2450
|
+
/* stylelint-enable */
|
|
2370
2451
|
}
|
|
2371
2452
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
2372
2453
|
height: 392px !important;
|
|
@@ -2390,6 +2471,7 @@
|
|
|
2390
2471
|
display: -ms-flexbox;
|
|
2391
2472
|
display: flex;
|
|
2392
2473
|
padding: 10px 18px;
|
|
2474
|
+
/* stylelint-disable */
|
|
2393
2475
|
}
|
|
2394
2476
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
2395
2477
|
float: right;
|
|
@@ -2426,6 +2508,8 @@
|
|
|
2426
2508
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
2427
2509
|
margin-left: 0;
|
|
2428
2510
|
margin-right: -30px;
|
|
2511
|
+
/* stylelint-disable */
|
|
2512
|
+
/* stylelint-enable */
|
|
2429
2513
|
}
|
|
2430
2514
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
2431
2515
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
@@ -2456,6 +2540,8 @@
|
|
|
2456
2540
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
2457
2541
|
padding-left: 18px;
|
|
2458
2542
|
padding-right: 0;
|
|
2543
|
+
/* stylelint-disable */
|
|
2544
|
+
/* stylelint-enable */
|
|
2459
2545
|
}
|
|
2460
2546
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
2461
2547
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -2541,8 +2627,10 @@
|
|
|
2541
2627
|
}
|
|
2542
2628
|
.e-pivotfieldlist-container.e-device {
|
|
2543
2629
|
height: 100%;
|
|
2630
|
+
/* stylelint-disable */
|
|
2544
2631
|
max-height: 100% !important;
|
|
2545
2632
|
max-width: 100% !important;
|
|
2633
|
+
/* stylelint-enable */
|
|
2546
2634
|
min-height: 500px;
|
|
2547
2635
|
width: 100%;
|
|
2548
2636
|
}
|
|
@@ -2647,6 +2735,8 @@
|
|
|
2647
2735
|
padding: 9px 16px;
|
|
2648
2736
|
text-transform: none;
|
|
2649
2737
|
width: 100%;
|
|
2738
|
+
/* stylelint-disable */
|
|
2739
|
+
/* stylelint-enable */
|
|
2650
2740
|
}
|
|
2651
2741
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
2652
2742
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -2836,6 +2926,10 @@
|
|
|
2836
2926
|
vertical-align: middle;
|
|
2837
2927
|
width: 70%;
|
|
2838
2928
|
}
|
|
2929
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
2930
|
+
/* stylelint-disable */
|
|
2931
|
+
/* stylelint-enable */
|
|
2932
|
+
}
|
|
2839
2933
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
2840
2934
|
background-color: #1b1a19;
|
|
2841
2935
|
border: 1px solid #292827;
|
|
@@ -2883,6 +2977,10 @@
|
|
|
2883
2977
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
2884
2978
|
margin-right: 12px;
|
|
2885
2979
|
}
|
|
2980
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
2981
|
+
/* stylelint-disable */
|
|
2982
|
+
/* stylelint-enable */
|
|
2983
|
+
}
|
|
2886
2984
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
2887
2985
|
left: 16px;
|
|
2888
2986
|
right: auto;
|
|
@@ -3032,6 +3130,10 @@
|
|
|
3032
3130
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
3033
3131
|
max-height: 600px;
|
|
3034
3132
|
}
|
|
3133
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
3134
|
+
/* stylelint-disable */
|
|
3135
|
+
/* stylelint-enable */
|
|
3136
|
+
}
|
|
3035
3137
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
3036
3138
|
margin-left: 12px;
|
|
3037
3139
|
margin-right: 0;
|
|
@@ -3052,6 +3154,11 @@
|
|
|
3052
3154
|
margin-left: 20px;
|
|
3053
3155
|
}
|
|
3054
3156
|
|
|
3157
|
+
/* stylelint-disable */
|
|
3158
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
3159
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
3160
|
+
/* stylelint-enable */
|
|
3161
|
+
}
|
|
3055
3162
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
3056
3163
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
3057
3164
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -3207,6 +3314,16 @@
|
|
|
3207
3314
|
margin-top: 4px;
|
|
3208
3315
|
padding: 0 12px;
|
|
3209
3316
|
}
|
|
3317
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
3318
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
3319
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
3320
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
3321
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
3322
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
3323
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
3324
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
3325
|
+
/* stylelint-disable */
|
|
3326
|
+
}
|
|
3210
3327
|
.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,
|
|
3211
3328
|
.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,
|
|
3212
3329
|
.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,
|
|
@@ -3218,6 +3335,7 @@
|
|
|
3218
3335
|
font-size: 14px;
|
|
3219
3336
|
height: 36px !important;
|
|
3220
3337
|
padding: 9px 16px !important;
|
|
3338
|
+
/* stylelint-enable */
|
|
3221
3339
|
}
|
|
3222
3340
|
.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,
|
|
3223
3341
|
.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,
|
|
@@ -3342,6 +3460,10 @@
|
|
|
3342
3460
|
.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 {
|
|
3343
3461
|
padding-top: 7px;
|
|
3344
3462
|
}
|
|
3463
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
3464
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
3465
|
+
/* stylelint-disable */
|
|
3466
|
+
}
|
|
3345
3467
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
3346
3468
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
3347
3469
|
padding-left: 16px;
|
|
@@ -3354,6 +3476,7 @@
|
|
|
3354
3476
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
3355
3477
|
padding-left: 0;
|
|
3356
3478
|
padding-right: 5px;
|
|
3479
|
+
/* stylelint-enable */
|
|
3357
3480
|
}
|
|
3358
3481
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
3359
3482
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -3392,6 +3515,8 @@
|
|
|
3392
3515
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
3393
3516
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
3394
3517
|
padding-left: 20px;
|
|
3518
|
+
/* stylelint-disable */
|
|
3519
|
+
/* stylelint-enable */
|
|
3395
3520
|
}
|
|
3396
3521
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
3397
3522
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -3463,6 +3588,10 @@
|
|
|
3463
3588
|
padding-left: 0;
|
|
3464
3589
|
padding-right: 4px;
|
|
3465
3590
|
}
|
|
3591
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
3592
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
3593
|
+
/* stylelint-disable */
|
|
3594
|
+
}
|
|
3466
3595
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
3467
3596
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
3468
3597
|
max-height: 750px;
|
|
@@ -3499,4 +3628,6 @@
|
|
|
3499
3628
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3500
3629
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3501
3630
|
max-height: 184px;
|
|
3502
|
-
}
|
|
3631
|
+
}
|
|
3632
|
+
|
|
3633
|
+
/* stylelint-enable */
|