@evergis/react 3.1.107 → 3.1.108
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/Dashboard/types.d.ts +1 -2
- package/dist/components/Layer/constants.d.ts +5 -5
- package/dist/components/Map/types.d.ts +1 -1
- package/dist/contexts/MapContext/types.d.ts +2 -2
- package/dist/core/classification/findAttributeInExpression.d.ts +1 -1
- package/dist/core/classification/getActualExtrusionHeight.d.ts +2 -2
- package/dist/index.js +8 -12
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +8 -12
- package/dist/react.esm.js.map +1 -1
- package/dist/types/styling.d.ts +2 -2
- package/package.json +5 -4
package/dist/types/styling.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CircleLayerSpecification, FillExtrusionLayerSpecification, FillLayerSpecification, HeatmapLayerSpecification, LineLayerSpecification, SymbolLayerSpecification } from 'maplibre-gl';
|
|
2
2
|
export interface ClientStyleFillSettings {
|
|
3
3
|
showBottomSurface?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export interface ClientStyleSettings {
|
|
6
6
|
fill: ClientStyleFillSettings;
|
|
7
7
|
}
|
|
8
|
-
export type ClientStyleLayer =
|
|
8
|
+
export type ClientStyleLayer = CircleLayerSpecification | LineLayerSpecification | FillLayerSpecification | FillExtrusionLayerSpecification | SymbolLayerSpecification | HeatmapLayerSpecification;
|
|
9
9
|
export type ClientStyleItem = Omit<ClientStyleLayer, "id" | "source"> & {
|
|
10
10
|
/**
|
|
11
11
|
* Уникальный идентификатор слоя в рамках clientStyle.
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.1.
|
|
2
|
+
"version": "3.1.108",
|
|
3
3
|
"name": "@evergis/react",
|
|
4
4
|
"author": "Everpoint",
|
|
5
5
|
"license": "MIT",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"storybook": "^7.6.14"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@evergis/api": "^4.1.
|
|
58
|
-
"@evergis/charts": "^3.1.
|
|
57
|
+
"@evergis/api": "^4.1.40",
|
|
58
|
+
"@evergis/charts": "^3.1.39",
|
|
59
59
|
"@evergis/color": "^1.0.0-alpha.1",
|
|
60
60
|
"@evergis/uilib-gl": "^1.0.74",
|
|
61
61
|
"@mapbox/mapbox-gl-draw": "^1.5.0",
|
|
@@ -73,6 +73,7 @@
|
|
|
73
73
|
"lodash": "^4.17.21",
|
|
74
74
|
"mapbox-gl": "^3.12.0",
|
|
75
75
|
"mapbox-gl-draw": "^0.16.0",
|
|
76
|
+
"maplibre-gl": "^5.16.0",
|
|
76
77
|
"punycode": "^2.1.1",
|
|
77
78
|
"react-is": "^19.1.1",
|
|
78
79
|
"react-map-gl": "^8.0.4",
|
|
@@ -86,5 +87,5 @@
|
|
|
86
87
|
"uuid": "^13.0.0",
|
|
87
88
|
"wkt": "^0.1.1"
|
|
88
89
|
},
|
|
89
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "03ee9083a539e52b6af270c588c2c886de0bf724"
|
|
90
91
|
}
|