@evergis/react 2.0.177 → 2.0.178
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/react.cjs.development.js +20 -0
- 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 +20 -1
- package/dist/react.esm.js.map +1 -1
- package/dist/symbols/guards.d.ts +2 -0
- package/dist/symbols/mockFeatures.d.ts +2 -0
- package/package.json +5 -5
package/dist/symbols/guards.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { H3Symbol } from "@evergis/sgis/es/symbols/H3Symbol";
|
|
2
|
+
import { CombinedPolylineSymbol } from "@evergis/sgis/es/symbols/CombinedPolylineSymbol";
|
|
2
3
|
import { ClusterSymbol } from "@evergis/sgis/es/symbols/ClusterSymbol";
|
|
3
4
|
import { SGisImageSymbolType, SGisPointSymbolType, SGisPolygonSymbolType, SGisPolylineSymbolType, SGisSymbolType } from './types';
|
|
4
5
|
export declare function isSGisPointSymbol(symbol: SGisSymbolType): symbol is SGisPointSymbolType;
|
|
@@ -6,4 +7,5 @@ export declare function isSGisImageSymbol(symbol: SGisSymbolType): symbol is SGi
|
|
|
6
7
|
export declare function isSGisPolygonSymbol(symbol: SGisSymbolType): symbol is SGisPolygonSymbolType;
|
|
7
8
|
export declare function isSGisPolylineSymbol(symbol: SGisSymbolType): symbol is SGisPolylineSymbolType;
|
|
8
9
|
export declare function isSGisH3Symbol(symbol: SGisSymbolType): symbol is H3Symbol;
|
|
10
|
+
export declare function isSGisCombinedPolylineSymbol(symbol: SGisSymbolType): symbol is CombinedPolylineSymbol;
|
|
9
11
|
export declare function isSGisClusterSymbol(symbol: SGisSymbolType): symbol is ClusterSymbol;
|
|
@@ -20,12 +20,14 @@ export declare const MAP_LEGEND_FEATURES: {
|
|
|
20
20
|
export declare const LEGEND_FEATURES: {
|
|
21
21
|
point: PointFeature;
|
|
22
22
|
polyline: Polyline;
|
|
23
|
+
combinedPolyline: Polyline;
|
|
23
24
|
polygon: Polygon;
|
|
24
25
|
h3grid: H3Feature;
|
|
25
26
|
};
|
|
26
27
|
export declare const MOCK_FEATURES: {
|
|
27
28
|
readonly point: PointFeature;
|
|
28
29
|
readonly polyline: Polyline;
|
|
30
|
+
readonly combinedPolyline: Polyline;
|
|
29
31
|
readonly polygon: Polygon;
|
|
30
32
|
readonly h3grid: H3Feature;
|
|
31
33
|
};
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.0.
|
|
2
|
+
"version": "2.0.178",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@evergis/api": ">=1.0.0",
|
|
24
|
-
"@evergis/sgis": ">=0.5.0-alpha.
|
|
24
|
+
"@evergis/sgis": ">=0.5.0-alpha.45",
|
|
25
25
|
"react": ">=17",
|
|
26
26
|
"react-dom": ">=17"
|
|
27
27
|
},
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"@babel/core": "^7.17.5",
|
|
44
44
|
"@babel/plugin-transform-classes": "^7.16.7",
|
|
45
45
|
"@babel/preset-env": "^7.16.11",
|
|
46
|
-
"@evergis/api": "^3.0.
|
|
47
|
-
"@evergis/sgis": "0.5.0-alpha.
|
|
46
|
+
"@evergis/api": "^3.0.147",
|
|
47
|
+
"@evergis/sgis": "0.5.0-alpha.45",
|
|
48
48
|
"@storybook/addon-actions": "^6.4.18",
|
|
49
49
|
"@storybook/addon-controls": "^6.4.18",
|
|
50
50
|
"@storybook/addon-docs": "^6.4.18",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"punycode": "^2.1.1",
|
|
80
80
|
"styled-components": "^5.3.5"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "7e2c657d05682ee1a42d724d46fc1af31fcf1c6c"
|
|
83
83
|
}
|