realmap 1.0.9 → 1.0.11
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/band.js +1 -1
- package/band.mjs +1 -1
- package/chart.d.ts +18 -19
- package/chart.js +2 -2
- package/chart.mjs +2 -2
- package/editing.d.ts +2 -0
- package/editing.js +7 -0
- package/editing.mjs +7 -0
- package/export.js +1 -1
- package/export.mjs +1 -1
- package/feature.d.ts +2 -2
- package/feature.js +2 -2
- package/feature.mjs +2 -2
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/index.d.ts +1124 -497
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +6 -6
- package/realmap-style.css +81 -6
- package/sankey.js +1 -1
- package/sankey.mjs +1 -1
- package/table.js +1 -1
- package/table.mjs +1 -1
- package/tiledweb.js +1 -1
- package/tiledweb.mjs +1 -1
- package/track.js +1 -1
- package/track.mjs +1 -1
- package/vector.js +1 -1
- package/vector.mjs +1 -1
- package/editor.d.ts +0 -6
- package/editor.js +0 -7
- package/editor.mjs +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "realmap",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "Wooritech map chart component library",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"module": "./index.mjs",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"import": "./chart.mjs",
|
|
45
45
|
"default": "./chart.mjs"
|
|
46
46
|
},
|
|
47
|
-
"./
|
|
48
|
-
"types": "./
|
|
49
|
-
"require": "./
|
|
50
|
-
"import": "./
|
|
51
|
-
"default": "./
|
|
47
|
+
"./editng": {
|
|
48
|
+
"types": "./editng.d.ts",
|
|
49
|
+
"require": "./editng.js",
|
|
50
|
+
"import": "./editng.mjs",
|
|
51
|
+
"default": "./editng.mjs"
|
|
52
52
|
},
|
|
53
53
|
"./export": {
|
|
54
54
|
"types": "./export.d.ts",
|
package/realmap-style.css
CHANGED
|
@@ -29,10 +29,18 @@
|
|
|
29
29
|
|
|
30
30
|
--rm-legend-background: none;
|
|
31
31
|
--rm-legend-background-stroke: none;
|
|
32
|
-
--rm-legend-background-stroke: none;
|
|
33
32
|
--rm-legend-fill: #333;
|
|
34
33
|
--rm-legend-item-disabled: #aaa;
|
|
35
34
|
--rm-legend-item-disabled-decoration: line-through;
|
|
35
|
+
|
|
36
|
+
--rm-color-scale-background: none;
|
|
37
|
+
--rm-color-scale-background-stroke: none;
|
|
38
|
+
|
|
39
|
+
--rm-bubble-scale-background: none;
|
|
40
|
+
--rm-bubble-scale-background-stroke: none;
|
|
41
|
+
|
|
42
|
+
--rm-map-scale-background: none;
|
|
43
|
+
--rm-map-scale-background-stroke: none;
|
|
36
44
|
|
|
37
45
|
--rm-point-label-font-size: 0.8em;
|
|
38
46
|
--rm-point-label-font-weight: bold;
|
|
@@ -278,6 +286,19 @@
|
|
|
278
286
|
fill: none;
|
|
279
287
|
}
|
|
280
288
|
|
|
289
|
+
/** map widget */
|
|
290
|
+
.rm-map-widget-title {
|
|
291
|
+
font-weight: bold;
|
|
292
|
+
}
|
|
293
|
+
.rm-map-widget-footer {
|
|
294
|
+
font-size: 0.85em;
|
|
295
|
+
fill: #555;
|
|
296
|
+
}
|
|
297
|
+
/** map widget group */
|
|
298
|
+
.rm-map-widget-group-background {
|
|
299
|
+
fill: none;
|
|
300
|
+
stroke: none;
|
|
301
|
+
}
|
|
281
302
|
/** legend */
|
|
282
303
|
.rm-legend {
|
|
283
304
|
fill: var(--rm-legend-fill);
|
|
@@ -305,10 +326,12 @@
|
|
|
305
326
|
|
|
306
327
|
/** color scale */
|
|
307
328
|
.rm-color-scale-background {
|
|
308
|
-
fill:
|
|
329
|
+
fill: var(--rm-color-scale-background);
|
|
330
|
+
stroke: var(--rm-color-scale-background-stroke);
|
|
309
331
|
}
|
|
310
|
-
.rm-color-scale-
|
|
311
|
-
stroke: #
|
|
332
|
+
.rm-color-scale-box {
|
|
333
|
+
stroke: #ddd;
|
|
334
|
+
stroke-width: 0.5px;
|
|
312
335
|
}
|
|
313
336
|
.rm-color-scale-split {
|
|
314
337
|
stroke: white;
|
|
@@ -328,8 +351,19 @@
|
|
|
328
351
|
fill: #555;
|
|
329
352
|
font-size: 0.9em;
|
|
330
353
|
}
|
|
354
|
+
.rm-color-scale-null {
|
|
355
|
+
font-size: 0.8em;
|
|
356
|
+
}
|
|
357
|
+
.rm-color-scale-null .rm-color-scale-box {
|
|
358
|
+
stroke: gray;
|
|
359
|
+
fill: white;
|
|
360
|
+
}
|
|
331
361
|
|
|
332
362
|
/** bubble scale */
|
|
363
|
+
.rm-bubble-scale-background {
|
|
364
|
+
fill: var(--rm-bubble-scale-background);
|
|
365
|
+
stroke: var(--rm-bubble-scale-background-stroke);
|
|
366
|
+
}
|
|
333
367
|
.rm-bubble-scale-bubble {
|
|
334
368
|
fill: none;
|
|
335
369
|
stroke: #777;
|
|
@@ -342,6 +376,12 @@
|
|
|
342
376
|
font-size: 14px;
|
|
343
377
|
}
|
|
344
378
|
|
|
379
|
+
/** map scale */
|
|
380
|
+
.rm-map-scale-background {
|
|
381
|
+
fill: var(--rm-map-scale-background);
|
|
382
|
+
stroke: var(--rm-map-scale-background-stroke);
|
|
383
|
+
}
|
|
384
|
+
|
|
345
385
|
/** tooltip */
|
|
346
386
|
.rm-tooltip {
|
|
347
387
|
font-size: 0.8em;
|
|
@@ -360,12 +400,18 @@
|
|
|
360
400
|
}
|
|
361
401
|
|
|
362
402
|
/** axis */
|
|
363
|
-
.rm-
|
|
403
|
+
.rm-axis-grid {
|
|
364
404
|
stroke: #ddd;
|
|
365
405
|
fill: none !important;
|
|
366
406
|
}
|
|
367
407
|
|
|
368
|
-
/** axis
|
|
408
|
+
/** axis tick */
|
|
409
|
+
.rm-axis-tick-labels {
|
|
410
|
+
font-size: 0.7em;
|
|
411
|
+
fill: #aaa;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
/** axis guide */
|
|
369
415
|
.rm-axis-guide-label {
|
|
370
416
|
font-size: 0.8em;
|
|
371
417
|
}
|
|
@@ -535,6 +581,21 @@
|
|
|
535
581
|
.rm-map-series .rm-point-label[data-selected] {
|
|
536
582
|
fill: var(--map-series-selected-label-fill) !important;
|
|
537
583
|
}
|
|
584
|
+
.rm-map-series-internal {
|
|
585
|
+
fill: none;
|
|
586
|
+
stroke: #555;
|
|
587
|
+
stroke-width: 2px;
|
|
588
|
+
}
|
|
589
|
+
.rm-map-series-external {
|
|
590
|
+
fill: none;
|
|
591
|
+
stroke: #58F;
|
|
592
|
+
stroke-width: 1px;
|
|
593
|
+
}
|
|
594
|
+
.rm-map-series-border {
|
|
595
|
+
fill: none;
|
|
596
|
+
stroke: #333;
|
|
597
|
+
stroke-width: 1px;
|
|
598
|
+
}
|
|
538
599
|
.rm-map-series-inset {
|
|
539
600
|
stroke-linejoin: round;
|
|
540
601
|
stroke-linecap: round;
|
|
@@ -602,6 +663,9 @@
|
|
|
602
663
|
stroke: white;
|
|
603
664
|
stroke-width: 1.5px;
|
|
604
665
|
}
|
|
666
|
+
.rm-pie-series[data-threshold] {
|
|
667
|
+
fill: #333;
|
|
668
|
+
}
|
|
605
669
|
|
|
606
670
|
.rm-pie-series-sector[data-index="0"] {
|
|
607
671
|
fill: var(--color-1);
|
|
@@ -744,6 +808,17 @@
|
|
|
744
808
|
fill: #333;
|
|
745
809
|
}
|
|
746
810
|
|
|
811
|
+
/* html annotation */
|
|
812
|
+
.rm-html-annotation-view {
|
|
813
|
+
height: 100%;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
/* chart annotation */
|
|
817
|
+
.rm-chart-annotation-container {
|
|
818
|
+
width: 100%;
|
|
819
|
+
height: 100%;
|
|
820
|
+
}
|
|
821
|
+
|
|
747
822
|
/* loading indicator */
|
|
748
823
|
.rm-loading-background {
|
|
749
824
|
fill: none;
|
package/sankey.js
CHANGED
package/sankey.mjs
CHANGED
package/table.js
CHANGED
package/table.mjs
CHANGED
package/tiledweb.js
CHANGED
package/tiledweb.mjs
CHANGED
package/track.js
CHANGED
package/track.mjs
CHANGED
package/vector.js
CHANGED
package/vector.mjs
CHANGED
package/editor.d.ts
DELETED
package/editor.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* RealMap Editor v1.0.9
|
|
4
|
-
* Copyright (C) 2023-2025 WooriTech Inc.
|
|
5
|
-
* All Rights Reserved.
|
|
6
|
-
*/
|
|
7
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("realmap")):"function"==typeof define&&define.amd?define(["exports","realmap"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).RealMapEditor={},e.RealMap)}(this,(function(e,t){"use strict";class o extends t.ChartControl{}e.MapEditor=o}));
|