eurostat-map 4.5.0 → 4.6.0
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/build/215.eurostatmap.min.js +1 -1
- package/build/eurostatmap.js +860 -305
- package/build/eurostatmap.min.js +2 -2
- package/build/eurostatmap.min.js.map +1 -1
- package/build/package.json +1 -1
- package/build/types/legend/proportional-symbol/ProportionalSymbolsLegendConfig.d.ts +6 -0
- package/package.json +1 -1
package/build/package.json
CHANGED
|
@@ -7,6 +7,9 @@ export interface ProportionalSymbolSizeLegendConfig {
|
|
|
7
7
|
/** Title for the size legend. */
|
|
8
8
|
title?: string | null
|
|
9
9
|
|
|
10
|
+
/** Subtitle displayed below the title. */
|
|
11
|
+
subtitle?: string | null
|
|
12
|
+
|
|
10
13
|
/** Padding between title and legend content in pixels. @default 15 */
|
|
11
14
|
titlePadding?: number
|
|
12
15
|
|
|
@@ -57,6 +60,9 @@ export interface ProportionalSymbolColorLegendConfig {
|
|
|
57
60
|
/** Title for the color legend. */
|
|
58
61
|
title?: string | null
|
|
59
62
|
|
|
63
|
+
/** Subtitle displayed below the title. */
|
|
64
|
+
subtitle?: string | null
|
|
65
|
+
|
|
60
66
|
/** Padding between title and legend content in pixels. @default 10 */
|
|
61
67
|
titlePadding?: number
|
|
62
68
|
|
package/package.json
CHANGED