@syncfusion/ej2-vue-grids 20.2.49 → 20.3.48
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/CHANGELOG.md +15 -87
- package/dist/ej2-vue-grids.umd.min.js +2 -2
- package/dist/ej2-vue-grids.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-grids.es2015.js +47 -44
- package/dist/es6/ej2-vue-grids.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-grids.es5.js +47 -44
- package/dist/es6/ej2-vue-grids.es5.js.map +1 -1
- package/dist/global/ej2-vue-grids.min.js +2 -2
- package/package.json +8 -8
- package/src/grid/aggregate-columns.directive.d.ts +0 -1
- package/src/grid/aggregate-columns.directive.js +5 -6
- package/src/grid/aggregates.directive.d.ts +0 -1
- package/src/grid/aggregates.directive.js +5 -6
- package/src/grid/columns.directive.d.ts +0 -1
- package/src/grid/columns.directive.js +5 -6
- package/src/grid/grid.component.d.ts +3 -1
- package/src/grid/grid.component.js +13 -5
- package/src/grid/stacked-column.directive.d.ts +0 -1
- package/src/grid/stacked-column.directive.js +5 -6
- package/src/pager/pager.component.d.ts +0 -1
- package/src/pager/pager.component.js +3 -4
- package/styles/bootstrap-dark.css +54 -11
- package/styles/bootstrap.css +54 -11
- package/styles/bootstrap4.css +57 -11
- package/styles/bootstrap5-dark.css +55 -11
- package/styles/bootstrap5.css +55 -11
- package/styles/excel-filter/bootstrap-dark.css +3 -1
- package/styles/excel-filter/bootstrap.css +3 -1
- package/styles/excel-filter/bootstrap4.css +6 -1
- package/styles/excel-filter/bootstrap5-dark.css +3 -1
- package/styles/excel-filter/bootstrap5.css +3 -1
- package/styles/excel-filter/fabric-dark.css +4 -2
- package/styles/excel-filter/fabric.css +4 -2
- package/styles/excel-filter/fluent-dark.css +3 -1
- package/styles/excel-filter/fluent.css +3 -1
- package/styles/excel-filter/highcontrast-light.css +4 -2
- package/styles/excel-filter/highcontrast.css +4 -2
- package/styles/excel-filter/material-dark.css +4 -2
- package/styles/excel-filter/material.css +4 -2
- package/styles/excel-filter/tailwind-dark.css +3 -1
- package/styles/excel-filter/tailwind.css +3 -1
- package/styles/fabric-dark.css +57 -14
- package/styles/fabric.css +56 -13
- package/styles/fluent-dark.css +54 -11
- package/styles/fluent.css +54 -11
- package/styles/grid/bootstrap-dark.css +51 -10
- package/styles/grid/bootstrap.css +51 -10
- package/styles/grid/bootstrap4.css +51 -10
- package/styles/grid/bootstrap5-dark.css +52 -10
- package/styles/grid/bootstrap5.css +52 -10
- package/styles/grid/fabric-dark.css +53 -12
- package/styles/grid/fabric.css +52 -11
- package/styles/grid/fluent-dark.css +51 -10
- package/styles/grid/fluent.css +51 -10
- package/styles/grid/highcontrast-light.css +52 -11
- package/styles/grid/highcontrast.css +52 -11
- package/styles/grid/material-dark.css +52 -11
- package/styles/grid/material.css +52 -11
- package/styles/grid/tailwind-dark.css +51 -10
- package/styles/grid/tailwind.css +51 -10
- package/styles/highcontrast-light.css +56 -13
- package/styles/highcontrast.css +56 -13
- package/styles/material-dark.css +56 -13
- package/styles/material.css +56 -13
- package/styles/tailwind-dark.css +54 -11
- package/styles/tailwind.css +54 -11
package/styles/material.css
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
3
|
@keyframes e-input-ripple {
|
|
3
4
|
100% {
|
|
4
5
|
opacity: 0;
|
|
@@ -144,6 +145,7 @@
|
|
|
144
145
|
padding: 4px 8px;
|
|
145
146
|
}
|
|
146
147
|
|
|
148
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
147
149
|
@keyframes material-spinner-rotate {
|
|
148
150
|
0% {
|
|
149
151
|
transform: rotate(0deg);
|
|
@@ -160,7 +162,7 @@
|
|
|
160
162
|
transform: rotate(360deg);
|
|
161
163
|
}
|
|
162
164
|
}
|
|
163
|
-
|
|
165
|
+
/* !component icons */
|
|
164
166
|
.e-icon-check::before {
|
|
165
167
|
content: "\e7ff";
|
|
166
168
|
}
|
|
@@ -410,7 +412,7 @@
|
|
|
410
412
|
word-break: normal;
|
|
411
413
|
}
|
|
412
414
|
.e-excelfilter .e-chk-hidden {
|
|
413
|
-
-moz-appearance: none;
|
|
415
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
414
416
|
height: 1px;
|
|
415
417
|
opacity: 0;
|
|
416
418
|
width: 1px;
|
|
@@ -554,6 +556,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
554
556
|
border-color: #e3165b;
|
|
555
557
|
}
|
|
556
558
|
|
|
559
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
557
560
|
@keyframes e-input-ripple {
|
|
558
561
|
100% {
|
|
559
562
|
opacity: 0;
|
|
@@ -568,6 +571,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
568
571
|
transform: translate3d(0, 0, 0) scale(1);
|
|
569
572
|
}
|
|
570
573
|
}
|
|
574
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
571
575
|
@keyframes material-spinner-rotate {
|
|
572
576
|
0% {
|
|
573
577
|
transform: rotate(0deg);
|
|
@@ -594,7 +598,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
594
598
|
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
595
599
|
}
|
|
596
600
|
}
|
|
597
|
-
|
|
601
|
+
/* !componenticons */
|
|
598
602
|
.e-icon-check::before {
|
|
599
603
|
content: "\e7ff";
|
|
600
604
|
}
|
|
@@ -825,6 +829,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
825
829
|
.e-bigger .e-grid,
|
|
826
830
|
.e-grid.e-bigger {
|
|
827
831
|
font-size: 13px;
|
|
832
|
+
/* stylelint-disable */
|
|
828
833
|
}
|
|
829
834
|
.e-bigger .e-grid .e-gridheader thead .e-icons:not(.e-check):not(.e-stop),
|
|
830
835
|
.e-grid.e-bigger .e-gridheader thead .e-icons:not(.e-check):not(.e-stop) {
|
|
@@ -1482,6 +1487,9 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1482
1487
|
font-size: 13px;
|
|
1483
1488
|
height: auto;
|
|
1484
1489
|
position: relative;
|
|
1490
|
+
/* stylelint-enable */
|
|
1491
|
+
/* stylelint-disable */
|
|
1492
|
+
/* stylelint-enable */
|
|
1485
1493
|
}
|
|
1486
1494
|
.e-grid .e-gridheader {
|
|
1487
1495
|
-webkit-user-select: none;
|
|
@@ -2389,7 +2397,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2389
2397
|
padding-left: 9px;
|
|
2390
2398
|
}
|
|
2391
2399
|
.e-grid .e-chk-hidden {
|
|
2392
|
-
-moz-appearance: none;
|
|
2400
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2393
2401
|
height: 1px;
|
|
2394
2402
|
opacity: 0;
|
|
2395
2403
|
width: 1px;
|
|
@@ -2403,7 +2411,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2403
2411
|
}
|
|
2404
2412
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
2405
2413
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
2406
|
-
-webkit-user-select: auto;
|
|
2414
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2407
2415
|
height: 20px;
|
|
2408
2416
|
line-height: 20px;
|
|
2409
2417
|
position: relative;
|
|
@@ -2599,7 +2607,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2599
2607
|
padding: 2px;
|
|
2600
2608
|
}
|
|
2601
2609
|
.e-grid .e-content {
|
|
2602
|
-
-webkit-overflow-scrolling: touch;
|
|
2610
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2603
2611
|
overflow-x: auto;
|
|
2604
2612
|
overflow-y: scroll;
|
|
2605
2613
|
position: relative;
|
|
@@ -2729,6 +2737,9 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2729
2737
|
border-width: 1px 0 0;
|
|
2730
2738
|
cursor: pointer;
|
|
2731
2739
|
}
|
|
2740
|
+
.e-grid .e-disablepointer {
|
|
2741
|
+
cursor: default;
|
|
2742
|
+
}
|
|
2732
2743
|
.e-grid .e-groupcaption {
|
|
2733
2744
|
border-style: solid;
|
|
2734
2745
|
border-width: 1px 0 0;
|
|
@@ -2950,6 +2961,8 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2950
2961
|
.e-grid .e-checkboxfiltertext {
|
|
2951
2962
|
width: 150px;
|
|
2952
2963
|
word-break: normal;
|
|
2964
|
+
/* stylelint-disable */
|
|
2965
|
+
/* stylelint-enable */
|
|
2953
2966
|
}
|
|
2954
2967
|
.e-grid .e-frozenhdrcont .e-headercontent > .e-table,
|
|
2955
2968
|
.e-grid .e-frozenhdrcont .e-frozenheader > .e-table,
|
|
@@ -3009,10 +3022,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3009
3022
|
overflow: hidden;
|
|
3010
3023
|
}
|
|
3011
3024
|
.e-grid .e-frozenhdrcont {
|
|
3012
|
-
-ms-touch-action: none;
|
|
3025
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3013
3026
|
}
|
|
3014
3027
|
.e-grid .e-frozencontent {
|
|
3015
|
-
-ms-touch-action: none;
|
|
3028
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3016
3029
|
border-bottom-width: 1px;
|
|
3017
3030
|
float: left;
|
|
3018
3031
|
width: min-content;
|
|
@@ -3021,19 +3034,19 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3021
3034
|
float: right;
|
|
3022
3035
|
}
|
|
3023
3036
|
.e-grid .e-movablecontent {
|
|
3024
|
-
-ms-overflow-style: none;
|
|
3037
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3025
3038
|
-ms-flex: 1;
|
|
3026
3039
|
flex: 1;
|
|
3027
3040
|
overflow-x: auto;
|
|
3028
3041
|
overflow-y: hidden;
|
|
3029
3042
|
}
|
|
3030
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
3043
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3031
3044
|
display: none;
|
|
3032
3045
|
}
|
|
3033
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
3046
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3034
3047
|
width: 7px;
|
|
3035
3048
|
}
|
|
3036
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
3049
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3037
3050
|
background-color: rgba(0, 0, 0, 0.5);
|
|
3038
3051
|
border-radius: 4px;
|
|
3039
3052
|
}
|
|
@@ -3440,9 +3453,39 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3440
3453
|
.e-grid.e-resize-lines.e-rtl.e-default table th[rowspan] {
|
|
3441
3454
|
border-right: 0;
|
|
3442
3455
|
}
|
|
3456
|
+
.e-grid .e-mask {
|
|
3457
|
+
display: inline-block;
|
|
3458
|
+
height: 10px;
|
|
3459
|
+
width: 80%;
|
|
3460
|
+
}
|
|
3461
|
+
.e-grid .e-mask.e-mask-group-intent {
|
|
3462
|
+
margin-left: 7px;
|
|
3463
|
+
width: 16px;
|
|
3464
|
+
}
|
|
3465
|
+
.e-grid .e-mask.e-mask-detail-intent {
|
|
3466
|
+
width: 16px;
|
|
3467
|
+
}
|
|
3468
|
+
.e-grid .e-mask.e-mask-checkbox-intent {
|
|
3469
|
+
margin-left: 3px;
|
|
3470
|
+
margin-right: 16px;
|
|
3471
|
+
width: 20px;
|
|
3472
|
+
}
|
|
3473
|
+
.e-grid .e-mask.e-mask-checkbox-filter-intent {
|
|
3474
|
+
width: 13px;
|
|
3475
|
+
}
|
|
3476
|
+
.e-grid .e-mask.e-mask-checkbox-filter-span-intent {
|
|
3477
|
+
margin-left: 8px;
|
|
3478
|
+
}
|
|
3479
|
+
.e-grid .e-mask.e-mask-drag-intent {
|
|
3480
|
+
margin-left: 12px;
|
|
3481
|
+
width: 12px;
|
|
3482
|
+
}
|
|
3443
3483
|
.e-grid.sf-grid .e-table {
|
|
3444
3484
|
border-spacing: 0.25px;
|
|
3445
3485
|
}
|
|
3486
|
+
.e-grid.sf-grid span.e-ungroupbutton.e-icons {
|
|
3487
|
+
margin-left: 6px;
|
|
3488
|
+
}
|
|
3446
3489
|
.e-grid.sf-grid .e-rowcell.e-frozen-right-border,
|
|
3447
3490
|
.e-grid.sf-grid .e-headercell.e-frozen-right-border,
|
|
3448
3491
|
.e-grid.sf-grid .e-filterbarcell.e-frozen-right-border {
|
|
@@ -4020,7 +4063,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
4020
4063
|
}
|
|
4021
4064
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
4022
4065
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
4023
|
-
-moz-appearance: none;
|
|
4066
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
4024
4067
|
height: 1px;
|
|
4025
4068
|
opacity: 0;
|
|
4026
4069
|
width: 1px;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
3
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
3
4
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
4
5
|
transform: rotate(0deg);
|
|
@@ -94,6 +95,7 @@
|
|
|
94
95
|
padding: 4px 8px;
|
|
95
96
|
}
|
|
96
97
|
|
|
98
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
97
99
|
@keyframes material-spinner-rotate {
|
|
98
100
|
0% {
|
|
99
101
|
transform: rotate(0);
|
|
@@ -363,7 +365,7 @@
|
|
|
363
365
|
word-break: normal;
|
|
364
366
|
}
|
|
365
367
|
.e-excelfilter .e-chk-hidden {
|
|
366
|
-
-moz-appearance: none;
|
|
368
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
367
369
|
height: 1px;
|
|
368
370
|
opacity: 0;
|
|
369
371
|
width: 1px;
|
|
@@ -507,6 +509,8 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
507
509
|
border-color: #22d3ee;
|
|
508
510
|
}
|
|
509
511
|
|
|
512
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
513
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
510
514
|
@keyframes material-spinner-rotate {
|
|
511
515
|
0% {
|
|
512
516
|
transform: rotate(0);
|
|
@@ -767,6 +771,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
767
771
|
.e-bigger .e-grid,
|
|
768
772
|
.e-grid.e-bigger {
|
|
769
773
|
font-size: 16px;
|
|
774
|
+
/* stylelint-disable */
|
|
770
775
|
}
|
|
771
776
|
.e-bigger .e-grid .e-gridheader thead .e-icons:not(.e-check):not(.e-stop),
|
|
772
777
|
.e-grid.e-bigger .e-gridheader thead .e-icons:not(.e-check):not(.e-stop) {
|
|
@@ -1473,6 +1478,9 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1473
1478
|
font-size: 14px;
|
|
1474
1479
|
height: auto;
|
|
1475
1480
|
position: relative;
|
|
1481
|
+
/* stylelint-enable */
|
|
1482
|
+
/* stylelint-disable */
|
|
1483
|
+
/* stylelint-enable */
|
|
1476
1484
|
}
|
|
1477
1485
|
.e-grid .e-gridheader {
|
|
1478
1486
|
-webkit-user-select: none;
|
|
@@ -2402,7 +2410,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2402
2410
|
padding-left: 8px;
|
|
2403
2411
|
}
|
|
2404
2412
|
.e-grid .e-chk-hidden {
|
|
2405
|
-
-moz-appearance: none;
|
|
2413
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2406
2414
|
height: 1px;
|
|
2407
2415
|
opacity: 0;
|
|
2408
2416
|
width: 1px;
|
|
@@ -2416,7 +2424,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2416
2424
|
}
|
|
2417
2425
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
2418
2426
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
2419
|
-
-webkit-user-select: auto;
|
|
2427
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2420
2428
|
height: 20px;
|
|
2421
2429
|
line-height: 20px;
|
|
2422
2430
|
position: relative;
|
|
@@ -2613,7 +2621,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2613
2621
|
padding: 2px;
|
|
2614
2622
|
}
|
|
2615
2623
|
.e-grid .e-content {
|
|
2616
|
-
-webkit-overflow-scrolling: touch;
|
|
2624
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2617
2625
|
overflow-x: auto;
|
|
2618
2626
|
overflow-y: scroll;
|
|
2619
2627
|
position: relative;
|
|
@@ -2750,6 +2758,9 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2750
2758
|
border-width: 1px 0 0;
|
|
2751
2759
|
cursor: pointer;
|
|
2752
2760
|
}
|
|
2761
|
+
.e-grid .e-disablepointer {
|
|
2762
|
+
cursor: default;
|
|
2763
|
+
}
|
|
2753
2764
|
.e-grid .e-groupcaption {
|
|
2754
2765
|
border-style: solid;
|
|
2755
2766
|
border-width: 1px 0 0;
|
|
@@ -2971,6 +2982,8 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2971
2982
|
.e-grid .e-checkboxfiltertext {
|
|
2972
2983
|
width: 150px;
|
|
2973
2984
|
word-break: normal;
|
|
2985
|
+
/* stylelint-disable */
|
|
2986
|
+
/* stylelint-enable */
|
|
2974
2987
|
}
|
|
2975
2988
|
.e-grid .e-frozenhdrcont .e-headercontent > .e-table,
|
|
2976
2989
|
.e-grid .e-frozenhdrcont .e-frozenheader > .e-table,
|
|
@@ -3030,10 +3043,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3030
3043
|
overflow: hidden;
|
|
3031
3044
|
}
|
|
3032
3045
|
.e-grid .e-frozenhdrcont {
|
|
3033
|
-
-ms-touch-action: none;
|
|
3046
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3034
3047
|
}
|
|
3035
3048
|
.e-grid .e-frozencontent {
|
|
3036
|
-
-ms-touch-action: none;
|
|
3049
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3037
3050
|
border-bottom-width: 1px;
|
|
3038
3051
|
float: left;
|
|
3039
3052
|
width: min-content;
|
|
@@ -3042,19 +3055,19 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3042
3055
|
float: right;
|
|
3043
3056
|
}
|
|
3044
3057
|
.e-grid .e-movablecontent {
|
|
3045
|
-
-ms-overflow-style: none;
|
|
3058
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3046
3059
|
-ms-flex: 1;
|
|
3047
3060
|
flex: 1;
|
|
3048
3061
|
overflow-x: auto;
|
|
3049
3062
|
overflow-y: hidden;
|
|
3050
3063
|
}
|
|
3051
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
3064
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3052
3065
|
display: none;
|
|
3053
3066
|
}
|
|
3054
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
3067
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3055
3068
|
width: 7px;
|
|
3056
3069
|
}
|
|
3057
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
3070
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3058
3071
|
background-color: rgba(0, 0, 0, 0.5);
|
|
3059
3072
|
border-radius: 4px;
|
|
3060
3073
|
}
|
|
@@ -3466,9 +3479,39 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3466
3479
|
.e-grid.e-resize-lines.e-rtl.e-default table th[rowspan] {
|
|
3467
3480
|
border-right: 0;
|
|
3468
3481
|
}
|
|
3482
|
+
.e-grid .e-mask {
|
|
3483
|
+
display: inline-block;
|
|
3484
|
+
height: 10px;
|
|
3485
|
+
width: 80%;
|
|
3486
|
+
}
|
|
3487
|
+
.e-grid .e-mask.e-mask-group-intent {
|
|
3488
|
+
margin-left: 7px;
|
|
3489
|
+
width: 16px;
|
|
3490
|
+
}
|
|
3491
|
+
.e-grid .e-mask.e-mask-detail-intent {
|
|
3492
|
+
width: 16px;
|
|
3493
|
+
}
|
|
3494
|
+
.e-grid .e-mask.e-mask-checkbox-intent {
|
|
3495
|
+
margin-left: 3px;
|
|
3496
|
+
margin-right: 16px;
|
|
3497
|
+
width: 20px;
|
|
3498
|
+
}
|
|
3499
|
+
.e-grid .e-mask.e-mask-checkbox-filter-intent {
|
|
3500
|
+
width: 13px;
|
|
3501
|
+
}
|
|
3502
|
+
.e-grid .e-mask.e-mask-checkbox-filter-span-intent {
|
|
3503
|
+
margin-left: 8px;
|
|
3504
|
+
}
|
|
3505
|
+
.e-grid .e-mask.e-mask-drag-intent {
|
|
3506
|
+
margin-left: 12px;
|
|
3507
|
+
width: 12px;
|
|
3508
|
+
}
|
|
3469
3509
|
.e-grid.sf-grid .e-table {
|
|
3470
3510
|
border-spacing: 0.25px;
|
|
3471
3511
|
}
|
|
3512
|
+
.e-grid.sf-grid span.e-ungroupbutton.e-icons {
|
|
3513
|
+
margin-left: -9px;
|
|
3514
|
+
}
|
|
3472
3515
|
.e-grid.sf-grid .e-rowcell.e-frozen-right-border,
|
|
3473
3516
|
.e-grid.sf-grid .e-headercell.e-frozen-right-border,
|
|
3474
3517
|
.e-grid.sf-grid .e-filterbarcell.e-frozen-right-border {
|
|
@@ -4058,7 +4101,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
4058
4101
|
}
|
|
4059
4102
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
4060
4103
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
4061
|
-
-moz-appearance: none;
|
|
4104
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
4062
4105
|
height: 1px;
|
|
4063
4106
|
opacity: 0;
|
|
4064
4107
|
width: 1px;
|
package/styles/tailwind.css
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
3
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
3
4
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
4
5
|
transform: rotate(0deg);
|
|
@@ -94,6 +95,7 @@
|
|
|
94
95
|
padding: 4px 8px;
|
|
95
96
|
}
|
|
96
97
|
|
|
98
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
97
99
|
@keyframes material-spinner-rotate {
|
|
98
100
|
0% {
|
|
99
101
|
transform: rotate(0);
|
|
@@ -363,7 +365,7 @@
|
|
|
363
365
|
word-break: normal;
|
|
364
366
|
}
|
|
365
367
|
.e-excelfilter .e-chk-hidden {
|
|
366
|
-
-moz-appearance: none;
|
|
368
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
367
369
|
height: 1px;
|
|
368
370
|
opacity: 0;
|
|
369
371
|
width: 1px;
|
|
@@ -507,6 +509,8 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
507
509
|
border-color: #4f46e5;
|
|
508
510
|
}
|
|
509
511
|
|
|
512
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
513
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
510
514
|
@keyframes material-spinner-rotate {
|
|
511
515
|
0% {
|
|
512
516
|
transform: rotate(0);
|
|
@@ -767,6 +771,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
767
771
|
.e-bigger .e-grid,
|
|
768
772
|
.e-grid.e-bigger {
|
|
769
773
|
font-size: 16px;
|
|
774
|
+
/* stylelint-disable */
|
|
770
775
|
}
|
|
771
776
|
.e-bigger .e-grid .e-gridheader thead .e-icons:not(.e-check):not(.e-stop),
|
|
772
777
|
.e-grid.e-bigger .e-gridheader thead .e-icons:not(.e-check):not(.e-stop) {
|
|
@@ -1473,6 +1478,9 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1473
1478
|
font-size: 14px;
|
|
1474
1479
|
height: auto;
|
|
1475
1480
|
position: relative;
|
|
1481
|
+
/* stylelint-enable */
|
|
1482
|
+
/* stylelint-disable */
|
|
1483
|
+
/* stylelint-enable */
|
|
1476
1484
|
}
|
|
1477
1485
|
.e-grid .e-gridheader {
|
|
1478
1486
|
-webkit-user-select: none;
|
|
@@ -2402,7 +2410,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2402
2410
|
padding-left: 8px;
|
|
2403
2411
|
}
|
|
2404
2412
|
.e-grid .e-chk-hidden {
|
|
2405
|
-
-moz-appearance: none;
|
|
2413
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2406
2414
|
height: 1px;
|
|
2407
2415
|
opacity: 0;
|
|
2408
2416
|
width: 1px;
|
|
@@ -2416,7 +2424,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2416
2424
|
}
|
|
2417
2425
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
2418
2426
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
2419
|
-
-webkit-user-select: auto;
|
|
2427
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2420
2428
|
height: 20px;
|
|
2421
2429
|
line-height: 20px;
|
|
2422
2430
|
position: relative;
|
|
@@ -2613,7 +2621,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2613
2621
|
padding: 2px;
|
|
2614
2622
|
}
|
|
2615
2623
|
.e-grid .e-content {
|
|
2616
|
-
-webkit-overflow-scrolling: touch;
|
|
2624
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2617
2625
|
overflow-x: auto;
|
|
2618
2626
|
overflow-y: scroll;
|
|
2619
2627
|
position: relative;
|
|
@@ -2750,6 +2758,9 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2750
2758
|
border-width: 1px 0 0;
|
|
2751
2759
|
cursor: pointer;
|
|
2752
2760
|
}
|
|
2761
|
+
.e-grid .e-disablepointer {
|
|
2762
|
+
cursor: default;
|
|
2763
|
+
}
|
|
2753
2764
|
.e-grid .e-groupcaption {
|
|
2754
2765
|
border-style: solid;
|
|
2755
2766
|
border-width: 1px 0 0;
|
|
@@ -2971,6 +2982,8 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2971
2982
|
.e-grid .e-checkboxfiltertext {
|
|
2972
2983
|
width: 150px;
|
|
2973
2984
|
word-break: normal;
|
|
2985
|
+
/* stylelint-disable */
|
|
2986
|
+
/* stylelint-enable */
|
|
2974
2987
|
}
|
|
2975
2988
|
.e-grid .e-frozenhdrcont .e-headercontent > .e-table,
|
|
2976
2989
|
.e-grid .e-frozenhdrcont .e-frozenheader > .e-table,
|
|
@@ -3030,10 +3043,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3030
3043
|
overflow: hidden;
|
|
3031
3044
|
}
|
|
3032
3045
|
.e-grid .e-frozenhdrcont {
|
|
3033
|
-
-ms-touch-action: none;
|
|
3046
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3034
3047
|
}
|
|
3035
3048
|
.e-grid .e-frozencontent {
|
|
3036
|
-
-ms-touch-action: none;
|
|
3049
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3037
3050
|
border-bottom-width: 1px;
|
|
3038
3051
|
float: left;
|
|
3039
3052
|
width: min-content;
|
|
@@ -3042,19 +3055,19 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3042
3055
|
float: right;
|
|
3043
3056
|
}
|
|
3044
3057
|
.e-grid .e-movablecontent {
|
|
3045
|
-
-ms-overflow-style: none;
|
|
3058
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3046
3059
|
-ms-flex: 1;
|
|
3047
3060
|
flex: 1;
|
|
3048
3061
|
overflow-x: auto;
|
|
3049
3062
|
overflow-y: hidden;
|
|
3050
3063
|
}
|
|
3051
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
3064
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3052
3065
|
display: none;
|
|
3053
3066
|
}
|
|
3054
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
3067
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3055
3068
|
width: 7px;
|
|
3056
3069
|
}
|
|
3057
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
3070
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3058
3071
|
background-color: rgba(0, 0, 0, 0.5);
|
|
3059
3072
|
border-radius: 4px;
|
|
3060
3073
|
}
|
|
@@ -3466,9 +3479,39 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3466
3479
|
.e-grid.e-resize-lines.e-rtl.e-default table th[rowspan] {
|
|
3467
3480
|
border-right: 0;
|
|
3468
3481
|
}
|
|
3482
|
+
.e-grid .e-mask {
|
|
3483
|
+
display: inline-block;
|
|
3484
|
+
height: 10px;
|
|
3485
|
+
width: 80%;
|
|
3486
|
+
}
|
|
3487
|
+
.e-grid .e-mask.e-mask-group-intent {
|
|
3488
|
+
margin-left: 7px;
|
|
3489
|
+
width: 16px;
|
|
3490
|
+
}
|
|
3491
|
+
.e-grid .e-mask.e-mask-detail-intent {
|
|
3492
|
+
width: 16px;
|
|
3493
|
+
}
|
|
3494
|
+
.e-grid .e-mask.e-mask-checkbox-intent {
|
|
3495
|
+
margin-left: 3px;
|
|
3496
|
+
margin-right: 16px;
|
|
3497
|
+
width: 20px;
|
|
3498
|
+
}
|
|
3499
|
+
.e-grid .e-mask.e-mask-checkbox-filter-intent {
|
|
3500
|
+
width: 13px;
|
|
3501
|
+
}
|
|
3502
|
+
.e-grid .e-mask.e-mask-checkbox-filter-span-intent {
|
|
3503
|
+
margin-left: 8px;
|
|
3504
|
+
}
|
|
3505
|
+
.e-grid .e-mask.e-mask-drag-intent {
|
|
3506
|
+
margin-left: 12px;
|
|
3507
|
+
width: 12px;
|
|
3508
|
+
}
|
|
3469
3509
|
.e-grid.sf-grid .e-table {
|
|
3470
3510
|
border-spacing: 0.25px;
|
|
3471
3511
|
}
|
|
3512
|
+
.e-grid.sf-grid span.e-ungroupbutton.e-icons {
|
|
3513
|
+
margin-left: -9px;
|
|
3514
|
+
}
|
|
3472
3515
|
.e-grid.sf-grid .e-rowcell.e-frozen-right-border,
|
|
3473
3516
|
.e-grid.sf-grid .e-headercell.e-frozen-right-border,
|
|
3474
3517
|
.e-grid.sf-grid .e-filterbarcell.e-frozen-right-border {
|
|
@@ -4058,7 +4101,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
4058
4101
|
}
|
|
4059
4102
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
4060
4103
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
4061
|
-
-moz-appearance: none;
|
|
4104
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
4062
4105
|
height: 1px;
|
|
4063
4106
|
opacity: 0;
|
|
4064
4107
|
width: 1px;
|