@progress/kendo-angular-map 24.2.2-develop.9 → 25.0.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 (56) hide show
  1. package/fesm2022/progress-kendo-angular-map.mjs +78 -78
  2. package/index.d.ts +1506 -13
  3. package/package-metadata.mjs +2 -2
  4. package/package.json +11 -11
  5. package/schematics/ngAdd/index.js +1 -1
  6. package/common/collection-item.component.d.ts +0 -40
  7. package/common/collection.component.d.ts +0 -27
  8. package/common/collection.service.d.ts +0 -32
  9. package/common/configuration.service.d.ts +0 -32
  10. package/common/copy-changes.d.ts +0 -11
  11. package/common/has-parent.d.ts +0 -8
  12. package/common/map-instance-observer.d.ts +0 -12
  13. package/common/settings.component.d.ts +0 -37
  14. package/common/to-simple-changes.d.ts +0 -11
  15. package/directives.d.ts +0 -15
  16. package/events/base-event.d.ts +0 -21
  17. package/events/before-reset-event.d.ts +0 -17
  18. package/events/instance-event.service.d.ts +0 -11
  19. package/events/map-click-event.d.ts +0 -25
  20. package/events/marker-activate-event.d.ts +0 -25
  21. package/events/marker-click-event.d.ts +0 -25
  22. package/events/marker-created-event.d.ts +0 -27
  23. package/events/pan-end-event.d.ts +0 -29
  24. package/events/pan-event.d.ts +0 -29
  25. package/events/preventable-event.d.ts +0 -28
  26. package/events/reset-event.d.ts +0 -19
  27. package/events/shape-click-event.d.ts +0 -30
  28. package/events/shape-created-event.d.ts +0 -34
  29. package/events/shape-feature-created-event.d.ts +0 -34
  30. package/events/shape-mouse-enter-event.d.ts +0 -33
  31. package/events/shape-mouse-leave-event.d.ts +0 -33
  32. package/events/zoom-end-event.d.ts +0 -21
  33. package/events/zoom-start-event.d.ts +0 -22
  34. package/events.d.ts +0 -19
  35. package/map/bubble-layer.component.d.ts +0 -83
  36. package/map/layer/tooltip.component.d.ts +0 -21
  37. package/map/layer.component.d.ts +0 -53
  38. package/map/layers.component.d.ts +0 -40
  39. package/map/marker-layer.component.d.ts +0 -64
  40. package/map/shape-layer.component.d.ts +0 -52
  41. package/map/tile-layer.component.d.ts +0 -55
  42. package/map.component.d.ts +0 -372
  43. package/map.module.d.ts +0 -42
  44. package/package-metadata.d.ts +0 -9
  45. package/tooltip/base-tooltip.d.ts +0 -31
  46. package/tooltip/body-factory.d.ts +0 -9
  47. package/tooltip/bubble-tooltip-template.directive.d.ts +0 -44
  48. package/tooltip/bubble-tooltip.component.d.ts +0 -47
  49. package/tooltip/marker-tooltip-template.directive.d.ts +0 -43
  50. package/tooltip/marker-tooltip.component.d.ts +0 -47
  51. package/tooltip/popup-settings.interface.d.ts +0 -18
  52. package/tooltip/shape-tooltip-template.directive.d.ts +0 -43
  53. package/tooltip/shape-tooltip.component.d.ts +0 -47
  54. package/tooltip/tooltip-popup.component.d.ts +0 -34
  55. package/tooltip/tooltip-template.service.d.ts +0 -16
  56. package/tooltip.d.ts +0 -11
@@ -1,43 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef } from '@angular/core';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * A directive that sets a [template](link:site.data.urls.angular['templatesyntax'])
9
- * within the `<kendo-map-tooltip>` component for the Map
10
- * [Shape layer tooltip](https://www.telerik.com/kendo-angular-ui/components/map/layers/shape#tooltips).
11
- *
12
- * The available inputs for the shape tooltip template are:
13
- * * `dataItem: any`&mdash;The original data item used to create the shape.
14
- * * `layerIndex: number`&mdash;The index of the layer for the tooltip.
15
- * * `location: Location`&mdash;The location of the center of the shape.
16
- *
17
- * @example
18
- * ```typescript
19
- * @Component({
20
- * selector: 'my-app',
21
- * template: `
22
- * <kendo-map>
23
- * <kendo-map-layer type="shape" [data]="data">
24
- * <kendo-map-shape-layer-tooltip>
25
- * <ng-template kendoMapShapeTooltipTemplate let-dataItem="dataItem" let-layerIndex="layerIndex">
26
- * <div>Shape: {{ dataItem.properties.name }} (Layer {{ layerIndex }})</div>
27
- * </ng-template>
28
- * </kendo-map-shape-layer-tooltip>
29
- * </kendo-map-layer>
30
- * </kendo-map>
31
- * `
32
- * })
33
- * export class AppComponent {
34
- * public data = [ ... ]; // GeoJSON data for shapes
35
- * }
36
- * ```
37
- */
38
- export declare class ShapeTooltipTemplateDirective {
39
- templateRef: TemplateRef<any>;
40
- constructor(templateRef: TemplateRef<any>);
41
- static ɵfac: i0.ɵɵFactoryDeclaration<ShapeTooltipTemplateDirective, [{ optional: true; }]>;
42
- static ɵdir: i0.ɵɵDirectiveDeclaration<ShapeTooltipTemplateDirective, "[kendoMapShapeTooltipTemplate]", never, {}, {}, never, never, true, never>;
43
- }
@@ -1,47 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { AfterContentChecked } from '@angular/core';
6
- import { ConfigurationService } from '../common/configuration.service';
7
- import { SettingsComponent } from '../common/settings.component';
8
- import { LayerComponent } from '../map/layer.component';
9
- import { ShapeTooltipTemplateDirective } from './shape-tooltip-template.directive';
10
- import { TooltipTemplateService } from './tooltip-template.service';
11
- import * as i0 from "@angular/core";
12
- /**
13
- * Represents the Kendo UI ShapeTooltip component for Angular.
14
- *
15
- * Configures the [Shape Layer Tooltip](https://www.telerik.com/kendo-angular-ui/components/map/layers/shape#tooltips).
16
- *
17
- * @example
18
- * ```typescript
19
- * @Component({
20
- * selector: 'my-app',
21
- * template: `
22
- * <kendo-map>
23
- * <kendo-map-layer type="shape" [data]="shapeData">
24
- * <kendo-map-shape-layer-tooltip>
25
- * <ng-template kendoMapShapeTooltipTemplate let-dataItem="dataItem">
26
- * <div>{{ dataItem.properties.name }}</div>
27
- * </ng-template>
28
- * </kendo-map-shape-layer-tooltip>
29
- * </kendo-map-layer>
30
- * </kendo-map>
31
- * `
32
- * })
33
- * export class AppComponent {
34
- * public shapeData = [ ... ]; // GeoJSON data for shapes
35
- * }
36
- * ```
37
- */
38
- export declare class ShapeTooltipComponent extends SettingsComponent implements AfterContentChecked {
39
- configurationService: ConfigurationService;
40
- private templateService;
41
- private layer;
42
- shapeTooltipTemplate: ShapeTooltipTemplateDirective;
43
- constructor(configurationService: ConfigurationService, templateService: TooltipTemplateService, layer: LayerComponent);
44
- ngAfterContentChecked(): void;
45
- static ɵfac: i0.ɵɵFactoryDeclaration<ShapeTooltipComponent, never>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<ShapeTooltipComponent, "kendo-map-shape-layer-tooltip", never, {}, {}, ["shapeTooltipTemplate"], never, true, never>;
47
- }
@@ -1,34 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef, NgZone, EventEmitter } from '@angular/core';
6
- import { BaseTooltip } from './base-tooltip';
7
- import { TooltipTemplateService } from './tooltip-template.service';
8
- import { PopupService } from '@progress/kendo-angular-popup';
9
- import { LocalizationService } from '@progress/kendo-angular-l10n';
10
- import * as i0 from "@angular/core";
11
- /**
12
- * @hidden
13
- */
14
- export declare class TooltipPopupComponent extends BaseTooltip {
15
- protected popupService: PopupService;
16
- protected templateService: TooltipTemplateService;
17
- protected localizationService: LocalizationService;
18
- protected ngZone: NgZone;
19
- tooltipTemplateRef: TemplateRef<any>;
20
- tooltipContext: any;
21
- animate: boolean;
22
- classNames: any;
23
- wrapperClass: string;
24
- leave: EventEmitter<any>;
25
- popupClasses: any;
26
- private mouseleaveSubscription;
27
- constructor(popupService: PopupService, templateService: TooltipTemplateService, localizationService: LocalizationService, ngZone: NgZone);
28
- show(e: any): void;
29
- containsElement(element: any): boolean;
30
- protected onInit(): void;
31
- hide(): void;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<TooltipPopupComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<TooltipPopupComponent, "kendo-map-tooltip-popup", never, { "animate": { "alias": "animate"; "required": false; }; "classNames": { "alias": "classNames"; "required": false; }; "wrapperClass": { "alias": "wrapperClass"; "required": false; }; }, { "leave": "leave"; }, never, never, true, never>;
34
- }
@@ -1,16 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef } from '@angular/core';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * @hidden
9
- */
10
- export declare class TooltipTemplateService {
11
- private templates;
12
- registerTemplate(layerIndex: number, template: TemplateRef<any>): void;
13
- getTemplate(layerIndex: number): TemplateRef<any>;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<TooltipTemplateService, never>;
15
- static ɵprov: i0.ɵɵInjectableDeclaration<TooltipTemplateService>;
16
- }
package/tooltip.d.ts DELETED
@@ -1,11 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export { BubbleTooltipTemplateDirective } from './tooltip/bubble-tooltip-template.directive';
6
- export { MarkerTooltipTemplateDirective } from './tooltip/marker-tooltip-template.directive';
7
- export { ShapeTooltipTemplateDirective } from './tooltip/shape-tooltip-template.directive';
8
- export { TooltipPopupComponent } from './tooltip/tooltip-popup.component';
9
- export { BubbleTooltipComponent } from './tooltip/bubble-tooltip.component';
10
- export { MarkerTooltipComponent } from './tooltip/marker-tooltip.component';
11
- export { ShapeTooltipComponent } from './tooltip/shape-tooltip.component';