@progress/kendo-react-map 13.3.0 → 13.4.0-develop.1
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/Map.d.ts +200 -0
- package/Map.mjs +9 -9
- package/MapContext.d.ts +22 -0
- package/MapProps.d.ts +122 -0
- package/common/events.d.ts +22 -0
- package/common/map-types.d.ts +8 -0
- package/components/BubbleLayer.d.ts +26 -0
- package/components/BubbleLayerTooltip.d.ts +25 -0
- package/components/Layers.d.ts +25 -0
- package/components/MarkerLayer.d.ts +26 -0
- package/components/MarkerLayerTooltip.d.ts +25 -0
- package/components/ShapeLayer.d.ts +26 -0
- package/components/ShapeLayerTooltip.d.ts +25 -0
- package/components/TileLayer.d.ts +19 -0
- package/components/base/CollectionConfigurationComponent.d.ts +27 -0
- package/components/base/ConfigurationComponent.d.ts +33 -0
- package/components/index.d.ts +16 -0
- package/defaults.d.ts +8 -0
- package/dist/cdn/js/kendo-react-map.js +1 -1
- package/events/base-event.d.ts +21 -0
- package/events/before-reset-event.d.ts +19 -0
- package/events/dom-event.d.ts +29 -0
- package/events/map-click-event.d.ts +27 -0
- package/events/map-event-builder.d.ts +13 -0
- package/events/map-event-builder.js +1 -1
- package/events/map-event-builder.mjs +28 -28
- package/events/marker-activate-event.d.ts +27 -0
- package/events/marker-click-event.d.ts +27 -0
- package/events/marker-created-event.d.ts +29 -0
- package/events/pan-end-event.d.ts +31 -0
- package/events/pan-event.d.ts +31 -0
- package/events/preventable-event.d.ts +25 -0
- package/events/reset-event.d.ts +21 -0
- package/events/shape-click-event.d.ts +32 -0
- package/events/shape-created-event.d.ts +36 -0
- package/events/shape-feature-created-event.d.ts +36 -0
- package/events/shape-mouse-enter-event.d.ts +35 -0
- package/events/shape-mouse-leave-event.d.ts +35 -0
- package/events/zoom-end-event.d.ts +23 -0
- package/events/zoom-start-event.d.ts +25 -0
- package/index.d.mts +9 -1017
- package/index.d.ts +9 -1017
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +10 -16
- package/package.json +4 -4
- package/store/reducer.d.ts +17 -0
- package/store/store.d.ts +29 -0
- package/tooltip/BubbleTooltipContext.d.ts +29 -0
- package/tooltip/MapTooltip.d.ts +44 -0
- package/tooltip/MarkerTooltipContext.d.ts +29 -0
- package/tooltip/Popup.d.ts +37 -0
- package/tooltip/ShapeTooltipContext.d.ts +25 -0
- package/tooltip/index.d.ts +12 -0
- package/utils/index.d.ts +16 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { MapLayer, MapShapeMouseLeaveEvent } from '@progress/kendo-charts';
|
|
9
|
+
import { Element } from '@progress/kendo-drawing';
|
|
10
|
+
import { Map } from '../Map.js';
|
|
11
|
+
import { BaseEvent } from './base-event.js';
|
|
12
|
+
/**
|
|
13
|
+
* Fires when the mouse leaves a shape.
|
|
14
|
+
*
|
|
15
|
+
* > This event fires reliably only for shapes that have set fill color.
|
|
16
|
+
* > The opacity can still be set to 0 so the shapes appear to have no fill.
|
|
17
|
+
*/
|
|
18
|
+
export declare class ShapeMouseLeaveEvent extends BaseEvent implements MapShapeMouseLeaveEvent {
|
|
19
|
+
/**
|
|
20
|
+
* The shape layer instance.
|
|
21
|
+
*/
|
|
22
|
+
layer: MapLayer;
|
|
23
|
+
/**
|
|
24
|
+
* The shape instance.
|
|
25
|
+
*/
|
|
26
|
+
shape: Element;
|
|
27
|
+
/**
|
|
28
|
+
* The source DOM event instance
|
|
29
|
+
*/
|
|
30
|
+
originalEvent: any;
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*/
|
|
34
|
+
constructor(e: MapShapeMouseLeaveEvent, target: Map);
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { MapZoomEndEvent } from '@progress/kendo-charts';
|
|
9
|
+
import { Map } from '../Map.js';
|
|
10
|
+
import { BaseEvent } from './base-event.js';
|
|
11
|
+
/**
|
|
12
|
+
* Fires when the map zoom level has changed.
|
|
13
|
+
*/
|
|
14
|
+
export declare class ZoomEndEvent extends BaseEvent implements MapZoomEndEvent {
|
|
15
|
+
/**
|
|
16
|
+
* The source DOM event instance
|
|
17
|
+
*/
|
|
18
|
+
originalEvent: any;
|
|
19
|
+
/**
|
|
20
|
+
* @hidden
|
|
21
|
+
*/
|
|
22
|
+
constructor(e: MapZoomEndEvent, target: Map);
|
|
23
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { MapZoomStartEvent } from '@progress/kendo-charts';
|
|
9
|
+
import { Map } from '../Map.js';
|
|
10
|
+
import { PreventableEvent } from './preventable-event.js';
|
|
11
|
+
/**
|
|
12
|
+
* Fires when the map zoom level is about to change.
|
|
13
|
+
*
|
|
14
|
+
* Cancelling the event prevents the user action.
|
|
15
|
+
*/
|
|
16
|
+
export declare class ZoomStartEvent extends PreventableEvent implements MapZoomStartEvent {
|
|
17
|
+
/**
|
|
18
|
+
* The source DOM event instance
|
|
19
|
+
*/
|
|
20
|
+
originalEvent: any;
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
*/
|
|
24
|
+
constructor(e: MapZoomStartEvent, target: Map);
|
|
25
|
+
}
|