realreport 1.2.0 → 1.3.2
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/README.md +1 -1
- package/dist/README.md +1 -1
- package/dist/realreport.css +79 -3
- package/dist/realreport.d.ts +34486 -341
- package/dist/realreport.es.js +1 -1
- package/dist/realreport.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/README.md
CHANGED
package/dist/realreport.css
CHANGED
|
@@ -327,6 +327,9 @@
|
|
|
327
327
|
margin: 0;
|
|
328
328
|
}
|
|
329
329
|
@media print {
|
|
330
|
+
.rr-report-preview {
|
|
331
|
+
padding: 0 !important;
|
|
332
|
+
}
|
|
330
333
|
.rr-page-break {
|
|
331
334
|
page-break-after: always;
|
|
332
335
|
page-break-inside: avoid;
|
|
@@ -338,6 +341,9 @@
|
|
|
338
341
|
page-break-after: always;
|
|
339
342
|
display: none;
|
|
340
343
|
}
|
|
344
|
+
.rr-rendered {
|
|
345
|
+
display: none;
|
|
346
|
+
}
|
|
341
347
|
}
|
|
342
348
|
|
|
343
349
|
.rr-stack-container {
|
|
@@ -622,6 +628,10 @@
|
|
|
622
628
|
border-bottom: 1px solid lightgray;
|
|
623
629
|
}
|
|
624
630
|
|
|
631
|
+
.rr-crosstab-field-cell {
|
|
632
|
+
text-align: center;;
|
|
633
|
+
}
|
|
634
|
+
|
|
625
635
|
.rr-crosstab-head {
|
|
626
636
|
text-align: center;
|
|
627
637
|
background-color: #f0f0f0;
|
|
@@ -635,15 +645,22 @@
|
|
|
635
645
|
box-sizing: border-box !important;
|
|
636
646
|
border-collapse: separate;
|
|
637
647
|
border: 1px solid #aaa;
|
|
638
|
-
height: 0px;
|
|
639
648
|
overflow: hidden;
|
|
640
649
|
color: gray;
|
|
650
|
+
white-space: nowrap;
|
|
641
651
|
}
|
|
642
652
|
|
|
643
653
|
.rr-crosstab-field-container {
|
|
644
654
|
background-color: #efefef;
|
|
645
655
|
border: 1px solid lightgray;
|
|
646
|
-
|
|
656
|
+
}
|
|
657
|
+
.rr-crosstab-field-container[data-empty='1']::before {
|
|
658
|
+
content: "[Fields]";
|
|
659
|
+
color: #040;
|
|
660
|
+
position: absolute;
|
|
661
|
+
top: 50%;
|
|
662
|
+
left: 50%;
|
|
663
|
+
transform: translate(-50%, -50%);
|
|
647
664
|
}
|
|
648
665
|
|
|
649
666
|
.rr-crosstab-field {
|
|
@@ -670,6 +687,21 @@
|
|
|
670
687
|
border-radius: 3px;
|
|
671
688
|
}
|
|
672
689
|
|
|
690
|
+
.rr-crosstab-head {
|
|
691
|
+
padding: 2px 1px !important;
|
|
692
|
+
font-size: 10px;
|
|
693
|
+
text-align: center;
|
|
694
|
+
background-color: '#f0f0f0';
|
|
695
|
+
}
|
|
696
|
+
.rr-crosstab-value {
|
|
697
|
+
padding: 1px 1px !important;
|
|
698
|
+
font-size: 10px;
|
|
699
|
+
text-align: right;
|
|
700
|
+
}
|
|
701
|
+
.rr-crosstab-null {
|
|
702
|
+
background-color: #efefef;
|
|
703
|
+
}
|
|
704
|
+
|
|
673
705
|
.rr-select-feedback {
|
|
674
706
|
border: 2px solid #11111180;
|
|
675
707
|
background-color: #0000ff10;
|
|
@@ -728,6 +760,49 @@
|
|
|
728
760
|
text-align: center;
|
|
729
761
|
}
|
|
730
762
|
|
|
763
|
+
.rr-table-designer {
|
|
764
|
+
padding: 10px;
|
|
765
|
+
border-radius: 5px;
|
|
766
|
+
background-color: #f8f8f8;
|
|
767
|
+
border: 1px solid gray;
|
|
768
|
+
}
|
|
769
|
+
.rr-table-designer span[data-title="1"] {
|
|
770
|
+
font-size: 14px;
|
|
771
|
+
font-weight: bold;
|
|
772
|
+
padding: 2px 1px;
|
|
773
|
+
color: '#334';
|
|
774
|
+
background-color: #eeeef0;
|
|
775
|
+
margin-bottom: 10px;
|
|
776
|
+
}
|
|
777
|
+
.rr-table-designer button {
|
|
778
|
+
font-size: 14px;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.rr-band-designer {
|
|
782
|
+
padding: 10px;
|
|
783
|
+
border-radius: 5px;
|
|
784
|
+
background-color: #f8f8f8;
|
|
785
|
+
border: 1px solid gray;
|
|
786
|
+
}
|
|
787
|
+
.rr-band-designer span[data-title="1"] {
|
|
788
|
+
font-size: 14px;
|
|
789
|
+
font-weight: bold;
|
|
790
|
+
padding: 2px 1px;
|
|
791
|
+
color: '#334';
|
|
792
|
+
background-color: #eeeef0;
|
|
793
|
+
margin-bottom: 10px;
|
|
794
|
+
}
|
|
795
|
+
.rr-band-designer button {
|
|
796
|
+
font-size: 14px;
|
|
797
|
+
}
|
|
798
|
+
.rr-band-designer-field:hover {
|
|
799
|
+
background-color: #0088ff20;
|
|
800
|
+
}
|
|
801
|
+
.rr-band-designer-field[data-select='1'] {
|
|
802
|
+
background-color: #eee;
|
|
803
|
+
font-weight: bold;
|
|
804
|
+
}
|
|
805
|
+
|
|
731
806
|
.rr-edit-marquee {
|
|
732
807
|
position: absolute;
|
|
733
808
|
pointer-events: none;
|
|
@@ -739,7 +814,8 @@
|
|
|
739
814
|
display: flex;
|
|
740
815
|
align-items: center;
|
|
741
816
|
justify-content: center;
|
|
742
|
-
|
|
817
|
+
box-sizing: border-box;
|
|
818
|
+
border: 0.5px solid #fff;
|
|
743
819
|
background-color: #555566cc;
|
|
744
820
|
color: white;
|
|
745
821
|
font-family: Arial, Helvetica, sans-serif;
|