@syncfusion/ej2-angular-diagrams 20.2.39-ngcc → 20.2.39

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 (203) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/diagram/connector-annotation.directive.mjs +59 -0
  3. package/esm2020/src/diagram/connector-fixeduserhandle.directive.mjs +59 -0
  4. package/esm2020/src/diagram/connectors.directive.mjs +60 -0
  5. package/esm2020/src/diagram/customcursor.directive.mjs +54 -0
  6. package/esm2020/src/diagram/diagram-all.module.mjs +77 -0
  7. package/esm2020/src/diagram/diagram.component.mjs +217 -0
  8. package/esm2020/src/diagram/diagram.module.mjs +106 -0
  9. package/esm2020/src/diagram/layers.directive.mjs +54 -0
  10. package/esm2020/src/diagram/node-annotation.directive.mjs +59 -0
  11. package/esm2020/src/diagram/node-fixeduserhandle.directive.mjs +59 -0
  12. package/esm2020/src/diagram/nodes.directive.mjs +62 -0
  13. package/esm2020/src/diagram/ports.directive.mjs +59 -0
  14. package/esm2020/src/index.mjs +21 -0
  15. package/esm2020/src/overview/overview-all.module.mjs +23 -0
  16. package/esm2020/src/overview/overview.component.mjs +60 -0
  17. package/esm2020/src/overview/overview.module.mjs +25 -0
  18. package/esm2020/src/symbol-palette/palettes.directive.mjs +52 -0
  19. package/esm2020/src/symbol-palette/symbolpalette-all.module.mjs +23 -0
  20. package/esm2020/src/symbol-palette/symbolpalette.component.mjs +71 -0
  21. package/esm2020/src/symbol-palette/symbolpalette.module.mjs +34 -0
  22. package/esm2020/syncfusion-ej2-angular-diagrams.mjs +5 -0
  23. package/fesm2015/syncfusion-ej2-angular-diagrams.mjs +1135 -0
  24. package/fesm2015/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
  25. package/fesm2020/syncfusion-ej2-angular-diagrams.mjs +1135 -0
  26. package/fesm2020/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
  27. package/package.json +27 -13
  28. package/schematics/utils/lib-details.ts +2 -2
  29. package/src/diagram/connector-annotation.directive.d.ts +5 -0
  30. package/src/diagram/connector-fixeduserhandle.directive.d.ts +5 -0
  31. package/src/diagram/connectors.directive.d.ts +6 -16
  32. package/src/diagram/customcursor.directive.d.ts +5 -0
  33. package/src/diagram/diagram-all.module.d.ts +6 -0
  34. package/src/diagram/diagram.component.d.ts +3 -0
  35. package/src/diagram/diagram.module.d.ts +15 -0
  36. package/src/diagram/layers.directive.d.ts +5 -0
  37. package/src/diagram/node-annotation.directive.d.ts +5 -0
  38. package/src/diagram/node-fixeduserhandle.directive.d.ts +5 -0
  39. package/src/diagram/nodes.directive.d.ts +10 -5
  40. package/src/diagram/ports.directive.d.ts +5 -0
  41. package/src/overview/overview-all.module.d.ts +6 -0
  42. package/src/overview/overview.component.d.ts +3 -0
  43. package/src/overview/overview.module.d.ts +6 -0
  44. package/src/symbol-palette/palettes.directive.d.ts +5 -0
  45. package/src/symbol-palette/symbolpalette-all.module.d.ts +6 -0
  46. package/src/symbol-palette/symbolpalette.component.d.ts +3 -0
  47. package/src/symbol-palette/symbolpalette.module.d.ts +7 -0
  48. package/styles/bootstrap-dark.css +6 -1
  49. package/styles/bootstrap.css +6 -1
  50. package/styles/bootstrap4.css +6 -1
  51. package/styles/bootstrap5-dark.css +7 -1
  52. package/styles/bootstrap5.css +7 -1
  53. package/styles/diagram/_all.scss +1 -0
  54. package/styles/diagram/_bootstrap-dark-definition.scss +104 -0
  55. package/styles/diagram/_bootstrap-definition.scss +104 -0
  56. package/styles/diagram/_bootstrap4-definition.scss +98 -0
  57. package/styles/diagram/_bootstrap5-dark-definition.scss +1 -0
  58. package/styles/diagram/_bootstrap5-definition.scss +103 -0
  59. package/styles/diagram/_definition.scss +77 -0
  60. package/styles/diagram/_fabric-dark-definition.scss +96 -0
  61. package/styles/diagram/_fabric-definition.scss +96 -0
  62. package/styles/diagram/_fluent-dark-definition.scss +1 -0
  63. package/styles/diagram/_fluent-definition.scss +103 -0
  64. package/styles/diagram/_fusionnew-definition.scss +103 -0
  65. package/styles/diagram/_highcontrast-definition.scss +106 -0
  66. package/styles/diagram/_highcontrast-light-definition.scss +105 -0
  67. package/styles/diagram/_material-dark-definition.scss +96 -0
  68. package/styles/diagram/_material-definition.scss +96 -0
  69. package/styles/diagram/_material3-definition.scss +103 -0
  70. package/styles/diagram/_tailwind-dark-definition.scss +1 -0
  71. package/styles/diagram/_tailwind-definition.scss +103 -0
  72. package/styles/diagram/_theme.scss +201 -0
  73. package/styles/diagram/bootstrap-dark.css +6 -1
  74. package/styles/diagram/bootstrap-dark.scss +3 -1
  75. package/styles/diagram/bootstrap.css +6 -1
  76. package/styles/diagram/bootstrap.scss +3 -1
  77. package/styles/diagram/bootstrap4.css +6 -1
  78. package/styles/diagram/bootstrap4.scss +3 -1
  79. package/styles/diagram/bootstrap5-dark.css +7 -1
  80. package/styles/diagram/bootstrap5-dark.scss +3 -1
  81. package/styles/diagram/bootstrap5.css +7 -1
  82. package/styles/diagram/bootstrap5.scss +3 -1
  83. package/styles/diagram/fabric-dark.css +6 -1
  84. package/styles/diagram/fabric-dark.scss +3 -1
  85. package/styles/diagram/fabric.css +6 -1
  86. package/styles/diagram/fabric.scss +3 -1
  87. package/styles/diagram/fluent-dark.css +7 -1
  88. package/styles/diagram/fluent-dark.scss +3 -1
  89. package/styles/diagram/fluent.css +7 -1
  90. package/styles/diagram/fluent.scss +3 -1
  91. package/styles/diagram/highcontrast-light.css +6 -1
  92. package/styles/diagram/highcontrast-light.scss +3 -1
  93. package/styles/diagram/highcontrast.css +7 -1
  94. package/styles/diagram/highcontrast.scss +3 -1
  95. package/styles/diagram/material-dark.css +6 -1
  96. package/styles/diagram/material-dark.scss +3 -1
  97. package/styles/diagram/material.css +6 -1
  98. package/styles/diagram/material.scss +3 -1
  99. package/styles/diagram/tailwind-dark.css +7 -1
  100. package/styles/diagram/tailwind-dark.scss +3 -1
  101. package/styles/diagram/tailwind.css +7 -1
  102. package/styles/diagram/tailwind.scss +3 -1
  103. package/styles/fabric-dark.css +6 -1
  104. package/styles/fabric.css +6 -1
  105. package/styles/fluent-dark.css +7 -1
  106. package/styles/fluent.css +7 -1
  107. package/styles/highcontrast-light.css +6 -1
  108. package/styles/highcontrast.css +7 -1
  109. package/styles/material-dark.css +6 -1
  110. package/styles/material.css +6 -1
  111. package/styles/tailwind-dark.css +7 -1
  112. package/styles/tailwind.css +7 -1
  113. package/syncfusion-ej2-angular-diagrams.d.ts +5 -0
  114. package/@syncfusion/ej2-angular-diagrams.es5.js +0 -1324
  115. package/@syncfusion/ej2-angular-diagrams.es5.js.map +0 -1
  116. package/@syncfusion/ej2-angular-diagrams.js +0 -1243
  117. package/@syncfusion/ej2-angular-diagrams.js.map +0 -1
  118. package/CHANGELOG.md +0 -1771
  119. package/dist/ej2-angular-diagrams.umd.js +0 -1731
  120. package/dist/ej2-angular-diagrams.umd.js.map +0 -1
  121. package/dist/ej2-angular-diagrams.umd.min.js +0 -11
  122. package/dist/ej2-angular-diagrams.umd.min.js.map +0 -1
  123. package/ej2-angular-diagrams.d.ts +0 -7
  124. package/ej2-angular-diagrams.metadata.json +0 -1
  125. package/postinstall/tagchange.js +0 -18
  126. package/schematics/collection.json +0 -35
  127. package/schematics/generators/diagram-default-functionalities/index.d.ts +0 -3
  128. package/schematics/generators/diagram-default-functionalities/index.js +0 -8
  129. package/schematics/generators/diagram-default-functionalities/sample-details.d.ts +0 -5
  130. package/schematics/generators/diagram-default-functionalities/sample-details.js +0 -7
  131. package/schematics/generators/diagram-default-functionalities/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  132. package/schematics/generators/diagram-default-functionalities/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -125
  133. package/schematics/generators/diagram-default-functionalities/schema.d.ts +0 -3
  134. package/schematics/generators/diagram-default-functionalities/schema.js +0 -2
  135. package/schematics/generators/diagram-default-functionalities/schema.json +0 -125
  136. package/schematics/generators/diagram-hierarchical-tree/index.d.ts +0 -3
  137. package/schematics/generators/diagram-hierarchical-tree/index.js +0 -8
  138. package/schematics/generators/diagram-hierarchical-tree/sample-details.d.ts +0 -5
  139. package/schematics/generators/diagram-hierarchical-tree/sample-details.js +0 -7
  140. package/schematics/generators/diagram-hierarchical-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  141. package/schematics/generators/diagram-hierarchical-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
  142. package/schematics/generators/diagram-hierarchical-tree/schema.d.ts +0 -3
  143. package/schematics/generators/diagram-hierarchical-tree/schema.js +0 -2
  144. package/schematics/generators/diagram-hierarchical-tree/schema.json +0 -125
  145. package/schematics/generators/diagram-organization-chart/index.d.ts +0 -3
  146. package/schematics/generators/diagram-organization-chart/index.js +0 -8
  147. package/schematics/generators/diagram-organization-chart/sample-details.d.ts +0 -5
  148. package/schematics/generators/diagram-organization-chart/sample-details.js +0 -7
  149. package/schematics/generators/diagram-organization-chart/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  150. package/schematics/generators/diagram-organization-chart/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -66
  151. package/schematics/generators/diagram-organization-chart/schema.d.ts +0 -3
  152. package/schematics/generators/diagram-organization-chart/schema.js +0 -2
  153. package/schematics/generators/diagram-organization-chart/schema.json +0 -125
  154. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Clayton.png +0 -0
  155. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Jenny.png +0 -0
  156. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/John.png +0 -0
  157. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Maria.png +0 -0
  158. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Paul.png +0 -0
  159. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Robin.png +0 -0
  160. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Thomas.png +0 -0
  161. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/eric.png +0 -0
  162. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/female.png +0 -0
  163. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image12.png +0 -0
  164. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image2.png +0 -0
  165. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image3.png +0 -0
  166. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image50.png +0 -0
  167. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image51.png +0 -0
  168. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image53.png +0 -0
  169. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image54.png +0 -0
  170. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image55.png +0 -0
  171. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image56.png +0 -0
  172. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image57.png +0 -0
  173. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/images7.png +0 -0
  174. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/images9.png +0 -0
  175. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/male.png +0 -0
  176. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/moreinfo.png +0 -0
  177. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/smith.png +0 -0
  178. package/schematics/generators/diagram-overview/index.d.ts +0 -3
  179. package/schematics/generators/diagram-overview/index.js +0 -8
  180. package/schematics/generators/diagram-overview/sample-details.d.ts +0 -5
  181. package/schematics/generators/diagram-overview/sample-details.js +0 -7
  182. package/schematics/generators/diagram-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  183. package/schematics/generators/diagram-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -19
  184. package/schematics/generators/diagram-overview/schema.d.ts +0 -3
  185. package/schematics/generators/diagram-overview/schema.js +0 -2
  186. package/schematics/generators/diagram-overview/schema.json +0 -125
  187. package/schematics/generators/diagram-radial-tree/index.d.ts +0 -3
  188. package/schematics/generators/diagram-radial-tree/index.js +0 -8
  189. package/schematics/generators/diagram-radial-tree/sample-details.d.ts +0 -5
  190. package/schematics/generators/diagram-radial-tree/sample-details.js +0 -7
  191. package/schematics/generators/diagram-radial-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  192. package/schematics/generators/diagram-radial-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  193. package/schematics/generators/diagram-radial-tree/schema.d.ts +0 -3
  194. package/schematics/generators/diagram-radial-tree/schema.js +0 -2
  195. package/schematics/generators/diagram-radial-tree/schema.json +0 -125
  196. package/schematics/ng-add/index.d.ts +0 -3
  197. package/schematics/ng-add/index.js +0 -9
  198. package/schematics/ng-add/schema.d.ts +0 -13
  199. package/schematics/ng-add/schema.js +0 -2
  200. package/schematics/ng-add/schema.json +0 -34
  201. package/schematics/tsconfig.json +0 -25
  202. package/schematics/utils/lib-details.d.ts +0 -4
  203. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,1135 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, ContentChildren, ContentChild, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
3
+ import { ComplexBase, setValue, ArrayBase, ComponentBase, Template, ComponentMixins } from '@syncfusion/ej2-angular-base';
4
+ import { __decorate } from 'tslib';
5
+ import { Diagram, HierarchicalTree, MindMap, RadialTree, ComplexHierarchicalTree, DataBinding, Snapping, PrintAndExport, BpmnDiagrams, SymmetricLayout, ConnectorBridging, UndoRedo, LayoutAnimation, DiagramContextMenu, LineRouting, ConnectorEditing, BlazorTooltip, LineDistribution, SymbolPalette, Overview } from '@syncfusion/ej2-diagrams';
6
+ export * from '@syncfusion/ej2-diagrams';
7
+ import { CommonModule } from '@angular/common';
8
+
9
+ let input$9 = ['addInfo', 'id', 'lock', 'objects', 'visible', 'zIndex'];
10
+ let outputs$c = [];
11
+ /**
12
+ * Layers Directive
13
+ * ```html
14
+ * <e-layers>
15
+ * <e-layer></e-layer>
16
+ * </e-layers>
17
+ * ```
18
+ */
19
+ class LayerDirective extends ComplexBase {
20
+ constructor(viewContainerRef) {
21
+ super();
22
+ this.viewContainerRef = viewContainerRef;
23
+ setValue('currentInstance', this, this.viewContainerRef);
24
+ this.registerEvents(outputs$c);
25
+ this.directivePropList = input$9;
26
+ }
27
+ }
28
+ LayerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LayerDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
29
+ LayerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: LayerDirective, selector: "e-layers>e-layer", inputs: { addInfo: "addInfo", id: "id", lock: "lock", objects: "objects", visible: "visible", zIndex: "zIndex" }, usesInheritance: true, ngImport: i0 });
30
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LayerDirective, decorators: [{
31
+ type: Directive,
32
+ args: [{
33
+ selector: 'e-layers>e-layer',
34
+ inputs: input$9,
35
+ outputs: outputs$c,
36
+ queries: {}
37
+ }]
38
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
39
+ /**
40
+ * Layer Array Directive
41
+ * @private
42
+ */
43
+ class LayersDirective extends ArrayBase {
44
+ constructor() {
45
+ super('layers');
46
+ }
47
+ }
48
+ LayersDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LayersDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
49
+ LayersDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: LayersDirective, selector: "ej-diagram>e-layers", queries: [{ propertyName: "children", predicate: LayerDirective }], usesInheritance: true, ngImport: i0 });
50
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LayersDirective, decorators: [{
51
+ type: Directive,
52
+ args: [{
53
+ selector: 'ej-diagram>e-layers',
54
+ queries: {
55
+ children: new ContentChildren(LayerDirective)
56
+ },
57
+ }]
58
+ }], ctorParameters: function () { return []; } });
59
+
60
+ let input$8 = ['action', 'cursor'];
61
+ let outputs$b = [];
62
+ /**
63
+ * Cursor Maps Directive
64
+ * ```html
65
+ * <e-cusrsormaps>
66
+ * <e-cursormap></e-cursormap>
67
+ * </e-cursormaps>
68
+ * ```
69
+ */
70
+ class CustomCursorDirective extends ComplexBase {
71
+ constructor(viewContainerRef) {
72
+ super();
73
+ this.viewContainerRef = viewContainerRef;
74
+ setValue('currentInstance', this, this.viewContainerRef);
75
+ this.registerEvents(outputs$b);
76
+ this.directivePropList = input$8;
77
+ }
78
+ }
79
+ CustomCursorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CustomCursorDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
80
+ CustomCursorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: CustomCursorDirective, selector: "e-cursormaps>e-cursormap", inputs: { action: "action", cursor: "cursor" }, usesInheritance: true, ngImport: i0 });
81
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CustomCursorDirective, decorators: [{
82
+ type: Directive,
83
+ args: [{
84
+ selector: 'e-cursormaps>e-cursormap',
85
+ inputs: input$8,
86
+ outputs: outputs$b,
87
+ queries: {}
88
+ }]
89
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
90
+ /**
91
+ * CustomCursor Array Directive
92
+ * @private
93
+ */
94
+ class CustomCursorsDirective extends ArrayBase {
95
+ constructor() {
96
+ super('customcursor');
97
+ }
98
+ }
99
+ CustomCursorsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CustomCursorsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
100
+ CustomCursorsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: CustomCursorsDirective, selector: "ej-diagram>e-cursormaps", queries: [{ propertyName: "children", predicate: CustomCursorDirective }], usesInheritance: true, ngImport: i0 });
101
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CustomCursorsDirective, decorators: [{
102
+ type: Directive,
103
+ args: [{
104
+ selector: 'ej-diagram>e-cursormaps',
105
+ queries: {
106
+ children: new ContentChildren(CustomCursorDirective)
107
+ },
108
+ }]
109
+ }], ctorParameters: function () { return []; } });
110
+
111
+ let input$7 = ['alignment', 'cornerRadius', 'displacement', 'fill', 'handleStrokeColor', 'handleStrokeWidth', 'height', 'iconStrokeColor', 'iconStrokeWidth', 'id', 'offset', 'padding', 'pathData', 'visibility', 'width'];
112
+ let outputs$a = [];
113
+ /**
114
+ * Connectors Directive
115
+ * ```html
116
+ * <e-connectors>
117
+ * <e-connector>
118
+ * <e-connector-fixeduserhandles>
119
+ * <e-connector-fixeduserhandle>
120
+ * </e-connector-fixeduserhandle>
121
+ * </e-connector-fixeduserhandles>
122
+ * </e-connector>
123
+ * </e-connectors>
124
+ * ```
125
+ */
126
+ class ConnectorFixedUserHandleDirective extends ComplexBase {
127
+ constructor(viewContainerRef) {
128
+ super();
129
+ this.viewContainerRef = viewContainerRef;
130
+ setValue('currentInstance', this, this.viewContainerRef);
131
+ this.registerEvents(outputs$a);
132
+ this.directivePropList = input$7;
133
+ }
134
+ }
135
+ ConnectorFixedUserHandleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorFixedUserHandleDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
136
+ ConnectorFixedUserHandleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ConnectorFixedUserHandleDirective, selector: "e-connector>e-connector-fixeduserhandles>e-connector-fixeduserhandle", inputs: { alignment: "alignment", cornerRadius: "cornerRadius", displacement: "displacement", fill: "fill", handleStrokeColor: "handleStrokeColor", handleStrokeWidth: "handleStrokeWidth", height: "height", iconStrokeColor: "iconStrokeColor", iconStrokeWidth: "iconStrokeWidth", id: "id", offset: "offset", padding: "padding", pathData: "pathData", visibility: "visibility", width: "width" }, usesInheritance: true, ngImport: i0 });
137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorFixedUserHandleDirective, decorators: [{
138
+ type: Directive,
139
+ args: [{
140
+ selector: 'e-connector>e-connector-fixeduserhandles>e-connector-fixeduserhandle',
141
+ inputs: input$7,
142
+ outputs: outputs$a,
143
+ queries: {}
144
+ }]
145
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
146
+ /**
147
+ * ConnectorFixedUserHandle Array Directive
148
+ * @private
149
+ */
150
+ class ConnectorFixedUserHandlesDirective extends ArrayBase {
151
+ constructor() {
152
+ super('fixeduserhandles');
153
+ }
154
+ }
155
+ ConnectorFixedUserHandlesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorFixedUserHandlesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
156
+ ConnectorFixedUserHandlesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ConnectorFixedUserHandlesDirective, selector: "e-connector>e-connector-fixeduserhandles", queries: [{ propertyName: "children", predicate: ConnectorFixedUserHandleDirective }], usesInheritance: true, ngImport: i0 });
157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorFixedUserHandlesDirective, decorators: [{
158
+ type: Directive,
159
+ args: [{
160
+ selector: 'e-connector>e-connector-fixeduserhandles',
161
+ queries: {
162
+ children: new ContentChildren(ConnectorFixedUserHandleDirective)
163
+ },
164
+ }]
165
+ }], ctorParameters: function () { return []; } });
166
+
167
+ let input$6 = ['addInfo', 'alignment', 'annotationType', 'constraints', 'content', 'displacement', 'dragLimit', 'height', 'horizontalAlignment', 'hyperlink', 'id', 'margin', 'offset', 'rotateAngle', 'segmentAngle', 'style', 'template', 'type', 'verticalAlignment', 'visibility', 'width'];
168
+ let outputs$9 = [];
169
+ /**
170
+ * Connectors Directive
171
+ * ```html
172
+ * <e-connectors>
173
+ * <e-connector>
174
+ * <e-connector-annotations>
175
+ * <e-connector-annotation>
176
+ * </e-connector-annotation>
177
+ * </e-connector-annotations>
178
+ * </e-connector>
179
+ * </e-connectors>
180
+ * ```
181
+ */
182
+ class ConnectorAnnotationDirective extends ComplexBase {
183
+ constructor(viewContainerRef) {
184
+ super();
185
+ this.viewContainerRef = viewContainerRef;
186
+ setValue('currentInstance', this, this.viewContainerRef);
187
+ this.registerEvents(outputs$9);
188
+ this.directivePropList = input$6;
189
+ }
190
+ }
191
+ ConnectorAnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorAnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
192
+ ConnectorAnnotationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ConnectorAnnotationDirective, selector: "e-connector>e-connector-annotations>e-connector-annotation", inputs: { addInfo: "addInfo", alignment: "alignment", annotationType: "annotationType", constraints: "constraints", content: "content", displacement: "displacement", dragLimit: "dragLimit", height: "height", horizontalAlignment: "horizontalAlignment", hyperlink: "hyperlink", id: "id", margin: "margin", offset: "offset", rotateAngle: "rotateAngle", segmentAngle: "segmentAngle", style: "style", template: "template", type: "type", verticalAlignment: "verticalAlignment", visibility: "visibility", width: "width" }, usesInheritance: true, ngImport: i0 });
193
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorAnnotationDirective, decorators: [{
194
+ type: Directive,
195
+ args: [{
196
+ selector: 'e-connector>e-connector-annotations>e-connector-annotation',
197
+ inputs: input$6,
198
+ outputs: outputs$9,
199
+ queries: {}
200
+ }]
201
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
202
+ /**
203
+ * ConnectorAnnotation Array Directive
204
+ * @private
205
+ */
206
+ class ConnectorAnnotationsDirective extends ArrayBase {
207
+ constructor() {
208
+ super('annotations');
209
+ }
210
+ }
211
+ ConnectorAnnotationsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorAnnotationsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
212
+ ConnectorAnnotationsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ConnectorAnnotationsDirective, selector: "e-connector>e-connector-annotations", queries: [{ propertyName: "children", predicate: ConnectorAnnotationDirective }], usesInheritance: true, ngImport: i0 });
213
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorAnnotationsDirective, decorators: [{
214
+ type: Directive,
215
+ args: [{
216
+ selector: 'e-connector>e-connector-annotations',
217
+ queries: {
218
+ children: new ContentChildren(ConnectorAnnotationDirective)
219
+ },
220
+ }]
221
+ }], ctorParameters: function () { return []; } });
222
+
223
+ let input$5 = ['addInfo', 'annotations', 'bridgeSpace', 'connectionPadding', 'constraints', 'cornerRadius', 'dragSize', 'excludeFromLayout', 'fixedUserHandles', 'flip', 'flipMode', 'hitPadding', 'id', 'margin', 'previewSize', 'segments', 'shape', 'sourceDecorator', 'sourceID', 'sourcePadding', 'sourcePoint', 'sourcePortID', 'style', 'symbolInfo', 'targetDecorator', 'targetID', 'targetPadding', 'targetPoint', 'targetPortID', 'tooltip', 'type', 'visible', 'wrapper', 'zIndex'];
224
+ let outputs$8 = [];
225
+ /**
226
+ * Connectors Directive
227
+ * ```html
228
+ * <e-connectors>
229
+ * <e-connector></e-connector>
230
+ * </e-connectors>
231
+ * ```
232
+ */
233
+ class ConnectorDirective extends ComplexBase {
234
+ constructor(viewContainerRef) {
235
+ super();
236
+ this.viewContainerRef = viewContainerRef;
237
+ this.tags = ['fixedUserHandles', 'annotations'];
238
+ setValue('currentInstance', this, this.viewContainerRef);
239
+ this.registerEvents(outputs$8);
240
+ this.directivePropList = input$5;
241
+ }
242
+ }
243
+ ConnectorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
244
+ ConnectorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ConnectorDirective, selector: "e-connectors>e-connector", inputs: { addInfo: "addInfo", annotations: "annotations", bridgeSpace: "bridgeSpace", connectionPadding: "connectionPadding", constraints: "constraints", cornerRadius: "cornerRadius", dragSize: "dragSize", excludeFromLayout: "excludeFromLayout", fixedUserHandles: "fixedUserHandles", flip: "flip", flipMode: "flipMode", hitPadding: "hitPadding", id: "id", margin: "margin", previewSize: "previewSize", segments: "segments", shape: "shape", sourceDecorator: "sourceDecorator", sourceID: "sourceID", sourcePadding: "sourcePadding", sourcePoint: "sourcePoint", sourcePortID: "sourcePortID", style: "style", symbolInfo: "symbolInfo", targetDecorator: "targetDecorator", targetID: "targetID", targetPadding: "targetPadding", targetPoint: "targetPoint", targetPortID: "targetPortID", tooltip: "tooltip", type: "type", visible: "visible", wrapper: "wrapper", zIndex: "zIndex" }, queries: [{ propertyName: "childFixedUserHandles", first: true, predicate: ConnectorFixedUserHandlesDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: ConnectorAnnotationsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorDirective, decorators: [{
246
+ type: Directive,
247
+ args: [{
248
+ selector: 'e-connectors>e-connector',
249
+ inputs: input$5,
250
+ outputs: outputs$8,
251
+ queries: {
252
+ childFixedUserHandles: new ContentChild(ConnectorFixedUserHandlesDirective),
253
+ childAnnotations: new ContentChild(ConnectorAnnotationsDirective)
254
+ }
255
+ }]
256
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
257
+ /**
258
+ * Connector Array Directive
259
+ * @private
260
+ */
261
+ class ConnectorsDirective extends ArrayBase {
262
+ constructor() {
263
+ super('connectors');
264
+ }
265
+ }
266
+ ConnectorsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
267
+ ConnectorsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ConnectorsDirective, selector: "ej-diagram>e-connectors", queries: [{ propertyName: "children", predicate: ConnectorDirective }], usesInheritance: true, ngImport: i0 });
268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConnectorsDirective, decorators: [{
269
+ type: Directive,
270
+ args: [{
271
+ selector: 'ej-diagram>e-connectors',
272
+ queries: {
273
+ children: new ContentChildren(ConnectorDirective)
274
+ },
275
+ }]
276
+ }], ctorParameters: function () { return []; } });
277
+
278
+ let input$4 = ['cornerRadius', 'fill', 'handleStrokeColor', 'handleStrokeWidth', 'height', 'iconStrokeColor', 'iconStrokeWidth', 'id', 'margin', 'offset', 'padding', 'pathData', 'visibility', 'width'];
279
+ let outputs$7 = [];
280
+ /**
281
+ * Nodes Directive
282
+ * ```html
283
+ * <e-nodes>
284
+ * <e-node>
285
+ * <e-node-fixeduserhandles>
286
+ * <e-node-fixeduserhandle>
287
+ * </e-node-fixeduserhandle>
288
+ * </e-node-fixeduserhandles>
289
+ * </e-node>
290
+ * </e-nodes>
291
+ * ```
292
+ */
293
+ class NodeFixedUserHandleDirective extends ComplexBase {
294
+ constructor(viewContainerRef) {
295
+ super();
296
+ this.viewContainerRef = viewContainerRef;
297
+ setValue('currentInstance', this, this.viewContainerRef);
298
+ this.registerEvents(outputs$7);
299
+ this.directivePropList = input$4;
300
+ }
301
+ }
302
+ NodeFixedUserHandleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodeFixedUserHandleDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
303
+ NodeFixedUserHandleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: NodeFixedUserHandleDirective, selector: "e-node>e-node-fixeduserhandles>e-node-fixeduserhandle", inputs: { cornerRadius: "cornerRadius", fill: "fill", handleStrokeColor: "handleStrokeColor", handleStrokeWidth: "handleStrokeWidth", height: "height", iconStrokeColor: "iconStrokeColor", iconStrokeWidth: "iconStrokeWidth", id: "id", margin: "margin", offset: "offset", padding: "padding", pathData: "pathData", visibility: "visibility", width: "width" }, usesInheritance: true, ngImport: i0 });
304
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodeFixedUserHandleDirective, decorators: [{
305
+ type: Directive,
306
+ args: [{
307
+ selector: 'e-node>e-node-fixeduserhandles>e-node-fixeduserhandle',
308
+ inputs: input$4,
309
+ outputs: outputs$7,
310
+ queries: {}
311
+ }]
312
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
313
+ /**
314
+ * NodeFixedUserHandle Array Directive
315
+ * @private
316
+ */
317
+ class NodeFixedUserHandlesDirective extends ArrayBase {
318
+ constructor() {
319
+ super('fixeduserhandles');
320
+ }
321
+ }
322
+ NodeFixedUserHandlesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodeFixedUserHandlesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
323
+ NodeFixedUserHandlesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: NodeFixedUserHandlesDirective, selector: "e-node>e-node-fixeduserhandles", queries: [{ propertyName: "children", predicate: NodeFixedUserHandleDirective }], usesInheritance: true, ngImport: i0 });
324
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodeFixedUserHandlesDirective, decorators: [{
325
+ type: Directive,
326
+ args: [{
327
+ selector: 'e-node>e-node-fixeduserhandles',
328
+ queries: {
329
+ children: new ContentChildren(NodeFixedUserHandleDirective)
330
+ },
331
+ }]
332
+ }], ctorParameters: function () { return []; } });
333
+
334
+ let input$3 = ['addInfo', 'annotationType', 'constraints', 'content', 'dragLimit', 'height', 'horizontalAlignment', 'hyperlink', 'id', 'margin', 'offset', 'rotateAngle', 'style', 'template', 'type', 'verticalAlignment', 'visibility', 'width'];
335
+ let outputs$6 = [];
336
+ /**
337
+ * Nodes Directive
338
+ * ```html
339
+ * <e-nodes>
340
+ * <e-node>
341
+ * <e-node-annotations>
342
+ * <e-node-annotation>
343
+ * </e-node-annotation>
344
+ * </e-node-annotations>
345
+ * </e-node>
346
+ * </e-nodes>
347
+ * ```
348
+ */
349
+ class NodeAnnotationDirective extends ComplexBase {
350
+ constructor(viewContainerRef) {
351
+ super();
352
+ this.viewContainerRef = viewContainerRef;
353
+ setValue('currentInstance', this, this.viewContainerRef);
354
+ this.registerEvents(outputs$6);
355
+ this.directivePropList = input$3;
356
+ }
357
+ }
358
+ NodeAnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodeAnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
359
+ NodeAnnotationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: NodeAnnotationDirective, selector: "e-node>e-node-annotations>e-node-annotation", inputs: { addInfo: "addInfo", annotationType: "annotationType", constraints: "constraints", content: "content", dragLimit: "dragLimit", height: "height", horizontalAlignment: "horizontalAlignment", hyperlink: "hyperlink", id: "id", margin: "margin", offset: "offset", rotateAngle: "rotateAngle", style: "style", template: "template", type: "type", verticalAlignment: "verticalAlignment", visibility: "visibility", width: "width" }, usesInheritance: true, ngImport: i0 });
360
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodeAnnotationDirective, decorators: [{
361
+ type: Directive,
362
+ args: [{
363
+ selector: 'e-node>e-node-annotations>e-node-annotation',
364
+ inputs: input$3,
365
+ outputs: outputs$6,
366
+ queries: {}
367
+ }]
368
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
369
+ /**
370
+ * NodeAnnotation Array Directive
371
+ * @private
372
+ */
373
+ class NodeAnnotationsDirective extends ArrayBase {
374
+ constructor() {
375
+ super('annotations');
376
+ }
377
+ }
378
+ NodeAnnotationsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodeAnnotationsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
379
+ NodeAnnotationsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: NodeAnnotationsDirective, selector: "e-node>e-node-annotations", queries: [{ propertyName: "children", predicate: NodeAnnotationDirective }], usesInheritance: true, ngImport: i0 });
380
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodeAnnotationsDirective, decorators: [{
381
+ type: Directive,
382
+ args: [{
383
+ selector: 'e-node>e-node-annotations',
384
+ queries: {
385
+ children: new ContentChildren(NodeAnnotationDirective)
386
+ },
387
+ }]
388
+ }], ctorParameters: function () { return []; } });
389
+
390
+ let input$2 = ['addInfo', 'constraints', 'height', 'horizontalAlignment', 'id', 'inEdges', 'margin', 'offset', 'outEdges', 'pathData', 'shape', 'style', 'verticalAlignment', 'visibility', 'width'];
391
+ let outputs$5 = [];
392
+ /**
393
+ * Nodes Directive
394
+ * ```html
395
+ * <e-nodes>
396
+ * <e-node>
397
+ * <e-node-ports>
398
+ * <e-node-port>
399
+ * </e-node-port>
400
+ * </e-node-ports>
401
+ * </e-node>
402
+ * </e-nodes>
403
+ * ```
404
+ */
405
+ class PortDirective extends ComplexBase {
406
+ constructor(viewContainerRef) {
407
+ super();
408
+ this.viewContainerRef = viewContainerRef;
409
+ setValue('currentInstance', this, this.viewContainerRef);
410
+ this.registerEvents(outputs$5);
411
+ this.directivePropList = input$2;
412
+ }
413
+ }
414
+ PortDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PortDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
415
+ PortDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: PortDirective, selector: "e-node>e-node-ports>e-node-port", inputs: { addInfo: "addInfo", constraints: "constraints", height: "height", horizontalAlignment: "horizontalAlignment", id: "id", inEdges: "inEdges", margin: "margin", offset: "offset", outEdges: "outEdges", pathData: "pathData", shape: "shape", style: "style", verticalAlignment: "verticalAlignment", visibility: "visibility", width: "width" }, usesInheritance: true, ngImport: i0 });
416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PortDirective, decorators: [{
417
+ type: Directive,
418
+ args: [{
419
+ selector: 'e-node>e-node-ports>e-node-port',
420
+ inputs: input$2,
421
+ outputs: outputs$5,
422
+ queries: {}
423
+ }]
424
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
425
+ /**
426
+ * Port Array Directive
427
+ * @private
428
+ */
429
+ class PortsDirective extends ArrayBase {
430
+ constructor() {
431
+ super('ports');
432
+ }
433
+ }
434
+ PortsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PortsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
435
+ PortsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: PortsDirective, selector: "e-node>e-node-ports", queries: [{ propertyName: "children", predicate: PortDirective }], usesInheritance: true, ngImport: i0 });
436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PortsDirective, decorators: [{
437
+ type: Directive,
438
+ args: [{
439
+ selector: 'e-node>e-node-ports',
440
+ queries: {
441
+ children: new ContentChildren(PortDirective)
442
+ },
443
+ }]
444
+ }], ctorParameters: function () { return []; } });
445
+
446
+ let input$1 = ['addInfo', 'annotations', 'backgroundColor', 'borderColor', 'borderWidth', 'branch', 'children', 'collapseIcon', 'columnIndex', 'columnSpan', 'columns', 'constraints', 'container', 'data', 'dragSize', 'excludeFromLayout', 'expandIcon', 'fixedUserHandles', 'flip', 'flipMode', 'height', 'horizontalAlignment', 'id', 'isExpanded', 'layoutInfo', 'margin', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'offsetX', 'offsetY', 'padding', 'pivot', 'ports', 'previewSize', 'rotateAngle', 'rowIndex', 'rowSpan', 'rows', 'shadow', 'shape', 'style', 'symbolInfo', 'tooltip', 'verticalAlignment', 'visible', 'width', 'wrapper', 'zIndex'];
447
+ let outputs$4 = [];
448
+ /**
449
+ * Nodes Directive
450
+ * ```html
451
+ * <e-nodes>
452
+ * <e-node></e-node>
453
+ * </e-nodes>
454
+ * ```
455
+ */
456
+ class NodeDirective extends ComplexBase {
457
+ constructor(viewContainerRef) {
458
+ super();
459
+ this.viewContainerRef = viewContainerRef;
460
+ this.tags = ['fixedUserHandles', 'annotations', 'ports'];
461
+ setValue('currentInstance', this, this.viewContainerRef);
462
+ this.registerEvents(outputs$4);
463
+ this.directivePropList = input$1;
464
+ }
465
+ }
466
+ NodeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodeDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
467
+ NodeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: NodeDirective, selector: "e-nodes>e-node", inputs: { addInfo: "addInfo", annotations: "annotations", backgroundColor: "backgroundColor", borderColor: "borderColor", borderWidth: "borderWidth", branch: "branch", children: "children", collapseIcon: "collapseIcon", columnIndex: "columnIndex", columnSpan: "columnSpan", columns: "columns", constraints: "constraints", container: "container", data: "data", dragSize: "dragSize", excludeFromLayout: "excludeFromLayout", expandIcon: "expandIcon", fixedUserHandles: "fixedUserHandles", flip: "flip", flipMode: "flipMode", height: "height", horizontalAlignment: "horizontalAlignment", id: "id", isExpanded: "isExpanded", layoutInfo: "layoutInfo", margin: "margin", maxHeight: "maxHeight", maxWidth: "maxWidth", minHeight: "minHeight", minWidth: "minWidth", offsetX: "offsetX", offsetY: "offsetY", padding: "padding", pivot: "pivot", ports: "ports", previewSize: "previewSize", rotateAngle: "rotateAngle", rowIndex: "rowIndex", rowSpan: "rowSpan", rows: "rows", shadow: "shadow", shape: "shape", style: "style", symbolInfo: "symbolInfo", tooltip: "tooltip", verticalAlignment: "verticalAlignment", visible: "visible", width: "width", wrapper: "wrapper", zIndex: "zIndex" }, queries: [{ propertyName: "childFixedUserHandles", first: true, predicate: NodeFixedUserHandlesDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: NodeAnnotationsDirective, descendants: true }, { propertyName: "childPorts", first: true, predicate: PortsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
468
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodeDirective, decorators: [{
469
+ type: Directive,
470
+ args: [{
471
+ selector: 'e-nodes>e-node',
472
+ inputs: input$1,
473
+ outputs: outputs$4,
474
+ queries: {
475
+ childFixedUserHandles: new ContentChild(NodeFixedUserHandlesDirective),
476
+ childAnnotations: new ContentChild(NodeAnnotationsDirective),
477
+ childPorts: new ContentChild(PortsDirective)
478
+ }
479
+ }]
480
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
481
+ /**
482
+ * Node Array Directive
483
+ * @private
484
+ */
485
+ class NodesDirective extends ArrayBase {
486
+ constructor() {
487
+ super('nodes');
488
+ }
489
+ }
490
+ NodesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
491
+ NodesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: NodesDirective, selector: "ej-diagram>e-nodes", queries: [{ propertyName: "children", predicate: NodeDirective }], usesInheritance: true, ngImport: i0 });
492
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NodesDirective, decorators: [{
493
+ type: Directive,
494
+ args: [{
495
+ selector: 'ej-diagram>e-nodes',
496
+ queries: {
497
+ children: new ContentChildren(NodeDirective)
498
+ },
499
+ }]
500
+ }], ctorParameters: function () { return []; } });
501
+
502
+ const inputs$2 = ['addInfo', 'annotationTemplate', 'backgroundColor', 'bridgeDirection', 'commandManager', 'connectorDefaults', 'connectors', 'constraints', 'contextMenuSettings', 'customCursor', 'dataSourceSettings', 'diagramSettings', 'drawingObject', 'enablePersistence', 'enableRtl', 'getConnectorDefaults', 'getCustomCursor', 'getCustomProperty', 'getCustomTool', 'getDescription', 'getNodeDefaults', 'height', 'historyManager', 'layers', 'layout', 'locale', 'mode', 'nodeDefaults', 'nodeTemplate', 'nodes', 'pageSettings', 'rulerSettings', 'scrollSettings', 'selectedItems', 'serializationSettings', 'setNodeTemplate', 'snapSettings', 'tool', 'tooltip', 'updateSelection', 'userHandleTemplate', 'width'];
503
+ const outputs$3 = ['animationComplete', 'click', 'collectionChange', 'commandExecute', 'connectionChange', 'contextMenuBeforeItemRender', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataLoaded', 'doubleClick', 'dragEnter', 'dragLeave', 'dragOver', 'drop', 'expandStateChange', 'fixedUserHandleClick', 'historyChange', 'historyStateChange', 'keyDown', 'keyUp', 'mouseEnter', 'mouseLeave', 'mouseOver', 'onImageLoad', 'onUserHandleMouseDown', 'onUserHandleMouseEnter', 'onUserHandleMouseLeave', 'onUserHandleMouseUp', 'positionChange', 'propertyChange', 'rotateChange', 'scrollChange', 'segmentCollectionChange', 'selectionChange', 'sizeChange', 'sourcePointChange', 'targetPointChange', 'textEdit'];
504
+ const twoWays$2 = [''];
505
+ /**
506
+ * Diagram Component
507
+ * ```html
508
+ * <ej-diagram></ej-diagram>
509
+ * ```
510
+ */
511
+ let DiagramComponent = class DiagramComponent extends Diagram {
512
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
513
+ super();
514
+ this.ngEle = ngEle;
515
+ this.srenderer = srenderer;
516
+ this.viewContainerRef = viewContainerRef;
517
+ this.injector = injector;
518
+ this.tags = ['layers', 'customCursor', 'connectors', 'nodes'];
519
+ this.element = this.ngEle.nativeElement;
520
+ this.injectedModules = this.injectedModules || [];
521
+ try {
522
+ let mod = this.injector.get('DiagramsHierarchicalTree');
523
+ if (this.injectedModules.indexOf(mod) === -1) {
524
+ this.injectedModules.push(mod);
525
+ }
526
+ }
527
+ catch { }
528
+ try {
529
+ let mod = this.injector.get('DiagramsMindMap');
530
+ if (this.injectedModules.indexOf(mod) === -1) {
531
+ this.injectedModules.push(mod);
532
+ }
533
+ }
534
+ catch { }
535
+ try {
536
+ let mod = this.injector.get('DiagramsRadialTree');
537
+ if (this.injectedModules.indexOf(mod) === -1) {
538
+ this.injectedModules.push(mod);
539
+ }
540
+ }
541
+ catch { }
542
+ try {
543
+ let mod = this.injector.get('DiagramsComplexHierarchicalTree');
544
+ if (this.injectedModules.indexOf(mod) === -1) {
545
+ this.injectedModules.push(mod);
546
+ }
547
+ }
548
+ catch { }
549
+ try {
550
+ let mod = this.injector.get('DiagramsDataBinding');
551
+ if (this.injectedModules.indexOf(mod) === -1) {
552
+ this.injectedModules.push(mod);
553
+ }
554
+ }
555
+ catch { }
556
+ try {
557
+ let mod = this.injector.get('DiagramsSnapping');
558
+ if (this.injectedModules.indexOf(mod) === -1) {
559
+ this.injectedModules.push(mod);
560
+ }
561
+ }
562
+ catch { }
563
+ try {
564
+ let mod = this.injector.get('DiagramsPrintAndExport');
565
+ if (this.injectedModules.indexOf(mod) === -1) {
566
+ this.injectedModules.push(mod);
567
+ }
568
+ }
569
+ catch { }
570
+ try {
571
+ let mod = this.injector.get('DiagramsBpmnDiagrams');
572
+ if (this.injectedModules.indexOf(mod) === -1) {
573
+ this.injectedModules.push(mod);
574
+ }
575
+ }
576
+ catch { }
577
+ try {
578
+ let mod = this.injector.get('DiagramsSymmetricLayout');
579
+ if (this.injectedModules.indexOf(mod) === -1) {
580
+ this.injectedModules.push(mod);
581
+ }
582
+ }
583
+ catch { }
584
+ try {
585
+ let mod = this.injector.get('DiagramsConnectorBridging');
586
+ if (this.injectedModules.indexOf(mod) === -1) {
587
+ this.injectedModules.push(mod);
588
+ }
589
+ }
590
+ catch { }
591
+ try {
592
+ let mod = this.injector.get('DiagramsUndoRedo');
593
+ if (this.injectedModules.indexOf(mod) === -1) {
594
+ this.injectedModules.push(mod);
595
+ }
596
+ }
597
+ catch { }
598
+ try {
599
+ let mod = this.injector.get('DiagramsLayoutAnimation');
600
+ if (this.injectedModules.indexOf(mod) === -1) {
601
+ this.injectedModules.push(mod);
602
+ }
603
+ }
604
+ catch { }
605
+ try {
606
+ let mod = this.injector.get('DiagramsDiagramContextMenu');
607
+ if (this.injectedModules.indexOf(mod) === -1) {
608
+ this.injectedModules.push(mod);
609
+ }
610
+ }
611
+ catch { }
612
+ try {
613
+ let mod = this.injector.get('DiagramsLineRouting');
614
+ if (this.injectedModules.indexOf(mod) === -1) {
615
+ this.injectedModules.push(mod);
616
+ }
617
+ }
618
+ catch { }
619
+ try {
620
+ let mod = this.injector.get('DiagramsConnectorEditing');
621
+ if (this.injectedModules.indexOf(mod) === -1) {
622
+ this.injectedModules.push(mod);
623
+ }
624
+ }
625
+ catch { }
626
+ try {
627
+ let mod = this.injector.get('DiagramsBlazorTooltip');
628
+ if (this.injectedModules.indexOf(mod) === -1) {
629
+ this.injectedModules.push(mod);
630
+ }
631
+ }
632
+ catch { }
633
+ try {
634
+ let mod = this.injector.get('DiagramsLineDistribution');
635
+ if (this.injectedModules.indexOf(mod) === -1) {
636
+ this.injectedModules.push(mod);
637
+ }
638
+ }
639
+ catch { }
640
+ this.registerEvents(outputs$3);
641
+ this.addTwoWay.call(this, twoWays$2);
642
+ setValue('currentInstance', this, this.viewContainerRef);
643
+ this.context = new ComponentBase();
644
+ }
645
+ ngOnInit() {
646
+ this.context.ngOnInit(this);
647
+ }
648
+ ngAfterViewInit() {
649
+ this.context.ngAfterViewInit(this);
650
+ }
651
+ ngOnDestroy() {
652
+ this.context.ngOnDestroy(this);
653
+ }
654
+ ngAfterContentChecked() {
655
+ this.tagObjects[0].instance = this.childLayers;
656
+ if (this.childCustomCursor) {
657
+ this.tagObjects[1].instance = this.childCustomCursor;
658
+ }
659
+ if (this.childConnectors) {
660
+ this.tagObjects[2].instance = this.childConnectors;
661
+ }
662
+ if (this.childNodes) {
663
+ this.tagObjects[3].instance = this.childNodes;
664
+ }
665
+ this.context.ngAfterContentChecked(this);
666
+ }
667
+ };
668
+ DiagramComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DiagramComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
669
+ DiagramComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DiagramComponent, selector: "ejs-diagram", inputs: { addInfo: "addInfo", annotationTemplate: "annotationTemplate", backgroundColor: "backgroundColor", bridgeDirection: "bridgeDirection", commandManager: "commandManager", connectorDefaults: "connectorDefaults", connectors: "connectors", constraints: "constraints", contextMenuSettings: "contextMenuSettings", customCursor: "customCursor", dataSourceSettings: "dataSourceSettings", diagramSettings: "diagramSettings", drawingObject: "drawingObject", enablePersistence: "enablePersistence", enableRtl: "enableRtl", getConnectorDefaults: "getConnectorDefaults", getCustomCursor: "getCustomCursor", getCustomProperty: "getCustomProperty", getCustomTool: "getCustomTool", getDescription: "getDescription", getNodeDefaults: "getNodeDefaults", height: "height", historyManager: "historyManager", layers: "layers", layout: "layout", locale: "locale", mode: "mode", nodeDefaults: "nodeDefaults", nodeTemplate: "nodeTemplate", nodes: "nodes", pageSettings: "pageSettings", rulerSettings: "rulerSettings", scrollSettings: "scrollSettings", selectedItems: "selectedItems", serializationSettings: "serializationSettings", setNodeTemplate: "setNodeTemplate", snapSettings: "snapSettings", tool: "tool", tooltip: "tooltip", updateSelection: "updateSelection", userHandleTemplate: "userHandleTemplate", width: "width" }, outputs: { animationComplete: "animationComplete", click: "click", collectionChange: "collectionChange", commandExecute: "commandExecute", connectionChange: "connectionChange", contextMenuBeforeItemRender: "contextMenuBeforeItemRender", contextMenuClick: "contextMenuClick", contextMenuOpen: "contextMenuOpen", created: "created", dataLoaded: "dataLoaded", doubleClick: "doubleClick", dragEnter: "dragEnter", dragLeave: "dragLeave", dragOver: "dragOver", drop: "drop", expandStateChange: "expandStateChange", fixedUserHandleClick: "fixedUserHandleClick", historyChange: "historyChange", historyStateChange: "historyStateChange", keyDown: "keyDown", keyUp: "keyUp", mouseEnter: "mouseEnter", mouseLeave: "mouseLeave", mouseOver: "mouseOver", onImageLoad: "onImageLoad", onUserHandleMouseDown: "onUserHandleMouseDown", onUserHandleMouseEnter: "onUserHandleMouseEnter", onUserHandleMouseLeave: "onUserHandleMouseLeave", onUserHandleMouseUp: "onUserHandleMouseUp", positionChange: "positionChange", propertyChange: "propertyChange", rotateChange: "rotateChange", scrollChange: "scrollChange", segmentCollectionChange: "segmentCollectionChange", selectionChange: "selectionChange", sizeChange: "sizeChange", sourcePointChange: "sourcePointChange", targetPointChange: "targetPointChange", textEdit: "textEdit" }, queries: [{ propertyName: "annotationTemplate", first: true, predicate: ["annotationTemplate"], descendants: true }, { propertyName: "nodeTemplate", first: true, predicate: ["nodeTemplate"], descendants: true }, { propertyName: "userHandleTemplate", first: true, predicate: ["userHandleTemplate"], descendants: true }, { propertyName: "childLayers", first: true, predicate: LayersDirective, descendants: true }, { propertyName: "childCustomCursor", first: true, predicate: CustomCursorsDirective, descendants: true }, { propertyName: "childConnectors", first: true, predicate: ConnectorsDirective, descendants: true }, { propertyName: "childNodes", first: true, predicate: NodesDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
670
+ __decorate([
671
+ Template()
672
+ ], DiagramComponent.prototype, "annotationTemplate", void 0);
673
+ __decorate([
674
+ Template()
675
+ ], DiagramComponent.prototype, "nodeTemplate", void 0);
676
+ __decorate([
677
+ Template()
678
+ ], DiagramComponent.prototype, "userHandleTemplate", void 0);
679
+ DiagramComponent = __decorate([
680
+ ComponentMixins([ComponentBase])
681
+ ], DiagramComponent);
682
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DiagramComponent, decorators: [{
683
+ type: Component,
684
+ args: [{
685
+ selector: 'ejs-diagram',
686
+ inputs: inputs$2,
687
+ outputs: outputs$3,
688
+ template: '',
689
+ changeDetection: ChangeDetectionStrategy.OnPush,
690
+ queries: {
691
+ childLayers: new ContentChild(LayersDirective),
692
+ childCustomCursor: new ContentChild(CustomCursorsDirective),
693
+ childConnectors: new ContentChild(ConnectorsDirective),
694
+ childNodes: new ContentChild(NodesDirective)
695
+ }
696
+ }]
697
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { annotationTemplate: [{
698
+ type: ContentChild,
699
+ args: ['annotationTemplate']
700
+ }], nodeTemplate: [{
701
+ type: ContentChild,
702
+ args: ['nodeTemplate']
703
+ }], userHandleTemplate: [{
704
+ type: ContentChild,
705
+ args: ['userHandleTemplate']
706
+ }] } });
707
+
708
+ /**
709
+ * NgModule definition for the Diagram component.
710
+ */
711
+ class DiagramModule {
712
+ }
713
+ DiagramModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DiagramModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
714
+ DiagramModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DiagramModule, declarations: [DiagramComponent,
715
+ LayerDirective,
716
+ LayersDirective,
717
+ CustomCursorDirective,
718
+ CustomCursorsDirective,
719
+ ConnectorFixedUserHandleDirective,
720
+ ConnectorFixedUserHandlesDirective,
721
+ ConnectorAnnotationDirective,
722
+ ConnectorAnnotationsDirective,
723
+ ConnectorDirective,
724
+ ConnectorsDirective,
725
+ NodeFixedUserHandleDirective,
726
+ NodeFixedUserHandlesDirective,
727
+ NodeAnnotationDirective,
728
+ NodeAnnotationsDirective,
729
+ PortDirective,
730
+ PortsDirective,
731
+ NodeDirective,
732
+ NodesDirective], imports: [CommonModule], exports: [DiagramComponent,
733
+ LayerDirective,
734
+ LayersDirective,
735
+ CustomCursorDirective,
736
+ CustomCursorsDirective,
737
+ ConnectorFixedUserHandleDirective,
738
+ ConnectorFixedUserHandlesDirective,
739
+ ConnectorAnnotationDirective,
740
+ ConnectorAnnotationsDirective,
741
+ ConnectorDirective,
742
+ ConnectorsDirective,
743
+ NodeFixedUserHandleDirective,
744
+ NodeFixedUserHandlesDirective,
745
+ NodeAnnotationDirective,
746
+ NodeAnnotationsDirective,
747
+ PortDirective,
748
+ PortsDirective,
749
+ NodeDirective,
750
+ NodesDirective] });
751
+ DiagramModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DiagramModule, imports: [[CommonModule]] });
752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DiagramModule, decorators: [{
753
+ type: NgModule,
754
+ args: [{
755
+ imports: [CommonModule],
756
+ declarations: [
757
+ DiagramComponent,
758
+ LayerDirective,
759
+ LayersDirective,
760
+ CustomCursorDirective,
761
+ CustomCursorsDirective,
762
+ ConnectorFixedUserHandleDirective,
763
+ ConnectorFixedUserHandlesDirective,
764
+ ConnectorAnnotationDirective,
765
+ ConnectorAnnotationsDirective,
766
+ ConnectorDirective,
767
+ ConnectorsDirective,
768
+ NodeFixedUserHandleDirective,
769
+ NodeFixedUserHandlesDirective,
770
+ NodeAnnotationDirective,
771
+ NodeAnnotationsDirective,
772
+ PortDirective,
773
+ PortsDirective,
774
+ NodeDirective,
775
+ NodesDirective
776
+ ],
777
+ exports: [
778
+ DiagramComponent,
779
+ LayerDirective,
780
+ LayersDirective,
781
+ CustomCursorDirective,
782
+ CustomCursorsDirective,
783
+ ConnectorFixedUserHandleDirective,
784
+ ConnectorFixedUserHandlesDirective,
785
+ ConnectorAnnotationDirective,
786
+ ConnectorAnnotationsDirective,
787
+ ConnectorDirective,
788
+ ConnectorsDirective,
789
+ NodeFixedUserHandleDirective,
790
+ NodeFixedUserHandlesDirective,
791
+ NodeAnnotationDirective,
792
+ NodeAnnotationsDirective,
793
+ PortDirective,
794
+ PortsDirective,
795
+ NodeDirective,
796
+ NodesDirective
797
+ ]
798
+ }]
799
+ }] });
800
+
801
+ const HierarchicalTreeService = { provide: 'DiagramsHierarchicalTree', useValue: HierarchicalTree };
802
+ const MindMapService = { provide: 'DiagramsMindMap', useValue: MindMap };
803
+ const RadialTreeService = { provide: 'DiagramsRadialTree', useValue: RadialTree };
804
+ const ComplexHierarchicalTreeService = { provide: 'DiagramsComplexHierarchicalTree', useValue: ComplexHierarchicalTree };
805
+ const DataBindingService = { provide: 'DiagramsDataBinding', useValue: DataBinding };
806
+ const SnappingService = { provide: 'DiagramsSnapping', useValue: Snapping };
807
+ const PrintAndExportService = { provide: 'DiagramsPrintAndExport', useValue: PrintAndExport };
808
+ const BpmnDiagramsService = { provide: 'DiagramsBpmnDiagrams', useValue: BpmnDiagrams };
809
+ const SymmetricLayoutService = { provide: 'DiagramsSymmetricLayout', useValue: SymmetricLayout };
810
+ const ConnectorBridgingService = { provide: 'DiagramsConnectorBridging', useValue: ConnectorBridging };
811
+ const UndoRedoService = { provide: 'DiagramsUndoRedo', useValue: UndoRedo };
812
+ const LayoutAnimationService = { provide: 'DiagramsLayoutAnimation', useValue: LayoutAnimation };
813
+ const DiagramContextMenuService = { provide: 'DiagramsDiagramContextMenu', useValue: DiagramContextMenu };
814
+ const LineRoutingService = { provide: 'DiagramsLineRouting', useValue: LineRouting };
815
+ const ConnectorEditingService = { provide: 'DiagramsConnectorEditing', useValue: ConnectorEditing };
816
+ const BlazorTooltipService = { provide: 'DiagramsBlazorTooltip', useValue: BlazorTooltip };
817
+ const LineDistributionService = { provide: 'DiagramsLineDistribution', useValue: LineDistribution };
818
+ /**
819
+ * NgModule definition for the Diagram component with providers.
820
+ */
821
+ class DiagramAllModule {
822
+ }
823
+ DiagramAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DiagramAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
824
+ DiagramAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DiagramAllModule, imports: [CommonModule, DiagramModule], exports: [DiagramModule] });
825
+ DiagramAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DiagramAllModule, providers: [
826
+ HierarchicalTreeService,
827
+ MindMapService,
828
+ RadialTreeService,
829
+ ComplexHierarchicalTreeService,
830
+ DataBindingService,
831
+ SnappingService,
832
+ PrintAndExportService,
833
+ BpmnDiagramsService,
834
+ SymmetricLayoutService,
835
+ ConnectorBridgingService,
836
+ UndoRedoService,
837
+ LayoutAnimationService,
838
+ DiagramContextMenuService,
839
+ LineRoutingService,
840
+ ConnectorEditingService,
841
+ BlazorTooltipService,
842
+ LineDistributionService
843
+ ], imports: [[CommonModule, DiagramModule], DiagramModule] });
844
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DiagramAllModule, decorators: [{
845
+ type: NgModule,
846
+ args: [{
847
+ imports: [CommonModule, DiagramModule],
848
+ exports: [
849
+ DiagramModule
850
+ ],
851
+ providers: [
852
+ HierarchicalTreeService,
853
+ MindMapService,
854
+ RadialTreeService,
855
+ ComplexHierarchicalTreeService,
856
+ DataBindingService,
857
+ SnappingService,
858
+ PrintAndExportService,
859
+ BpmnDiagramsService,
860
+ SymmetricLayoutService,
861
+ ConnectorBridgingService,
862
+ UndoRedoService,
863
+ LayoutAnimationService,
864
+ DiagramContextMenuService,
865
+ LineRoutingService,
866
+ ConnectorEditingService,
867
+ BlazorTooltipService,
868
+ LineDistributionService
869
+ ]
870
+ }]
871
+ }] });
872
+
873
+ let input = ['expanded', 'height', 'iconCss', 'id', 'symbols', 'title'];
874
+ let outputs$2 = [];
875
+ /**
876
+ * Palette Directive
877
+ * ```html
878
+ * <e-palettes><e-palette></e-palette><e-palettes>
879
+ * ```
880
+ */
881
+ class PaletteDirective extends ComplexBase {
882
+ constructor(viewContainerRef) {
883
+ super();
884
+ this.viewContainerRef = viewContainerRef;
885
+ setValue('currentInstance', this, this.viewContainerRef);
886
+ this.registerEvents(outputs$2);
887
+ this.directivePropList = input;
888
+ }
889
+ }
890
+ PaletteDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PaletteDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
891
+ PaletteDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: PaletteDirective, selector: "e-palettes>e-palette", inputs: { expanded: "expanded", height: "height", iconCss: "iconCss", id: "id", symbols: "symbols", title: "title" }, usesInheritance: true, ngImport: i0 });
892
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PaletteDirective, decorators: [{
893
+ type: Directive,
894
+ args: [{
895
+ selector: 'e-palettes>e-palette',
896
+ inputs: input,
897
+ outputs: outputs$2,
898
+ queries: {}
899
+ }]
900
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
901
+ /**
902
+ * Palette Array Directive
903
+ * @private
904
+ */
905
+ class PalettesDirective extends ArrayBase {
906
+ constructor() {
907
+ super('palettes');
908
+ }
909
+ }
910
+ PalettesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PalettesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
911
+ PalettesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: PalettesDirective, selector: "ejs-symbolpalette>e-palettes", queries: [{ propertyName: "children", predicate: PaletteDirective }], usesInheritance: true, ngImport: i0 });
912
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PalettesDirective, decorators: [{
913
+ type: Directive,
914
+ args: [{
915
+ selector: 'ejs-symbolpalette>e-palettes',
916
+ queries: {
917
+ children: new ContentChildren(PaletteDirective)
918
+ },
919
+ }]
920
+ }], ctorParameters: function () { return []; } });
921
+
922
+ const inputs$1 = ['accessKey', 'allowDrag', 'connectorDefaults', 'enableAnimation', 'enablePersistence', 'enableRtl', 'enableSearch', 'expandMode', 'filterSymbols', 'getConnectorDefaults', 'getNodeDefaults', 'getSymbolInfo', 'getSymbolTemplate', 'height', 'ignoreSymbolsOnSearch', 'locale', 'nodeDefaults', 'palettes', 'symbolDragSize', 'symbolHeight', 'symbolInfo', 'symbolMargin', 'symbolPreview', 'symbolWidth', 'width'];
923
+ const outputs$1 = ['paletteExpanding', 'paletteSelectionChange'];
924
+ const twoWays$1 = [''];
925
+ /**
926
+ * SymbolPalette Component
927
+ * ```html
928
+ * <ej-symbol-palette></ej-symbol-palette>
929
+ * ```
930
+ */
931
+ let SymbolPaletteComponent = class SymbolPaletteComponent extends SymbolPalette {
932
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
933
+ super();
934
+ this.ngEle = ngEle;
935
+ this.srenderer = srenderer;
936
+ this.viewContainerRef = viewContainerRef;
937
+ this.injector = injector;
938
+ this.tags = ['palettes'];
939
+ this.element = this.ngEle.nativeElement;
940
+ this.injectedModules = this.injectedModules || [];
941
+ try {
942
+ let mod = this.injector.get('DiagramsBpmnDiagrams');
943
+ if (this.injectedModules.indexOf(mod) === -1) {
944
+ this.injectedModules.push(mod);
945
+ }
946
+ }
947
+ catch { }
948
+ this.registerEvents(outputs$1);
949
+ this.addTwoWay.call(this, twoWays$1);
950
+ setValue('currentInstance', this, this.viewContainerRef);
951
+ this.context = new ComponentBase();
952
+ }
953
+ ngOnInit() {
954
+ this.context.ngOnInit(this);
955
+ }
956
+ ngAfterViewInit() {
957
+ this.context.ngAfterViewInit(this);
958
+ }
959
+ ngOnDestroy() {
960
+ this.context.ngOnDestroy(this);
961
+ }
962
+ ngAfterContentChecked() {
963
+ this.tagObjects[0].instance = this.childPalettes;
964
+ this.context.ngAfterContentChecked(this);
965
+ }
966
+ };
967
+ SymbolPaletteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SymbolPaletteComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
968
+ SymbolPaletteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SymbolPaletteComponent, selector: "ejs-symbolpalette", inputs: { accessKey: "accessKey", allowDrag: "allowDrag", connectorDefaults: "connectorDefaults", enableAnimation: "enableAnimation", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSearch: "enableSearch", expandMode: "expandMode", filterSymbols: "filterSymbols", getConnectorDefaults: "getConnectorDefaults", getNodeDefaults: "getNodeDefaults", getSymbolInfo: "getSymbolInfo", getSymbolTemplate: "getSymbolTemplate", height: "height", ignoreSymbolsOnSearch: "ignoreSymbolsOnSearch", locale: "locale", nodeDefaults: "nodeDefaults", palettes: "palettes", symbolDragSize: "symbolDragSize", symbolHeight: "symbolHeight", symbolInfo: "symbolInfo", symbolMargin: "symbolMargin", symbolPreview: "symbolPreview", symbolWidth: "symbolWidth", width: "width" }, outputs: { paletteExpanding: "paletteExpanding", paletteSelectionChange: "paletteSelectionChange" }, queries: [{ propertyName: "childPalettes", first: true, predicate: PalettesDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
969
+ SymbolPaletteComponent = __decorate([
970
+ ComponentMixins([ComponentBase])
971
+ ], SymbolPaletteComponent);
972
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SymbolPaletteComponent, decorators: [{
973
+ type: Component,
974
+ args: [{
975
+ selector: 'ejs-symbolpalette',
976
+ inputs: inputs$1,
977
+ outputs: outputs$1,
978
+ template: '',
979
+ changeDetection: ChangeDetectionStrategy.OnPush,
980
+ queries: {
981
+ childPalettes: new ContentChild(PalettesDirective)
982
+ }
983
+ }]
984
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
985
+
986
+ /**
987
+ * NgModule definition for the SymbolPalette component.
988
+ */
989
+ class SymbolPaletteModule {
990
+ }
991
+ SymbolPaletteModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SymbolPaletteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
992
+ SymbolPaletteModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SymbolPaletteModule, declarations: [SymbolPaletteComponent,
993
+ PaletteDirective,
994
+ PalettesDirective], imports: [CommonModule], exports: [SymbolPaletteComponent,
995
+ PaletteDirective,
996
+ PalettesDirective] });
997
+ SymbolPaletteModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SymbolPaletteModule, imports: [[CommonModule]] });
998
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SymbolPaletteModule, decorators: [{
999
+ type: NgModule,
1000
+ args: [{
1001
+ imports: [CommonModule],
1002
+ declarations: [
1003
+ SymbolPaletteComponent,
1004
+ PaletteDirective,
1005
+ PalettesDirective
1006
+ ],
1007
+ exports: [
1008
+ SymbolPaletteComponent,
1009
+ PaletteDirective,
1010
+ PalettesDirective
1011
+ ]
1012
+ }]
1013
+ }] });
1014
+
1015
+ /**
1016
+ * NgModule definition for the SymbolPalette component with providers.
1017
+ */
1018
+ class SymbolPaletteAllModule {
1019
+ }
1020
+ SymbolPaletteAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SymbolPaletteAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1021
+ SymbolPaletteAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SymbolPaletteAllModule, imports: [CommonModule, SymbolPaletteModule], exports: [SymbolPaletteModule] });
1022
+ SymbolPaletteAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SymbolPaletteAllModule, providers: [], imports: [[CommonModule, SymbolPaletteModule], SymbolPaletteModule] });
1023
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SymbolPaletteAllModule, decorators: [{
1024
+ type: NgModule,
1025
+ args: [{
1026
+ imports: [CommonModule, SymbolPaletteModule],
1027
+ exports: [
1028
+ SymbolPaletteModule
1029
+ ],
1030
+ providers: []
1031
+ }]
1032
+ }] });
1033
+
1034
+ const inputs = ['enablePersistence', 'enableRtl', 'height', 'locale', 'sourceID', 'width'];
1035
+ const outputs = ['created'];
1036
+ const twoWays = [''];
1037
+ /**
1038
+ * Overview Component
1039
+ * ```html
1040
+ * <ej-overview></ej-overview>
1041
+ * ```
1042
+ */
1043
+ let OverviewComponent = class OverviewComponent extends Overview {
1044
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
1045
+ super();
1046
+ this.ngEle = ngEle;
1047
+ this.srenderer = srenderer;
1048
+ this.viewContainerRef = viewContainerRef;
1049
+ this.injector = injector;
1050
+ this.tags = [''];
1051
+ this.element = this.ngEle.nativeElement;
1052
+ this.injectedModules = this.injectedModules || [];
1053
+ this.registerEvents(outputs);
1054
+ this.addTwoWay.call(this, twoWays);
1055
+ setValue('currentInstance', this, this.viewContainerRef);
1056
+ this.context = new ComponentBase();
1057
+ }
1058
+ ngOnInit() {
1059
+ this.context.ngOnInit(this);
1060
+ }
1061
+ ngAfterViewInit() {
1062
+ this.context.ngAfterViewInit(this);
1063
+ }
1064
+ ngOnDestroy() {
1065
+ this.context.ngOnDestroy(this);
1066
+ }
1067
+ ngAfterContentChecked() {
1068
+ this.context.ngAfterContentChecked(this);
1069
+ }
1070
+ };
1071
+ OverviewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OverviewComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
1072
+ OverviewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: OverviewComponent, selector: "ejs-overview", inputs: { enablePersistence: "enablePersistence", enableRtl: "enableRtl", height: "height", locale: "locale", sourceID: "sourceID", width: "width" }, outputs: { created: "created" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1073
+ OverviewComponent = __decorate([
1074
+ ComponentMixins([ComponentBase])
1075
+ ], OverviewComponent);
1076
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OverviewComponent, decorators: [{
1077
+ type: Component,
1078
+ args: [{
1079
+ selector: 'ejs-overview',
1080
+ inputs: inputs,
1081
+ outputs: outputs,
1082
+ template: '',
1083
+ changeDetection: ChangeDetectionStrategy.OnPush,
1084
+ queries: {}
1085
+ }]
1086
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
1087
+
1088
+ /**
1089
+ * NgModule definition for the Overview component.
1090
+ */
1091
+ class OverviewModule {
1092
+ }
1093
+ OverviewModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OverviewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1094
+ OverviewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OverviewModule, declarations: [OverviewComponent], imports: [CommonModule], exports: [OverviewComponent] });
1095
+ OverviewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OverviewModule, imports: [[CommonModule]] });
1096
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OverviewModule, decorators: [{
1097
+ type: NgModule,
1098
+ args: [{
1099
+ imports: [CommonModule],
1100
+ declarations: [
1101
+ OverviewComponent
1102
+ ],
1103
+ exports: [
1104
+ OverviewComponent
1105
+ ]
1106
+ }]
1107
+ }] });
1108
+
1109
+ /**
1110
+ * NgModule definition for the Overview component with providers.
1111
+ */
1112
+ class OverviewAllModule {
1113
+ }
1114
+ OverviewAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OverviewAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1115
+ OverviewAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OverviewAllModule, imports: [CommonModule, OverviewModule], exports: [OverviewModule] });
1116
+ OverviewAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OverviewAllModule, providers: [], imports: [[CommonModule, OverviewModule], OverviewModule] });
1117
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OverviewAllModule, decorators: [{
1118
+ type: NgModule,
1119
+ args: [{
1120
+ imports: [CommonModule, OverviewModule],
1121
+ exports: [
1122
+ OverviewModule
1123
+ ],
1124
+ providers: []
1125
+ }]
1126
+ }] });
1127
+
1128
+ // Mapping root file for package generation
1129
+
1130
+ /**
1131
+ * Generated bundle index. Do not edit.
1132
+ */
1133
+
1134
+ export { BlazorTooltipService, BpmnDiagramsService, ComplexHierarchicalTreeService, ConnectorAnnotationDirective, ConnectorAnnotationsDirective, ConnectorBridgingService, ConnectorDirective, ConnectorEditingService, ConnectorFixedUserHandleDirective, ConnectorFixedUserHandlesDirective, ConnectorsDirective, CustomCursorDirective, CustomCursorsDirective, DataBindingService, DiagramAllModule, DiagramComponent, DiagramContextMenuService, DiagramModule, HierarchicalTreeService, LayerDirective, LayersDirective, LayoutAnimationService, LineDistributionService, LineRoutingService, MindMapService, NodeAnnotationDirective, NodeAnnotationsDirective, NodeDirective, NodeFixedUserHandleDirective, NodeFixedUserHandlesDirective, NodesDirective, OverviewAllModule, OverviewComponent, OverviewModule, PaletteDirective, PalettesDirective, PortDirective, PortsDirective, PrintAndExportService, RadialTreeService, SnappingService, SymbolPaletteAllModule, SymbolPaletteComponent, SymbolPaletteModule, SymmetricLayoutService, UndoRedoService };
1135
+ //# sourceMappingURL=syncfusion-ej2-angular-diagrams.mjs.map