@evergis/react 4.0.122 → 4.0.124
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/dist/constants/styling.d.ts +6 -0
- package/dist/index.js +228 -209
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +223 -210
- package/dist/react.esm.js.map +1 -1
- package/package.json +4 -5
|
@@ -12,12 +12,18 @@ export declare const DEFAULT_LINE_WIDTH = 1;
|
|
|
12
12
|
export declare const DEFAULT_LINE_CAP = "butt";
|
|
13
13
|
export declare const DEFAULT_LINE_JOIN = "miter";
|
|
14
14
|
export declare const DEFAULT_SYMBOL_COLOR = "#000000";
|
|
15
|
+
export declare const DEFAULT_SYMBOL_HALO_COLOR = "#ffffff";
|
|
15
16
|
export declare const DEFAULT_SYMBOL_PLACEMENT = "point";
|
|
16
17
|
export declare const DEFAULT_SYMBOL_SPACING = 250;
|
|
17
18
|
export declare const DEFAULT_ICON_OVERLAP = "never";
|
|
18
19
|
export declare const DEFAULT_ICON_SIZE = 1;
|
|
20
|
+
export declare const DEFAULT_ICON_ANCHOR = "center";
|
|
19
21
|
export declare const DEFAULT_ICON_PADDING: number[];
|
|
20
22
|
export declare const DEFAULT_ICON_ROTATE = 0;
|
|
23
|
+
export declare const DEFAULT_TEXT_SIZE = 16;
|
|
24
|
+
export declare const DEFAULT_TEXT_ANCHOR = "center";
|
|
25
|
+
export declare const DEFAULT_TEXT_JUSTIFY = "center";
|
|
26
|
+
export declare const DEFAULT_TEXT_TRANSFORM = "none";
|
|
21
27
|
export declare const DEFAULT_HEATMAP_RADIUS = 30;
|
|
22
28
|
export declare const DEFAULT_HEATMAP_WEIGHT = 1;
|
|
23
29
|
export declare const DEFAULT_HEATMAP_INTENSITY = 1;
|