@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: 628px !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;
|
|
@@ -366,7 +377,9 @@
|
|
|
366
377
|
float: right;
|
|
367
378
|
padding-right: 12px;
|
|
368
379
|
padding-top: 12px;
|
|
380
|
+
/* stylelint-disable */
|
|
369
381
|
color: #fff !important;
|
|
382
|
+
/* stylelint-enable */
|
|
370
383
|
}
|
|
371
384
|
.e-pivot-formatting-dialog .e-format-delete-button:hover,
|
|
372
385
|
.e-pivot-formatting-dialog .e-format-delete-button:focus,
|
|
@@ -394,7 +407,9 @@
|
|
|
394
407
|
border: 1px solid #444c54;
|
|
395
408
|
border-radius: 4px;
|
|
396
409
|
height: 28px;
|
|
410
|
+
/* stylelint-disable */
|
|
397
411
|
margin: 0 !important;
|
|
412
|
+
/* stylelint-enable */
|
|
398
413
|
padding-left: 6px;
|
|
399
414
|
padding-top: 6px;
|
|
400
415
|
width: 80px;
|
|
@@ -403,7 +418,9 @@
|
|
|
403
418
|
background: none;
|
|
404
419
|
margin: 0 2px;
|
|
405
420
|
width: 14px;
|
|
421
|
+
/* stylelint-disable */
|
|
406
422
|
color: #fff !important;
|
|
423
|
+
/* stylelint-enable */
|
|
407
424
|
}
|
|
408
425
|
.e-pivot-formatting-dialog .e-format-color-picker .e-split-btn-wrapper .e-split-btn .e-selected-color:hover {
|
|
409
426
|
color: #adb5bd !important;
|
|
@@ -419,7 +436,9 @@
|
|
|
419
436
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
420
437
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
421
438
|
border: 1px solid #444c54;
|
|
439
|
+
/* stylelint-disable */
|
|
422
440
|
border-radius: 0 !important;
|
|
441
|
+
/* stylelint-enable */
|
|
423
442
|
height: 40%;
|
|
424
443
|
left: -3px;
|
|
425
444
|
position: absolute;
|
|
@@ -427,8 +446,10 @@
|
|
|
427
446
|
width: 150%;
|
|
428
447
|
}
|
|
429
448
|
.e-pivot-formatting-dialog.e-device {
|
|
449
|
+
/* stylelint-disable */
|
|
430
450
|
min-width: 320px !important;
|
|
431
451
|
width: 100% !important;
|
|
452
|
+
/* stylelint-enable */
|
|
432
453
|
}
|
|
433
454
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
434
455
|
width: 100% !important;
|
|
@@ -477,7 +498,11 @@
|
|
|
477
498
|
|
|
478
499
|
.e-bigger.e-pivot-formatting-dialog,
|
|
479
500
|
.e-bigger .e-pivot-formatting-dialog {
|
|
501
|
+
/* stylelint-disable */
|
|
480
502
|
width: 680px !important;
|
|
503
|
+
/* stylelint-enable */
|
|
504
|
+
/* stylelint-disable */
|
|
505
|
+
/* stylelint-enable */
|
|
481
506
|
}
|
|
482
507
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
483
508
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -517,8 +542,10 @@
|
|
|
517
542
|
}
|
|
518
543
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
519
544
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
545
|
+
/* stylelint-disable */
|
|
520
546
|
min-width: 320px !important;
|
|
521
547
|
width: 100% !important;
|
|
548
|
+
/* stylelint-enable */
|
|
522
549
|
}
|
|
523
550
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
524
551
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -537,8 +564,14 @@
|
|
|
537
564
|
}
|
|
538
565
|
|
|
539
566
|
.e-pivot-calc-dialog-div {
|
|
567
|
+
/* stylelint-disable */
|
|
540
568
|
max-height: 550px !important;
|
|
569
|
+
/* stylelint-enable */
|
|
541
570
|
min-width: 290px;
|
|
571
|
+
/* stylelint-disable */
|
|
572
|
+
/* stylelint-enable */
|
|
573
|
+
/* stylelint-disable */
|
|
574
|
+
/* stylelint-enable */
|
|
542
575
|
}
|
|
543
576
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
544
577
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -583,9 +616,11 @@
|
|
|
583
616
|
color: #adb5bd;
|
|
584
617
|
}
|
|
585
618
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
619
|
+
/* stylelint-disable */
|
|
586
620
|
float: right !important;
|
|
587
621
|
margin: 0;
|
|
588
622
|
margin-right: 12px !important;
|
|
623
|
+
/* stylelint-enable */
|
|
589
624
|
}
|
|
590
625
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
591
626
|
cursor: default;
|
|
@@ -873,8 +908,11 @@
|
|
|
873
908
|
|
|
874
909
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
875
910
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
911
|
+
/* stylelint-disable */
|
|
876
912
|
max-height: 600px !important;
|
|
877
913
|
min-width: 401px !important;
|
|
914
|
+
/* stylelint-enable */
|
|
915
|
+
/* stylelint-disable */
|
|
878
916
|
}
|
|
879
917
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
880
918
|
.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 {
|
|
@@ -996,8 +1037,10 @@
|
|
|
996
1037
|
}
|
|
997
1038
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
998
1039
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
1040
|
+
/* stylelint-disable */
|
|
999
1041
|
margin-left: -22px;
|
|
1000
1042
|
overflow: auto !important;
|
|
1043
|
+
/* stylelint-enable */
|
|
1001
1044
|
}
|
|
1002
1045
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
1003
1046
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -1016,6 +1059,10 @@
|
|
|
1016
1059
|
margin-left: 0;
|
|
1017
1060
|
margin-right: -22px;
|
|
1018
1061
|
}
|
|
1062
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
1063
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
1064
|
+
/* stylelint-disable */
|
|
1065
|
+
}
|
|
1019
1066
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
1020
1067
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
1021
1068
|
margin-left: 0;
|
|
@@ -1077,6 +1124,7 @@
|
|
|
1077
1124
|
}
|
|
1078
1125
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
1079
1126
|
border: 0;
|
|
1127
|
+
/* stylelint-enable */
|
|
1080
1128
|
}
|
|
1081
1129
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
1082
1130
|
margin: 0 0 0 6px;
|
|
@@ -1105,6 +1153,8 @@
|
|
|
1105
1153
|
overflow: auto;
|
|
1106
1154
|
padding: 20px;
|
|
1107
1155
|
padding-bottom: 0;
|
|
1156
|
+
/* stylelint-disable */
|
|
1157
|
+
/* stylelint-enable */
|
|
1108
1158
|
}
|
|
1109
1159
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
1110
1160
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -1143,6 +1193,9 @@
|
|
|
1143
1193
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
1144
1194
|
float: right;
|
|
1145
1195
|
}
|
|
1196
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
1197
|
+
/* stylelint-disable */
|
|
1198
|
+
}
|
|
1146
1199
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
1147
1200
|
margin-left: 0;
|
|
1148
1201
|
}
|
|
@@ -1280,6 +1333,7 @@
|
|
|
1280
1333
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
1281
1334
|
overflow: hidden;
|
|
1282
1335
|
padding: 0 !important;
|
|
1336
|
+
/* stylelint-enable */
|
|
1283
1337
|
}
|
|
1284
1338
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
1285
1339
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -1351,6 +1405,11 @@
|
|
|
1351
1405
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
1352
1406
|
padding-right: 0;
|
|
1353
1407
|
}
|
|
1408
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
1409
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
1410
|
+
/* stylelint-disable */
|
|
1411
|
+
/* stylelint-enable */
|
|
1412
|
+
}
|
|
1354
1413
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
1355
1414
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
1356
1415
|
padding-left: 24px;
|
|
@@ -1400,6 +1459,7 @@
|
|
|
1400
1459
|
padding: 4px;
|
|
1401
1460
|
}
|
|
1402
1461
|
|
|
1462
|
+
/* stylelint-disable */
|
|
1403
1463
|
.e-button-drag-clone {
|
|
1404
1464
|
background-color: #495057 !important;
|
|
1405
1465
|
border: 1px solid #495057;
|
|
@@ -1439,6 +1499,12 @@
|
|
|
1439
1499
|
width: auto !important;
|
|
1440
1500
|
}
|
|
1441
1501
|
|
|
1502
|
+
/* stylelint-enable */
|
|
1503
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
1504
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
1505
|
+
/* stylelint-disable */
|
|
1506
|
+
/* stylelint-enable */
|
|
1507
|
+
}
|
|
1442
1508
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
1443
1509
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
1444
1510
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -1503,6 +1569,10 @@
|
|
|
1503
1569
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
1504
1570
|
margin-left: 10px;
|
|
1505
1571
|
}
|
|
1572
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
1573
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
1574
|
+
/* stylelint-disable */
|
|
1575
|
+
}
|
|
1506
1576
|
.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,
|
|
1507
1577
|
.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 {
|
|
1508
1578
|
margin: 0 0 0 6px;
|
|
@@ -1651,6 +1721,7 @@
|
|
|
1651
1721
|
background-color: #495057;
|
|
1652
1722
|
}
|
|
1653
1723
|
|
|
1724
|
+
/* stylelint-disable */
|
|
1654
1725
|
*.e-rtl .e-select-table {
|
|
1655
1726
|
padding: 8px 5px;
|
|
1656
1727
|
}
|
|
@@ -1689,6 +1760,8 @@
|
|
|
1689
1760
|
font-size: 14px;
|
|
1690
1761
|
max-width: 700px;
|
|
1691
1762
|
min-width: 300px;
|
|
1763
|
+
/* stylelint-enable */
|
|
1764
|
+
/* stylelint-enable */
|
|
1692
1765
|
}
|
|
1693
1766
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
1694
1767
|
display: -ms-flexbox;
|
|
@@ -1814,6 +1887,8 @@
|
|
|
1814
1887
|
display: -ms-flexbox;
|
|
1815
1888
|
display: flex;
|
|
1816
1889
|
padding-right: 18px;
|
|
1890
|
+
/* stylelint-disable */
|
|
1891
|
+
/* stylelint-enable */
|
|
1817
1892
|
}
|
|
1818
1893
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
1819
1894
|
-ms-flex: auto;
|
|
@@ -1825,7 +1900,9 @@
|
|
|
1825
1900
|
color: #ced4da;
|
|
1826
1901
|
cursor: pointer;
|
|
1827
1902
|
font-size: 14px;
|
|
1903
|
+
/* stylelint-disable */
|
|
1828
1904
|
height: 20px !important;
|
|
1905
|
+
/* stylelint-enable */
|
|
1829
1906
|
padding: 6px 0 0 4px;
|
|
1830
1907
|
width: 20px;
|
|
1831
1908
|
}
|
|
@@ -1858,9 +1935,13 @@
|
|
|
1858
1935
|
}
|
|
1859
1936
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
1860
1937
|
overflow: hidden;
|
|
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 {
|
|
1863
1942
|
margin-left: -30px;
|
|
1943
|
+
/* stylelint-disable */
|
|
1944
|
+
/* stylelint-enable */
|
|
1864
1945
|
}
|
|
1865
1946
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
1866
1947
|
cursor: default;
|
|
@@ -2373,6 +2454,8 @@
|
|
|
2373
2454
|
}
|
|
2374
2455
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2375
2456
|
height: 369px;
|
|
2457
|
+
/* stylelint-disable */
|
|
2458
|
+
/* stylelint-enable */
|
|
2376
2459
|
}
|
|
2377
2460
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
2378
2461
|
height: 392px !important;
|
|
@@ -2396,6 +2479,7 @@
|
|
|
2396
2479
|
display: -ms-flexbox;
|
|
2397
2480
|
display: flex;
|
|
2398
2481
|
padding: 10px 18px;
|
|
2482
|
+
/* stylelint-disable */
|
|
2399
2483
|
}
|
|
2400
2484
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
2401
2485
|
float: right;
|
|
@@ -2432,6 +2516,8 @@
|
|
|
2432
2516
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
2433
2517
|
margin-left: 0;
|
|
2434
2518
|
margin-right: -30px;
|
|
2519
|
+
/* stylelint-disable */
|
|
2520
|
+
/* stylelint-enable */
|
|
2435
2521
|
}
|
|
2436
2522
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
2437
2523
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
@@ -2462,6 +2548,8 @@
|
|
|
2462
2548
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
2463
2549
|
padding-left: 18px;
|
|
2464
2550
|
padding-right: 0;
|
|
2551
|
+
/* stylelint-disable */
|
|
2552
|
+
/* stylelint-enable */
|
|
2465
2553
|
}
|
|
2466
2554
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
2467
2555
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -2543,8 +2631,10 @@
|
|
|
2543
2631
|
}
|
|
2544
2632
|
.e-pivotfieldlist-container.e-device {
|
|
2545
2633
|
height: 100%;
|
|
2634
|
+
/* stylelint-disable */
|
|
2546
2635
|
max-height: 100% !important;
|
|
2547
2636
|
max-width: 100% !important;
|
|
2637
|
+
/* stylelint-enable */
|
|
2548
2638
|
min-height: 500px;
|
|
2549
2639
|
width: 100%;
|
|
2550
2640
|
}
|
|
@@ -2651,6 +2741,8 @@
|
|
|
2651
2741
|
width: 100%;
|
|
2652
2742
|
background-color: #212529;
|
|
2653
2743
|
color: #fff;
|
|
2744
|
+
/* stylelint-disable */
|
|
2745
|
+
/* stylelint-enable */
|
|
2654
2746
|
}
|
|
2655
2747
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
2656
2748
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -2844,6 +2936,10 @@
|
|
|
2844
2936
|
width: 70%;
|
|
2845
2937
|
color: #fff;
|
|
2846
2938
|
}
|
|
2939
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
2940
|
+
/* stylelint-disable */
|
|
2941
|
+
/* stylelint-enable */
|
|
2942
|
+
}
|
|
2847
2943
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
2848
2944
|
background-color: #212529;
|
|
2849
2945
|
border: 1px solid #444c54;
|
|
@@ -2891,6 +2987,10 @@
|
|
|
2891
2987
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
2892
2988
|
margin-right: 12px;
|
|
2893
2989
|
}
|
|
2990
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
2991
|
+
/* stylelint-disable */
|
|
2992
|
+
/* stylelint-enable */
|
|
2993
|
+
}
|
|
2894
2994
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
2895
2995
|
left: 16px;
|
|
2896
2996
|
right: auto;
|
|
@@ -3041,6 +3141,10 @@
|
|
|
3041
3141
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
3042
3142
|
max-height: 600px;
|
|
3043
3143
|
}
|
|
3144
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
3145
|
+
/* stylelint-disable */
|
|
3146
|
+
/* stylelint-enable */
|
|
3147
|
+
}
|
|
3044
3148
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
3045
3149
|
margin-left: 12px;
|
|
3046
3150
|
margin-right: 0;
|
|
@@ -3061,6 +3165,11 @@
|
|
|
3061
3165
|
margin-left: 20px;
|
|
3062
3166
|
}
|
|
3063
3167
|
|
|
3168
|
+
/* stylelint-disable */
|
|
3169
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
3170
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
3171
|
+
/* stylelint-enable */
|
|
3172
|
+
}
|
|
3064
3173
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
3065
3174
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
3066
3175
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -3212,6 +3321,16 @@
|
|
|
3212
3321
|
margin-top: 4px;
|
|
3213
3322
|
padding: 0 12px;
|
|
3214
3323
|
}
|
|
3324
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
3325
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
3326
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
3327
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
3328
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
3329
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
3330
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
3331
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
3332
|
+
/* stylelint-disable */
|
|
3333
|
+
}
|
|
3215
3334
|
.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,
|
|
3216
3335
|
.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,
|
|
3217
3336
|
.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,
|
|
@@ -3223,6 +3342,7 @@
|
|
|
3223
3342
|
font-size: 14px;
|
|
3224
3343
|
height: 36px !important;
|
|
3225
3344
|
padding: 9px 16px !important;
|
|
3345
|
+
/* stylelint-enable */
|
|
3226
3346
|
}
|
|
3227
3347
|
.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,
|
|
3228
3348
|
.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,
|
|
@@ -3347,6 +3467,10 @@
|
|
|
3347
3467
|
.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 {
|
|
3348
3468
|
padding-top: 7px;
|
|
3349
3469
|
}
|
|
3470
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
3471
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
3472
|
+
/* stylelint-disable */
|
|
3473
|
+
}
|
|
3350
3474
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
3351
3475
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
3352
3476
|
padding-left: 12px;
|
|
@@ -3359,6 +3483,7 @@
|
|
|
3359
3483
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
3360
3484
|
padding-left: 0;
|
|
3361
3485
|
padding-right: 5px;
|
|
3486
|
+
/* stylelint-enable */
|
|
3362
3487
|
}
|
|
3363
3488
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
3364
3489
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -3397,6 +3522,8 @@
|
|
|
3397
3522
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
3398
3523
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
3399
3524
|
padding-left: 20px;
|
|
3525
|
+
/* stylelint-disable */
|
|
3526
|
+
/* stylelint-enable */
|
|
3400
3527
|
}
|
|
3401
3528
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
3402
3529
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -3464,6 +3591,10 @@
|
|
|
3464
3591
|
padding-left: 0;
|
|
3465
3592
|
padding-right: 4px;
|
|
3466
3593
|
}
|
|
3594
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
3595
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
3596
|
+
/* stylelint-disable */
|
|
3597
|
+
}
|
|
3467
3598
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
3468
3599
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
3469
3600
|
max-height: 750px;
|
|
@@ -3500,4 +3631,6 @@
|
|
|
3500
3631
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3501
3632
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3502
3633
|
max-height: 187px;
|
|
3503
|
-
}
|
|
3634
|
+
}
|
|
3635
|
+
|
|
3636
|
+
/* stylelint-enable */
|