realreport-designer 1.9.3 → 1.9.4

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.
@@ -1,5 +1,5 @@
1
1
  /*
2
- RealReport Designer v1.9.3
2
+ RealReport Designer v1.9.4
3
3
  Copyright (C) 2013-2024 WooriTech Inc.
4
4
  All Rights Reserved.
5
5
  */
@@ -1146,7 +1146,7 @@ All Rights Reserved.
1146
1146
  font-family: var(--rct-font-family);
1147
1147
  font-size: var(--rct-font-size);
1148
1148
  color: #000;
1149
- /* background-color: white; */
1149
+ /* background-color: #fff; */
1150
1150
  /* word-break: break-all;
1151
1151
  word-wrap: break-word; */
1152
1152
  -webkit-touch-callout: default;
@@ -1168,7 +1168,7 @@ All Rights Reserved.
1168
1168
  }
1169
1169
 
1170
1170
  /** palette */
1171
- .rct-root {
1171
+ :root, .rct-root {
1172
1172
  --color-1: #0098ff;
1173
1173
  --color-2: #66d0ff;
1174
1174
  --color-3: #ff5c35;
@@ -1278,11 +1278,11 @@ All Rights Reserved.
1278
1278
  .rct-control[data-theme='real'] {
1279
1279
  --rct-background: #264653;
1280
1280
  }
1281
- .rct-root {
1281
+ :root, .rct-root {
1282
1282
  --rct-font-family: AppleSDGothicNeo-Light, "HelveticaNeue", "Malgun Gothic", "맑은 고딕", sans-serif;
1283
1283
  --rct-font-size: 16px;
1284
1284
 
1285
- --rct-focus-stroke: black;
1285
+ --rct-focus-stroke: #000;
1286
1286
  --rct-focus-stroke-width: 2px;
1287
1287
  --rct-text-fill: #333;
1288
1288
 
@@ -1295,14 +1295,14 @@ All Rights Reserved.
1295
1295
  --rct-axis-line-stroke: #aaa;
1296
1296
  --rct-axis-baseline-stroke: #333;
1297
1297
  --rct-axis-tick-stroke: #555;
1298
- --rct-axis-label-fill: #555;
1298
+ --rct-axis-label-fill: #333;
1299
1299
  --rct-axis-grid-line-stroke: #ddd;
1300
1300
  --rct-axis-grid-line-stroke-start: none;
1301
1301
  --rct-axis-grid-line-stroke-end: none;
1302
1302
  --rct-axis-grid-line-stroke-width: 1px;
1303
1303
  --rct-axis-scrollbar-track-fill: #fdfdfd;
1304
1304
  --rct-axis-scrollbar-track-stroke: #aaa;
1305
- --rct-axis-scrollbar-thumb-fill: lightgray;
1305
+ --rct-axis-scrollbar-thumb-fill: #d3d3d3;
1306
1306
  --rct-axis-scrollbar-rx: 4px;
1307
1307
 
1308
1308
  --rct-legend-background: none;
@@ -1317,6 +1317,9 @@ All Rights Reserved.
1317
1317
  --rct-point-label-stroke: none;
1318
1318
  --rct-point-label-fill: #333;
1319
1319
 
1320
+ --rct-point-label-line-stroke-width: 1px;
1321
+ --rct-point-label-line-stroke: #585;
1322
+
1320
1323
  --rct-credits-fill: #777;
1321
1324
 
1322
1325
  /* polar */
@@ -1326,7 +1329,7 @@ All Rights Reserved.
1326
1329
 
1327
1330
  /* linear gauge */
1328
1331
  --rct-linear-gauge-background-fill: #eee;
1329
- --rct-linear-gauge-value-fill: green;
1332
+ --rct-linear-gauge-value-fill: #008000;
1330
1333
  --rct-linear-gauge-band-tick-labels-stroke: #333;
1331
1334
  --rct-linear-gauge-group-label-fill: #333;
1332
1335
  /** bullet gauge */
@@ -1345,9 +1348,9 @@ All Rights Reserved.
1345
1348
  --rct-gauge-scale-tick: #555;
1346
1349
  --rct-gauge-scale-tick-labels-stroke: #333;
1347
1350
  /* clock gauge */
1348
- --rct-clock-gauge-face-fill: white;
1351
+ --rct-clock-gauge-face-fill: #fff;
1349
1352
  --rct-clock-gauge-rim-fill: #eee;
1350
- --rct-clock-gauge-rim-stroke: gray;
1353
+ --rct-clock-gauge-rim-stroke: #808080;
1351
1354
  --rct-clock-gauge-tick-stroke: #333;
1352
1355
  --rct-clock-gauge-minor-tick-stroke: #555;
1353
1356
  --rct-clock-gauge-tick-label-fill: #333;
@@ -1357,11 +1360,11 @@ All Rights Reserved.
1357
1360
  /** series navigator */
1358
1361
  --rct-navigator-handle-color: #0098ff;
1359
1362
  --rct-navigator-handle-hover-color: #55c;
1360
- --rct-navigator-track-fill: lightgray;
1363
+ --rct-navigator-track-fill: #d3d3d3;
1361
1364
  --rct-navigator-thumb-fill:#0098ff;
1362
1365
  }
1363
1366
  .rct-root[data-theme='dark'] {
1364
- --rct-focus-stroke: yellow;
1367
+ --rct-focus-stroke: #ccc;
1365
1368
  --rct-text-fill: #fff;
1366
1369
 
1367
1370
  --rct-title-fill: #fff;
@@ -1471,13 +1474,13 @@ All Rights Reserved.
1471
1474
 
1472
1475
  /** label */
1473
1476
  .rct-label-dark {
1474
- fill: black;
1477
+ fill: #000;
1475
1478
  }
1476
1479
  .rct-label-light {
1477
- fill: white;
1480
+ fill: #fff;
1478
1481
  }
1479
1482
  .rct-label-background {
1480
- fill: lightgray;
1483
+ fill: #d3d3d3;
1481
1484
  }
1482
1485
 
1483
1486
  /** button */
@@ -1506,7 +1509,7 @@ All Rights Reserved.
1506
1509
  /** title */
1507
1510
  .rct-title {
1508
1511
  margin-bottom: 10px;
1509
- font-size: 24px;
1512
+ font-size: 22px;
1510
1513
  fill: var(--rct-title-fill);
1511
1514
  }
1512
1515
  .rct-title-background {
@@ -1514,7 +1517,7 @@ All Rights Reserved.
1514
1517
  }
1515
1518
  .rct-subtitle {
1516
1519
  margin-bottom: 10px;
1517
- font-size: 16px;
1520
+ font-size: 15px;
1518
1521
  fill: var(--rct-subtitle-fill);
1519
1522
  }
1520
1523
  .rct-subtitle-background {
@@ -1526,6 +1529,7 @@ All Rights Reserved.
1526
1529
  fill: var(--rct-legend-fill);
1527
1530
  stroke: none;
1528
1531
  padding: 3px 6px;
1532
+ font-size: 14px;
1529
1533
  }
1530
1534
  .rct-legend-background {
1531
1535
  fill: var(--rct-legend-background);
@@ -1534,7 +1538,7 @@ All Rights Reserved.
1534
1538
  }
1535
1539
  .rct-legend-item-label[data-hidden] {
1536
1540
  fill: var(--rct-legend-item-disabled);
1537
- text-decoration: var(--rct-legend-item-disabled-decoration)
1541
+ text-decoration: var(--rct-legend-item-disabled-decoration);
1538
1542
  }
1539
1543
  /* .rct-legend-item-marker {
1540
1544
  stroke: none;
@@ -1543,19 +1547,31 @@ All Rights Reserved.
1543
1547
  fill: #aaa !important;
1544
1548
  stroke: #aaa !important;
1545
1549
  }
1550
+ .rct-legend-item-marker[data-hidden] path[data-fill] {
1551
+ fill: #aaa !important;
1552
+ }
1546
1553
 
1547
- /** plot area */
1554
+ /** body */
1548
1555
  .rct-body-background {
1549
1556
  stroke: var(--rct-body-background-stroke);
1550
1557
  fill: none;
1558
+ shape-rendering: crispEdges;
1551
1559
  }
1552
1560
  .rct-body-background[data-polar] {
1553
1561
  stroke: none;
1554
1562
  }
1563
+ .rct-empty-view {
1564
+ fill: #fcfcff;
1565
+ stroke: #eee;
1566
+ }
1567
+ .rct-empty-view-label {
1568
+ fill: #777;
1569
+ font-size: 1.4em;
1570
+ }
1555
1571
 
1556
1572
  /** axis */
1557
1573
  .rct-axis-title {
1558
- font-size: 16px;
1574
+ font-size: 15px;
1559
1575
  fill: var(--rct-axis-title-fill);
1560
1576
  }
1561
1577
  .rct-axis-title-background {
@@ -1564,30 +1580,33 @@ All Rights Reserved.
1564
1580
  .rct-axis-line {
1565
1581
  stroke: var(--rct-axis-line-stroke);
1566
1582
  stroke-width: 1px;
1583
+ shape-rendering: crispEdges;
1567
1584
  }
1568
1585
  .rct-axis-baseline {
1569
1586
  stroke: var(--rct-axis-baseline-stroke);
1570
1587
  stroke-width: 1px;
1588
+ shape-rendering: crispEdges;
1571
1589
  }
1572
1590
  .rct-axis-tick {
1573
1591
  stroke: var(--rct-axis-tick-stroke);
1574
1592
  stroke-width: 1px;
1593
+ shape-rendering: crispEdges;
1575
1594
  }
1576
1595
  .rct-axis-labels {
1577
1596
  font-size: 14px;
1578
1597
  fill: var(--rct-axis-label-fill);
1579
1598
  }
1580
- /* .rct-axis-grid {
1581
- stroke: var(--rct-axis-grid-stroke);
1582
- stroke-width: 1px;
1583
- } */
1599
+ .rct-axis-grid {
1600
+ fill: none;
1601
+ }
1584
1602
  .rct-axis-grid-line {
1585
1603
  stroke: var(--rct-axis-grid-line-stroke);
1586
1604
  stroke-width: var(--rct-axis-grid-line-stroke-width);
1605
+ shape-rendering: crispEdges;
1587
1606
  }
1588
1607
  .rct-axis-break {
1589
1608
  stroke: #aaa;
1590
- fill: white;
1609
+ fill: #fff;
1591
1610
  fill-opacity: 0.9;
1592
1611
  }
1593
1612
  .rct-axis-guide-label {
@@ -1596,11 +1615,13 @@ All Rights Reserved.
1596
1615
  .rct-axis-guide-line {
1597
1616
  stroke: #555;
1598
1617
  stroke-width: 2px;
1618
+ shape-rendering: crispEdges;
1599
1619
  }
1600
1620
  .rct-axis-guide-range {
1601
1621
  stroke: none;
1602
1622
  fill: #0088ff;
1603
1623
  fill-opacity: 0.2;
1624
+ shape-rendering: crispEdges;
1604
1625
  }
1605
1626
  .rct-axis-scrollbar-track {
1606
1627
  fill: var(--rct-axis-scrollbar-track-fill);
@@ -1619,6 +1640,9 @@ All Rights Reserved.
1619
1640
  .rct-polar-xaxis-sector-line {
1620
1641
  stroke: #555;
1621
1642
  }
1643
+ .rct-polar-axis-grids {
1644
+ fill: none;
1645
+ }
1622
1646
  .rct-polar-xaxis-grid-line {
1623
1647
  stroke: var(--rct-polar-xaxis-grid-line-stroke)
1624
1648
  }
@@ -1683,7 +1707,7 @@ All Rights Reserved.
1683
1707
  }
1684
1708
 
1685
1709
  .rct-series-trendline {
1686
- stroke: red;
1710
+ stroke: #ff0000;
1687
1711
  stroke-width: 2px;
1688
1712
  stroke-linejoin: round;
1689
1713
  fill: none;
@@ -1782,21 +1806,34 @@ All Rights Reserved.
1782
1806
  transition-property: opacity;
1783
1807
  transition-duration: 0.7s;
1784
1808
  }
1785
- .rct-series[data-unfocus] {
1786
- opacity: 0.2;
1809
+ .rct-series[data-unhover] {
1810
+ opacity: 0.2 !important;
1787
1811
  }
1788
- .rct-series .rct-point[data-focus] {
1812
+ .rct-point[data-unhover] {
1813
+ opacity: 0.2 !important;
1814
+ }
1815
+ .rct-series .rct-point[data-focus], .rct-point[data-unfocus] {
1789
1816
  stroke: var(--rct-focus-stroke) !important;
1790
- stroke-width: var(--rct-focus-stroke-width);
1791
- filter: brightness(115%);
1817
+ stroke-width: var(--rct-focus-stroke-width) !important;
1818
+ filter: brightness(115%) !important;
1819
+ opacity: 1 !important;
1820
+ }
1821
+ /** data point hover */
1822
+ .rct-point-unhover {
1823
+ opacity: 0.3;
1824
+ transition: opacity 0.7s;
1825
+ }
1826
+ .rct-point-hover {
1827
+ opacity: inherit;
1828
+ transition: opacity 0.7s;
1792
1829
  }
1793
1830
  .rct-point-labels {
1794
1831
  opacity: inherit;
1795
1832
  transition-property: opacity;
1796
1833
  transition-duration: 0.7s;
1797
1834
  }
1798
- .rct-point-labels[data-unfocus] {
1799
- opacity: 0.3;
1835
+ .rct-point-labels[data-unhover] {
1836
+ opacity: 0.3 !important;
1800
1837
  }
1801
1838
 
1802
1839
  /** rct-point 대신 여기에 지정해야 outline에 반영된다. */
@@ -1811,7 +1848,8 @@ All Rights Reserved.
1811
1848
  opacity: 1;
1812
1849
  }
1813
1850
  .rct-point-label-lines {
1814
- stroke: #585;
1851
+ stroke-width: var(--rct-point-label-line-stroke-width);
1852
+ stroke: var(--rct-point-label-line-stroke);
1815
1853
  fill: none;
1816
1854
  }
1817
1855
 
@@ -1822,7 +1860,7 @@ All Rights Reserved.
1822
1860
 
1823
1861
  /** circlebar series */
1824
1862
  .rct-circlebar-series .rct-point {
1825
- stroke: white;
1863
+ stroke: #fff;
1826
1864
  }
1827
1865
 
1828
1866
  /** barrange series */
@@ -1837,14 +1875,6 @@ All Rights Reserved.
1837
1875
  .rct-line-series .rct-point {
1838
1876
  stroke-dasharray: none;
1839
1877
  }
1840
- .rct-line-series .rct-point[data-focus] {
1841
- stroke: #0088ff20 !important;
1842
- stroke-width: 9px !important;
1843
- opacity: inherit !important;
1844
- /** TODO: 아래가 적용되지 않고 있다 */
1845
- transition-property: opacity;
1846
- transition-duration: 0.7s;
1847
- }
1848
1878
  .rct-line-series-flag {
1849
1879
  font-weight: bold;
1850
1880
  font-size: 0.9em;
@@ -1882,6 +1912,9 @@ All Rights Reserved.
1882
1912
  .rct-scatter-series {
1883
1913
  fill-opacity: 0.7;
1884
1914
  }
1915
+ .rct-scatter-series .rct-point[data-focus] {
1916
+ fill-opacity: 0.9;
1917
+ }
1885
1918
 
1886
1919
  /** boxplot series */
1887
1920
  .rct-boxplot-series {
@@ -1904,7 +1937,7 @@ All Rights Reserved.
1904
1937
  stroke-dasharray: 2;
1905
1938
  }
1906
1939
  .rct-boxplot-series .rct-point[data-focus] .rct-boxplot-point-stem {
1907
- stroke: black;
1940
+ stroke: #000;
1908
1941
  stroke-dasharray: none;
1909
1942
  stroke-width: 2px;
1910
1943
  }
@@ -1973,6 +2006,9 @@ All Rights Reserved.
1973
2006
  .rct-lollipop-series {
1974
2007
  stroke-width: 3px;
1975
2008
  }
2009
+ .rct-lollipop-point-bar {
2010
+ shape-rendering: crispEdges;
2011
+ }
1976
2012
  .rct-lollipop-point-marker {
1977
2013
  stroke: none;
1978
2014
  }
@@ -1989,6 +2025,9 @@ All Rights Reserved.
1989
2025
  .rct-dumbbell-series {
1990
2026
  stroke-width: 3px;
1991
2027
  }
2028
+ .rct-dumbbell-point-bar {
2029
+ shape-rendering: crispEdges;
2030
+ }
1992
2031
  .rct-dumbbell-point-marker {
1993
2032
  stroke: none;
1994
2033
  }
@@ -2011,7 +2050,7 @@ All Rights Reserved.
2011
2050
 
2012
2051
  /** histogram */
2013
2052
  .rct-histogram-series .rct-point {
2014
- stroke: white;
2053
+ stroke: #fff;
2015
2054
  }
2016
2055
 
2017
2056
  /** vector series */
@@ -2029,12 +2068,12 @@ All Rights Reserved.
2029
2068
 
2030
2069
  /** treemap series */
2031
2070
  .rct-treemap-series .rct-point {
2032
- stroke: white;
2071
+ stroke: #fff;
2033
2072
  }
2034
2073
 
2035
2074
  /** pie series */
2036
2075
  .rct-pie-series .rct-point {
2037
- stroke: white;
2076
+ stroke: #fff;
2038
2077
  }
2039
2078
  .rct-pie-series-inner {
2040
2079
  font-size: 20px;
@@ -2043,10 +2082,10 @@ All Rights Reserved.
2043
2082
 
2044
2083
  /** funnel series */
2045
2084
  .rct-funnel-series .rct-point {
2046
- stroke: white;
2085
+ stroke: #fff;
2047
2086
  }
2048
2087
  .rct-funnel-series .rct-point[data-focus] {
2049
- stroke: black;
2088
+ stroke: #000;
2050
2089
  stroke-width: 2px;
2051
2090
  }
2052
2091
 
@@ -2082,7 +2121,7 @@ All Rights Reserved.
2082
2121
  font-size: 20px;
2083
2122
  }
2084
2123
  .rct-circle-gauge-pin {
2085
- fill: white;
2124
+ fill: #fff;
2086
2125
  stroke: #333;
2087
2126
  stroke-width: 3px;
2088
2127
  }
@@ -2114,7 +2153,7 @@ All Rights Reserved.
2114
2153
  font-size: 1em;
2115
2154
  }
2116
2155
  .rct-clock-gauge-pin {
2117
- fill: white;
2156
+ fill: #fff;
2118
2157
  stroke: #333;
2119
2158
  stroke-width: 3px;
2120
2159
  }
@@ -2203,10 +2242,10 @@ All Rights Reserved.
2203
2242
  opacity: 0.9;
2204
2243
  }
2205
2244
  .rct-tooltip-back {
2206
- fill: white;
2245
+ fill: #fff;
2207
2246
  }
2208
2247
  .rct-tooltip-tail {
2209
- fill: white;
2248
+ fill: #fff;
2210
2249
  }
2211
2250
  .rct-tooltip-text {
2212
2251
  fill: #333;
@@ -2229,6 +2268,7 @@ All Rights Reserved.
2229
2268
  fill: none;
2230
2269
  stroke-width: 1;
2231
2270
  stroke: #80808080;
2271
+ shape-rendering: crispEdges;
2232
2272
  }
2233
2273
  .rct-crosshair-bar {
2234
2274
  stroke: none;
@@ -2253,8 +2293,9 @@ All Rights Reserved.
2253
2293
  display: none;
2254
2294
  }
2255
2295
  .rct-navigator-back {
2256
- fill: white;
2296
+ fill: #fff;
2257
2297
  stroke: #f0f0f0;
2298
+ shape-rendering: crispEdges;
2258
2299
  }
2259
2300
  .rct-navigator-mask {
2260
2301
  fill: #4488cc20;
@@ -2268,7 +2309,6 @@ All Rights Reserved.
2268
2309
  fill: var(--rct-navigator-handle-hover-color);
2269
2310
  stroke: var(--rct-navigator-handle-hover-color);
2270
2311
  }
2271
-
2272
2312
  .rct-navigator-track {
2273
2313
  fill: var(--rct-navigator-track-fill);
2274
2314
  stroke: var(--rct-navigator-track-fill);
@@ -3931,7 +3971,7 @@ input[data-rrproperty]::-webkit-inner-spin-button {
3931
3971
  scrollbar-width: none;
3932
3972
  gap: 2px;
3933
3973
  }
3934
- .rrd-band-field-table-header > spa,
3974
+ .rrd-band-field-table-header > span,
3935
3975
  .rrd-simple-field-table-header > span {
3936
3976
  max-width: fit-content;
3937
3977
  white-space: nowrap;
@@ -4421,8 +4461,8 @@ input[data-rrproperty]::-webkit-inner-spin-button {
4421
4461
  .rrd-language-field-table tr:nth-child(2n) {
4422
4462
  background-color: var(--rrd-light-theme-primary-color-2);
4423
4463
  }
4424
- .rrd-language-field-table td,
4425
- th {
4464
+ .rrd-language-field-table th,
4465
+ .rrd-language-field-table td {
4426
4466
  border-right: 1px solid #c0c0c0;
4427
4467
  border-bottom: 1px solid #c0c0c0;
4428
4468
  padding: 0 4px;
@@ -5219,12 +5259,26 @@ th {
5219
5259
  .rr-property-body {
5220
5260
  background-color: var(--rrd-light-theme-primary-color-1);
5221
5261
  }
5262
+ .rr-property-category[data-model] {
5263
+ background-color: var(--rrd-light-theme-primary-color-4);
5264
+ }
5265
+
5222
5266
  .rr-property-category {
5223
5267
  background-color: var(--rrd-light-theme-primary-color-3);
5224
5268
  border-top: none;
5225
5269
  border-bottom: none;
5226
5270
  height: 18px;
5227
5271
  }
5272
+ .rr-property-collection-delete:hover {
5273
+ border: none;
5274
+ background-color: var(--rrd-light-theme-primary-color-6);
5275
+ }
5276
+ .rr-property-collection-right:hover {
5277
+ border: none;
5278
+ background-color: var(--rrd-light-theme-primary-color-6);
5279
+ }
5280
+
5281
+
5228
5282
  .rp-text-expander {
5229
5283
  background-color: transparent;
5230
5284
  font-size: 20px;
@@ -5468,9 +5522,12 @@ th {
5468
5522
  }
5469
5523
 
5470
5524
  /* edit layer 영역 */
5471
- .rr-edit-marquee-item:not([style*="left: 0"]):not([style*="top: 0"]) {
5525
+ .rr-edit-marquee-item:not([style*="left: 0"]):not([style*="top: 0"]):not(
5526
+ [data-target^="series"]
5527
+ ) {
5472
5528
  display: none;
5473
5529
  }
5530
+
5474
5531
  .rr-edit-marquee.rr-bandgroup-marquee
5475
5532
  > .rr-edit-marquee-item[style*="left: 0"]:not([style*="top: 0"]) {
5476
5533
  display: none;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "realreport-designer",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "description": "RealReport Designer component library",
5
5
  "author": "Wooritech",
6
6
  "homepage": "https://real-report.com",