realmap 1.1.0 → 1.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "realmap",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Wooritech map chart component library",
5
5
  "main": "./index.js",
6
6
  "module": "./index.mjs",
package/realmap-style.css CHANGED
@@ -48,6 +48,22 @@
48
48
  --rm-point-label-fill: #333;
49
49
 
50
50
  --rm-credits-fill: #777;
51
+
52
+ --rm-tooltip-bg: #313131;
53
+ --rm-tooltip-color: #fff;
54
+ --rm-tooltip-headermode-color: #000;
55
+ --rm-tooltip-headermode-bg: #fff;
56
+ --rm-tooltip-border-color: #313131;
57
+
58
+ --rm-null-area-fill: #f4f4f4;
59
+ --rm-null-area-stroke: #ccc;
60
+
61
+ --rm-map-series-hover-filter: brightness(1.05);
62
+ --rm-map-series-hover-stroke-width: 2px;
63
+ --rm-map-series-hover-label-fill: #000;
64
+
65
+ --rm-map-series-selected-stroke-width: 2.5px;
66
+ --rm-map-series-selected-filter: brightness(1.1);
51
67
  }
52
68
  .rm-root[data-theme='dark'] {
53
69
  --rm-focus-stroke: #ccc;
@@ -134,15 +150,6 @@
134
150
  .rm-root {
135
151
  padding: 20px;
136
152
  }
137
- :root, .rm-root {
138
- --map-series-hover-label-fill: black;
139
- --map-series-hover-filter: brightness(1.05);
140
- --map-series-hover-stroke-width: 2px;
141
- --map-series-selected-label-fill: white;
142
-
143
- --map-series-selected-stroke-width: 2.5px;
144
- --map-series-selected-filter: brightness(1.1);
145
- }
146
153
 
147
154
  /** palette */
148
155
  :root, .rm-root {
@@ -401,16 +408,21 @@
401
408
  .rm-tooltip {
402
409
  font-size: 0.8em;
403
410
  pointer-events: none;
404
- opacity: 0.9;
411
+ opacity: 1;
405
412
  }
406
413
  .rm-tooltip-back {
407
- fill: white;
414
+ fill: var(--rm-tooltip-bg);
415
+ }
416
+ .rm-tooltip-border {
417
+ fill: transparent;
418
+ stroke-width: 1px;
419
+ stroke: var(--rm-tooltip-border-color);
408
420
  }
409
421
  .rm-tooltip-tail {
410
- fill: white;
422
+ fill: var(--rm-tooltip-bg);
411
423
  }
412
424
  .rm-tooltip-text {
413
- fill: #333;
425
+ fill: white;
414
426
  stroke: none;
415
427
  }
416
428
 
@@ -512,7 +524,20 @@
512
524
  stroke: var(--color-12);
513
525
  }
514
526
 
515
- /** series */
527
+ /** data point cluster */
528
+ .rm-point-clusters[data-disabled] {
529
+ cursor: default;
530
+ }
531
+ .rm-point-cluster {
532
+ stroke: none;
533
+ cursor: pointer;
534
+ }
535
+ .rm-point-cluster-label {
536
+ font-size: 11px;
537
+ fill: white;
538
+ }
539
+
540
+ /** callout */
516
541
  .rm-callout-line {
517
542
  stroke: #555;
518
543
  stroke-width: 1.5px;
@@ -571,8 +596,8 @@
571
596
  /* stroke: #ccc; */
572
597
  }
573
598
  .rm-map-series .rm-point[data-null] {
574
- fill: #f4f4f4;
575
- stroke: #ccc;
599
+ fill: var(--rm-null-area-fill);
600
+ stroke: var(--rm-null-area-stroke);
576
601
  stroke-width: 1px;
577
602
  }
578
603
  .rm-map-series .rm-point[data-dummy] {
@@ -603,6 +628,16 @@
603
628
  stroke: #aaa;
604
629
  fill: none;
605
630
  }
631
+ .rm-map-series .rm-point[data-virtual] {
632
+ fill: none;
633
+ fill-opacity: 0;
634
+ }
635
+
636
+ /** feature series */
637
+ .rm-feature-series .rm-point {
638
+ fill-opacity: 0.5;
639
+ stroke-width: 2px;
640
+ }
606
641
 
607
642
  /** route series */
608
643
  .rm-route-series {
@@ -746,6 +781,11 @@
746
781
  padding: 2px 4px;
747
782
  }
748
783
 
784
+ /** heatmap series */
785
+ .rm-heatmap-series .rm-series-points {
786
+ opacity: 0.7;
787
+ }
788
+
749
789
  /** circle gauge */
750
790
  .rm-circle-gauge-face {
751
791
  fill: #0000ff10;
@@ -858,8 +898,3 @@
858
898
  stroke: red;
859
899
  fill: red;
860
900
  }
861
-
862
- .rm-map-series .rm-point[data-virtual] {
863
- fill: none;
864
- fill-opacity: 0;
865
- }
package/region.d.ts CHANGED
@@ -9,8 +9,8 @@ declare class RegionSeriesPoint extends MarkerSeriesPoint {
9
9
  }
10
10
  /**
11
11
  * Region 시리즈 모델.<br/>
12
- * {@page op.SeriesOptions#type}은 {@page config.series.region 'region'}이고,
13
- * {@page options 설정} 모델은 {@page op.RegionSeriesOptions}이다.
12
+ * {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/region region}이고,
13
+ * {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/RegionSeriesOptions RegionSeriesOptions}이다.
14
14
  *
15
15
  * @modules region
16
16
  */
package/region.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Region v1.1.0
3
+ * RealMap Region v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/region.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Region v1.1.0
3
+ * RealMap Region v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/sankey.d.ts CHANGED
@@ -9,8 +9,8 @@ declare class SankeySeriesPoint extends MarkerSeriesPoint {
9
9
  }
10
10
  /**
11
11
  * Sankey 시리즈 모델.<br/>
12
- * {@page op.SeriesOptions#type}은 {@page config.series.sankey 'sankey'}이고,
13
- * {@page options 설정} 모델은 {@page op.SankeySeriesOptions}이다.
12
+ * {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/sankey sankey}이고,
13
+ * {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/SankeySeriesOptions SankeySeriesOptions}이다.
14
14
  *
15
15
  * @modules sankey
16
16
  */
package/sankey.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Sankey v1.1.0
3
+ * RealMap Sankey v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/sankey.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Sankey v1.1.0
3
+ * RealMap Sankey v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/table.d.ts CHANGED
@@ -9,8 +9,8 @@ declare class TableSeriesPoint extends MarkerSeriesPoint {
9
9
  }
10
10
  /**
11
11
  * Table 시리즈 모델.<br/>
12
- * {@page op.SeriesOptions#type}은 {@page config.series.table 'table'}이고,
13
- * {@page options 설정} 모델은 {@page op.TableSeriesOptions}이다.
12
+ * {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/table table}이고,
13
+ * {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/TableSeriesOptions TableSeriesOptions}이다.
14
14
  *
15
15
  * @modules table
16
16
  */
package/table.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Table v1.1.0
3
+ * RealMap Table v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/table.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Table v1.1.0
3
+ * RealMap Table v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/tiledweb.d.ts CHANGED
@@ -8,8 +8,8 @@ declare class TiledWebSeriesPoint extends DataPoint {
8
8
  * @ignore
9
9
  *
10
10
  * TiledWeb 시리즈 모델.<br/>
11
- * {@page op.SeriesOptions#type}은 {@page config.series.tiledweb 'tiledweb'}이고,
12
- * {@page options 설정} 모델은 {@page op.TiledWebSeriesOptions}이다.
11
+ * {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/tiledweb tiledweb}이고,
12
+ * {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/TiledWebSeriesOptions TiledWebSeriesOptions}이다.
13
13
  */
14
14
  declare class TiledWebSeries extends Series<TiledWebSeriesOptions> {
15
15
  static type: string;
package/tiledweb.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Tiledweb v1.1.0
3
+ * RealMap Tiledweb v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/tiledweb.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Tiledweb v1.1.0
3
+ * RealMap Tiledweb v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/track.d.ts CHANGED
@@ -14,8 +14,8 @@ declare class TrackSeriesOutline extends ChartItem {
14
14
  }
15
15
  /**
16
16
  * Track 시리즈 모델.<br/>
17
- * {@page op.SeriesOptions#type}은 {@page config.series.track 'track'}이고,
18
- * {@page options 설정} 모델은 {@page op.TrackSeriesOptions}이다.
17
+ * {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/track track}이고,
18
+ * {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/TrackSeriesOptions TrackSeriesOptions}이다.
19
19
  *
20
20
  * @modules track
21
21
  */
package/track.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Track v1.1.0
3
+ * RealMap Track v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/track.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Track v1.1.0
3
+ * RealMap Track v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/vector.d.ts CHANGED
@@ -12,8 +12,8 @@ declare class VectorSeriesPoint extends MarkerSeriesPoint {
12
12
  }
13
13
  /**
14
14
  * Vector 시리즈 모델.<br/>
15
- * {@page op.SeriesOptions#type}은 {@page config.series.point 'vector'}이고,
16
- * {@page options 설정} 모델은 {@page op.VectorSeriesOptions}이다.
15
+ * {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/point vector}이고,
16
+ * {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/VectorSeriesOptions VectorSeriesOptions}이다.
17
17
  */
18
18
  declare class VectorSeries extends MarkerSeries<VectorSeriesOptions> {
19
19
  static type: string;
package/vector.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Vector v1.1.0
3
+ * RealMap Vector v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/vector.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealMap Vector v1.1.0
3
+ * RealMap Vector v1.1.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */