@syncfusion/ej2-pivotview 19.3.55 → 19.4.41
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +76 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +56 -0
- package/CHANGELOG.md +34 -28
- package/README.md +1 -1
- package/dist/ej2-pivotview.umd.min.js +2 -2
- package/dist/ej2-pivotview.umd.min.js.map +1 -1
- package/dist/es6/ej2-pivotview.es2015.js +2068 -1096
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +2084 -1106
- package/dist/es6/ej2-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-pivotview.min.js +2 -2
- package/dist/global/ej2-pivotview.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +22 -22
- package/src/base/engine.d.ts +17 -1
- package/src/base/engine.js +82 -29
- package/src/base/export-util.d.ts +17 -0
- package/src/base/export-util.js +245 -0
- package/src/base/olap/engine.d.ts +7 -0
- package/src/base/olap/engine.js +138 -35
- package/src/base/util.d.ts +0 -9
- package/src/base/util.js +2 -215
- package/src/common/actions/field-list.js +1 -1
- package/src/common/actions/pivot-button.d.ts +5 -8
- package/src/common/actions/pivot-button.js +188 -171
- package/src/common/base/constant.d.ts +186 -0
- package/src/common/base/constant.js +186 -0
- package/src/common/base/css-constant.d.ts +2 -0
- package/src/common/base/css-constant.js +2 -0
- package/src/common/base/enum.d.ts +11 -0
- package/src/common/base/interface.d.ts +272 -2
- package/src/common/calculatedfield/calculated-field.js +108 -93
- package/src/common/conditionalformatting/conditional-formatting.js +8 -2
- package/src/common/grouping-bar/grouping-bar.js +1 -1
- package/src/common/popups/aggregate-menu.js +57 -35
- package/src/common/popups/drillthrough-dialog.js +187 -139
- package/src/common/popups/filter-dialog.d.ts +1 -0
- package/src/common/popups/filter-dialog.js +22 -1
- package/src/common/popups/formatting-dialog.js +4 -0
- package/src/common/popups/grouping.js +2 -1
- package/src/common/popups/toolbar.js +305 -203
- package/src/pivotchart/base/pivotchart.js +36 -15
- package/src/pivotfieldlist/base/field-list-model.d.ts +49 -1
- package/src/pivotfieldlist/base/field-list.d.ts +55 -1
- package/src/pivotfieldlist/base/field-list.js +68 -1
- package/src/pivotfieldlist/renderer/dialog-renderer.js +38 -15
- package/src/pivotfieldlist/renderer/tree-renderer.js +35 -22
- package/src/pivotview/actions/drill-through.js +1 -1
- package/src/pivotview/actions/excel-export.js +9 -7
- package/src/pivotview/actions/pdf-export.js +3 -3
- package/src/pivotview/actions/virtualscroll.d.ts +1 -0
- package/src/pivotview/actions/virtualscroll.js +6 -2
- package/src/pivotview/base/pivotview-model.d.ts +46 -1
- package/src/pivotview/base/pivotview.d.ts +56 -2
- package/src/pivotview/base/pivotview.js +311 -107
- package/src/pivotview/model/chartsettings-model.d.ts +2 -2
- package/src/pivotview/model/chartsettings.d.ts +2 -2
- package/src/pivotview/model/chartsettings.js +2 -2
- package/src/pivotview/model/datasourcesettings-model.d.ts +8 -1
- package/src/pivotview/model/datasourcesettings.d.ts +7 -0
- package/src/pivotview/model/datasourcesettings.js +3 -0
- package/src/pivotview/renderer/render.d.ts +2 -1
- package/src/pivotview/renderer/render.js +39 -6
- package/styles/bootstrap-dark.css +115 -104
- package/styles/bootstrap.css +115 -104
- package/styles/bootstrap4.css +114 -81
- package/styles/bootstrap5-dark.css +220 -168
- package/styles/bootstrap5.css +215 -161
- package/styles/fabric-dark.css +117 -103
- package/styles/fabric.css +115 -102
- package/styles/highcontrast-light.css +116 -102
- package/styles/highcontrast.css +118 -104
- package/styles/material-dark.css +108 -97
- package/styles/material.css +108 -97
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +1 -4
- package/styles/pivotfieldlist/_bootstrap-definition.scss +1 -4
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +1 -4
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +8 -11
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +1 -4
- package/styles/pivotfieldlist/_fabric-definition.scss +1 -4
- package/styles/pivotfieldlist/_fluent-definition.scss +177 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +1 -4
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +1 -4
- package/styles/pivotfieldlist/_layout.scss +199 -109
- package/styles/pivotfieldlist/_material-dark-definition.scss +1 -4
- package/styles/pivotfieldlist/_material-definition.scss +1 -4
- package/styles/pivotfieldlist/_tailwind-definition.scss +6 -9
- package/styles/pivotfieldlist/_theme.scss +185 -35
- package/styles/pivotfieldlist/bootstrap-dark.css +49 -58
- package/styles/pivotfieldlist/bootstrap.css +49 -58
- package/styles/pivotfieldlist/bootstrap4.css +44 -39
- package/styles/pivotfieldlist/bootstrap5-dark.css +115 -89
- package/styles/pivotfieldlist/bootstrap5.css +115 -89
- package/styles/pivotfieldlist/fabric-dark.css +49 -58
- package/styles/pivotfieldlist/fabric.css +49 -58
- package/styles/pivotfieldlist/highcontrast-light.css +49 -58
- package/styles/pivotfieldlist/highcontrast.css +49 -58
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +2 -2
- package/styles/pivotfieldlist/icons/_fluent.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +2 -2
- package/styles/pivotfieldlist/material-dark.css +44 -53
- package/styles/pivotfieldlist/material.css +44 -53
- package/styles/pivotfieldlist/tailwind-dark.css +138 -81
- package/styles/pivotfieldlist/tailwind.css +140 -83
- package/styles/pivotview/_bootstrap-dark-definition.scss +9 -6
- package/styles/pivotview/_bootstrap-definition.scss +9 -6
- package/styles/pivotview/_bootstrap4-definition.scss +10 -7
- package/styles/pivotview/_bootstrap5-definition.scss +12 -9
- package/styles/pivotview/_fabric-dark-definition.scss +8 -5
- package/styles/pivotview/_fabric-definition.scss +7 -4
- package/styles/pivotview/_fluent-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-definition.scss +8 -5
- package/styles/pivotview/_highcontrast-light-definition.scss +7 -4
- package/styles/pivotview/_layout.scss +119 -64
- package/styles/pivotview/_material-dark-definition.scss +7 -4
- package/styles/pivotview/_material-definition.scss +8 -4
- package/styles/pivotview/_tailwind-definition.scss +8 -5
- package/styles/pivotview/_theme.scss +124 -70
- package/styles/pivotview/bootstrap-dark.css +66 -46
- package/styles/pivotview/bootstrap.css +66 -46
- package/styles/pivotview/bootstrap4.css +70 -42
- package/styles/pivotview/bootstrap5-dark.css +99 -73
- package/styles/pivotview/bootstrap5-dark.scss +0 -1
- package/styles/pivotview/bootstrap5.css +100 -72
- package/styles/pivotview/fabric-dark.css +68 -45
- package/styles/pivotview/fabric.css +66 -44
- package/styles/pivotview/highcontrast-light.css +67 -44
- package/styles/pivotview/highcontrast.css +69 -46
- package/styles/pivotview/icons/_bootstrap4.scss +1 -1
- package/styles/pivotview/icons/_bootstrap5.scss +1 -1
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +1 -1
- package/styles/pivotview/material-dark.css +64 -44
- package/styles/pivotview/material.css +64 -44
- package/styles/pivotview/tailwind-dark.css +106 -58
- package/styles/pivotview/tailwind-dark.scss +0 -1
- package/styles/pivotview/tailwind.css +107 -57
- package/styles/tailwind-dark.css +250 -145
- package/styles/tailwind.css +247 -140
|
@@ -104,8 +104,8 @@
|
|
|
104
104
|
padding-right: 12px;
|
|
105
105
|
padding-top: 12px;
|
|
106
106
|
|
|
107
|
-
@if($skin-name=='bootstrap5') {
|
|
108
|
-
color: $field-list-default-font-color
|
|
107
|
+
@if($skin-name == 'bootstrap5') {
|
|
108
|
+
color: $field-list-default-font-color;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
}
|
|
@@ -154,6 +154,24 @@
|
|
|
154
154
|
background: none;
|
|
155
155
|
margin: 0 2px;
|
|
156
156
|
width: 14px;
|
|
157
|
+
@if ($skin-name == 'bootstrap5') {
|
|
158
|
+
&:hover {
|
|
159
|
+
color: $field-list-active-color;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.e-colorpicker-wrapper,
|
|
165
|
+
.e-colorpicker-container {
|
|
166
|
+
.e-split-btn-wrapper .e-split-btn {
|
|
167
|
+
pointer-events: none;
|
|
168
|
+
|
|
169
|
+
.e-selected-color {
|
|
170
|
+
background: none;
|
|
171
|
+
margin: 0 2px;
|
|
172
|
+
width: 14px;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
157
175
|
}
|
|
158
176
|
|
|
159
177
|
.e-colorpicker-wrapper .e-split-btn-wrapper .e-btn.e-icon-btn,
|
|
@@ -347,7 +365,6 @@
|
|
|
347
365
|
@if ($skin-name == 'tailwind') {
|
|
348
366
|
margin-left: 30px;
|
|
349
367
|
}
|
|
350
|
-
|
|
351
368
|
}
|
|
352
369
|
}
|
|
353
370
|
}
|
|
@@ -376,12 +393,21 @@
|
|
|
376
393
|
.e-olap-member-title {
|
|
377
394
|
color: $field-list-default-header-font-color;
|
|
378
395
|
font-size: $field-list-header-font-size;
|
|
396
|
+
margin-bottom: 4px;
|
|
379
397
|
margin-top: 15px;
|
|
380
398
|
overflow: hidden;
|
|
381
399
|
padding: $pivot-calculated-header-padding 0;
|
|
382
400
|
padding-bottom: 0;
|
|
383
401
|
text-overflow: ellipsis;
|
|
384
402
|
white-space: nowrap;
|
|
403
|
+
|
|
404
|
+
@if ($skin-name == 'tailwind') {
|
|
405
|
+
padding: 0;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
@if ($skin-name == 'FluentUI') {
|
|
409
|
+
font-weight: 600;
|
|
410
|
+
}
|
|
385
411
|
}
|
|
386
412
|
|
|
387
413
|
.e-treeview {
|
|
@@ -394,18 +420,6 @@
|
|
|
394
420
|
}
|
|
395
421
|
}
|
|
396
422
|
|
|
397
|
-
.e-treeview .e-node-focus ul {
|
|
398
|
-
li {
|
|
399
|
-
|
|
400
|
-
.e-list-icon {
|
|
401
|
-
|
|
402
|
-
@if($skin-name == 'bootstrap5') {
|
|
403
|
-
color: $field-list-default-fill-color;
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
}
|
|
409
423
|
.e-treeview ul {
|
|
410
424
|
overflow: hidden;
|
|
411
425
|
|
|
@@ -416,8 +430,16 @@
|
|
|
416
430
|
font-family: $field-list-font-family;
|
|
417
431
|
}
|
|
418
432
|
|
|
433
|
+
&:not(.e-active) {
|
|
434
|
+
.e-list-icon {
|
|
435
|
+
color: $field-list-tree-icon-color;
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
|
|
419
439
|
.e-list-icon {
|
|
420
|
-
|
|
440
|
+
@if ($skin-name != 'bootstrap5') {
|
|
441
|
+
color: $field-list-tree-icon-color;
|
|
442
|
+
}
|
|
421
443
|
margin: 0;
|
|
422
444
|
}
|
|
423
445
|
}
|
|
@@ -430,6 +452,12 @@
|
|
|
430
452
|
height: 36px;
|
|
431
453
|
margin-left: -10px;
|
|
432
454
|
padding: 0;
|
|
455
|
+
|
|
456
|
+
@if ($skin-name == 'tailwind') {
|
|
457
|
+
.e-list-text {
|
|
458
|
+
line-height: 31px;
|
|
459
|
+
}
|
|
460
|
+
}
|
|
433
461
|
}
|
|
434
462
|
}
|
|
435
463
|
|
|
@@ -441,6 +469,11 @@
|
|
|
441
469
|
padding: 2px 4px 4px;
|
|
442
470
|
pointer-events: auto;
|
|
443
471
|
width: 24px;
|
|
472
|
+
|
|
473
|
+
@if ($skin-name == 'tailwind') {
|
|
474
|
+
height: 20px;
|
|
475
|
+
width: 20px;
|
|
476
|
+
}
|
|
444
477
|
}
|
|
445
478
|
|
|
446
479
|
.e-treeview .e-list-item div.e-icons.e-format {
|
|
@@ -460,19 +493,48 @@
|
|
|
460
493
|
padding: 2px 4px 4px;
|
|
461
494
|
pointer-events: auto;
|
|
462
495
|
width: 24px;
|
|
496
|
+
@if ($skin-name == 'tailwind') {
|
|
497
|
+
height: 20px;
|
|
498
|
+
width: 20px;
|
|
499
|
+
}
|
|
463
500
|
}
|
|
464
501
|
|
|
465
|
-
.e-treeview .e-list-item
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
502
|
+
.e-treeview .e-list-item {
|
|
503
|
+
&:not(.e-active) {
|
|
504
|
+
span.e-icons {
|
|
505
|
+
color: $field-list-drag-icon-color;
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
span.e-icons {
|
|
510
|
+
@if ($skin-name != 'bootstrap5') {
|
|
511
|
+
color: $field-list-drag-icon-color;
|
|
512
|
+
}
|
|
513
|
+
cursor: move;
|
|
514
|
+
display: inline-block;
|
|
515
|
+
font-size: $field-list-icon-size;
|
|
516
|
+
height: 24px;
|
|
517
|
+
margin-right: 4px;
|
|
518
|
+
@if ($skin-name != 'tailwind') {
|
|
519
|
+
padding: 5px;
|
|
520
|
+
}
|
|
521
|
+
pointer-events: auto;
|
|
522
|
+
width: 24px;
|
|
523
|
+
@if ($skin-name == 'tailwind') {
|
|
524
|
+
height: 20px;
|
|
525
|
+
margin-top: 0;
|
|
526
|
+
padding: 0 5px;
|
|
527
|
+
width: 20px;
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
@if ($skin-name == 'tailwind') {
|
|
532
|
+
&.e-active {
|
|
533
|
+
span.e-icons {
|
|
534
|
+
color: $field-list-tree-icon-color;
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
}
|
|
476
538
|
}
|
|
477
539
|
|
|
478
540
|
.e-dlg-header {
|
|
@@ -487,7 +549,7 @@
|
|
|
487
549
|
|
|
488
550
|
.e-contextmenu {
|
|
489
551
|
background-color: $pivot-formula-background;
|
|
490
|
-
border-radius:
|
|
552
|
+
border-radius: $field-list-default-border-radius;
|
|
491
553
|
}
|
|
492
554
|
|
|
493
555
|
.e-contextmenu .e-menu-item {
|
|
@@ -507,11 +569,10 @@
|
|
|
507
569
|
|
|
508
570
|
@if ($skin-name == 'tailwind') {
|
|
509
571
|
float: left;
|
|
510
|
-
margin-right: 0;
|
|
511
572
|
margin-left: 12px;
|
|
512
|
-
|
|
573
|
+
margin-right: 0;
|
|
574
|
+
padding-top: 0;
|
|
513
575
|
}
|
|
514
|
-
|
|
515
576
|
}
|
|
516
577
|
|
|
517
578
|
.e-treeview .e-list-item div.e-edit.e-icons,
|
|
@@ -560,11 +621,10 @@
|
|
|
560
621
|
.e-pivot-formula {
|
|
561
622
|
background-color: $pivot-formula-background;
|
|
562
623
|
border: 1px solid $pivot-formula-border;
|
|
563
|
-
border-radius:
|
|
624
|
+
border-radius: $field-list-default-border-radius;
|
|
564
625
|
color: $field-list-default-formula-font-color;
|
|
565
626
|
font-size: $field-list-calc-formula-font-size;
|
|
566
627
|
height: 70px;
|
|
567
|
-
margin-top: 5px;
|
|
568
628
|
// opacity: .38;
|
|
569
629
|
padding: $pivot-calculated-formula-font-padding;
|
|
570
630
|
resize: none;
|
|
@@ -587,9 +647,8 @@
|
|
|
587
647
|
.e-pivot-treeview-outer {
|
|
588
648
|
background-color: $pivot-formula-background;
|
|
589
649
|
border: 1px solid $pivot-formula-border;
|
|
590
|
-
border-radius:
|
|
650
|
+
border-radius: $field-list-default-border-radius;
|
|
591
651
|
height: 120px;
|
|
592
|
-
margin-top: 5px;
|
|
593
652
|
overflow: auto;
|
|
594
653
|
}
|
|
595
654
|
|
|
@@ -655,10 +714,6 @@
|
|
|
655
714
|
font-size: $field-list-icon-size;
|
|
656
715
|
width: auto;
|
|
657
716
|
|
|
658
|
-
@if($skin-name == 'bootstrap5') {
|
|
659
|
-
color: $field-list-default-fill-color;
|
|
660
|
-
}
|
|
661
|
-
|
|
662
717
|
&.e-edit {
|
|
663
718
|
cursor: pointer;
|
|
664
719
|
padding: 7px !important;
|
|
@@ -763,7 +818,7 @@
|
|
|
763
818
|
.e-olap-format-title,
|
|
764
819
|
.e-olap-member-title {
|
|
765
820
|
padding-left: 0;
|
|
766
|
-
padding-right: 0;
|
|
821
|
+
padding-right: 0;
|
|
767
822
|
}
|
|
768
823
|
|
|
769
824
|
.e-pivot-field-name-title {
|
|
@@ -816,6 +871,14 @@
|
|
|
816
871
|
font-size: $field-list-bigger-header-font-size;
|
|
817
872
|
padding: $pivot-calculated-bigger-header-padding 0;
|
|
818
873
|
padding-bottom: 0;
|
|
874
|
+
|
|
875
|
+
@if ($skin-name == 'tailwind') {
|
|
876
|
+
padding: 0;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
@if ($skin-name == 'FluentUI') {
|
|
880
|
+
font-weight: 600;
|
|
881
|
+
}
|
|
819
882
|
}
|
|
820
883
|
|
|
821
884
|
.e-treeview ul {
|
|
@@ -830,6 +893,9 @@
|
|
|
830
893
|
|
|
831
894
|
.e-treeview .e-list-item span.e-icons {
|
|
832
895
|
font-size: $field-list-bigger-icon-size;
|
|
896
|
+
@if ($skin-name == 'tailwind') {
|
|
897
|
+
vertical-align: sub;
|
|
898
|
+
}
|
|
833
899
|
}
|
|
834
900
|
|
|
835
901
|
.e-pivot-formula {
|
|
@@ -886,20 +952,20 @@
|
|
|
886
952
|
}
|
|
887
953
|
}
|
|
888
954
|
}
|
|
889
|
-
// sass-lint:enable-all
|
|
890
955
|
}
|
|
891
956
|
|
|
892
957
|
.e-pivotfieldlist-wrapper {
|
|
893
958
|
.e-adaptive-field-list-dialog,
|
|
894
959
|
.e-member-editor-dialog {
|
|
895
|
-
max-width: 400px;
|
|
896
|
-
min-width: 320px;
|
|
960
|
+
max-width: 400px !important;
|
|
961
|
+
min-width: 320px !important;
|
|
897
962
|
|
|
898
963
|
.e-member-prompt {
|
|
899
964
|
padding: 25px $field-list-editor-search-padding-size;
|
|
900
965
|
text-align: center;
|
|
901
966
|
width: 100%;
|
|
902
967
|
}
|
|
968
|
+
// sass-lint:enable-all
|
|
903
969
|
|
|
904
970
|
.e-editor-search-wrapper {
|
|
905
971
|
display: flex;
|
|
@@ -1004,6 +1070,12 @@
|
|
|
1004
1070
|
float: left;
|
|
1005
1071
|
margin: 0;
|
|
1006
1072
|
|
|
1073
|
+
|
|
1074
|
+
@if ($skin-name == 'FluentUI') {
|
|
1075
|
+
margin-left: 0 !important;
|
|
1076
|
+
margin-right: 0 !important;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1007
1079
|
&.e-disable {
|
|
1008
1080
|
display: none;
|
|
1009
1081
|
}
|
|
@@ -1051,10 +1123,6 @@
|
|
|
1051
1123
|
color: $field-list-sort-select-color;
|
|
1052
1124
|
outline: none;
|
|
1053
1125
|
}
|
|
1054
|
-
@if ($skin-name == 'bootstrap5') {
|
|
1055
|
-
box-shadow: none !important;
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
1126
|
}
|
|
1059
1127
|
|
|
1060
1128
|
.e-sort-ascend-icon,
|
|
@@ -1070,20 +1138,17 @@
|
|
|
1070
1138
|
}
|
|
1071
1139
|
|
|
1072
1140
|
&.e-active {
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1141
|
+
@if ($field-list-skin == 'bootstrap4') {
|
|
1142
|
+
background-color: $field-list-sort-select-background-color;
|
|
1143
|
+
border-color: $field-list-sort-select-border-color;
|
|
1144
|
+
color: $field-list-sort-select-color;
|
|
1145
|
+
outline: none;
|
|
1146
|
+
}
|
|
1077
1147
|
|
|
1078
|
-
|
|
1079
1148
|
@if ($skin-name == 'tailwind') {
|
|
1080
1149
|
background-color: $pivot-formula-border !important;
|
|
1081
1150
|
color: $field-list-default-header-font-color !important;
|
|
1082
1151
|
}
|
|
1083
|
-
|
|
1084
|
-
@if($skin-name == 'bootstrap5') {
|
|
1085
|
-
color: $format-outer-fill-color;
|
|
1086
|
-
}
|
|
1087
1152
|
}
|
|
1088
1153
|
}
|
|
1089
1154
|
}
|
|
@@ -1118,7 +1183,7 @@
|
|
|
1118
1183
|
height: 14px;
|
|
1119
1184
|
min-width: 14px;
|
|
1120
1185
|
width: 14px;
|
|
1121
|
-
@if ($field-list-skin == 'bootstrap4') {
|
|
1186
|
+
@if ($field-list-skin == 'bootstrap4') or ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') {
|
|
1122
1187
|
height: auto;
|
|
1123
1188
|
}
|
|
1124
1189
|
|
|
@@ -1294,8 +1359,8 @@
|
|
|
1294
1359
|
}
|
|
1295
1360
|
|
|
1296
1361
|
.e-value-field-settings {
|
|
1297
|
-
max-width: 400px;
|
|
1298
|
-
min-width: 300px;
|
|
1362
|
+
max-width: 400px !important;
|
|
1363
|
+
min-width: 300px !important;
|
|
1299
1364
|
|
|
1300
1365
|
.e-dlg-content {
|
|
1301
1366
|
overflow: auto;
|
|
@@ -1359,7 +1424,7 @@
|
|
|
1359
1424
|
.e-member-editor-dialog,
|
|
1360
1425
|
.e-value-field-settings {
|
|
1361
1426
|
border-radius: $field-list-default-border-radius;
|
|
1362
|
-
width: auto;
|
|
1427
|
+
width: auto !important;
|
|
1363
1428
|
|
|
1364
1429
|
.e-dlg-header-content,
|
|
1365
1430
|
.e-footer-content {
|
|
@@ -1375,12 +1440,26 @@
|
|
|
1375
1440
|
border-top: $field-list-border-size $field-list-border-type $field-list-default-border-color;
|
|
1376
1441
|
border-top-left-radius: 0;
|
|
1377
1442
|
border-top-right-radius: 0;
|
|
1378
|
-
|
|
1443
|
+
|
|
1444
|
+
@if ($skin-name != 'FluentUI') {
|
|
1445
|
+
padding-top: $field-list-editor-dialog-footer-padding;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
@if ($skin-name == 'FluentUI') {
|
|
1449
|
+
border-top: 0;
|
|
1450
|
+
}
|
|
1379
1451
|
}
|
|
1380
1452
|
|
|
1381
1453
|
.e-dlg-content {
|
|
1382
1454
|
overflow: hidden;
|
|
1383
|
-
|
|
1455
|
+
@if ($skin-name != 'FluentUI') {
|
|
1456
|
+
padding: 0;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
@if ($skin-name == 'FluentUI') {
|
|
1460
|
+
padding-left: 0 !important;
|
|
1461
|
+
padding-right: 0 !important;
|
|
1462
|
+
}
|
|
1384
1463
|
|
|
1385
1464
|
@if ($skin-name == 'tailwind') {
|
|
1386
1465
|
padding-top: 12px;
|
|
@@ -1405,7 +1484,6 @@
|
|
|
1405
1484
|
color: $error-font-color !important;
|
|
1406
1485
|
font-weight: 600 !important;
|
|
1407
1486
|
}
|
|
1408
|
-
// sass-lint:enable-all
|
|
1409
1487
|
}
|
|
1410
1488
|
}
|
|
1411
1489
|
|
|
@@ -1423,14 +1501,15 @@
|
|
|
1423
1501
|
.e-pivotfieldlist-container {
|
|
1424
1502
|
.e-adaptive-field-list-dialog,
|
|
1425
1503
|
.e-member-editor-dialog {
|
|
1426
|
-
|
|
1427
|
-
|
|
1504
|
+
max-width: 400px !important;
|
|
1505
|
+
min-width: 320px !important;
|
|
1428
1506
|
|
|
1429
1507
|
.e-member-prompt {
|
|
1430
1508
|
padding: 25px $field-list-editor-search-padding-size;
|
|
1431
1509
|
text-align: center;
|
|
1432
1510
|
width: 100%;
|
|
1433
1511
|
}
|
|
1512
|
+
// sass-lint:enable-all
|
|
1434
1513
|
|
|
1435
1514
|
.e-editor-search-container {
|
|
1436
1515
|
display: flex;
|
|
@@ -1485,7 +1564,7 @@
|
|
|
1485
1564
|
}
|
|
1486
1565
|
}
|
|
1487
1566
|
}
|
|
1488
|
-
|
|
1567
|
+
|
|
1489
1568
|
// sass-lint:disable-all
|
|
1490
1569
|
.e-disable {
|
|
1491
1570
|
display: none !important;
|
|
@@ -1533,6 +1612,11 @@
|
|
|
1533
1612
|
float: left;
|
|
1534
1613
|
margin: 0;
|
|
1535
1614
|
|
|
1615
|
+
@if ($skin-name == 'FluentUI') {
|
|
1616
|
+
margin-left: 0;
|
|
1617
|
+
margin-right: 0;
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1536
1620
|
&.e-disable {
|
|
1537
1621
|
display: none;
|
|
1538
1622
|
}
|
|
@@ -1580,9 +1664,6 @@
|
|
|
1580
1664
|
color: $field-list-sort-select-color;
|
|
1581
1665
|
outline: none;
|
|
1582
1666
|
}
|
|
1583
|
-
@if ($skin-name == 'bootstrap5') {
|
|
1584
|
-
box-shadow: none !important;
|
|
1585
|
-
}
|
|
1586
1667
|
}
|
|
1587
1668
|
|
|
1588
1669
|
.e-sort-ascend-icon,
|
|
@@ -1598,17 +1679,11 @@
|
|
|
1598
1679
|
}
|
|
1599
1680
|
|
|
1600
1681
|
&.e-active {
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
@if ($skin-name == 'tailwind') {
|
|
1607
|
-
background-color: $pivot-formula-border !important;
|
|
1608
|
-
color: $field-list-default-header-font-color;
|
|
1609
|
-
}
|
|
1610
|
-
@if($skin-name == 'bootstrap5') {
|
|
1611
|
-
color: $format-outer-fill-color;
|
|
1682
|
+
@if ($field-list-skin == 'bootstrap4') {
|
|
1683
|
+
background-color: $field-list-sort-select-background-color;
|
|
1684
|
+
border-color: $field-list-sort-select-border-color;
|
|
1685
|
+
color: $field-list-sort-select-color;
|
|
1686
|
+
outline: none;
|
|
1612
1687
|
}
|
|
1613
1688
|
}
|
|
1614
1689
|
}
|
|
@@ -1632,7 +1707,7 @@
|
|
|
1632
1707
|
}
|
|
1633
1708
|
|
|
1634
1709
|
.e-filter-tab-container {
|
|
1635
|
-
border:
|
|
1710
|
+
border: 0;
|
|
1636
1711
|
// sass-lint:enable-all
|
|
1637
1712
|
|
|
1638
1713
|
.e-tab-header {
|
|
@@ -1645,7 +1720,7 @@
|
|
|
1645
1720
|
height: 14px;
|
|
1646
1721
|
min-width: 14px;
|
|
1647
1722
|
width: 14px;
|
|
1648
|
-
@if ($field-list-skin == 'bootstrap4') {
|
|
1723
|
+
@if ($field-list-skin == 'bootstrap4') or ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') {
|
|
1649
1724
|
height: auto;
|
|
1650
1725
|
}
|
|
1651
1726
|
|
|
@@ -1822,8 +1897,8 @@
|
|
|
1822
1897
|
}
|
|
1823
1898
|
|
|
1824
1899
|
.e-value-field-settings {
|
|
1825
|
-
max-width: 400px;
|
|
1826
|
-
min-width: 300px;
|
|
1900
|
+
max-width: 400px !important;
|
|
1901
|
+
min-width: 300px !important;
|
|
1827
1902
|
|
|
1828
1903
|
.e-dlg-content {
|
|
1829
1904
|
overflow: auto;
|
|
@@ -1883,7 +1958,7 @@
|
|
|
1883
1958
|
.e-member-editor-dialog,
|
|
1884
1959
|
.e-value-field-settings {
|
|
1885
1960
|
border-radius: $field-list-default-border-radius;
|
|
1886
|
-
width: auto;
|
|
1961
|
+
width: auto !important;
|
|
1887
1962
|
|
|
1888
1963
|
.e-dlg-header-content,
|
|
1889
1964
|
.e-footer-content {
|
|
@@ -1899,7 +1974,14 @@
|
|
|
1899
1974
|
border-top: $field-list-border-size $field-list-border-type $field-list-default-border-color;
|
|
1900
1975
|
border-top-left-radius: 0;
|
|
1901
1976
|
border-top-right-radius: 0;
|
|
1902
|
-
|
|
1977
|
+
|
|
1978
|
+
@if ($skin-name != 'FluentUI') {
|
|
1979
|
+
padding-top: $field-list-editor-dialog-footer-padding;
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
@if ($skin-name == 'FluentUI') {
|
|
1983
|
+
border-top: 0;
|
|
1984
|
+
}
|
|
1903
1985
|
}
|
|
1904
1986
|
|
|
1905
1987
|
.e-dlg-content {
|
|
@@ -1952,15 +2034,21 @@
|
|
|
1952
2034
|
border: $field-list-border-size $field-list-border-type $field-list-default-border-color;
|
|
1953
2035
|
border-radius: $field-list-drag-clone-border-radius;
|
|
1954
2036
|
box-shadow: $field-list-drag-clone-shadow-color;
|
|
1955
|
-
height:
|
|
2037
|
+
height: $field-list-drag-clone-height;
|
|
2038
|
+
line-height: $field-list-drag-clone-line-height;
|
|
1956
2039
|
min-width: 100px;
|
|
1957
2040
|
padding: 5px 10px;
|
|
1958
2041
|
@if ($field-list-skin == 'bootstrap4') {
|
|
1959
2042
|
border: 0;
|
|
1960
2043
|
padding: 6px 10px;
|
|
1961
2044
|
}
|
|
2045
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
2046
|
+
line-height: normal;
|
|
2047
|
+
padding: 0 10px;
|
|
2048
|
+
}
|
|
1962
2049
|
|
|
1963
2050
|
.e-text-content {
|
|
2051
|
+
height: 100%;
|
|
1964
2052
|
padding: 0;
|
|
1965
2053
|
text-align: center;
|
|
1966
2054
|
width: 100%;
|
|
@@ -1976,6 +2064,11 @@
|
|
|
1976
2064
|
// @if ($field-list-skin == 'bootstrap4') {
|
|
1977
2065
|
// line-height: 0;
|
|
1978
2066
|
// }
|
|
2067
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
2068
|
+
display: inline;
|
|
2069
|
+
line-height: normal;
|
|
2070
|
+
vertical-align: sub;
|
|
2071
|
+
}
|
|
1979
2072
|
}
|
|
1980
2073
|
}
|
|
1981
2074
|
|
|
@@ -2051,8 +2144,8 @@
|
|
|
2051
2144
|
|
|
2052
2145
|
&.e-drag-restrict {
|
|
2053
2146
|
.e-no-drop {
|
|
2054
|
-
|
|
2055
|
-
|
|
2147
|
+
&::before {
|
|
2148
|
+
padding: 4px;
|
|
2056
2149
|
}
|
|
2057
2150
|
}
|
|
2058
2151
|
}
|
|
@@ -2079,9 +2172,17 @@
|
|
|
2079
2172
|
border: 0;
|
|
2080
2173
|
padding: 6px 10px;
|
|
2081
2174
|
}
|
|
2175
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
|
|
2176
|
+
line-height: normal;
|
|
2177
|
+
padding: 0 10px;
|
|
2178
|
+
}
|
|
2082
2179
|
|
|
2083
2180
|
.e-text-content {
|
|
2084
|
-
width: 100
|
|
2181
|
+
width: 100%;
|
|
2182
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
|
|
2183
|
+
display: inline;
|
|
2184
|
+
vertical-align: sub;
|
|
2185
|
+
}
|
|
2085
2186
|
}
|
|
2086
2187
|
}
|
|
2087
2188
|
|
|
@@ -2094,28 +2195,17 @@
|
|
|
2094
2195
|
border: 0;
|
|
2095
2196
|
padding: 7px 12px;
|
|
2096
2197
|
}
|
|
2198
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
|
|
2199
|
+
line-height: normal;
|
|
2200
|
+
padding: 0 12px;
|
|
2201
|
+
}
|
|
2097
2202
|
}
|
|
2098
2203
|
|
|
2099
|
-
// sass-lint:enable-all
|
|
2100
2204
|
.e-pivot-error-dialog {
|
|
2101
|
-
max-width: 400px;
|
|
2102
|
-
width: auto;
|
|
2103
|
-
|
|
2104
|
-
.e-dlg-header-content,
|
|
2105
|
-
.e-footer-content {
|
|
2106
|
-
border: 0;
|
|
2107
|
-
}
|
|
2108
|
-
|
|
2109
|
-
.e-dlg-header {
|
|
2110
|
-
font-weight: $pivot-dialog-font-weight;
|
|
2111
|
-
opacity: $pivot-calculated-header-opacity;
|
|
2112
|
-
}
|
|
2113
|
-
|
|
2114
|
-
.e-dlg-content {
|
|
2115
|
-
font-weight: normal;
|
|
2116
|
-
opacity: $pivot-dialog-content-opacity;
|
|
2117
|
-
}
|
|
2205
|
+
max-width: 400px !important;
|
|
2206
|
+
width: auto !important;
|
|
2118
2207
|
}
|
|
2208
|
+
// sass-lint:enable-all
|
|
2119
2209
|
|
|
2120
2210
|
.e-bigger .e-pivotfieldlist-wrapper,
|
|
2121
2211
|
.e-bigger.e-pivotfieldlist-wrapper {
|
|
@@ -2208,7 +2298,7 @@
|
|
|
2208
2298
|
|
|
2209
2299
|
.e-excelfilter {
|
|
2210
2300
|
.e-member-editor-container-outer-div {
|
|
2211
|
-
height: $field-list-excel-member-filter-bigger-height
|
|
2301
|
+
height: $field-list-excel-member-filter-bigger-height;
|
|
2212
2302
|
}
|
|
2213
2303
|
|
|
2214
2304
|
@if ($skin-name == 'tailwind') {
|
|
@@ -32,7 +32,7 @@ $field-list-drag-clone-text-color: $grey-dark-font !default;
|
|
|
32
32
|
$field-list-drag-clone-bg-color: rgba($grey-white, .18) !default;
|
|
33
33
|
$field-list-drag-clone-border-radius: 20px !default;
|
|
34
34
|
$field-list-drag-clone-font-size: 14px !default;
|
|
35
|
-
$field-list-drag-clone-line-height:
|
|
35
|
+
$field-list-drag-clone-line-height: 1em !default;
|
|
36
36
|
$field-list-drag-clone-height: 28px !default;
|
|
37
37
|
$field-list-button-font-size: 13px !default;
|
|
38
38
|
$field-list-toggle-icon-bigger-size: 20px !default;
|
|
@@ -86,13 +86,11 @@ $field-list-excel-member-filter-height: 149px !default;
|
|
|
86
86
|
$field-list-excel-filter-height: 248px !default;
|
|
87
87
|
$field-list-excel-member-filter-bigger-height: 100px !default;
|
|
88
88
|
$field-list-excel-filter-bigger-height: 220px !default;
|
|
89
|
-
$field-list-clear-filter-icon: '\ea82' !default;
|
|
90
89
|
$format-label-font-opacity: .87 !default;
|
|
91
90
|
$format-label-font-color: $grey-dark-font !default;
|
|
92
91
|
$format-label-font-weight: 500 !default;
|
|
93
92
|
$format-preview-bigger-height: 30px !default;
|
|
94
93
|
$format-preview-border-color: $grey-300 !default;
|
|
95
|
-
$format-delete-icon: '\e5a5' !default;
|
|
96
94
|
$format-outer-border-color: $grey-700 !default;
|
|
97
95
|
$format-outer-fill-color: $grey-dark !default;
|
|
98
96
|
$format-outer-border-radius: 4px !default;
|
|
@@ -157,7 +155,6 @@ $field-list-adaptive-icon-height: 50px !default;
|
|
|
157
155
|
$field-list-adaptive-drag-prompt-height: 200px !default;
|
|
158
156
|
$field-list-adaptive-pivot-button-height: 36px !default;
|
|
159
157
|
$field-list-adaptive-pivot-button-padding: 9px 16px !default;
|
|
160
|
-
$field-list-toggle-icon: '\e434' !default;
|
|
161
158
|
$pivot-dialog-font-weight: normal !default;
|
|
162
159
|
$field-list-toggle-shadow-color: -1px 1px 4px 0 rgba($shadow, .12) !default;
|
|
163
160
|
$field-list-toggle-left-shadow-color: 1px 1px 4px 0 rgba($shadow, .12) !default;
|
|
@@ -32,7 +32,7 @@ $field-list-drag-clone-text-color: rgba($content-font-color, .87) !default;
|
|
|
32
32
|
$field-list-drag-clone-bg-color: $content-bg-color !default;
|
|
33
33
|
$field-list-drag-clone-border-radius: 20px !default;
|
|
34
34
|
$field-list-drag-clone-font-size: 14px !default;
|
|
35
|
-
$field-list-drag-clone-line-height:
|
|
35
|
+
$field-list-drag-clone-line-height: 1em !default;
|
|
36
36
|
$field-list-drag-clone-height: 28px !default;
|
|
37
37
|
$field-list-button-font-size: 13px !default;
|
|
38
38
|
$field-list-toggle-icon-bigger-size: 20px !default;
|
|
@@ -86,13 +86,11 @@ $field-list-excel-member-filter-height: 149px !default;
|
|
|
86
86
|
$field-list-excel-filter-height: 248px !default;
|
|
87
87
|
$field-list-excel-member-filter-bigger-height: 100px !default;
|
|
88
88
|
$field-list-excel-filter-bigger-height: 220px !default;
|
|
89
|
-
$field-list-clear-filter-icon: '\ea82' !default;
|
|
90
89
|
$format-label-font-opacity: .87 !default;
|
|
91
90
|
$format-label-font-color: $grey-light-font !default;
|
|
92
91
|
$format-label-font-weight: 500 !default;
|
|
93
92
|
$format-preview-bigger-height: 30px !default;
|
|
94
93
|
$format-preview-border-color: $grey-300 !default;
|
|
95
|
-
$format-delete-icon: '\e5a5' !default;
|
|
96
94
|
$format-outer-border-color: $grey-300 !default;
|
|
97
95
|
$format-outer-fill-color: $grey-white !default;
|
|
98
96
|
$format-outer-border-radius: 4px !default;
|
|
@@ -157,7 +155,6 @@ $field-list-adaptive-icon-height: 50px !default;
|
|
|
157
155
|
$field-list-adaptive-drag-prompt-height: 200px !default;
|
|
158
156
|
$field-list-adaptive-pivot-button-height: 36px !default;
|
|
159
157
|
$field-list-adaptive-pivot-button-padding: 9px 16px !default;
|
|
160
|
-
$field-list-toggle-icon: '\e434' !default;
|
|
161
158
|
$pivot-dialog-font-weight: normal !default;
|
|
162
159
|
$field-list-toggle-shadow-color: -1px 1px 4px 0 rgba($shadow, .12) !default;
|
|
163
160
|
$field-list-toggle-left-shadow-color: 1px 1px 4px 0 rgba($shadow, .12) !default;
|