realreport 1.1.9 → 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/LICENSE.md +1 -1
- package/dist/LICENSE.md +1 -1
- package/dist/realreport.css +148 -20
- package/dist/realreport.d.ts +35433 -379
- package/dist/realreport.es.js +1 -1
- package/dist/realreport.js +1 -1
- package/package.json +4 -40
- package/dist/realreport.ie11.js +0 -1
package/LICENSE.md
CHANGED
package/dist/LICENSE.md
CHANGED
package/dist/realreport.css
CHANGED
|
@@ -111,24 +111,11 @@
|
|
|
111
111
|
z-index: 1;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
|
|
115
|
-
border: 1px solid transparent;
|
|
116
|
-
}
|
|
117
|
-
.rr-item-element[data-design] {
|
|
118
|
-
border: 1px solid #ddd;
|
|
119
|
-
} */
|
|
120
|
-
|
|
121
|
-
/* .rr-group-element {
|
|
122
|
-
border: 1px solid transparent;
|
|
123
|
-
}
|
|
124
|
-
.rr-group-element[data-design] {
|
|
125
|
-
border: 1px solid #ddd;
|
|
126
|
-
} */
|
|
127
|
-
.rr-group-element[data-empty='true'] {
|
|
114
|
+
.rr-group-element[data-empty] {
|
|
128
115
|
background: #f8f8f8;
|
|
129
116
|
}
|
|
130
117
|
|
|
131
|
-
.rr-floating[data-empty
|
|
118
|
+
.rr-floating[data-empty] {
|
|
132
119
|
background: #f0f0f0cc;
|
|
133
120
|
}
|
|
134
121
|
|
|
@@ -173,12 +160,14 @@
|
|
|
173
160
|
|
|
174
161
|
.rr-focus-view {
|
|
175
162
|
box-sizing: content-box !important;
|
|
163
|
+
/* border: 1px solid rgba(33, 33, 127, 0.7); */
|
|
176
164
|
border: 2px solid rgba(33, 33, 127, 0.7);
|
|
177
165
|
pointer-events: none;
|
|
178
166
|
}
|
|
179
167
|
|
|
180
168
|
.rr-focus-handle {
|
|
181
169
|
border: 1px solid white;
|
|
170
|
+
/* border-radius: 50%; */
|
|
182
171
|
background-color: rgba(33, 33, 127, 0.7);
|
|
183
172
|
pointer-events: auto;
|
|
184
173
|
cursor: nwse-resize;
|
|
@@ -480,6 +469,31 @@
|
|
|
480
469
|
background-image: url("./check-empty.png");
|
|
481
470
|
}
|
|
482
471
|
|
|
472
|
+
.rr-datalist[data-empty] {
|
|
473
|
+
display: table;
|
|
474
|
+
margin: 0;
|
|
475
|
+
padding: 0;
|
|
476
|
+
text-align: center;
|
|
477
|
+
background: #eaeaea;
|
|
478
|
+
color: #777;
|
|
479
|
+
border: 1px solid #aaa;
|
|
480
|
+
}
|
|
481
|
+
.rr-datalist[data-design]:hover {
|
|
482
|
+
background-color: rgba(111, 111, 0, 0.1);
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.rr-bandgroupcell[data-empty] {
|
|
486
|
+
display: table;
|
|
487
|
+
margin: 0;
|
|
488
|
+
padding: 0;
|
|
489
|
+
text-align: center;
|
|
490
|
+
background: #eaeaea;
|
|
491
|
+
color: #777;
|
|
492
|
+
border: 1px solid #aaa;
|
|
493
|
+
}
|
|
494
|
+
.rr-bandgroupcell[data-empty]:hover {
|
|
495
|
+
background-color: rgba(111, 111, 0, 0.1);
|
|
496
|
+
}
|
|
483
497
|
|
|
484
498
|
/** design */
|
|
485
499
|
.rr-section-guard {
|
|
@@ -583,7 +597,6 @@
|
|
|
583
597
|
background-color: #efffef;
|
|
584
598
|
}
|
|
585
599
|
|
|
586
|
-
|
|
587
600
|
.rr-band-col {
|
|
588
601
|
position: absolute;
|
|
589
602
|
display: inline-flex;
|
|
@@ -600,9 +613,6 @@
|
|
|
600
613
|
display: none;
|
|
601
614
|
}
|
|
602
615
|
|
|
603
|
-
/* .rr-tableband-group {
|
|
604
|
-
} */
|
|
605
|
-
|
|
606
616
|
.rr-end-row-message {
|
|
607
617
|
font-size: 13px;
|
|
608
618
|
color: #333;
|
|
@@ -612,6 +622,80 @@
|
|
|
612
622
|
border-bottom: 1px solid lightgray;
|
|
613
623
|
}
|
|
614
624
|
|
|
625
|
+
.rr-crosstab-field-cell {
|
|
626
|
+
text-align: center;;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.rr-crosstab-head {
|
|
630
|
+
text-align: center;
|
|
631
|
+
background-color: #f0f0f0;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.rr-crosstab-section-table tr td {
|
|
635
|
+
position: relative;
|
|
636
|
+
margin: 0 !important;
|
|
637
|
+
padding: 1px 4px;
|
|
638
|
+
border-spacing: 0 !important;
|
|
639
|
+
box-sizing: border-box !important;
|
|
640
|
+
border-collapse: separate;
|
|
641
|
+
border: 1px solid #aaa;
|
|
642
|
+
overflow: hidden;
|
|
643
|
+
color: gray;
|
|
644
|
+
white-space: nowrap;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.rr-crosstab-field-container {
|
|
648
|
+
background-color: #efefef;
|
|
649
|
+
border: 1px solid lightgray;
|
|
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%);
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.rr-crosstab-field {
|
|
661
|
+
padding: 2px 2px;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.rr-crosstab-field:hover {
|
|
665
|
+
background-color: #ddd;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.rr-crosstab-field-arrow {
|
|
669
|
+
box-sizing: border-box;
|
|
670
|
+
margin-left: 4px;
|
|
671
|
+
padding: 0px 5px;
|
|
672
|
+
font-size: 16px;
|
|
673
|
+
line-height: 16px;
|
|
674
|
+
color: #555;
|
|
675
|
+
border: 1px solid transparent;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.rr-crosstab-field-arrow:hover {
|
|
679
|
+
color: black;
|
|
680
|
+
border: 1px solid #555;
|
|
681
|
+
border-radius: 3px;
|
|
682
|
+
}
|
|
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
|
+
|
|
615
699
|
.rr-select-feedback {
|
|
616
700
|
border: 2px solid #11111180;
|
|
617
701
|
background-color: #0000ff10;
|
|
@@ -670,6 +754,49 @@
|
|
|
670
754
|
text-align: center;
|
|
671
755
|
}
|
|
672
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
|
+
|
|
673
800
|
.rr-edit-marquee {
|
|
674
801
|
position: absolute;
|
|
675
802
|
pointer-events: none;
|
|
@@ -681,7 +808,8 @@
|
|
|
681
808
|
display: flex;
|
|
682
809
|
align-items: center;
|
|
683
810
|
justify-content: center;
|
|
684
|
-
|
|
811
|
+
box-sizing: border-box;
|
|
812
|
+
border: 0.5px solid #fff;
|
|
685
813
|
background-color: #555566cc;
|
|
686
814
|
color: white;
|
|
687
815
|
font-family: Arial, Helvetica, sans-serif;
|