realmap 1.0.9 → 1.0.10
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 +1 -1
- package/feature.js +2 -2
- package/feature.mjs +2 -2
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/index.d.ts +842 -354
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +6 -6
- package/realmap-style.css +70 -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.10",
|
|
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,11 @@
|
|
|
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: none;
|
|
312
334
|
}
|
|
313
335
|
.rm-color-scale-split {
|
|
314
336
|
stroke: white;
|
|
@@ -328,8 +350,19 @@
|
|
|
328
350
|
fill: #555;
|
|
329
351
|
font-size: 0.9em;
|
|
330
352
|
}
|
|
353
|
+
.rm-color-scale-null {
|
|
354
|
+
font-size: 0.8em;
|
|
355
|
+
}
|
|
356
|
+
.rm-color-scale-null .rm-color-scale-box {
|
|
357
|
+
stroke: gray;
|
|
358
|
+
fill: white;
|
|
359
|
+
}
|
|
331
360
|
|
|
332
361
|
/** bubble scale */
|
|
362
|
+
.rm-bubble-scale-background {
|
|
363
|
+
fill: var(--rm-bubble-scale-background);
|
|
364
|
+
stroke: var(--rm-bubble-scale-background-stroke);
|
|
365
|
+
}
|
|
333
366
|
.rm-bubble-scale-bubble {
|
|
334
367
|
fill: none;
|
|
335
368
|
stroke: #777;
|
|
@@ -342,6 +375,12 @@
|
|
|
342
375
|
font-size: 14px;
|
|
343
376
|
}
|
|
344
377
|
|
|
378
|
+
/** map scale */
|
|
379
|
+
.rm-map-scale-background {
|
|
380
|
+
fill: var(--rm-map-scale-background);
|
|
381
|
+
stroke: var(--rm-map-scale-background-stroke);
|
|
382
|
+
}
|
|
383
|
+
|
|
345
384
|
/** tooltip */
|
|
346
385
|
.rm-tooltip {
|
|
347
386
|
font-size: 0.8em;
|
|
@@ -360,12 +399,18 @@
|
|
|
360
399
|
}
|
|
361
400
|
|
|
362
401
|
/** axis */
|
|
363
|
-
.rm-
|
|
402
|
+
.rm-axis-grid {
|
|
364
403
|
stroke: #ddd;
|
|
365
404
|
fill: none !important;
|
|
366
405
|
}
|
|
367
406
|
|
|
368
|
-
/** axis
|
|
407
|
+
/** axis tick */
|
|
408
|
+
.rm-axis-tick-labels {
|
|
409
|
+
font-size: 0.7em;
|
|
410
|
+
fill: #aaa;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
/** axis guide */
|
|
369
414
|
.rm-axis-guide-label {
|
|
370
415
|
font-size: 0.8em;
|
|
371
416
|
}
|
|
@@ -535,6 +580,11 @@
|
|
|
535
580
|
.rm-map-series .rm-point-label[data-selected] {
|
|
536
581
|
fill: var(--map-series-selected-label-fill) !important;
|
|
537
582
|
}
|
|
583
|
+
.rm-map-series-internal {
|
|
584
|
+
fill: none;
|
|
585
|
+
stroke: #555;
|
|
586
|
+
stroke-width: 2px;
|
|
587
|
+
}
|
|
538
588
|
.rm-map-series-inset {
|
|
539
589
|
stroke-linejoin: round;
|
|
540
590
|
stroke-linecap: round;
|
|
@@ -602,6 +652,9 @@
|
|
|
602
652
|
stroke: white;
|
|
603
653
|
stroke-width: 1.5px;
|
|
604
654
|
}
|
|
655
|
+
.rm-pie-series[data-threshold] {
|
|
656
|
+
fill: #333;
|
|
657
|
+
}
|
|
605
658
|
|
|
606
659
|
.rm-pie-series-sector[data-index="0"] {
|
|
607
660
|
fill: var(--color-1);
|
|
@@ -744,6 +797,17 @@
|
|
|
744
797
|
fill: #333;
|
|
745
798
|
}
|
|
746
799
|
|
|
800
|
+
/* html annotation */
|
|
801
|
+
.rm-html-annotation-view {
|
|
802
|
+
height: 100%;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
/* chart annotation */
|
|
806
|
+
.rm-chart-annotation-container {
|
|
807
|
+
width: 100%;
|
|
808
|
+
height: 100%;
|
|
809
|
+
}
|
|
810
|
+
|
|
747
811
|
/* loading indicator */
|
|
748
812
|
.rm-loading-background {
|
|
749
813
|
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}));
|