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

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 (61) hide show
  1. package/CHANGELOG.md +2011 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/diagram/connector-annotation.directive.mjs +59 -0
  4. package/esm2020/src/diagram/connector-fixeduserhandle.directive.mjs +59 -0
  5. package/esm2020/src/diagram/connectors.directive.mjs +60 -0
  6. package/esm2020/src/diagram/customcursor.directive.mjs +54 -0
  7. package/esm2020/src/diagram/diagram-all.module.mjs +83 -0
  8. package/esm2020/src/diagram/diagram.component.mjs +231 -0
  9. package/esm2020/src/diagram/diagram.module.mjs +106 -0
  10. package/esm2020/src/diagram/layers.directive.mjs +54 -0
  11. package/esm2020/src/diagram/node-annotation.directive.mjs +59 -0
  12. package/esm2020/src/diagram/node-fixeduserhandle.directive.mjs +59 -0
  13. package/esm2020/src/diagram/nodes.directive.mjs +62 -0
  14. package/esm2020/src/diagram/ports.directive.mjs +59 -0
  15. package/esm2020/src/index.mjs +21 -0
  16. package/esm2020/src/overview/overview-all.module.mjs +23 -0
  17. package/esm2020/src/overview/overview.component.mjs +60 -0
  18. package/esm2020/src/overview/overview.module.mjs +25 -0
  19. package/esm2020/src/symbol-palette/palettes.directive.mjs +52 -0
  20. package/esm2020/src/symbol-palette/symbolpalette-all.module.mjs +23 -0
  21. package/esm2020/src/symbol-palette/symbolpalette.component.mjs +71 -0
  22. package/esm2020/src/symbol-palette/symbolpalette.module.mjs +34 -0
  23. package/esm2020/syncfusion-ej2-angular-diagrams.mjs +5 -0
  24. package/fesm2015/syncfusion-ej2-angular-diagrams.mjs +1153 -0
  25. package/fesm2015/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
  26. package/fesm2020/syncfusion-ej2-angular-diagrams.mjs +1153 -0
  27. package/fesm2020/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
  28. package/package.json +20 -7
  29. package/public_api.d.ts +1 -1
  30. package/src/diagram/connector-annotation.directive.d.ts +175 -170
  31. package/src/diagram/connector-fixeduserhandle.directive.d.ts +116 -111
  32. package/src/diagram/connectors.directive.d.ts +281 -276
  33. package/src/diagram/customcursor.directive.d.ts +36 -31
  34. package/src/diagram/diagram-all.module.d.ts +31 -25
  35. package/src/diagram/diagram.component.d.ts +106 -103
  36. package/src/diagram/diagram.module.d.ts +20 -5
  37. package/src/diagram/layers.directive.d.ts +60 -55
  38. package/src/diagram/node-annotation.directive.d.ts +156 -151
  39. package/src/diagram/node-fixeduserhandle.directive.d.ts +107 -102
  40. package/src/diagram/nodes.directive.d.ts +343 -338
  41. package/src/diagram/ports.directive.d.ts +147 -142
  42. package/src/index.d.ts +20 -20
  43. package/src/overview/overview-all.module.d.ts +11 -5
  44. package/src/overview/overview.component.d.ts +32 -29
  45. package/src/overview/overview.module.d.ts +11 -5
  46. package/src/symbol-palette/palettes.directive.d.ts +56 -51
  47. package/src/symbol-palette/symbolpalette-all.module.d.ts +11 -5
  48. package/src/symbol-palette/symbolpalette.component.d.ts +35 -32
  49. package/src/symbol-palette/symbolpalette.module.d.ts +12 -5
  50. package/syncfusion-ej2-angular-diagrams.d.ts +5 -0
  51. package/@syncfusion/ej2-angular-diagrams.es5.js +0 -1342
  52. package/@syncfusion/ej2-angular-diagrams.es5.js.map +0 -1
  53. package/@syncfusion/ej2-angular-diagrams.js +0 -1261
  54. package/@syncfusion/ej2-angular-diagrams.js.map +0 -1
  55. package/LICENSE +0 -10
  56. package/dist/ej2-angular-diagrams.umd.js +0 -1785
  57. package/dist/ej2-angular-diagrams.umd.js.map +0 -1
  58. package/dist/ej2-angular-diagrams.umd.min.js +0 -11
  59. package/dist/ej2-angular-diagrams.umd.min.js.map +0 -1
  60. package/ej2-angular-diagrams.d.ts +0 -7
  61. package/ej2-angular-diagrams.metadata.json +0 -1
@@ -1,276 +1,281 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * Connectors Directive
5
- * ```html
6
- * <e-connectors>
7
- * <e-connector></e-connector>
8
- * </e-connectors>
9
- * ```
10
- */
11
- export declare class ConnectorDirective extends ComplexBase<ConnectorDirective> {
12
- private viewContainerRef;
13
- directivePropList: any;
14
- childFixedUserHandles: any;
15
- childAnnotations: any;
16
- tags: string[];
17
- /**
18
- * Defines the type of the connector
19
- * * Straight - Sets the segment type as Straight
20
- * * Orthogonal - Sets the segment type as Orthogonal
21
- * * Bezier - Sets the segment type as Bezier
22
- * @default 'Straight'
23
- * @asptype Syncfusion.EJ2.Diagrams.Segments
24
- */
25
- type: any;
26
- /**
27
- * Allows the user to save custom information/data about a node/connector
28
- * @aspdefaultvalueignore
29
- * @default undefined
30
- */
31
- addInfo: any;
32
- /**
33
- * Specifies a value indicating whether to overlap the connector over with the source and target node.
34
- * If the LineRouting is enabled in the diagram, then allowNodeOverlap property will not work.
35
- * @default false
36
- */
37
- allowNodeOverlap: any;
38
- /**
39
- *
40
- */
41
- annotations: any;
42
- /**
43
- * Sets the bezier settings of editing the segments.
44
- * @default null
45
- */
46
- bezierSettings: any;
47
- /**
48
- * Defines the bridgeSpace of connector
49
- * @default 10
50
- */
51
- bridgeSpace: any;
52
- /**
53
- * Sets the connector padding value
54
- * @default 0
55
- */
56
- connectionPadding: any;
57
- /**
58
- * Sets the distance between source node and connector
59
- * @default 13
60
- */
61
- connectorSpacing: any;
62
- /**
63
- * Defines the constraints of connector
64
- * * None - Interaction of the connectors cannot be done.
65
- * * Select - Selects the connector.
66
- * * Delete - Delete the connector.
67
- * * Drag - Drag the connector.
68
- * * DragSourceEnd - Drag the source end of the connector.
69
- * * DragTargetEnd - Drag the target end of the connector.
70
- * * DragSegmentThump - Drag the segment thumb of the connector.
71
- * * AllowDrop - Allow to drop a node.
72
- * * Bridging - Creates bridge on intersection of two connectors.
73
- * * InheritBridging - Creates bridge on intersection of two connectors.
74
- * * PointerEvents - Sets the pointer events.
75
- * * Tooltip - Displays a tooltip for the connectors.
76
- * * InheritToolTip - Displays a tooltip for the connectors.
77
- * * Interaction - Features of the connector used for interaction.
78
- * * ReadOnly - Enables ReadOnly
79
- * @default 'Default'
80
- * @aspnumberenum
81
- */
82
- constraints: any;
83
- /**
84
- * Sets the corner radius of the connector
85
- * @default 0
86
- */
87
- cornerRadius: any;
88
- /**
89
- * Defines the size of a drop symbol
90
- * @aspdefaultvalueignore
91
- * @default undefined
92
- */
93
- dragSize: any;
94
- /**
95
- * Defines whether the node should be automatically positioned or not. Applicable, if layout option is enabled.
96
- * @default false
97
- */
98
- excludeFromLayout: any;
99
- /**
100
- * Specifies the collection of the fixed user handle
101
- * @aspdefaultvalueignore
102
- * @default undefined
103
- */
104
- fixedUserHandles: any;
105
- /**
106
- * Flip the element in Horizontal/Vertical directions
107
- * @aspdefaultvalueignore
108
- * @default None
109
- */
110
- flip: any;
111
- /**
112
- * Allows you to flip only the node or along with port and label
113
- * @aspdefaultvalueignore
114
- * @default All
115
- */
116
- flipMode: any;
117
- /**
118
- * Sets the connector padding value
119
- * @default 10
120
- */
121
- hitPadding: any;
122
- /**
123
- * Represents the unique id of nodes/connectors
124
- * @default ''
125
- */
126
- id: any;
127
- /**
128
- * Defines the space to be left between the node and its immediate parent
129
- * @default {}
130
- */
131
- margin: any;
132
- /**
133
- * Sets the maximum segment thumb for the connector
134
- * @default null
135
- */
136
- maxSegmentThumb: any;
137
- /**
138
- * Defines the behavior of connection ports
139
- * @aspdefaultvalueignore
140
- * @default undefined
141
- */
142
- ports: any;
143
- /**
144
- * Defines the size of the symbol preview
145
- * @aspdefaultvalueignore
146
- * @default undefined
147
- */
148
- previewSize: any;
149
- /**
150
- * Defines the shape for the connector segmentThumb
151
- * Rhombus - Sets the segmentThumb shape as Rhombus
152
- * Square - Sets the segmentThumb shape as Square
153
- * Rectangle - Sets the segmentThumb shape as Rectangle
154
- * Ellipse - Sets the segmentThumb shape as Ellipse
155
- * Arrow - Sets the segmentThumb shape as Arrow
156
- * Diamond - Sets the segmentThumb shape as Diamond
157
- * OpenArrow - Sets the segmentThumb shape as OpenArrow
158
- * Circle - Sets the segmentThumb shape as Circle
159
- * Fletch - Sets the segmentThumb shape as Fletch
160
- * OpenFetch - Sets the segmentThumb shape as OpenFetch
161
- * IndentedArrow - Sets the segmentThumb shape as Indented Arrow
162
- * OutdentedArrow - Sets the segmentThumb shape as Outdented Arrow
163
- * DoubleArrow - Sets the segmentThumb shape as DoubleArrow
164
- * @default 'Circle'
165
- */
166
- segmentThumbShape: any;
167
- /**
168
- * Specifies the size of the segment thumb for individual connector. When not set, it defaults to matching the underlying path data
169
- * @default 10
170
- */
171
- segmentThumbSize: any;
172
- /**
173
- * Defines the segments
174
- * @default []
175
- * @asptype object
176
- */
177
- segments: any;
178
- /**
179
- * Defines the shape of the connector
180
- * @default 'Bpmn'
181
- * @asptype object
182
- */
183
- shape: any;
184
- /**
185
- * Defines the source decorator of the connector
186
- * @default new Decorator()
187
- */
188
- sourceDecorator: any;
189
- /**
190
- * Sets the source node/connector object of the connector
191
- * @default null
192
- */
193
- sourceID: any;
194
- /**
195
- * Sets the source padding of the connector
196
- * @default 0
197
- */
198
- sourcePadding: any;
199
- /**
200
- * Sets the beginning point of the connector
201
- * @default new Point(0,0)
202
- */
203
- sourcePoint: any;
204
- /**
205
- * Sets the unique id of the source port of the connector
206
- * @default ''
207
- */
208
- sourcePortID: any;
209
- /**
210
- * Defines the appearance of the connection path
211
- * @default ''
212
- */
213
- style: any;
214
- /**
215
- * Defines the symbol info of a connector
216
- * @aspdefaultvalueignore
217
- * @default undefined
218
- * @ignoreapilink
219
- */
220
- symbolInfo: any;
221
- /**
222
- * Defines the target decorator of the connector
223
- * @default new Decorator()
224
- */
225
- targetDecorator: any;
226
- /**
227
- * Sets the target node/connector object of the connector
228
- * @default null
229
- */
230
- targetID: any;
231
- /**
232
- * Sets the target padding of the connector
233
- * @default 0
234
- */
235
- targetPadding: any;
236
- /**
237
- * Sets the end point of the connector
238
- * @default new Point(0,0)
239
- */
240
- targetPoint: any;
241
- /**
242
- * Sets the unique id of the target port of the connector
243
- * @default ''
244
- */
245
- targetPortID: any;
246
- /**
247
- * defines the tooltip for the connector
248
- * @default new DiagramToolTip();
249
- */
250
- tooltip: any;
251
- /**
252
- * Sets the visibility of the node/connector
253
- * @default true
254
- */
255
- visible: any;
256
- /**
257
- * Defines the UI of the connector
258
- * @default null
259
-
260
- */
261
- wrapper: any;
262
- /**
263
- * Defines the visual order of the node/connector in DOM
264
- * @aspdefaultvalue 5e-324
265
- * @default Number.MIN_VALUE
266
- */
267
- zIndex: any;
268
- constructor(viewContainerRef: ViewContainerRef);
269
- }
270
- /**
271
- * Connector Array Directive
272
- * @private
273
- */
274
- export declare class ConnectorsDirective extends ArrayBase<ConnectorsDirective> {
275
- constructor();
276
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Connectors Directive
6
+ * ```html
7
+ * <e-connectors>
8
+ * <e-connector></e-connector>
9
+ * </e-connectors>
10
+ * ```
11
+ */
12
+ export declare class ConnectorDirective extends ComplexBase<ConnectorDirective> {
13
+ private viewContainerRef;
14
+ directivePropList: any;
15
+ childFixedUserHandles: any;
16
+ childAnnotations: any;
17
+ tags: string[];
18
+ /**
19
+ * Defines the type of the connector
20
+ * * Straight - Sets the segment type as Straight
21
+ * * Orthogonal - Sets the segment type as Orthogonal
22
+ * * Bezier - Sets the segment type as Bezier
23
+ * @default 'Straight'
24
+ * @asptype Syncfusion.EJ2.Diagrams.Segments
25
+ */
26
+ type: any;
27
+ /**
28
+ * Allows the user to save custom information/data about a node/connector
29
+ * @aspdefaultvalueignore
30
+ * @default undefined
31
+ */
32
+ addInfo: any;
33
+ /**
34
+ * Specifies a value indicating whether to overlap the connector over with the source and target node.
35
+ * If the LineRouting is enabled in the diagram, then allowNodeOverlap property will not work.
36
+ * @default false
37
+ */
38
+ allowNodeOverlap: any;
39
+ /**
40
+ *
41
+ */
42
+ annotations: any;
43
+ /**
44
+ * Sets the bezier settings of editing the segments.
45
+ * @default null
46
+ */
47
+ bezierSettings: any;
48
+ /**
49
+ * Defines the bridgeSpace of connector
50
+ * @default 10
51
+ */
52
+ bridgeSpace: any;
53
+ /**
54
+ * Sets the connector padding value
55
+ * @default 0
56
+ */
57
+ connectionPadding: any;
58
+ /**
59
+ * Sets the distance between source node and connector
60
+ * @default 13
61
+ */
62
+ connectorSpacing: any;
63
+ /**
64
+ * Defines the constraints of connector
65
+ * * None - Interaction of the connectors cannot be done.
66
+ * * Select - Selects the connector.
67
+ * * Delete - Delete the connector.
68
+ * * Drag - Drag the connector.
69
+ * * DragSourceEnd - Drag the source end of the connector.
70
+ * * DragTargetEnd - Drag the target end of the connector.
71
+ * * DragSegmentThump - Drag the segment thumb of the connector.
72
+ * * AllowDrop - Allow to drop a node.
73
+ * * Bridging - Creates bridge on intersection of two connectors.
74
+ * * InheritBridging - Creates bridge on intersection of two connectors.
75
+ * * PointerEvents - Sets the pointer events.
76
+ * * Tooltip - Displays a tooltip for the connectors.
77
+ * * InheritToolTip - Displays a tooltip for the connectors.
78
+ * * Interaction - Features of the connector used for interaction.
79
+ * * ReadOnly - Enables ReadOnly
80
+ * @default 'Default'
81
+ * @aspnumberenum
82
+ */
83
+ constraints: any;
84
+ /**
85
+ * Sets the corner radius of the connector
86
+ * @default 0
87
+ */
88
+ cornerRadius: any;
89
+ /**
90
+ * Defines the size of a drop symbol
91
+ * @aspdefaultvalueignore
92
+ * @default undefined
93
+ */
94
+ dragSize: any;
95
+ /**
96
+ * Defines whether the node should be automatically positioned or not. Applicable, if layout option is enabled.
97
+ * @default false
98
+ */
99
+ excludeFromLayout: any;
100
+ /**
101
+ * Specifies the collection of the fixed user handle
102
+ * @aspdefaultvalueignore
103
+ * @default undefined
104
+ */
105
+ fixedUserHandles: any;
106
+ /**
107
+ * Flip the element in Horizontal/Vertical directions
108
+ * @aspdefaultvalueignore
109
+ * @default None
110
+ */
111
+ flip: any;
112
+ /**
113
+ * Allows you to flip only the node or along with port and label
114
+ * @aspdefaultvalueignore
115
+ * @default All
116
+ */
117
+ flipMode: any;
118
+ /**
119
+ * Sets the connector padding value
120
+ * @default 10
121
+ */
122
+ hitPadding: any;
123
+ /**
124
+ * Represents the unique id of nodes/connectors
125
+ * @default ''
126
+ */
127
+ id: any;
128
+ /**
129
+ * Defines the space to be left between the node and its immediate parent
130
+ * @default {}
131
+ */
132
+ margin: any;
133
+ /**
134
+ * Sets the maximum segment thumb for the connector
135
+ * @default null
136
+ */
137
+ maxSegmentThumb: any;
138
+ /**
139
+ * Defines the behavior of connection ports
140
+ * @aspdefaultvalueignore
141
+ * @default undefined
142
+ */
143
+ ports: any;
144
+ /**
145
+ * Defines the size of the symbol preview
146
+ * @aspdefaultvalueignore
147
+ * @default undefined
148
+ */
149
+ previewSize: any;
150
+ /**
151
+ * Defines the shape for the connector segmentThumb
152
+ * Rhombus - Sets the segmentThumb shape as Rhombus
153
+ * Square - Sets the segmentThumb shape as Square
154
+ * Rectangle - Sets the segmentThumb shape as Rectangle
155
+ * Ellipse - Sets the segmentThumb shape as Ellipse
156
+ * Arrow - Sets the segmentThumb shape as Arrow
157
+ * Diamond - Sets the segmentThumb shape as Diamond
158
+ * OpenArrow - Sets the segmentThumb shape as OpenArrow
159
+ * Circle - Sets the segmentThumb shape as Circle
160
+ * Fletch - Sets the segmentThumb shape as Fletch
161
+ * OpenFetch - Sets the segmentThumb shape as OpenFetch
162
+ * IndentedArrow - Sets the segmentThumb shape as Indented Arrow
163
+ * OutdentedArrow - Sets the segmentThumb shape as Outdented Arrow
164
+ * DoubleArrow - Sets the segmentThumb shape as DoubleArrow
165
+ * @default 'Circle'
166
+ */
167
+ segmentThumbShape: any;
168
+ /**
169
+ * Specifies the size of the segment thumb for individual connector. When not set, it defaults to matching the underlying path data
170
+ * @default 10
171
+ */
172
+ segmentThumbSize: any;
173
+ /**
174
+ * Defines the segments
175
+ * @default []
176
+ * @asptype object
177
+ */
178
+ segments: any;
179
+ /**
180
+ * Defines the shape of the connector
181
+ * @default 'Bpmn'
182
+ * @asptype object
183
+ */
184
+ shape: any;
185
+ /**
186
+ * Defines the source decorator of the connector
187
+ * @default new Decorator()
188
+ */
189
+ sourceDecorator: any;
190
+ /**
191
+ * Sets the source node/connector object of the connector
192
+ * @default null
193
+ */
194
+ sourceID: any;
195
+ /**
196
+ * Sets the source padding of the connector
197
+ * @default 0
198
+ */
199
+ sourcePadding: any;
200
+ /**
201
+ * Sets the beginning point of the connector
202
+ * @default new Point(0,0)
203
+ */
204
+ sourcePoint: any;
205
+ /**
206
+ * Sets the unique id of the source port of the connector
207
+ * @default ''
208
+ */
209
+ sourcePortID: any;
210
+ /**
211
+ * Defines the appearance of the connection path
212
+ * @default ''
213
+ */
214
+ style: any;
215
+ /**
216
+ * Defines the symbol info of a connector
217
+ * @aspdefaultvalueignore
218
+ * @default undefined
219
+ * @ignoreapilink
220
+ */
221
+ symbolInfo: any;
222
+ /**
223
+ * Defines the target decorator of the connector
224
+ * @default new Decorator()
225
+ */
226
+ targetDecorator: any;
227
+ /**
228
+ * Sets the target node/connector object of the connector
229
+ * @default null
230
+ */
231
+ targetID: any;
232
+ /**
233
+ * Sets the target padding of the connector
234
+ * @default 0
235
+ */
236
+ targetPadding: any;
237
+ /**
238
+ * Sets the end point of the connector
239
+ * @default new Point(0,0)
240
+ */
241
+ targetPoint: any;
242
+ /**
243
+ * Sets the unique id of the target port of the connector
244
+ * @default ''
245
+ */
246
+ targetPortID: any;
247
+ /**
248
+ * defines the tooltip for the connector
249
+ * @default new DiagramToolTip();
250
+ */
251
+ tooltip: any;
252
+ /**
253
+ * Sets the visibility of the node/connector
254
+ * @default true
255
+ */
256
+ visible: any;
257
+ /**
258
+ * Defines the UI of the connector
259
+ * @default null
260
+ * @deprecated
261
+ */
262
+ wrapper: any;
263
+ /**
264
+ * Defines the visual order of the node/connector in DOM
265
+ * @aspdefaultvalue 5e-324
266
+ * @default Number.MIN_VALUE
267
+ */
268
+ zIndex: any;
269
+ constructor(viewContainerRef: ViewContainerRef);
270
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConnectorDirective, never>;
271
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ConnectorDirective, "e-connectors>e-connector", never, { "addInfo": "addInfo"; "allowNodeOverlap": "allowNodeOverlap"; "annotations": "annotations"; "bezierSettings": "bezierSettings"; "bridgeSpace": "bridgeSpace"; "connectionPadding": "connectionPadding"; "connectorSpacing": "connectorSpacing"; "constraints": "constraints"; "cornerRadius": "cornerRadius"; "dragSize": "dragSize"; "excludeFromLayout": "excludeFromLayout"; "fixedUserHandles": "fixedUserHandles"; "flip": "flip"; "flipMode": "flipMode"; "hitPadding": "hitPadding"; "id": "id"; "margin": "margin"; "maxSegmentThumb": "maxSegmentThumb"; "ports": "ports"; "previewSize": "previewSize"; "segmentThumbShape": "segmentThumbShape"; "segmentThumbSize": "segmentThumbSize"; "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"; }, {}, ["childFixedUserHandles", "childAnnotations"]>;
272
+ }
273
+ /**
274
+ * Connector Array Directive
275
+ * @private
276
+ */
277
+ export declare class ConnectorsDirective extends ArrayBase<ConnectorsDirective> {
278
+ constructor();
279
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConnectorsDirective, never>;
280
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ConnectorsDirective, "ej-diagram>e-connectors", never, {}, {}, ["children"]>;
281
+ }
@@ -1,31 +1,36 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * Cursor Maps Directive
5
- * ```html
6
- * <e-cusrsormaps>
7
- * <e-cursormap></e-cursormap>
8
- * </e-cursormaps>
9
- * ```
10
- */
11
- export declare class CustomCursorDirective extends ComplexBase<CustomCursorDirective> {
12
- private viewContainerRef;
13
- directivePropList: any;
14
- /**
15
- * Defines the property of a Data Map Items
16
- */
17
- action: any;
18
- /**
19
- * Defines the Fields for the Data Map Items
20
- * @default ''
21
- */
22
- cursor: any;
23
- constructor(viewContainerRef: ViewContainerRef);
24
- }
25
- /**
26
- * CustomCursor Array Directive
27
- * @private
28
- */
29
- export declare class CustomCursorsDirective extends ArrayBase<CustomCursorsDirective> {
30
- constructor();
31
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Cursor Maps Directive
6
+ * ```html
7
+ * <e-cusrsormaps>
8
+ * <e-cursormap></e-cursormap>
9
+ * </e-cursormaps>
10
+ * ```
11
+ */
12
+ export declare class CustomCursorDirective extends ComplexBase<CustomCursorDirective> {
13
+ private viewContainerRef;
14
+ directivePropList: any;
15
+ /**
16
+ * Defines the property of a Data Map Items
17
+ */
18
+ action: any;
19
+ /**
20
+ * Defines the Fields for the Data Map Items
21
+ * @default ''
22
+ */
23
+ cursor: any;
24
+ constructor(viewContainerRef: ViewContainerRef);
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomCursorDirective, never>;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CustomCursorDirective, "e-cursormaps>e-cursormap", never, { "action": "action"; "cursor": "cursor"; }, {}, never>;
27
+ }
28
+ /**
29
+ * CustomCursor Array Directive
30
+ * @private
31
+ */
32
+ export declare class CustomCursorsDirective extends ArrayBase<CustomCursorsDirective> {
33
+ constructor();
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomCursorsDirective, never>;
35
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CustomCursorsDirective, "ej-diagram>e-cursormaps", never, {}, {}, ["children"]>;
36
+ }