@progress/kendo-angular-diagrams 19.3.0-develop.7
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/LICENSE.md +11 -0
- package/NOTICE.txt +200 -0
- package/README.md +32 -0
- package/diagram.component.d.ts +375 -0
- package/diagram.module.d.ts +42 -0
- package/directives.d.ts +25 -0
- package/esm2022/diagram.component.mjs +655 -0
- package/esm2022/diagram.module.mjs +51 -0
- package/esm2022/directives.mjs +27 -0
- package/esm2022/index.mjs +8 -0
- package/esm2022/package-metadata.mjs +15 -0
- package/esm2022/progress-kendo-angular-diagrams.mjs +8 -0
- package/esm2022/utils.mjs +29 -0
- package/fesm2022/progress-kendo-angular-diagrams.mjs +766 -0
- package/index.d.ts +8 -0
- package/package-metadata.d.ts +9 -0
- package/package.json +60 -0
- package/schematics/collection.json +12 -0
- package/schematics/ngAdd/index.js +8 -0
- package/schematics/ngAdd/schema.json +24 -0
- package/utils.d.ts +13 -0
|
@@ -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
|
+
}
|
package/directives.d.ts
ADDED
|
@@ -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];
|