@syncfusion/ej2-angular-pivotview 20.2.45-ngcc → 20.2.45
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 +26 -12
- package/schematics/utils/lib-details.ts +2 -2
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -0
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +212 -1
- package/styles/bootstrap.css +212 -1
- package/styles/bootstrap4.css +208 -2
- package/styles/bootstrap5-dark.css +214 -1
- package/styles/bootstrap5.css +214 -1
- package/styles/fabric-dark.css +212 -1
- package/styles/fabric.css +212 -1
- package/styles/fluent-dark.css +214 -1
- package/styles/fluent.css +214 -1
- package/styles/highcontrast-light.css +212 -1
- package/styles/highcontrast.css +212 -1
- package/styles/material-dark.css +212 -1
- package/styles/material.css +212 -1
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +190 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +186 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +187 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +187 -0
- package/styles/pivotfieldlist/_layout.scss +1848 -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 +1857 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +130 -1
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +130 -1
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +125 -1
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +134 -1
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +134 -1
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +130 -1
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +130 -1
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +132 -1
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +132 -1
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +130 -1
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +130 -1
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_material.scss +358 -0
- package/styles/pivotfieldlist/icons/_material3.scss +353 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
- package/styles/pivotfieldlist/material-dark.css +130 -1
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +130 -1
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +132 -1
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +132 -1
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +131 -0
- package/styles/pivotview/_bootstrap-definition.scss +128 -0
- package/styles/pivotview/_bootstrap4-definition.scss +128 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +133 -0
- package/styles/pivotview/_fabric-dark-definition.scss +130 -0
- package/styles/pivotview/_fabric-definition.scss +127 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +133 -0
- package/styles/pivotview/_fusionnew-definition.scss +133 -0
- package/styles/pivotview/_highcontrast-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
- package/styles/pivotview/_layout.scss +1072 -0
- package/styles/pivotview/_material-dark-definition.scss +134 -0
- package/styles/pivotview/_material-definition.scss +130 -0
- package/styles/pivotview/_material3-definition.scss +133 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +133 -0
- package/styles/pivotview/_theme.scss +1581 -0
- package/styles/pivotview/bootstrap-dark.css +82 -0
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +82 -0
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +83 -1
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +80 -0
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +80 -0
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +82 -0
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +82 -0
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +82 -0
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +82 -0
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +82 -0
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +82 -0
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.css +82 -0
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +82 -0
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +80 -0
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +80 -0
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +212 -1
- package/styles/tailwind.css +212 -1
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -395
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -704
- package/dist/ej2-angular-pivotview.umd.js +0 -667
- 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: #212529 !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 #dee2e6;
|
|
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: #212529 !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: #6c757d !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 #dee2e6;
|
|
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: 600px !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 {
|
|
@@ -586,9 +619,11 @@
|
|
|
586
619
|
color: #6c757d;
|
|
587
620
|
}
|
|
588
621
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
622
|
+
/* stylelint-disable */
|
|
589
623
|
float: right !important;
|
|
590
624
|
margin: 0;
|
|
591
625
|
margin-right: 12px !important;
|
|
626
|
+
/* stylelint-enable */
|
|
592
627
|
}
|
|
593
628
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
594
629
|
cursor: default;
|
|
@@ -876,8 +911,11 @@
|
|
|
876
911
|
|
|
877
912
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
878
913
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
914
|
+
/* stylelint-disable */
|
|
879
915
|
max-height: 600px !important;
|
|
880
916
|
min-width: 401px !important;
|
|
917
|
+
/* stylelint-enable */
|
|
918
|
+
/* stylelint-disable */
|
|
881
919
|
}
|
|
882
920
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
883
921
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -962,6 +1000,9 @@
|
|
|
962
1000
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
963
1001
|
max-width: 400px !important;
|
|
964
1002
|
min-width: 320px !important;
|
|
1003
|
+
/* stylelint-enable */
|
|
1004
|
+
/* stylelint-disable */
|
|
1005
|
+
/* stylelint-enable */
|
|
965
1006
|
}
|
|
966
1007
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
967
1008
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -999,8 +1040,10 @@
|
|
|
999
1040
|
}
|
|
1000
1041
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
1001
1042
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
1043
|
+
/* stylelint-disable */
|
|
1002
1044
|
margin-left: -22px;
|
|
1003
1045
|
overflow: auto !important;
|
|
1046
|
+
/* stylelint-enable */
|
|
1004
1047
|
}
|
|
1005
1048
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
1006
1049
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -1019,6 +1062,10 @@
|
|
|
1019
1062
|
margin-left: 0;
|
|
1020
1063
|
margin-right: -22px;
|
|
1021
1064
|
}
|
|
1065
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
1066
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
1067
|
+
/* stylelint-disable */
|
|
1068
|
+
}
|
|
1022
1069
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
1023
1070
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
1024
1071
|
margin-left: 0;
|
|
@@ -1080,6 +1127,7 @@
|
|
|
1080
1127
|
}
|
|
1081
1128
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
1082
1129
|
border: 0;
|
|
1130
|
+
/* stylelint-enable */
|
|
1083
1131
|
}
|
|
1084
1132
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
1085
1133
|
margin: 0 0 0 6px;
|
|
@@ -1108,6 +1156,8 @@
|
|
|
1108
1156
|
overflow: auto;
|
|
1109
1157
|
padding: 20px;
|
|
1110
1158
|
padding-bottom: 0;
|
|
1159
|
+
/* stylelint-disable */
|
|
1160
|
+
/* stylelint-enable */
|
|
1111
1161
|
}
|
|
1112
1162
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
1113
1163
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -1146,6 +1196,9 @@
|
|
|
1146
1196
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
1147
1197
|
float: right;
|
|
1148
1198
|
}
|
|
1199
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
1200
|
+
/* stylelint-disable */
|
|
1201
|
+
}
|
|
1149
1202
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
1150
1203
|
margin-left: 0;
|
|
1151
1204
|
}
|
|
@@ -1283,6 +1336,7 @@
|
|
|
1283
1336
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
1284
1337
|
overflow: hidden;
|
|
1285
1338
|
padding: 0 !important;
|
|
1339
|
+
/* stylelint-enable */
|
|
1286
1340
|
}
|
|
1287
1341
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
1288
1342
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -1354,6 +1408,11 @@
|
|
|
1354
1408
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
1355
1409
|
padding-right: 0;
|
|
1356
1410
|
}
|
|
1411
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
1412
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
1413
|
+
/* stylelint-disable */
|
|
1414
|
+
/* stylelint-enable */
|
|
1415
|
+
}
|
|
1357
1416
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
1358
1417
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
1359
1418
|
padding-left: 24px;
|
|
@@ -1403,6 +1462,7 @@
|
|
|
1403
1462
|
padding: 4px;
|
|
1404
1463
|
}
|
|
1405
1464
|
|
|
1465
|
+
/* stylelint-disable */
|
|
1406
1466
|
.e-button-drag-clone {
|
|
1407
1467
|
background-color: #dee2e6 !important;
|
|
1408
1468
|
border: 1px solid #dee2e6;
|
|
@@ -1442,6 +1502,12 @@
|
|
|
1442
1502
|
width: auto !important;
|
|
1443
1503
|
}
|
|
1444
1504
|
|
|
1505
|
+
/* stylelint-enable */
|
|
1506
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
1507
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
1508
|
+
/* stylelint-disable */
|
|
1509
|
+
/* stylelint-enable */
|
|
1510
|
+
}
|
|
1445
1511
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
1446
1512
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
1447
1513
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -1506,6 +1572,10 @@
|
|
|
1506
1572
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
1507
1573
|
margin-left: 10px;
|
|
1508
1574
|
}
|
|
1575
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
1576
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
1577
|
+
/* stylelint-disable */
|
|
1578
|
+
}
|
|
1509
1579
|
.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,
|
|
1510
1580
|
.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 {
|
|
1511
1581
|
margin: 0 0 0 6px;
|
|
@@ -1654,6 +1724,7 @@
|
|
|
1654
1724
|
background-color: #dee2e6;
|
|
1655
1725
|
}
|
|
1656
1726
|
|
|
1727
|
+
/* stylelint-disable */
|
|
1657
1728
|
*.e-rtl .e-select-table {
|
|
1658
1729
|
padding: 8px 5px;
|
|
1659
1730
|
}
|
|
@@ -1692,6 +1763,8 @@
|
|
|
1692
1763
|
font-size: 14px;
|
|
1693
1764
|
max-width: 700px;
|
|
1694
1765
|
min-width: 300px;
|
|
1766
|
+
/* stylelint-enable */
|
|
1767
|
+
/* stylelint-enable */
|
|
1695
1768
|
}
|
|
1696
1769
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
1697
1770
|
display: -ms-flexbox;
|
|
@@ -1817,6 +1890,8 @@
|
|
|
1817
1890
|
display: -ms-flexbox;
|
|
1818
1891
|
display: flex;
|
|
1819
1892
|
padding-right: 18px;
|
|
1893
|
+
/* stylelint-disable */
|
|
1894
|
+
/* stylelint-enable */
|
|
1820
1895
|
}
|
|
1821
1896
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
1822
1897
|
-ms-flex: auto;
|
|
@@ -1828,7 +1903,9 @@
|
|
|
1828
1903
|
color: #495057;
|
|
1829
1904
|
cursor: pointer;
|
|
1830
1905
|
font-size: 14px;
|
|
1906
|
+
/* stylelint-disable */
|
|
1831
1907
|
height: 20px !important;
|
|
1908
|
+
/* stylelint-enable */
|
|
1832
1909
|
padding: 6px 0 0 4px;
|
|
1833
1910
|
width: 20px;
|
|
1834
1911
|
}
|
|
@@ -1861,9 +1938,13 @@
|
|
|
1861
1938
|
}
|
|
1862
1939
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
1863
1940
|
overflow: hidden;
|
|
1941
|
+
/* stylelint-disable */
|
|
1942
|
+
/* stylelint-enable */
|
|
1864
1943
|
}
|
|
1865
1944
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
1866
1945
|
margin-left: -30px;
|
|
1946
|
+
/* stylelint-disable */
|
|
1947
|
+
/* stylelint-enable */
|
|
1867
1948
|
}
|
|
1868
1949
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
1869
1950
|
cursor: default;
|
|
@@ -2376,6 +2457,8 @@
|
|
|
2376
2457
|
}
|
|
2377
2458
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2378
2459
|
height: 369px;
|
|
2460
|
+
/* stylelint-disable */
|
|
2461
|
+
/* stylelint-enable */
|
|
2379
2462
|
}
|
|
2380
2463
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
2381
2464
|
height: 392px !important;
|
|
@@ -2399,6 +2482,7 @@
|
|
|
2399
2482
|
display: -ms-flexbox;
|
|
2400
2483
|
display: flex;
|
|
2401
2484
|
padding: 10px 18px;
|
|
2485
|
+
/* stylelint-disable */
|
|
2402
2486
|
}
|
|
2403
2487
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
2404
2488
|
float: right;
|
|
@@ -2435,6 +2519,8 @@
|
|
|
2435
2519
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
2436
2520
|
margin-left: 0;
|
|
2437
2521
|
margin-right: -30px;
|
|
2522
|
+
/* stylelint-disable */
|
|
2523
|
+
/* stylelint-enable */
|
|
2438
2524
|
}
|
|
2439
2525
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
2440
2526
|
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";
|
|
@@ -2465,6 +2551,8 @@
|
|
|
2465
2551
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
2466
2552
|
padding-left: 18px;
|
|
2467
2553
|
padding-right: 0;
|
|
2554
|
+
/* stylelint-disable */
|
|
2555
|
+
/* stylelint-enable */
|
|
2468
2556
|
}
|
|
2469
2557
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
2470
2558
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -2546,8 +2634,10 @@
|
|
|
2546
2634
|
}
|
|
2547
2635
|
.e-pivotfieldlist-container.e-device {
|
|
2548
2636
|
height: 100%;
|
|
2637
|
+
/* stylelint-disable */
|
|
2549
2638
|
max-height: 100% !important;
|
|
2550
2639
|
max-width: 100% !important;
|
|
2640
|
+
/* stylelint-enable */
|
|
2551
2641
|
min-height: 500px;
|
|
2552
2642
|
width: 100%;
|
|
2553
2643
|
}
|
|
@@ -2654,6 +2744,8 @@
|
|
|
2654
2744
|
width: 100%;
|
|
2655
2745
|
background-color: #fff;
|
|
2656
2746
|
color: #212529;
|
|
2747
|
+
/* stylelint-disable */
|
|
2748
|
+
/* stylelint-enable */
|
|
2657
2749
|
}
|
|
2658
2750
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
2659
2751
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -2847,6 +2939,10 @@
|
|
|
2847
2939
|
width: 70%;
|
|
2848
2940
|
color: #212529;
|
|
2849
2941
|
}
|
|
2942
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
2943
|
+
/* stylelint-disable */
|
|
2944
|
+
/* stylelint-enable */
|
|
2945
|
+
}
|
|
2850
2946
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
2851
2947
|
background-color: #fff;
|
|
2852
2948
|
border: 1px solid #dee2e6;
|
|
@@ -2893,6 +2989,10 @@
|
|
|
2893
2989
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
2894
2990
|
margin-right: 12px;
|
|
2895
2991
|
}
|
|
2992
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
2993
|
+
/* stylelint-disable */
|
|
2994
|
+
/* stylelint-enable */
|
|
2995
|
+
}
|
|
2896
2996
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
2897
2997
|
left: 16px;
|
|
2898
2998
|
right: auto;
|
|
@@ -3043,6 +3143,10 @@
|
|
|
3043
3143
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
3044
3144
|
max-height: 600px;
|
|
3045
3145
|
}
|
|
3146
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
3147
|
+
/* stylelint-disable */
|
|
3148
|
+
/* stylelint-enable */
|
|
3149
|
+
}
|
|
3046
3150
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
3047
3151
|
margin-left: 12px;
|
|
3048
3152
|
margin-right: 0;
|
|
@@ -3063,6 +3167,11 @@
|
|
|
3063
3167
|
margin-left: 20px;
|
|
3064
3168
|
}
|
|
3065
3169
|
|
|
3170
|
+
/* stylelint-disable */
|
|
3171
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
3172
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
3173
|
+
/* stylelint-enable */
|
|
3174
|
+
}
|
|
3066
3175
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
3067
3176
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
3068
3177
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -3214,6 +3323,16 @@
|
|
|
3214
3323
|
margin-top: 4px;
|
|
3215
3324
|
padding: 0 12px;
|
|
3216
3325
|
}
|
|
3326
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
3327
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
3328
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
3329
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
3330
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
3331
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
3332
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
3333
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
3334
|
+
/* stylelint-disable */
|
|
3335
|
+
}
|
|
3217
3336
|
.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,
|
|
3218
3337
|
.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,
|
|
3219
3338
|
.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,
|
|
@@ -3225,6 +3344,7 @@
|
|
|
3225
3344
|
font-size: 14px;
|
|
3226
3345
|
height: 36px !important;
|
|
3227
3346
|
padding: 9px 16px !important;
|
|
3347
|
+
/* stylelint-enable */
|
|
3228
3348
|
}
|
|
3229
3349
|
.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,
|
|
3230
3350
|
.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,
|
|
@@ -3349,6 +3469,10 @@
|
|
|
3349
3469
|
.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 {
|
|
3350
3470
|
padding-top: 7px;
|
|
3351
3471
|
}
|
|
3472
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
3473
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
3474
|
+
/* stylelint-disable */
|
|
3475
|
+
}
|
|
3352
3476
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
3353
3477
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
3354
3478
|
padding-left: 12px;
|
|
@@ -3361,6 +3485,7 @@
|
|
|
3361
3485
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
3362
3486
|
padding-left: 0;
|
|
3363
3487
|
padding-right: 5px;
|
|
3488
|
+
/* stylelint-enable */
|
|
3364
3489
|
}
|
|
3365
3490
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
3366
3491
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -3399,6 +3524,8 @@
|
|
|
3399
3524
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
3400
3525
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
3401
3526
|
padding-left: 20px;
|
|
3527
|
+
/* stylelint-disable */
|
|
3528
|
+
/* stylelint-enable */
|
|
3402
3529
|
}
|
|
3403
3530
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
3404
3531
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -3466,6 +3593,10 @@
|
|
|
3466
3593
|
padding-left: 0;
|
|
3467
3594
|
padding-right: 4px;
|
|
3468
3595
|
}
|
|
3596
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
3597
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
3598
|
+
/* stylelint-disable */
|
|
3599
|
+
}
|
|
3469
3600
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
3470
3601
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
3471
3602
|
max-height: 750px;
|
|
@@ -3502,4 +3633,6 @@
|
|
|
3502
3633
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3503
3634
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3504
3635
|
max-height: 187px;
|
|
3505
|
-
}
|
|
3636
|
+
}
|
|
3637
|
+
|
|
3638
|
+
/* stylelint-enable */
|