@progress/kendo-angular-diagrams 19.3.0-develop.10

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.
@@ -0,0 +1,42 @@
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 * as i0 from "@angular/core";
6
+ import * as i1 from "./diagram.component";
7
+ /**
8
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
9
+ * definition for the Diagram component.
10
+ *
11
+ * @example
12
+ *
13
+ * ```ts-no-run
14
+ * // Import the Diagram module
15
+ * import { DiagramModule } from '@progress/kendo-angular-diagrams';
16
+ *
17
+ * // The browser platform with a compiler
18
+ * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
19
+ *
20
+ * import { NgModule } from '@angular/core';
21
+ *
22
+ * // Import the app component
23
+ * import { AppComponent } from './app.component';
24
+ *
25
+ * // Define the app module
26
+ * _@NgModule({
27
+ * declarations: [AppComponent],
28
+ * imports: [BrowserModule, DiagramModule],
29
+ * bootstrap: [AppComponent]
30
+ * })
31
+ * export class AppModule {}
32
+ *
33
+ * // Compile and launch the module
34
+ * platformBrowserDynamic().bootstrapModule(AppModule);
35
+ *
36
+ * ```
37
+ */
38
+ export declare class DiagramModule {
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<DiagramModule, never>;
40
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DiagramModule, never, [typeof i1.DiagramComponent], [typeof i1.DiagramComponent]>;
41
+ static ɵinj: i0.ɵɵInjectorDeclaration<DiagramModule>;
42
+ }
@@ -0,0 +1,25 @@
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 { DiagramComponent } from "./diagram.component";
6
+ /**
7
+ * Represents the utility array that that contains all `Diagram`-related components and directives.
8
+ *
9
+ * Use `KENDO_DIAGRAM` to import all Diagram components and directives at once.
10
+ *
11
+ * @example
12
+ * ```typescript
13
+ * import { Component } from '@angular/core';
14
+ * import { KENDO_DIAGRAM } from '@progress/kendo-angular-diagrams';
15
+ *
16
+ * @Component({
17
+ * selector: 'my-diagram-app',
18
+ * standalone: true,
19
+ * imports: [KENDO_DIAGRAM],
20
+ * template: `...`
21
+ * })
22
+ * export class DiagramAppComponent {}
23
+ * ```
24
+ */
25
+ export declare const KENDO_DIAGRAM: readonly [typeof DiagramComponent];