adb-shared 6.2.5 → 6.2.6
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/fesm2022/adb-shared.mjs +35 -32
- package/fesm2022/adb-shared.mjs.map +1 -1
- package/package.json +2 -3
- package/types/adb-shared.d.ts +2 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adb-shared",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.6",
|
|
4
4
|
"author": "ADB",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
"@ngx-translate/core": ">= 17.x",
|
|
11
11
|
"@ngx-translate/http-loader": ">= 17.x",
|
|
12
12
|
"date-fns": ">= 4.x.x",
|
|
13
|
-
"leaflet": "1.9.4"
|
|
14
|
-
"leaflet-draw": "1.0.4"
|
|
13
|
+
"leaflet": "1.9.4"
|
|
15
14
|
},
|
|
16
15
|
"dependencies": {
|
|
17
16
|
"tslib": "^2.3.0"
|
package/types/adb-shared.d.ts
CHANGED
|
@@ -950,11 +950,8 @@ declare class PolygonDrawerInput implements ControlValueAccessor, OnInit, AfterV
|
|
|
950
950
|
private subscriptions;
|
|
951
951
|
mapId: string;
|
|
952
952
|
map: Leaflet.Map;
|
|
953
|
-
drawControl: any;
|
|
954
|
-
polygonDrawer: any;
|
|
955
953
|
polygonDraw: boolean;
|
|
956
|
-
shapeLayer:
|
|
957
|
-
drawLayer: any;
|
|
954
|
+
shapeLayer: Leaflet.GeoJSON | null;
|
|
958
955
|
geoJson: any;
|
|
959
956
|
ngAfterViewInit(): void;
|
|
960
957
|
ngOnInit(): void;
|
|
@@ -963,8 +960,8 @@ declare class PolygonDrawerInput implements ControlValueAccessor, OnInit, AfterV
|
|
|
963
960
|
private renderInitialShape;
|
|
964
961
|
private clearShape;
|
|
965
962
|
onDrawPolygon(): void;
|
|
966
|
-
onDeleteShape(): void;
|
|
967
963
|
onUndoStep(): void;
|
|
964
|
+
onDeleteShape(): void;
|
|
968
965
|
onChange: any;
|
|
969
966
|
onTouched: any;
|
|
970
967
|
writeValue(geoJson: any): void;
|