@progress/kendo-charts 1.24.1-dev.202207261139 → 1.24.1-dev.202207271148
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/npm/map.d.ts +8 -18
- package/package.json +1 -1
package/dist/npm/map.d.ts
CHANGED
|
@@ -557,34 +557,24 @@ export interface MapLayer {
|
|
|
557
557
|
options: MapLayerOptions;
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
|
-
*
|
|
560
|
+
* The drawing surface for Shape layers.
|
|
561
561
|
*/
|
|
562
|
-
|
|
562
|
+
surface?: Surface;
|
|
563
563
|
|
|
564
564
|
/**
|
|
565
|
-
*
|
|
565
|
+
* The marker items for Marker layers.
|
|
566
566
|
*/
|
|
567
|
-
|
|
568
|
-
}
|
|
567
|
+
items?: MapMarker[];
|
|
569
568
|
|
|
570
|
-
/**
|
|
571
|
-
* An instance of a Map Shape layer
|
|
572
|
-
*/
|
|
573
|
-
export interface MapShapeLayer extends MapLayer {
|
|
574
569
|
/**
|
|
575
|
-
*
|
|
570
|
+
* Shows the layer, if not visible.
|
|
576
571
|
*/
|
|
577
|
-
|
|
578
|
-
}
|
|
572
|
+
show(): void;
|
|
579
573
|
|
|
580
|
-
/**
|
|
581
|
-
* An instance of a Map Marker layer
|
|
582
|
-
*/
|
|
583
|
-
export interface MapMarkerLayer extends MapLayer {
|
|
584
574
|
/**
|
|
585
|
-
*
|
|
575
|
+
* Hides the layer, if visible.
|
|
586
576
|
*/
|
|
587
|
-
|
|
577
|
+
hide(): void;
|
|
588
578
|
}
|
|
589
579
|
|
|
590
580
|
/**
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Kendo UI platform-independent Charts library",
|
|
4
4
|
"author": "Progress",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
|
-
"version": "1.24.1-dev.
|
|
6
|
+
"version": "1.24.1-dev.202207271148",
|
|
7
7
|
"main": "dist/npm/main.js",
|
|
8
8
|
"module": "dist/es/main.js",
|
|
9
9
|
"jsnext:main": "dist/es/main.js",
|