@progress/kendo-charts 1.23.5 → 1.23.6-dev.202205051345
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 +4 -3
- package/package.json +1 -1
package/dist/npm/map.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export class Map {
|
|
|
14
14
|
viewSize(): any;
|
|
15
15
|
|
|
16
16
|
constructor(element: any, options: MapOptions, theme: any, context: any);
|
|
17
|
+
destroy(): void;
|
|
17
18
|
|
|
18
19
|
eventOffset(e: any): geometry.Point;
|
|
19
20
|
eventToLayer(e: any): geometry.Point;
|
|
@@ -295,7 +296,7 @@ export interface MapLayerOptions {
|
|
|
295
296
|
/**
|
|
296
297
|
* The attribution for the layer. Accepts HTML.
|
|
297
298
|
*/
|
|
298
|
-
attribution
|
|
299
|
+
attribution?: string;
|
|
299
300
|
|
|
300
301
|
/**
|
|
301
302
|
* Specifies the extent of the region covered by this layer.
|
|
@@ -328,7 +329,7 @@ export interface MapLayerOptions {
|
|
|
328
329
|
*
|
|
329
330
|
* Layers are normally stacked in declaration order (last one is on top).
|
|
330
331
|
*/
|
|
331
|
-
zIndex
|
|
332
|
+
zIndex?: number;
|
|
332
333
|
}
|
|
333
334
|
|
|
334
335
|
/**
|
|
@@ -504,7 +505,7 @@ export interface TileLayerOptions extends MapLayerOptions {
|
|
|
504
505
|
*
|
|
505
506
|
* Alternating between different subdomains allows more requests to be executed in parallel.
|
|
506
507
|
*/
|
|
507
|
-
subdomains
|
|
508
|
+
subdomains?: string[];
|
|
508
509
|
|
|
509
510
|
/**
|
|
510
511
|
* A function that returns an image URL for each tile position.
|
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.23.
|
|
6
|
+
"version": "1.23.6-dev.202205051345",
|
|
7
7
|
"main": "dist/npm/main.js",
|
|
8
8
|
"module": "dist/es/main.js",
|
|
9
9
|
"jsnext:main": "dist/es/main.js",
|