@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: "\e718";
|
|
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: "\e7d6";
|
|
29
33
|
}
|
|
@@ -122,6 +126,11 @@
|
|
|
122
126
|
content: "\e665" !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: "\e7c1";
|
|
@@ -317,15 +326,19 @@
|
|
|
317
326
|
}
|
|
318
327
|
|
|
319
328
|
.e-pivot-formatting-dialog {
|
|
329
|
+
/* stylelint-disable */
|
|
320
330
|
max-height: 480px !important;
|
|
321
331
|
width: 625px !important;
|
|
332
|
+
/* stylelint-enable */
|
|
322
333
|
}
|
|
323
334
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
324
335
|
padding-bottom: 4px;
|
|
325
336
|
}
|
|
326
337
|
.e-pivot-formatting-dialog .e-format-delete-icon {
|
|
327
338
|
font-weight: normal;
|
|
339
|
+
/* stylelint-disable */
|
|
328
340
|
color: #000;
|
|
341
|
+
/* stylelint-enable */
|
|
329
342
|
opacity: 0.5;
|
|
330
343
|
}
|
|
331
344
|
.e-pivot-formatting-dialog .e-format-delete-icon:hover {
|
|
@@ -364,8 +377,10 @@
|
|
|
364
377
|
float: left;
|
|
365
378
|
}
|
|
366
379
|
.e-pivot-formatting-dialog .e-split-colorpicker {
|
|
380
|
+
/* stylelint-disable */
|
|
367
381
|
background-color: #6c757d !important;
|
|
368
382
|
color: #fff !important;
|
|
383
|
+
/* stylelint-enable */
|
|
369
384
|
}
|
|
370
385
|
.e-pivot-formatting-dialog .e-format-delete-button {
|
|
371
386
|
background-color: transparent;
|
|
@@ -401,7 +416,9 @@
|
|
|
401
416
|
border: 1px solid #dee2e6;
|
|
402
417
|
border-radius: 4px;
|
|
403
418
|
height: 28px;
|
|
419
|
+
/* stylelint-disable */
|
|
404
420
|
margin: 0 !important;
|
|
421
|
+
/* stylelint-enable */
|
|
405
422
|
padding-left: 6px;
|
|
406
423
|
padding-top: 6px;
|
|
407
424
|
width: 80px;
|
|
@@ -425,7 +442,9 @@
|
|
|
425
442
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
426
443
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
427
444
|
border: 1px solid #dee2e6;
|
|
445
|
+
/* stylelint-disable */
|
|
428
446
|
border-radius: 0 !important;
|
|
447
|
+
/* stylelint-enable */
|
|
429
448
|
height: 40%;
|
|
430
449
|
left: -3px;
|
|
431
450
|
position: absolute;
|
|
@@ -433,8 +452,10 @@
|
|
|
433
452
|
width: 150%;
|
|
434
453
|
}
|
|
435
454
|
.e-pivot-formatting-dialog.e-device {
|
|
455
|
+
/* stylelint-disable */
|
|
436
456
|
min-width: 320px !important;
|
|
437
457
|
width: 100% !important;
|
|
458
|
+
/* stylelint-enable */
|
|
438
459
|
}
|
|
439
460
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
440
461
|
width: 100% !important;
|
|
@@ -483,7 +504,11 @@
|
|
|
483
504
|
|
|
484
505
|
.e-bigger.e-pivot-formatting-dialog,
|
|
485
506
|
.e-bigger .e-pivot-formatting-dialog {
|
|
507
|
+
/* stylelint-disable */
|
|
486
508
|
width: 670px !important;
|
|
509
|
+
/* stylelint-enable */
|
|
510
|
+
/* stylelint-disable */
|
|
511
|
+
/* stylelint-enable */
|
|
487
512
|
}
|
|
488
513
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
489
514
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -526,8 +551,10 @@
|
|
|
526
551
|
}
|
|
527
552
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
528
553
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
554
|
+
/* stylelint-disable */
|
|
529
555
|
min-width: 320px !important;
|
|
530
556
|
width: 100% !important;
|
|
557
|
+
/* stylelint-enable */
|
|
531
558
|
}
|
|
532
559
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
533
560
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -546,8 +573,14 @@
|
|
|
546
573
|
}
|
|
547
574
|
|
|
548
575
|
.e-pivot-calc-dialog-div {
|
|
576
|
+
/* stylelint-disable */
|
|
549
577
|
max-height: 550px !important;
|
|
578
|
+
/* stylelint-enable */
|
|
550
579
|
min-width: 290px;
|
|
580
|
+
/* stylelint-disable */
|
|
581
|
+
/* stylelint-enable */
|
|
582
|
+
/* stylelint-disable */
|
|
583
|
+
/* stylelint-enable */
|
|
551
584
|
}
|
|
552
585
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
553
586
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -592,9 +625,11 @@
|
|
|
592
625
|
}
|
|
593
626
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
594
627
|
color: #495057;
|
|
628
|
+
/* stylelint-disable */
|
|
595
629
|
float: right !important;
|
|
596
630
|
margin: 0;
|
|
597
631
|
margin-right: 12px !important;
|
|
632
|
+
/* stylelint-enable */
|
|
598
633
|
}
|
|
599
634
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
600
635
|
cursor: default;
|
|
@@ -878,8 +913,11 @@
|
|
|
878
913
|
|
|
879
914
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
880
915
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
916
|
+
/* stylelint-disable */
|
|
881
917
|
max-height: 600px !important;
|
|
882
918
|
min-width: 401px !important;
|
|
919
|
+
/* stylelint-enable */
|
|
920
|
+
/* stylelint-disable */
|
|
883
921
|
}
|
|
884
922
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
885
923
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -959,6 +997,9 @@
|
|
|
959
997
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
960
998
|
max-width: 400px !important;
|
|
961
999
|
min-width: 320px !important;
|
|
1000
|
+
/* stylelint-enable */
|
|
1001
|
+
/* stylelint-disable */
|
|
1002
|
+
/* stylelint-enable */
|
|
962
1003
|
}
|
|
963
1004
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
964
1005
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -1000,8 +1041,10 @@
|
|
|
1000
1041
|
}
|
|
1001
1042
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
1002
1043
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
1044
|
+
/* stylelint-disable */
|
|
1003
1045
|
margin-left: -25px;
|
|
1004
1046
|
overflow: auto !important;
|
|
1047
|
+
/* stylelint-enable */
|
|
1005
1048
|
}
|
|
1006
1049
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
1007
1050
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -1020,6 +1063,10 @@
|
|
|
1020
1063
|
margin-left: 0;
|
|
1021
1064
|
margin-right: -25px;
|
|
1022
1065
|
}
|
|
1066
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
1067
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
1068
|
+
/* stylelint-disable */
|
|
1069
|
+
}
|
|
1023
1070
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
1024
1071
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
1025
1072
|
margin-left: 0;
|
|
@@ -1108,6 +1155,7 @@
|
|
|
1108
1155
|
}
|
|
1109
1156
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
1110
1157
|
border: 0;
|
|
1158
|
+
/* stylelint-enable */
|
|
1111
1159
|
}
|
|
1112
1160
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
1113
1161
|
margin: 0 0 0 6px;
|
|
@@ -1136,6 +1184,8 @@
|
|
|
1136
1184
|
overflow: auto;
|
|
1137
1185
|
padding: 20px;
|
|
1138
1186
|
padding-bottom: 0;
|
|
1187
|
+
/* stylelint-disable */
|
|
1188
|
+
/* stylelint-enable */
|
|
1139
1189
|
}
|
|
1140
1190
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
1141
1191
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -1174,6 +1224,9 @@
|
|
|
1174
1224
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
1175
1225
|
float: right;
|
|
1176
1226
|
}
|
|
1227
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
1228
|
+
/* stylelint-disable */
|
|
1229
|
+
}
|
|
1177
1230
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
1178
1231
|
margin-left: 0;
|
|
1179
1232
|
}
|
|
@@ -1311,6 +1364,7 @@
|
|
|
1311
1364
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
1312
1365
|
overflow: hidden;
|
|
1313
1366
|
padding: 0 !important;
|
|
1367
|
+
/* stylelint-enable */
|
|
1314
1368
|
}
|
|
1315
1369
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
1316
1370
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -1380,6 +1434,11 @@
|
|
|
1380
1434
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
1381
1435
|
padding-right: 0;
|
|
1382
1436
|
}
|
|
1437
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
1438
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
1439
|
+
/* stylelint-disable */
|
|
1440
|
+
/* stylelint-enable */
|
|
1441
|
+
}
|
|
1383
1442
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
1384
1443
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
1385
1444
|
padding-left: 24px;
|
|
@@ -1432,6 +1491,7 @@
|
|
|
1432
1491
|
padding: 4px;
|
|
1433
1492
|
}
|
|
1434
1493
|
|
|
1494
|
+
/* stylelint-disable */
|
|
1435
1495
|
.e-button-drag-clone {
|
|
1436
1496
|
background-color: rgba(0, 0, 0, 0.7) !important;
|
|
1437
1497
|
border: 1px solid #dee2e6;
|
|
@@ -1469,6 +1529,12 @@
|
|
|
1469
1529
|
width: auto !important;
|
|
1470
1530
|
}
|
|
1471
1531
|
|
|
1532
|
+
/* stylelint-enable */
|
|
1533
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
1534
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
1535
|
+
/* stylelint-disable */
|
|
1536
|
+
/* stylelint-enable */
|
|
1537
|
+
}
|
|
1472
1538
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
1473
1539
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
1474
1540
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -1541,6 +1607,10 @@
|
|
|
1541
1607
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
1542
1608
|
margin-left: 10px;
|
|
1543
1609
|
}
|
|
1610
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
1611
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
1612
|
+
/* stylelint-disable */
|
|
1613
|
+
}
|
|
1544
1614
|
.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,
|
|
1545
1615
|
.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 {
|
|
1546
1616
|
margin: 0 0 0 6px;
|
|
@@ -1689,6 +1759,7 @@
|
|
|
1689
1759
|
background-color: #999;
|
|
1690
1760
|
}
|
|
1691
1761
|
|
|
1762
|
+
/* stylelint-disable */
|
|
1692
1763
|
*.e-rtl .e-select-table {
|
|
1693
1764
|
padding: 8px 5px;
|
|
1694
1765
|
}
|
|
@@ -1727,6 +1798,8 @@
|
|
|
1727
1798
|
font-size: 14px;
|
|
1728
1799
|
max-width: 700px;
|
|
1729
1800
|
min-width: 300px;
|
|
1801
|
+
/* stylelint-enable */
|
|
1802
|
+
/* stylelint-enable */
|
|
1730
1803
|
}
|
|
1731
1804
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
1732
1805
|
display: -ms-flexbox;
|
|
@@ -1847,6 +1920,8 @@
|
|
|
1847
1920
|
display: -ms-flexbox;
|
|
1848
1921
|
display: flex;
|
|
1849
1922
|
padding-right: 8px;
|
|
1923
|
+
/* stylelint-disable */
|
|
1924
|
+
/* stylelint-enable */
|
|
1850
1925
|
}
|
|
1851
1926
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
1852
1927
|
-ms-flex: auto;
|
|
@@ -1858,7 +1933,9 @@
|
|
|
1858
1933
|
color: #555;
|
|
1859
1934
|
cursor: pointer;
|
|
1860
1935
|
font-size: 14px;
|
|
1936
|
+
/* stylelint-disable */
|
|
1861
1937
|
height: 20px !important;
|
|
1938
|
+
/* stylelint-enable */
|
|
1862
1939
|
padding: 7px 0 0 8px;
|
|
1863
1940
|
width: 20px;
|
|
1864
1941
|
}
|
|
@@ -1891,9 +1968,13 @@
|
|
|
1891
1968
|
}
|
|
1892
1969
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
1893
1970
|
overflow: hidden;
|
|
1971
|
+
/* stylelint-disable */
|
|
1972
|
+
/* stylelint-enable */
|
|
1894
1973
|
}
|
|
1895
1974
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
1896
1975
|
margin-left: -40px;
|
|
1976
|
+
/* stylelint-disable */
|
|
1977
|
+
/* stylelint-enable */
|
|
1897
1978
|
}
|
|
1898
1979
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
1899
1980
|
cursor: default;
|
|
@@ -2403,6 +2484,8 @@
|
|
|
2403
2484
|
}
|
|
2404
2485
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2405
2486
|
height: 369px;
|
|
2487
|
+
/* stylelint-disable */
|
|
2488
|
+
/* stylelint-enable */
|
|
2406
2489
|
}
|
|
2407
2490
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
2408
2491
|
height: 394px !important;
|
|
@@ -2426,6 +2509,7 @@
|
|
|
2426
2509
|
display: -ms-flexbox;
|
|
2427
2510
|
display: flex;
|
|
2428
2511
|
padding: 10px 20px;
|
|
2512
|
+
/* stylelint-disable */
|
|
2429
2513
|
}
|
|
2430
2514
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
2431
2515
|
float: right;
|
|
@@ -2462,6 +2546,8 @@
|
|
|
2462
2546
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
2463
2547
|
margin-left: 0;
|
|
2464
2548
|
margin-right: -40px;
|
|
2549
|
+
/* stylelint-disable */
|
|
2550
|
+
/* stylelint-enable */
|
|
2465
2551
|
}
|
|
2466
2552
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
2467
2553
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
@@ -2493,6 +2579,8 @@
|
|
|
2493
2579
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
2494
2580
|
padding-left: 8px;
|
|
2495
2581
|
padding-right: 0;
|
|
2582
|
+
/* stylelint-disable */
|
|
2583
|
+
/* stylelint-enable */
|
|
2496
2584
|
}
|
|
2497
2585
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
2498
2586
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -2574,8 +2662,10 @@
|
|
|
2574
2662
|
}
|
|
2575
2663
|
.e-pivotfieldlist-container.e-device {
|
|
2576
2664
|
height: 100%;
|
|
2665
|
+
/* stylelint-disable */
|
|
2577
2666
|
max-height: 100% !important;
|
|
2578
2667
|
max-width: 100% !important;
|
|
2668
|
+
/* stylelint-enable */
|
|
2579
2669
|
min-height: 500px;
|
|
2580
2670
|
width: 100%;
|
|
2581
2671
|
}
|
|
@@ -2680,6 +2770,8 @@
|
|
|
2680
2770
|
padding: 9px 16px;
|
|
2681
2771
|
text-transform: none;
|
|
2682
2772
|
width: 100%;
|
|
2773
|
+
/* stylelint-disable */
|
|
2774
|
+
/* stylelint-enable */
|
|
2683
2775
|
}
|
|
2684
2776
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
2685
2777
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -2870,6 +2962,10 @@
|
|
|
2870
2962
|
vertical-align: middle;
|
|
2871
2963
|
width: 70%;
|
|
2872
2964
|
}
|
|
2965
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
2966
|
+
/* stylelint-disable */
|
|
2967
|
+
/* stylelint-enable */
|
|
2968
|
+
}
|
|
2873
2969
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
2874
2970
|
background-color: #fff;
|
|
2875
2971
|
border: 1px solid #ced4da;
|
|
@@ -2917,6 +3013,10 @@
|
|
|
2917
3013
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
2918
3014
|
margin-right: 12px;
|
|
2919
3015
|
}
|
|
3016
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
3017
|
+
/* stylelint-disable */
|
|
3018
|
+
/* stylelint-enable */
|
|
3019
|
+
}
|
|
2920
3020
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
2921
3021
|
left: 16px;
|
|
2922
3022
|
right: auto;
|
|
@@ -3066,6 +3166,10 @@
|
|
|
3066
3166
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
3067
3167
|
max-height: 600px;
|
|
3068
3168
|
}
|
|
3169
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
3170
|
+
/* stylelint-disable */
|
|
3171
|
+
/* stylelint-enable */
|
|
3172
|
+
}
|
|
3069
3173
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
3070
3174
|
margin-left: 12px;
|
|
3071
3175
|
margin-right: 0;
|
|
@@ -3086,6 +3190,11 @@
|
|
|
3086
3190
|
margin-left: 20px;
|
|
3087
3191
|
}
|
|
3088
3192
|
|
|
3193
|
+
/* stylelint-disable */
|
|
3194
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
3195
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
3196
|
+
/* stylelint-enable */
|
|
3197
|
+
}
|
|
3089
3198
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
3090
3199
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
3091
3200
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -3250,6 +3359,7 @@
|
|
|
3250
3359
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
3251
3360
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
3252
3361
|
height: 126px;
|
|
3362
|
+
/* stylelint-disable */
|
|
3253
3363
|
}
|
|
3254
3364
|
.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,
|
|
3255
3365
|
.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,
|
|
@@ -3262,6 +3372,7 @@
|
|
|
3262
3372
|
font-size: 16px;
|
|
3263
3373
|
height: 36px !important;
|
|
3264
3374
|
padding: 9px 12px !important;
|
|
3375
|
+
/* stylelint-enable */
|
|
3265
3376
|
}
|
|
3266
3377
|
.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,
|
|
3267
3378
|
.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,
|
|
@@ -3396,6 +3507,10 @@
|
|
|
3396
3507
|
.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 {
|
|
3397
3508
|
padding-top: 9px;
|
|
3398
3509
|
}
|
|
3510
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
3511
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
3512
|
+
/* stylelint-disable */
|
|
3513
|
+
}
|
|
3399
3514
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
3400
3515
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
3401
3516
|
padding-left: 16px;
|
|
@@ -3408,6 +3523,7 @@
|
|
|
3408
3523
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
3409
3524
|
padding-left: 0;
|
|
3410
3525
|
padding-right: 5px;
|
|
3526
|
+
/* stylelint-enable */
|
|
3411
3527
|
}
|
|
3412
3528
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
3413
3529
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -3446,6 +3562,8 @@
|
|
|
3446
3562
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
3447
3563
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
3448
3564
|
padding-left: 12px;
|
|
3565
|
+
/* stylelint-disable */
|
|
3566
|
+
/* stylelint-enable */
|
|
3449
3567
|
}
|
|
3450
3568
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
3451
3569
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -3513,6 +3631,10 @@
|
|
|
3513
3631
|
padding-left: 0;
|
|
3514
3632
|
padding-right: 8px;
|
|
3515
3633
|
}
|
|
3634
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
3635
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
3636
|
+
/* stylelint-disable */
|
|
3637
|
+
}
|
|
3516
3638
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
3517
3639
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
3518
3640
|
max-height: 750px;
|
|
@@ -3549,4 +3671,6 @@
|
|
|
3549
3671
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3550
3672
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3551
3673
|
max-height: 177px;
|
|
3552
|
-
}
|
|
3674
|
+
}
|
|
3675
|
+
|
|
3676
|
+
/* stylelint-enable */
|