@progress/kendo-react-map 9.2.0-develop.7 → 9.2.0-develop.9
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/index.d.mts +8 -6
- package/index.d.ts +8 -6
- package/package-metadata.mjs +1 -1
- package/package.json +3 -3
package/index.d.mts
CHANGED
|
@@ -9,6 +9,7 @@ import { Align } from '@progress/kendo-react-popup';
|
|
|
9
9
|
import { BubbleLayerOptions } from '@progress/kendo-charts';
|
|
10
10
|
import { BubbleLayerSymbol } from '@progress/kendo-charts';
|
|
11
11
|
import { BubbleLayerSymbolArgs } from '@progress/kendo-charts';
|
|
12
|
+
import { default as default_2 } from 'prop-types';
|
|
12
13
|
import { Element as Element_2 } from '@progress/kendo-drawing';
|
|
13
14
|
import { Extent } from '@progress/kendo-charts';
|
|
14
15
|
import { geometry } from '@progress/kendo-drawing';
|
|
@@ -19,6 +20,8 @@ import { Location as Location_2 } from '@progress/kendo-charts';
|
|
|
19
20
|
import { Map as Map_3 } from '@progress/kendo-charts';
|
|
20
21
|
import { MapBeforeResetEvent } from '@progress/kendo-charts';
|
|
21
22
|
import { MapClickEvent as MapClickEvent_2 } from '@progress/kendo-charts';
|
|
23
|
+
import { MapContextType } from '../../MapContext';
|
|
24
|
+
import { MapContextType as MapContextType_3 } from '../MapContext';
|
|
22
25
|
import { MapControls } from '@progress/kendo-charts';
|
|
23
26
|
import { MapControlsPosition } from '@progress/kendo-charts';
|
|
24
27
|
import { MapLayer } from '@progress/kendo-charts';
|
|
@@ -40,7 +43,6 @@ import { MapZoomEndEvent } from '@progress/kendo-charts';
|
|
|
40
43
|
import { MapZoomStartEvent } from '@progress/kendo-charts';
|
|
41
44
|
import { MarkerLayerOptions } from '@progress/kendo-charts';
|
|
42
45
|
import { Offset } from '@progress/kendo-react-popup';
|
|
43
|
-
import PropTypes from 'prop-types';
|
|
44
46
|
import * as React_2 from 'react';
|
|
45
47
|
import { ShapeLayerOptions } from '@progress/kendo-charts';
|
|
46
48
|
import { TileLayerOptions } from '@progress/kendo-charts';
|
|
@@ -171,7 +173,7 @@ declare class Map_2 extends React_2.Component<MapProps, {}> {
|
|
|
171
173
|
* @hidden
|
|
172
174
|
*/
|
|
173
175
|
static propTypes: {
|
|
174
|
-
dir:
|
|
176
|
+
dir: default_2.Requireable<string>;
|
|
175
177
|
};
|
|
176
178
|
/**
|
|
177
179
|
* @hidden
|
|
@@ -191,7 +193,7 @@ declare class Map_2 extends React_2.Component<MapProps, {}> {
|
|
|
191
193
|
protected observersStore: any;
|
|
192
194
|
protected mapObserver: InstanceObserver;
|
|
193
195
|
protected childrenObserver: InstanceObserver;
|
|
194
|
-
protected contextValue:
|
|
196
|
+
protected contextValue: MapContextType_2;
|
|
195
197
|
constructor(props: MapProps);
|
|
196
198
|
private iconsType;
|
|
197
199
|
private svgIcons;
|
|
@@ -389,12 +391,12 @@ export declare class MapClickEvent extends BaseEvent implements MapClickEvent_2
|
|
|
389
391
|
/**
|
|
390
392
|
* @hidden
|
|
391
393
|
*/
|
|
392
|
-
declare const MapContext: React_2.Context<
|
|
394
|
+
declare const MapContext: React_2.Context<MapContextType_2 | null>;
|
|
393
395
|
|
|
394
396
|
/**
|
|
395
397
|
* @hidden
|
|
396
398
|
*/
|
|
397
|
-
declare interface
|
|
399
|
+
declare interface MapContextType_2 {
|
|
398
400
|
optionsStore: Store;
|
|
399
401
|
observersStore: Store;
|
|
400
402
|
childrenObserver: InstanceObserver;
|
|
@@ -575,7 +577,7 @@ export declare interface MapTileLayerProps extends TileLayerOptions {
|
|
|
575
577
|
* @hidden
|
|
576
578
|
*/
|
|
577
579
|
export declare class MapTooltip extends React_2.Component<{}, MapTooltipState> {
|
|
578
|
-
static contextType: React_2.Context<
|
|
580
|
+
static contextType: React_2.Context<MapContextType_3 | null>;
|
|
579
581
|
context: React_2.ContextType<typeof MapContext>;
|
|
580
582
|
readonly state: MapTooltipState;
|
|
581
583
|
mapObserver?: InstanceObserver;
|
package/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { Align } from '@progress/kendo-react-popup';
|
|
|
9
9
|
import { BubbleLayerOptions } from '@progress/kendo-charts';
|
|
10
10
|
import { BubbleLayerSymbol } from '@progress/kendo-charts';
|
|
11
11
|
import { BubbleLayerSymbolArgs } from '@progress/kendo-charts';
|
|
12
|
+
import { default as default_2 } from 'prop-types';
|
|
12
13
|
import { Element as Element_2 } from '@progress/kendo-drawing';
|
|
13
14
|
import { Extent } from '@progress/kendo-charts';
|
|
14
15
|
import { geometry } from '@progress/kendo-drawing';
|
|
@@ -19,6 +20,8 @@ import { Location as Location_2 } from '@progress/kendo-charts';
|
|
|
19
20
|
import { Map as Map_3 } from '@progress/kendo-charts';
|
|
20
21
|
import { MapBeforeResetEvent } from '@progress/kendo-charts';
|
|
21
22
|
import { MapClickEvent as MapClickEvent_2 } from '@progress/kendo-charts';
|
|
23
|
+
import { MapContextType } from '../../MapContext';
|
|
24
|
+
import { MapContextType as MapContextType_3 } from '../MapContext';
|
|
22
25
|
import { MapControls } from '@progress/kendo-charts';
|
|
23
26
|
import { MapControlsPosition } from '@progress/kendo-charts';
|
|
24
27
|
import { MapLayer } from '@progress/kendo-charts';
|
|
@@ -40,7 +43,6 @@ import { MapZoomEndEvent } from '@progress/kendo-charts';
|
|
|
40
43
|
import { MapZoomStartEvent } from '@progress/kendo-charts';
|
|
41
44
|
import { MarkerLayerOptions } from '@progress/kendo-charts';
|
|
42
45
|
import { Offset } from '@progress/kendo-react-popup';
|
|
43
|
-
import PropTypes from 'prop-types';
|
|
44
46
|
import * as React_2 from 'react';
|
|
45
47
|
import { ShapeLayerOptions } from '@progress/kendo-charts';
|
|
46
48
|
import { TileLayerOptions } from '@progress/kendo-charts';
|
|
@@ -171,7 +173,7 @@ declare class Map_2 extends React_2.Component<MapProps, {}> {
|
|
|
171
173
|
* @hidden
|
|
172
174
|
*/
|
|
173
175
|
static propTypes: {
|
|
174
|
-
dir:
|
|
176
|
+
dir: default_2.Requireable<string>;
|
|
175
177
|
};
|
|
176
178
|
/**
|
|
177
179
|
* @hidden
|
|
@@ -191,7 +193,7 @@ declare class Map_2 extends React_2.Component<MapProps, {}> {
|
|
|
191
193
|
protected observersStore: any;
|
|
192
194
|
protected mapObserver: InstanceObserver;
|
|
193
195
|
protected childrenObserver: InstanceObserver;
|
|
194
|
-
protected contextValue:
|
|
196
|
+
protected contextValue: MapContextType_2;
|
|
195
197
|
constructor(props: MapProps);
|
|
196
198
|
private iconsType;
|
|
197
199
|
private svgIcons;
|
|
@@ -389,12 +391,12 @@ export declare class MapClickEvent extends BaseEvent implements MapClickEvent_2
|
|
|
389
391
|
/**
|
|
390
392
|
* @hidden
|
|
391
393
|
*/
|
|
392
|
-
declare const MapContext: React_2.Context<
|
|
394
|
+
declare const MapContext: React_2.Context<MapContextType_2 | null>;
|
|
393
395
|
|
|
394
396
|
/**
|
|
395
397
|
* @hidden
|
|
396
398
|
*/
|
|
397
|
-
declare interface
|
|
399
|
+
declare interface MapContextType_2 {
|
|
398
400
|
optionsStore: Store;
|
|
399
401
|
observersStore: Store;
|
|
400
402
|
childrenObserver: InstanceObserver;
|
|
@@ -575,7 +577,7 @@ export declare interface MapTileLayerProps extends TileLayerOptions {
|
|
|
575
577
|
* @hidden
|
|
576
578
|
*/
|
|
577
579
|
export declare class MapTooltip extends React_2.Component<{}, MapTooltipState> {
|
|
578
|
-
static contextType: React_2.Context<
|
|
580
|
+
static contextType: React_2.Context<MapContextType_3 | null>;
|
|
579
581
|
context: React_2.ContextType<typeof MapContext>;
|
|
580
582
|
readonly state: MapTooltipState;
|
|
581
583
|
mapObserver?: InstanceObserver;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-map",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1737042777,
|
|
14
14
|
version: "",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-map",
|
|
3
|
-
"version": "9.2.0-develop.
|
|
3
|
+
"version": "9.2.0-develop.9",
|
|
4
4
|
"description": "KendoReact Map package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@progress/kendo-drawing": "^1.21.2",
|
|
26
26
|
"@progress/kendo-licensing": "^1.3.4",
|
|
27
|
-
"@progress/kendo-react-common": "9.2.0-develop.
|
|
28
|
-
"@progress/kendo-react-popup": "9.2.0-develop.
|
|
27
|
+
"@progress/kendo-react-common": "9.2.0-develop.9",
|
|
28
|
+
"@progress/kendo-react-popup": "9.2.0-develop.9",
|
|
29
29
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
30
30
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
31
31
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|