@progress/kendo-angular-diagrams 21.0.0-develop.9 → 21.0.1-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.
@@ -3,6 +3,8 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { DiagramComponent } from "./diagram.component";
6
+ import { ConnectionTooltipTemplateDirective } from "./connection-tooltip-template.directive";
7
+ import { ShapeTooltipTemplateDirective } from "./shape-tooltip-template.directive";
6
8
  /**
7
9
  * Represents the utility array that that contains all `Diagram`-related components and directives.
8
10
  *
@@ -23,5 +25,7 @@ import { DiagramComponent } from "./diagram.component";
23
25
  * ```
24
26
  */
25
27
  export const KENDO_DIAGRAM = [
26
- DiagramComponent
28
+ DiagramComponent,
29
+ ShapeTooltipTemplateDirective,
30
+ ConnectionTooltipTemplateDirective
27
31
  ];
package/esm2022/index.mjs CHANGED
@@ -2,7 +2,10 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- export { Shape, Connection, Connector, Diagram, Point, Rect, Circle, Group, FlowchartShapeType, ArrowMarker, CircleMarker, Collate, DataInputOutput, DataStorage, Database, Decision, Delay, DirectAccessStorage, Display, Document, MultipleDocuments, Extract, Image, InternalStorage, Layout, Line, LogicalOr, ManualInputOutput, ManualOperation, Merge, MultiLineTextBlock, OffPageConnector, OnPageConnector, Path, Polyline, PredefinedProcess, Preparation, Process, Rectangle, Sort, SummingJunction, Terminator, TextBlock, MarkerType, } from '@progress/kendo-diagram-common';
5
+ export { Shape, Connection, Connector, Point, Rect, Circle, Group, FlowchartShapeType, ArrowMarker, CircleMarker, Collate, DataInputOutput, DataStorage, Database, Decision, Delay, DirectAccessStorage, Display, Document, MultipleDocuments, Extract, Image, InternalStorage, Layout, Line, LogicalOr, ManualInputOutput, ManualOperation, Merge, MultiLineTextBlock, OffPageConnector, OnPageConnector, Path, Polyline, PredefinedProcess, Preparation, Process, Rectangle, Sort, SummingJunction, Terminator, TextBlock, MarkerType, convertToDiagramModel } from '@progress/kendo-diagram-common';
6
6
  export { DiagramModule } from './diagram.module';
7
7
  export { DiagramComponent } from './diagram.component';
8
+ export { ShapeTooltipTemplateDirective } from './shape-tooltip-template.directive';
9
+ export { ConnectionTooltipTemplateDirective } from './connection-tooltip-template.directive';
8
10
  export * from './directives';
11
+ export * from './models';
@@ -0,0 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ ;
6
+ ;
7
+ export {};
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1761910591,
14
- version: '21.0.0-develop.9',
13
+ publishDate: 1762953642,
14
+ version: '21.0.1-develop.1',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
16
16
  };
@@ -0,0 +1,47 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Directive, TemplateRef } from '@angular/core';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Defines a custom template for shape tooltips within the `kendo-diagram` component.
9
+ * Use this directive to customize how tooltips appear when hovering over shapes.
10
+ *
11
+ * @example
12
+ * ```ts
13
+ * import { Component } from '@angular/core';
14
+ *
15
+ * _@Component({
16
+ * selector: 'my-app',
17
+ * template: `
18
+ * <kendo-diagram>
19
+ * <ng-template kendoDiagramShapeTooltipTemplate let-dataItem>
20
+ * {{dataItem.tooltipContent}}
21
+ * </ng-template>
22
+ * </kendo-diagram>
23
+ * `
24
+ * })
25
+ * class AppComponent {
26
+ * }
27
+ *
28
+ * ```
29
+ */
30
+ export class ShapeTooltipTemplateDirective {
31
+ /**
32
+ * @hidden
33
+ */
34
+ templateRef;
35
+ constructor(templateRef) {
36
+ this.templateRef = templateRef;
37
+ }
38
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ShapeTooltipTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
39
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ShapeTooltipTemplateDirective, isStandalone: true, selector: "[kendoDiagramShapeTooltipTemplate]", ngImport: i0 });
40
+ }
41
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ShapeTooltipTemplateDirective, decorators: [{
42
+ type: Directive,
43
+ args: [{
44
+ selector: '[kendoDiagramShapeTooltipTemplate]',
45
+ standalone: true,
46
+ }]
47
+ }], ctorParameters: () => [{ type: i0.TemplateRef }] });