raise-common-lib 0.0.129 → 0.0.131
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/bundles/raise-common-lib.umd.js +68 -25
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/layout/multi-tab/index.component.js +64 -23
- package/esm2015/lib/layout/toolbar/index.component.js +2 -2
- package/esm5/lib/layout/multi-tab/index.component.js +68 -25
- package/esm5/lib/layout/toolbar/index.component.js +2 -2
- package/fesm2015/raise-common-lib.js +64 -23
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +68 -25
- package/fesm5/raise-common-lib.js.map +1 -1
- package/lib/layout/multi-tab/index.component.d.ts +2 -2
- package/package.json +1 -1
- package/raise-common-lib.metadata.json +1 -1
- package/src/assets/style/reset/grid.scss +111 -110
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
display: flex;
|
|
6
6
|
flex-direction: column;
|
|
7
7
|
border: 0;
|
|
8
|
-
|
|
8
|
+
.e-spinner-pane {
|
|
9
|
+
display: none !important; // 隐藏默认的loading spinner
|
|
10
|
+
}
|
|
9
11
|
.e-gridheader {
|
|
10
12
|
height: auto;
|
|
11
13
|
border-top: none;
|
|
@@ -435,46 +437,90 @@
|
|
|
435
437
|
}
|
|
436
438
|
}
|
|
437
439
|
}
|
|
438
|
-
.e-gridpager {
|
|
439
|
-
padding: 12px 0 0;
|
|
440
|
-
}
|
|
441
|
-
.e-pager {
|
|
442
|
-
position: relative;
|
|
443
440
|
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
align-items: center;
|
|
447
|
-
gap: 16px;
|
|
441
|
+
.e-pager {
|
|
442
|
+
padding: 12px 0 0 !important;
|
|
448
443
|
border: 0;
|
|
444
|
+
div {
|
|
445
|
+
vertical-align: middle;
|
|
446
|
+
}
|
|
447
|
+
.e-icons {
|
|
448
|
+
border: none;
|
|
449
|
+
border-radius: 6px;
|
|
450
|
+
padding: 4px !important;
|
|
451
|
+
|
|
452
|
+
margin-right: 6px;
|
|
453
|
+
&:hover,
|
|
454
|
+
&.e-focused {
|
|
455
|
+
background-color: #1f7bff0a;
|
|
456
|
+
}
|
|
457
|
+
&.e-disable {
|
|
458
|
+
opacity: 0.3;
|
|
459
|
+
cursor: not-allowed;
|
|
460
|
+
}
|
|
461
|
+
&::before {
|
|
462
|
+
display: block;
|
|
463
|
+
width: 16px;
|
|
464
|
+
height: 16px;
|
|
465
|
+
}
|
|
466
|
+
&.e-first,
|
|
467
|
+
&.e-mfirst {
|
|
468
|
+
@media (max-width: 769px) {
|
|
469
|
+
width: auto;
|
|
470
|
+
min-width: 26px;
|
|
471
|
+
}
|
|
472
|
+
&::before {
|
|
473
|
+
content: url("/assets/img/grid-pager-arrows-left.svg");
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
&.e-prev,
|
|
478
|
+
&.e-mprev {
|
|
479
|
+
margin: 0 16px 0 6px;
|
|
480
|
+
@media (max-width: 769px) {
|
|
481
|
+
width: auto;
|
|
482
|
+
min-width: 26px;
|
|
483
|
+
}
|
|
484
|
+
&::before {
|
|
485
|
+
content: url("/assets/img/grid-pager-arrow-left.svg");
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
&.e-next,
|
|
490
|
+
&.e-mnext {
|
|
491
|
+
margin: 0 12px 0 10px !important;
|
|
492
|
+
@media (max-width: 769px) {
|
|
493
|
+
width: auto;
|
|
494
|
+
min-width: 26px;
|
|
495
|
+
}
|
|
496
|
+
&::before {
|
|
497
|
+
content: url("/assets/img/grid-pager-arrow-left.svg");
|
|
498
|
+
transform: rotate(180deg);
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
&.e-last,
|
|
502
|
+
&.e-mlast {
|
|
503
|
+
@media (max-width: 769px) {
|
|
504
|
+
width: auto;
|
|
505
|
+
min-width: 26px;
|
|
506
|
+
}
|
|
507
|
+
&::before {
|
|
508
|
+
content: url("/assets/img/grid-pager-arrows-left.svg");
|
|
509
|
+
transform: rotate(180deg);
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
}
|
|
449
513
|
|
|
450
514
|
.e-pagercontainer {
|
|
451
|
-
margin: 0;
|
|
452
515
|
border: 0;
|
|
453
|
-
|
|
454
|
-
display: flex;
|
|
455
|
-
flex-flow: row nowrap;
|
|
456
|
-
align-items: center;
|
|
516
|
+
vertical-align: middle;
|
|
457
517
|
|
|
458
518
|
.e-icons,
|
|
459
519
|
.e-spacing {
|
|
460
|
-
min-width: 24px;
|
|
461
|
-
height: 24px;
|
|
462
|
-
|
|
463
520
|
border: none;
|
|
464
521
|
border-radius: 6px;
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
flex-flow: row nowrap;
|
|
468
|
-
justify-content: center;
|
|
469
|
-
align-items: center;
|
|
470
|
-
|
|
471
|
-
color: #6c7c90;
|
|
472
|
-
font-family: Arial;
|
|
473
|
-
font-size: 11px;
|
|
474
|
-
font-style: normal;
|
|
475
|
-
font-weight: 400;
|
|
476
|
-
line-height: 14px;
|
|
477
|
-
|
|
522
|
+
padding: 4px;
|
|
523
|
+
margin-right: 6px;
|
|
478
524
|
&:hover,
|
|
479
525
|
&.e-focused {
|
|
480
526
|
background-color: #1f7bff0a;
|
|
@@ -486,40 +532,6 @@
|
|
|
486
532
|
}
|
|
487
533
|
}
|
|
488
534
|
|
|
489
|
-
.e-icons {
|
|
490
|
-
&::before {
|
|
491
|
-
display: block;
|
|
492
|
-
width: 16px;
|
|
493
|
-
height: 16px;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
&.e-first::before {
|
|
497
|
-
content: url("/assets/img/grid-pager-arrows-left.svg");
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
&.e-prev {
|
|
501
|
-
margin: 0 16px 0 12px;
|
|
502
|
-
|
|
503
|
-
&::before {
|
|
504
|
-
content: url("/assets/img/grid-pager-arrow-left.svg");
|
|
505
|
-
}
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
&.e-next {
|
|
509
|
-
margin: 0 12px 0 16px;
|
|
510
|
-
|
|
511
|
-
&::before {
|
|
512
|
-
content: url("/assets/img/grid-pager-arrow-left.svg");
|
|
513
|
-
transform: rotate(180deg);
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
&.e-last::before {
|
|
518
|
-
content: url("/assets/img/grid-pager-arrows-left.svg");
|
|
519
|
-
transform: rotate(180deg);
|
|
520
|
-
}
|
|
521
|
-
}
|
|
522
|
-
|
|
523
535
|
.e-spacing {
|
|
524
536
|
&.e-pp {
|
|
525
537
|
margin-right: 12px;
|
|
@@ -536,56 +548,31 @@
|
|
|
536
548
|
}
|
|
537
549
|
|
|
538
550
|
.e-numericcontainer {
|
|
539
|
-
|
|
540
|
-
flex-flow: row nowrap;
|
|
541
|
-
justify-content: center;
|
|
542
|
-
align-items: center;
|
|
551
|
+
vertical-align: middle;
|
|
543
552
|
|
|
544
553
|
.e-numericitem {
|
|
545
554
|
border: 1px solid transparent;
|
|
555
|
+
padding: 4px;
|
|
556
|
+
min-width: 24px;
|
|
557
|
+
color: #44566c;
|
|
546
558
|
|
|
559
|
+
font-family: Arial;
|
|
560
|
+
font-size: 11px;
|
|
561
|
+
font-style: normal;
|
|
562
|
+
font-weight: 400;
|
|
563
|
+
line-height: 14px;
|
|
547
564
|
&.e-currentitem {
|
|
548
565
|
border-color: #1f7bff66;
|
|
549
566
|
background-color: #fff;
|
|
550
567
|
}
|
|
551
568
|
}
|
|
552
|
-
|
|
553
|
-
div:not(:first-child) > .e-numericitem {
|
|
554
|
-
margin-left: 12px;
|
|
555
|
-
}
|
|
556
569
|
}
|
|
557
570
|
}
|
|
558
|
-
|
|
559
|
-
.e-parentmsgbar {
|
|
560
|
-
float: none;
|
|
561
|
-
clear: both;
|
|
562
|
-
|
|
563
|
-
height: auto;
|
|
564
|
-
padding: 0;
|
|
565
|
-
|
|
566
|
-
position: absolute;
|
|
567
|
-
top: 50%;
|
|
568
|
-
right: 0;
|
|
569
|
-
transform: translateY(-50%);
|
|
570
|
-
|
|
571
|
-
color: #929dab;
|
|
572
|
-
font-family: Arial;
|
|
573
|
-
font-size: 11px;
|
|
574
|
-
font-style: normal;
|
|
575
|
-
font-weight: 400;
|
|
576
|
-
line-height: 14px;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
571
|
.e-pagesizes {
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
display: flex;
|
|
583
|
-
flex-flow: row nowrap;
|
|
584
|
-
align-items: center;
|
|
585
|
-
gap: 8px;
|
|
586
|
-
|
|
572
|
+
display: inline-block;
|
|
573
|
+
vertical-align: middle;
|
|
587
574
|
.e-pagerdropdown {
|
|
588
|
-
margin: 0;
|
|
575
|
+
margin: 0 8px 0 6px;
|
|
589
576
|
width: 60px;
|
|
590
577
|
height: 24px;
|
|
591
578
|
|
|
@@ -630,16 +617,30 @@
|
|
|
630
617
|
}
|
|
631
618
|
}
|
|
632
619
|
}
|
|
620
|
+
}
|
|
633
621
|
|
|
634
|
-
|
|
635
|
-
|
|
622
|
+
.e-pagerconstant {
|
|
623
|
+
vertical-align: middle;
|
|
624
|
+
margin: 0;
|
|
636
625
|
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
626
|
+
color: #929dab;
|
|
627
|
+
font-family: Arial;
|
|
628
|
+
font-size: 11px;
|
|
629
|
+
font-style: normal;
|
|
630
|
+
font-weight: 400;
|
|
631
|
+
line-height: 12px;
|
|
632
|
+
}
|
|
633
|
+
.e-parentmsgbar {
|
|
634
|
+
color: #929dab;
|
|
635
|
+
font-family: Arial;
|
|
636
|
+
font-size: 11px;
|
|
637
|
+
font-style: normal;
|
|
638
|
+
font-weight: 400;
|
|
639
|
+
line-height: 14px;
|
|
640
|
+
padding-top: 4px !important;
|
|
641
|
+
padding-bottom: 0 !important;
|
|
642
|
+
@media (max-width: 769px) {
|
|
643
|
+
width: auto !important;
|
|
643
644
|
}
|
|
644
645
|
}
|
|
645
646
|
}
|