@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.
Files changed (55) hide show
  1. package/Map.d.ts +200 -0
  2. package/Map.mjs +9 -9
  3. package/MapContext.d.ts +22 -0
  4. package/MapProps.d.ts +122 -0
  5. package/common/events.d.ts +22 -0
  6. package/common/map-types.d.ts +8 -0
  7. package/components/BubbleLayer.d.ts +26 -0
  8. package/components/BubbleLayerTooltip.d.ts +25 -0
  9. package/components/Layers.d.ts +25 -0
  10. package/components/MarkerLayer.d.ts +26 -0
  11. package/components/MarkerLayerTooltip.d.ts +25 -0
  12. package/components/ShapeLayer.d.ts +26 -0
  13. package/components/ShapeLayerTooltip.d.ts +25 -0
  14. package/components/TileLayer.d.ts +19 -0
  15. package/components/base/CollectionConfigurationComponent.d.ts +27 -0
  16. package/components/base/ConfigurationComponent.d.ts +33 -0
  17. package/components/index.d.ts +16 -0
  18. package/defaults.d.ts +8 -0
  19. package/dist/cdn/js/kendo-react-map.js +1 -1
  20. package/events/base-event.d.ts +21 -0
  21. package/events/before-reset-event.d.ts +19 -0
  22. package/events/dom-event.d.ts +29 -0
  23. package/events/map-click-event.d.ts +27 -0
  24. package/events/map-event-builder.d.ts +13 -0
  25. package/events/map-event-builder.js +1 -1
  26. package/events/map-event-builder.mjs +28 -28
  27. package/events/marker-activate-event.d.ts +27 -0
  28. package/events/marker-click-event.d.ts +27 -0
  29. package/events/marker-created-event.d.ts +29 -0
  30. package/events/pan-end-event.d.ts +31 -0
  31. package/events/pan-event.d.ts +31 -0
  32. package/events/preventable-event.d.ts +25 -0
  33. package/events/reset-event.d.ts +21 -0
  34. package/events/shape-click-event.d.ts +32 -0
  35. package/events/shape-created-event.d.ts +36 -0
  36. package/events/shape-feature-created-event.d.ts +36 -0
  37. package/events/shape-mouse-enter-event.d.ts +35 -0
  38. package/events/shape-mouse-leave-event.d.ts +35 -0
  39. package/events/zoom-end-event.d.ts +23 -0
  40. package/events/zoom-start-event.d.ts +25 -0
  41. package/index.d.mts +9 -1017
  42. package/index.d.ts +9 -1017
  43. package/package-metadata.d.ts +12 -0
  44. package/package-metadata.js +1 -1
  45. package/package-metadata.mjs +10 -16
  46. package/package.json +4 -4
  47. package/store/reducer.d.ts +17 -0
  48. package/store/store.d.ts +29 -0
  49. package/tooltip/BubbleTooltipContext.d.ts +29 -0
  50. package/tooltip/MapTooltip.d.ts +44 -0
  51. package/tooltip/MarkerTooltipContext.d.ts +29 -0
  52. package/tooltip/Popup.d.ts +37 -0
  53. package/tooltip/ShapeTooltipContext.d.ts +25 -0
  54. package/tooltip/index.d.ts +12 -0
  55. 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
+ }