@evergis/react 2.0.200 → 2.0.202
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/components/Legend/types.d.ts +1 -1
- package/dist/react.cjs.development.js +3 -1
- package/dist/react.cjs.development.js.map +1 -1
- package/dist/react.cjs.production.min.js +1 -1
- package/dist/react.cjs.production.min.js.map +1 -1
- package/dist/react.esm.js +3 -1
- package/dist/react.esm.js.map +1 -1
- package/package.json +5 -5
package/dist/react.esm.js
CHANGED
|
@@ -3148,7 +3148,7 @@ const DEFAULT_CLUSTER_SVG = "\n<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox
|
|
|
3148
3148
|
const SYMBOL_CLASSIFICATION = {
|
|
3149
3149
|
[GeometryType.Polygon]: ['fill.color', 'stroke.color', 'stroke.width'],
|
|
3150
3150
|
[GeometryType.Polyline]: ['stroke.color', 'stroke.width'],
|
|
3151
|
-
[GeometryType.Point]: ['angle', 'size', 'fill.color', 'fillColor', 'background.fillColor', 'background.strokeColor', 'background.strokeWidth', 'figure.fillColor', 'figure.strokeColor', 'figure.strokeWidth', 'singleObjectSymbol.figure.fillColor', 'singleObjectSymbol.background.fillColor']
|
|
3151
|
+
[GeometryType.Point]: ['angle', 'size', 'fill.color', 'fillColor', 'background.fillColor', 'background.strokeColor', 'background.strokeWidth', 'figure.fillColor', 'figure.strokeColor', 'figure.strokeWidth', 'singleObjectSymbol.size', 'singleObjectSymbol.figure.fillColor', 'singleObjectSymbol.figure.strokeColor', 'singleObjectSymbol.figure.strokeWidth', 'singleObjectSymbol.background.fillColor', 'singleObjectSymbol.background.strokeColor', 'singleObjectSymbol.background.strokeWidth']
|
|
3152
3152
|
};
|
|
3153
3153
|
const SYMBOL_LIMITS = {
|
|
3154
3154
|
SIZE_MIN: 1,
|
|
@@ -4387,6 +4387,8 @@ function deserializeSvgPointSymbolParams(_ref) {
|
|
|
4387
4387
|
})
|
|
4388
4388
|
} : {}, figure ? {
|
|
4389
4389
|
figure: _extends({}, figure, {
|
|
4390
|
+
strokeColor: deserializeColor(getParameterValue(figure == null ? void 0 : figure.strokeColor)),
|
|
4391
|
+
strokeWidth: getParameterValue(figure == null ? void 0 : figure.strokeWidth),
|
|
4390
4392
|
fillColor: deserializeColor(getParameterValue(figure == null ? void 0 : figure.fillColor))
|
|
4391
4393
|
})
|
|
4392
4394
|
} : {});
|