realreport 1.2.0 → 1.3.0
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/dist/realreport.css +73 -3
- package/dist/realreport.d.ts +34483 -346
- package/dist/realreport.es.js +1 -1
- package/dist/realreport.js +1 -1
- package/package.json +1 -1
package/dist/realreport.css
CHANGED
|
@@ -622,6 +622,10 @@
|
|
|
622
622
|
border-bottom: 1px solid lightgray;
|
|
623
623
|
}
|
|
624
624
|
|
|
625
|
+
.rr-crosstab-field-cell {
|
|
626
|
+
text-align: center;;
|
|
627
|
+
}
|
|
628
|
+
|
|
625
629
|
.rr-crosstab-head {
|
|
626
630
|
text-align: center;
|
|
627
631
|
background-color: #f0f0f0;
|
|
@@ -635,15 +639,22 @@
|
|
|
635
639
|
box-sizing: border-box !important;
|
|
636
640
|
border-collapse: separate;
|
|
637
641
|
border: 1px solid #aaa;
|
|
638
|
-
height: 0px;
|
|
639
642
|
overflow: hidden;
|
|
640
643
|
color: gray;
|
|
644
|
+
white-space: nowrap;
|
|
641
645
|
}
|
|
642
646
|
|
|
643
647
|
.rr-crosstab-field-container {
|
|
644
648
|
background-color: #efefef;
|
|
645
649
|
border: 1px solid lightgray;
|
|
646
|
-
|
|
650
|
+
}
|
|
651
|
+
.rr-crosstab-field-container[data-empty='1']::before {
|
|
652
|
+
content: "[Fields]";
|
|
653
|
+
color: #040;
|
|
654
|
+
position: absolute;
|
|
655
|
+
top: 50%;
|
|
656
|
+
left: 50%;
|
|
657
|
+
transform: translate(-50%, -50%);
|
|
647
658
|
}
|
|
648
659
|
|
|
649
660
|
.rr-crosstab-field {
|
|
@@ -670,6 +681,21 @@
|
|
|
670
681
|
border-radius: 3px;
|
|
671
682
|
}
|
|
672
683
|
|
|
684
|
+
.rr-crosstab-head {
|
|
685
|
+
padding: 2px 1px !important;
|
|
686
|
+
font-size: 10px;
|
|
687
|
+
text-align: center;
|
|
688
|
+
background-color: '#f0f0f0';
|
|
689
|
+
}
|
|
690
|
+
.rr-crosstab-value {
|
|
691
|
+
padding: 1px 1px !important;
|
|
692
|
+
font-size: 10px;
|
|
693
|
+
text-align: right;
|
|
694
|
+
}
|
|
695
|
+
.rr-crosstab-null {
|
|
696
|
+
background-color: #efefef;
|
|
697
|
+
}
|
|
698
|
+
|
|
673
699
|
.rr-select-feedback {
|
|
674
700
|
border: 2px solid #11111180;
|
|
675
701
|
background-color: #0000ff10;
|
|
@@ -728,6 +754,49 @@
|
|
|
728
754
|
text-align: center;
|
|
729
755
|
}
|
|
730
756
|
|
|
757
|
+
.rr-table-designer {
|
|
758
|
+
padding: 10px;
|
|
759
|
+
border-radius: 5px;
|
|
760
|
+
background-color: #f8f8f8;
|
|
761
|
+
border: 1px solid gray;
|
|
762
|
+
}
|
|
763
|
+
.rr-table-designer span[data-title="1"] {
|
|
764
|
+
font-size: 14px;
|
|
765
|
+
font-weight: bold;
|
|
766
|
+
padding: 2px 1px;
|
|
767
|
+
color: '#334';
|
|
768
|
+
background-color: #eeeef0;
|
|
769
|
+
margin-bottom: 10px;
|
|
770
|
+
}
|
|
771
|
+
.rr-table-designer button {
|
|
772
|
+
font-size: 14px;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.rr-band-designer {
|
|
776
|
+
padding: 10px;
|
|
777
|
+
border-radius: 5px;
|
|
778
|
+
background-color: #f8f8f8;
|
|
779
|
+
border: 1px solid gray;
|
|
780
|
+
}
|
|
781
|
+
.rr-band-designer span[data-title="1"] {
|
|
782
|
+
font-size: 14px;
|
|
783
|
+
font-weight: bold;
|
|
784
|
+
padding: 2px 1px;
|
|
785
|
+
color: '#334';
|
|
786
|
+
background-color: #eeeef0;
|
|
787
|
+
margin-bottom: 10px;
|
|
788
|
+
}
|
|
789
|
+
.rr-band-designer button {
|
|
790
|
+
font-size: 14px;
|
|
791
|
+
}
|
|
792
|
+
.rr-band-designer-field:hover {
|
|
793
|
+
background-color: #0088ff20;
|
|
794
|
+
}
|
|
795
|
+
.rr-band-designer-field[data-select='1'] {
|
|
796
|
+
background-color: #eee;
|
|
797
|
+
font-weight: bold;
|
|
798
|
+
}
|
|
799
|
+
|
|
731
800
|
.rr-edit-marquee {
|
|
732
801
|
position: absolute;
|
|
733
802
|
pointer-events: none;
|
|
@@ -739,7 +808,8 @@
|
|
|
739
808
|
display: flex;
|
|
740
809
|
align-items: center;
|
|
741
810
|
justify-content: center;
|
|
742
|
-
|
|
811
|
+
box-sizing: border-box;
|
|
812
|
+
border: 0.5px solid #fff;
|
|
743
813
|
background-color: #555566cc;
|
|
744
814
|
color: white;
|
|
745
815
|
font-family: Arial, Helvetica, sans-serif;
|