realreport 1.10.10 → 1.10.13
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 +19 -4
- package/dist/realreport.d.ts +4079 -4048
- package/dist/realreport.es.js +3 -3
- package/dist/realreport.js +3 -3
- package/package.json +1 -1
package/dist/realreport.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
RealReport v1.10.
|
|
2
|
+
RealReport v1.10.13
|
|
3
3
|
Copyright (C) 2013-2025 WooriTech Inc.
|
|
4
4
|
All Rights Reserved.
|
|
5
5
|
*/
|
|
@@ -549,6 +549,11 @@ border: 1px dotted #00000020; */
|
|
|
549
549
|
width: 100%;
|
|
550
550
|
}
|
|
551
551
|
|
|
552
|
+
.qrcode-empty:before {
|
|
553
|
+
content: "[QR]";
|
|
554
|
+
white-space: nowrap;
|
|
555
|
+
}
|
|
556
|
+
|
|
552
557
|
.rr-text-band .rr-text-band-body[data-empty]:before {
|
|
553
558
|
background-color: #00000008;
|
|
554
559
|
color: #777;
|
|
@@ -567,6 +572,16 @@ border: 1px dotted #00000020; */
|
|
|
567
572
|
width: 100%;
|
|
568
573
|
}
|
|
569
574
|
|
|
575
|
+
.rr-image[data-empty][data-design] {
|
|
576
|
+
display: table;
|
|
577
|
+
margin: 0;
|
|
578
|
+
padding: 0;
|
|
579
|
+
text-align: center;
|
|
580
|
+
background-color: #f0f0f0;
|
|
581
|
+
color: #777;
|
|
582
|
+
border: 1px solid rgba(191, 191, 191, 0.3);
|
|
583
|
+
}
|
|
584
|
+
|
|
570
585
|
.rr-image[data-empty] span:before {
|
|
571
586
|
content: "[IMAGE]";
|
|
572
587
|
white-space: nowrap;
|
|
@@ -576,14 +591,14 @@ border: 1px dotted #00000020; */
|
|
|
576
591
|
background-color: rgba(111, 111, 0, 0.1);
|
|
577
592
|
}
|
|
578
593
|
|
|
579
|
-
.rr-svg[data-empty] {
|
|
594
|
+
.rr-svg[data-empty][data-design] {
|
|
580
595
|
display: table;
|
|
581
596
|
margin: 0;
|
|
582
597
|
padding: 0;
|
|
583
598
|
text-align: center;
|
|
584
|
-
background: #
|
|
599
|
+
background-color: #f0f0f0;
|
|
585
600
|
color: #777;
|
|
586
|
-
border: 1px solid
|
|
601
|
+
border: 1px solid rgba(191, 191, 191, 0.3);
|
|
587
602
|
}
|
|
588
603
|
|
|
589
604
|
.rr-svg[data-empty] span:before {
|