realreport-designer 1.9.1 → 1.9.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/dist/realreport-designer.cjs +111 -87
- package/dist/realreport-designer.d.ts +92 -2
- package/dist/realreport-designer.js +14303 -13540
- package/dist/realreport-designer.umd.js +110 -86
- package/dist/styles/realreport-designer.css +26 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
RealReport Designer v1.9.
|
|
2
|
+
RealReport Designer v1.9.2
|
|
3
3
|
Copyright (C) 2013-2024 WooriTech Inc.
|
|
4
4
|
All Rights Reserved.
|
|
5
5
|
*/
|
|
@@ -89,6 +89,18 @@ All Rights Reserved.
|
|
|
89
89
|
outline: none;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
+
.rr-text-area-editor::-webkit-scrollbar {
|
|
93
|
+
width: 2px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.rr-text-area-editor::-webkit-scrollbar-track {
|
|
97
|
+
background-color: transparent;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.rr-text-area-editor::-webkit-scrollbar-thumb {
|
|
101
|
+
background: #d2d2d2;
|
|
102
|
+
}
|
|
103
|
+
|
|
92
104
|
.rr-design-box {
|
|
93
105
|
color: #888;
|
|
94
106
|
font-style: italic;
|
|
@@ -437,6 +449,14 @@ All Rights Reserved.
|
|
|
437
449
|
border: none !important;
|
|
438
450
|
box-shadow: none !important;
|
|
439
451
|
}
|
|
452
|
+
|
|
453
|
+
.rr-editable-marker {
|
|
454
|
+
display: none;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.rr-text[data-editable] span {
|
|
458
|
+
min-width: none;
|
|
459
|
+
}
|
|
440
460
|
}
|
|
441
461
|
|
|
442
462
|
.rr-stack-container {
|
|
@@ -475,6 +495,10 @@ All Rights Reserved.
|
|
|
475
495
|
border: 1px solid #aaa;
|
|
476
496
|
}
|
|
477
497
|
|
|
498
|
+
.rr-text[data-editable] span {
|
|
499
|
+
min-width: 20px;
|
|
500
|
+
}
|
|
501
|
+
|
|
478
502
|
.rr-summary {
|
|
479
503
|
display: table;
|
|
480
504
|
margin: 0;
|
|
@@ -3173,7 +3197,7 @@ input[data-rrproperty]::-webkit-inner-spin-button {
|
|
|
3173
3197
|
white-space: nowrap;
|
|
3174
3198
|
}
|
|
3175
3199
|
/** 미리보기 */
|
|
3176
|
-
.rrd-preview-container {
|
|
3200
|
+
.rrd-preview-scroll-container {
|
|
3177
3201
|
background: var(--rrd-light-theme-primary-color-2);
|
|
3178
3202
|
}
|
|
3179
3203
|
|