@evergis/react 2.0.144 → 2.0.145

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.
@@ -1,7 +1,9 @@
1
1
  import { H3Symbol } from "@evergis/sgis/es/symbols/H3Symbol";
2
+ import { ClusterSymbol } from "@evergis/sgis/es/symbols/ClusterSymbol";
2
3
  import { SGisImageSymbolType, SGisPointSymbolType, SGisPolygonSymbolType, SGisPolylineSymbolType, SGisSymbolType } from './types';
3
4
  export declare function isSGisPointSymbol(symbol: SGisSymbolType): symbol is SGisPointSymbolType;
4
5
  export declare function isSGisImageSymbol(symbol: SGisSymbolType): symbol is SGisImageSymbolType;
5
6
  export declare function isSGisPolygonSymbol(symbol: SGisSymbolType): symbol is SGisPolygonSymbolType;
6
7
  export declare function isSGisPolylineSymbol(symbol: SGisSymbolType): symbol is SGisPolylineSymbolType;
7
8
  export declare function isSGisH3Symbol(symbol: SGisSymbolType): symbol is H3Symbol;
9
+ export declare function isSGisClusterSymbol(symbol: SGisSymbolType): symbol is ClusterSymbol;
@@ -7,8 +7,9 @@ import { MaskedImage } from '@evergis/sgis/es/symbols/point/MaskedImage';
7
7
  import { ImageFill } from '@evergis/sgis/es/symbols/polygon/ImageFill';
8
8
  import { PointSymbol } from '@evergis/sgis/es/symbols/point/Point';
9
9
  import { H3Symbol } from "@evergis/sgis/es/symbols/H3Symbol";
10
+ import { ClusterSymbol } from "@evergis/sgis/es/symbols/ClusterSymbol";
10
11
  export declare type SGisPointSymbolType = PointSymbol | StaticImageSymbol | SquareSymbol | MaskedImage;
11
12
  export declare type SGisImageSymbolType = StaticImageSymbol | MaskedImage;
12
13
  export declare type SGisPolygonSymbolType = PolygonSymbol | BrushFill | ImageFill;
13
14
  export declare type SGisPolylineSymbolType = PolylineSymbol;
14
- export declare type SGisSymbolType = SGisPointSymbolType | SGisPolygonSymbolType | SGisPolylineSymbolType | H3Symbol;
15
+ export declare type SGisSymbolType = SGisPointSymbolType | SGisPolygonSymbolType | SGisPolylineSymbolType | H3Symbol | ClusterSymbol;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.144",
2
+ "version": "2.0.145",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -72,9 +72,9 @@
72
72
  "dependencies": {
73
73
  "@evergis/color": "^1.0.0-alpha.1",
74
74
  "@evergis/condition": "^1.2.65",
75
- "@evergis/icons": "^1.0.90",
75
+ "@evergis/icons": "^1.0.91",
76
76
  "punycode": "^2.1.1",
77
77
  "styled-components": "^5.3.5"
78
78
  },
79
- "gitHead": "90f3ede4c0cf2e480fb944dc5907cad4b5a53306"
79
+ "gitHead": "cbd6c1ef788f089e56244e5df1e950188bc5b1d9"
80
80
  }