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

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 (36) hide show
  1. package/@syncfusion/ej2-angular-diagrams.es5.js +1341 -1341
  2. package/@syncfusion/ej2-angular-diagrams.es5.js.map +1 -1
  3. package/@syncfusion/ej2-angular-diagrams.js +1214 -1214
  4. package/@syncfusion/ej2-angular-diagrams.js.map +1 -1
  5. package/{license → LICENSE} +10 -10
  6. package/dist/ej2-angular-diagrams.umd.js +1343 -1333
  7. package/dist/ej2-angular-diagrams.umd.js.map +1 -1
  8. package/dist/ej2-angular-diagrams.umd.min.js +2 -2
  9. package/dist/ej2-angular-diagrams.umd.min.js.map +1 -1
  10. package/ej2-angular-diagrams.d.ts +7 -7
  11. package/ej2-angular-diagrams.metadata.json +1 -1
  12. package/package.json +4 -4
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.d.ts +2 -2
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +4 -4
  17. package/src/diagram/connector-annotation.directive.d.ts +170 -170
  18. package/src/diagram/connector-fixeduserhandle.directive.d.ts +111 -111
  19. package/src/diagram/connectors.directive.d.ts +275 -275
  20. package/src/diagram/customcursor.directive.d.ts +31 -31
  21. package/src/diagram/diagram-all.module.d.ts +25 -25
  22. package/src/diagram/diagram.component.d.ts +103 -103
  23. package/src/diagram/diagram.module.d.ts +5 -5
  24. package/src/diagram/layers.directive.d.ts +55 -55
  25. package/src/diagram/node-annotation.directive.d.ts +151 -151
  26. package/src/diagram/node-fixeduserhandle.directive.d.ts +102 -102
  27. package/src/diagram/nodes.directive.d.ts +333 -333
  28. package/src/diagram/ports.directive.d.ts +142 -142
  29. package/src/index.d.ts +20 -20
  30. package/src/overview/overview-all.module.d.ts +5 -5
  31. package/src/overview/overview.component.d.ts +29 -29
  32. package/src/overview/overview.module.d.ts +5 -5
  33. package/src/symbol-palette/palettes.directive.d.ts +51 -51
  34. package/src/symbol-palette/symbolpalette-all.module.d.ts +5 -5
  35. package/src/symbol-palette/symbolpalette.component.d.ts +32 -32
  36. package/src/symbol-palette/symbolpalette.module.d.ts +5 -5
@@ -1,142 +1,142 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * Nodes Directive
5
- * ```html
6
- * <e-nodes>
7
- * <e-node>
8
- * <e-node-ports>
9
- * <e-node-port>
10
- * </e-node-port>
11
- * </e-node-ports>
12
- * </e-node>
13
- * </e-nodes>
14
- * ```
15
- */
16
- export declare class PortDirective extends ComplexBase<PortDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * Allows the user to save custom information/data about a port
21
- * @aspdefaultvalueignore
22
- * @default undefined
23
- */
24
- addInfo: any;
25
- /**
26
- * Defines the allowed direction for connections to the port
27
- * * Auto - Maintains the default behavior of automatic direction calculation.
28
- * * Left - Restricts connections to only connect to the left side of the port.
29
- * * Top - Restricts connections to only connect to the top side of the port.
30
- * * Right - Restricts connections to only connect to the right side of the port.
31
- * * Bottom - Restricts connections to only connect to the bottom side of the port.
32
- * @default 'Auto'
33
- */
34
- connectionDirection: any;
35
- /**
36
- * Defines the constraints of port
37
- * @default 'Default'
38
- * @aspnumberenum
39
- */
40
- constraints: any;
41
- /**
42
- * Sets the height of the port
43
- * @default 12
44
- */
45
- height: any;
46
- /**
47
- * Sets the horizontal alignment of the port with respect to its immediate parent(node/connector)
48
- * * Stretch - Stretches the diagram element throughout its immediate parent
49
- * * Left - Aligns the diagram element at the left of its immediate parent
50
- * * Right - Aligns the diagram element at the right of its immediate parent
51
- * * Center - Aligns the diagram element at the center of its immediate parent
52
- * * Auto - Aligns the diagram element based on the characteristics of its immediate parent
53
- * @default 'Center'
54
- */
55
- horizontalAlignment: any;
56
- /**
57
- * Defines the unique id of the port
58
- * @default ''
59
- */
60
- id: any;
61
- /**
62
- * Defines the collection of the objects that are connected to a particular port
63
- * @default undefined
64
- * @blazordefaultvalue new string[] { }
65
- */
66
- inEdges: any;
67
- /**
68
- * Defines the space that the port has to be moved from its actual position
69
- * @default new Margin(0,0,0,0)
70
- */
71
- margin: any;
72
- /**
73
- * Defines the position of the port with respect to the boundaries of nodes/connector
74
- * @default new Point(0.5,0.5)
75
- * @blazortype NodePortOffset
76
- */
77
- offset: any;
78
- /**
79
- * Defines the collection of the objects that are connected to a particular port
80
- * @default undefined
81
- * @blazordefaultvalue new string[] { }
82
- */
83
- outEdges: any;
84
- /**
85
- * Defines the geometry of the port
86
- * @default ''
87
- */
88
- pathData: any;
89
- /**
90
- * Defines the type of the port shape
91
- * * X - Sets the decorator shape as X
92
- * * Circle - Sets the decorator shape as Circle
93
- * * Square - Sets the decorator shape as Square
94
- * * Custom - Sets the decorator shape as Custom
95
- * @default 'Square'
96
- */
97
- shape: any;
98
- /**
99
- * Defines the appearance of the port
100
- *
101
- * @default {}
102
- */
103
- style: any;
104
- /**
105
- * defines the tooltip for the Ports
106
- * @default new DiagramToolTip();
107
- */
108
- tooltip: any;
109
- /**
110
- * Sets the vertical alignment of the port with respect to its immediate parent(node/connector)
111
- * * Stretch - Stretches the diagram element throughout its immediate parent
112
- * * Top - Aligns the diagram element at the top of its immediate parent
113
- * * Bottom - Aligns the diagram element at the bottom of its immediate parent
114
- * * Center - Aligns the diagram element at the center of its immediate parent
115
- * * Auto - Aligns the diagram element based on the characteristics of its immediate parent
116
- * @default 'Center'
117
- */
118
- verticalAlignment: any;
119
- /**
120
- * Defines the type of the port visibility
121
- * * Visible - Always shows the port
122
- * * Hidden - Always hides the port
123
- * * Hover - Shows the port when the mouse hovers over a node
124
- * * Connect - Shows the port when a connection end point is dragged over a node
125
- * @default 'Connect'
126
- * @aspnumberenum
127
- */
128
- visibility: any;
129
- /**
130
- * Sets the width of the port
131
- * @default 12
132
- */
133
- width: any;
134
- constructor(viewContainerRef: ViewContainerRef);
135
- }
136
- /**
137
- * Port Array Directive
138
- * @private
139
- */
140
- export declare class PortsDirective extends ArrayBase<PortsDirective> {
141
- constructor();
142
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * Nodes Directive
5
+ * ```html
6
+ * <e-nodes>
7
+ * <e-node>
8
+ * <e-node-ports>
9
+ * <e-node-port>
10
+ * </e-node-port>
11
+ * </e-node-ports>
12
+ * </e-node>
13
+ * </e-nodes>
14
+ * ```
15
+ */
16
+ export declare class PortDirective extends ComplexBase<PortDirective> {
17
+ private viewContainerRef;
18
+ directivePropList: any;
19
+ /**
20
+ * Allows the user to save custom information/data about a port
21
+ * @aspdefaultvalueignore
22
+ * @default undefined
23
+ */
24
+ addInfo: any;
25
+ /**
26
+ * Defines the allowed direction for connections to the port
27
+ * * Auto - Maintains the default behavior of automatic direction calculation.
28
+ * * Left - Restricts connections to only connect to the left side of the port.
29
+ * * Top - Restricts connections to only connect to the top side of the port.
30
+ * * Right - Restricts connections to only connect to the right side of the port.
31
+ * * Bottom - Restricts connections to only connect to the bottom side of the port.
32
+ * @default 'Auto'
33
+ */
34
+ connectionDirection: any;
35
+ /**
36
+ * Defines the constraints of port
37
+ * @default 'Default'
38
+ * @aspnumberenum
39
+ */
40
+ constraints: any;
41
+ /**
42
+ * Sets the height of the port
43
+ * @default 12
44
+ */
45
+ height: any;
46
+ /**
47
+ * Sets the horizontal alignment of the port with respect to its immediate parent(node/connector)
48
+ * * Stretch - Stretches the diagram element throughout its immediate parent
49
+ * * Left - Aligns the diagram element at the left of its immediate parent
50
+ * * Right - Aligns the diagram element at the right of its immediate parent
51
+ * * Center - Aligns the diagram element at the center of its immediate parent
52
+ * * Auto - Aligns the diagram element based on the characteristics of its immediate parent
53
+ * @default 'Center'
54
+ */
55
+ horizontalAlignment: any;
56
+ /**
57
+ * Defines the unique id of the port
58
+ * @default ''
59
+ */
60
+ id: any;
61
+ /**
62
+ * Defines the collection of the objects that are connected to a particular port
63
+ * @default undefined
64
+ * @blazordefaultvalue new string[] { }
65
+ */
66
+ inEdges: any;
67
+ /**
68
+ * Defines the space that the port has to be moved from its actual position
69
+ * @default new Margin(0,0,0,0)
70
+ */
71
+ margin: any;
72
+ /**
73
+ * Defines the position of the port with respect to the boundaries of nodes/connector
74
+ * @default new Point(0.5,0.5)
75
+ * @blazortype NodePortOffset
76
+ */
77
+ offset: any;
78
+ /**
79
+ * Defines the collection of the objects that are connected to a particular port
80
+ * @default undefined
81
+ * @blazordefaultvalue new string[] { }
82
+ */
83
+ outEdges: any;
84
+ /**
85
+ * Defines the geometry of the port
86
+ * @default ''
87
+ */
88
+ pathData: any;
89
+ /**
90
+ * Defines the type of the port shape
91
+ * * X - Sets the decorator shape as X
92
+ * * Circle - Sets the decorator shape as Circle
93
+ * * Square - Sets the decorator shape as Square
94
+ * * Custom - Sets the decorator shape as Custom
95
+ * @default 'Square'
96
+ */
97
+ shape: any;
98
+ /**
99
+ * Defines the appearance of the port
100
+ *
101
+ * @default {}
102
+ */
103
+ style: any;
104
+ /**
105
+ * defines the tooltip for the Ports
106
+ * @default new DiagramToolTip();
107
+ */
108
+ tooltip: any;
109
+ /**
110
+ * Sets the vertical alignment of the port with respect to its immediate parent(node/connector)
111
+ * * Stretch - Stretches the diagram element throughout its immediate parent
112
+ * * Top - Aligns the diagram element at the top of its immediate parent
113
+ * * Bottom - Aligns the diagram element at the bottom of its immediate parent
114
+ * * Center - Aligns the diagram element at the center of its immediate parent
115
+ * * Auto - Aligns the diagram element based on the characteristics of its immediate parent
116
+ * @default 'Center'
117
+ */
118
+ verticalAlignment: any;
119
+ /**
120
+ * Defines the type of the port visibility
121
+ * * Visible - Always shows the port
122
+ * * Hidden - Always hides the port
123
+ * * Hover - Shows the port when the mouse hovers over a node
124
+ * * Connect - Shows the port when a connection end point is dragged over a node
125
+ * @default 'Connect'
126
+ * @aspnumberenum
127
+ */
128
+ visibility: any;
129
+ /**
130
+ * Sets the width of the port
131
+ * @default 12
132
+ */
133
+ width: any;
134
+ constructor(viewContainerRef: ViewContainerRef);
135
+ }
136
+ /**
137
+ * Port Array Directive
138
+ * @private
139
+ */
140
+ export declare class PortsDirective extends ArrayBase<PortsDirective> {
141
+ constructor();
142
+ }
package/src/index.d.ts CHANGED
@@ -1,20 +1,20 @@
1
- export { LayerDirective, LayersDirective } from './diagram/layers.directive';
2
- export { CustomCursorDirective, CustomCursorsDirective } from './diagram/customcursor.directive';
3
- export { ConnectorFixedUserHandleDirective, ConnectorFixedUserHandlesDirective } from './diagram/connector-fixeduserhandle.directive';
4
- export { ConnectorAnnotationDirective, ConnectorAnnotationsDirective } from './diagram/connector-annotation.directive';
5
- export { ConnectorDirective, ConnectorsDirective } from './diagram/connectors.directive';
6
- export { NodeFixedUserHandleDirective, NodeFixedUserHandlesDirective } from './diagram/node-fixeduserhandle.directive';
7
- export { NodeAnnotationDirective, NodeAnnotationsDirective } from './diagram/node-annotation.directive';
8
- export { PortDirective, PortsDirective } from './diagram/ports.directive';
9
- export { NodeDirective, NodesDirective } from './diagram/nodes.directive';
10
- export { DiagramComponent } from './diagram/diagram.component';
11
- export { DiagramModule } from './diagram/diagram.module';
12
- export { DiagramAllModule, HierarchicalTreeService, MindMapService, RadialTreeService, ComplexHierarchicalTreeService, DataBindingService, SnappingService, PrintAndExportService, BpmnDiagramsService, SymmetricLayoutService, ConnectorBridgingService, UndoRedoService, LayoutAnimationService, DiagramContextMenuService, LineRoutingService, AvoidLineOverlappingService, ConnectorEditingService, LineDistributionService, Ej1SerializationService, FlowchartLayoutService } from './diagram/diagram-all.module';
13
- export { PaletteDirective, PalettesDirective } from './symbol-palette/palettes.directive';
14
- export { SymbolPaletteComponent } from './symbol-palette/symbolpalette.component';
15
- export { SymbolPaletteModule } from './symbol-palette/symbolpalette.module';
16
- export { SymbolPaletteAllModule } from './symbol-palette/symbolpalette-all.module';
17
- export { OverviewComponent } from './overview/overview.component';
18
- export { OverviewModule } from './overview/overview.module';
19
- export { OverviewAllModule } from './overview/overview-all.module';
20
- export * from '@syncfusion/ej2-diagrams';
1
+ export { LayerDirective, LayersDirective } from './diagram/layers.directive';
2
+ export { CustomCursorDirective, CustomCursorsDirective } from './diagram/customcursor.directive';
3
+ export { ConnectorFixedUserHandleDirective, ConnectorFixedUserHandlesDirective } from './diagram/connector-fixeduserhandle.directive';
4
+ export { ConnectorAnnotationDirective, ConnectorAnnotationsDirective } from './diagram/connector-annotation.directive';
5
+ export { ConnectorDirective, ConnectorsDirective } from './diagram/connectors.directive';
6
+ export { NodeFixedUserHandleDirective, NodeFixedUserHandlesDirective } from './diagram/node-fixeduserhandle.directive';
7
+ export { NodeAnnotationDirective, NodeAnnotationsDirective } from './diagram/node-annotation.directive';
8
+ export { PortDirective, PortsDirective } from './diagram/ports.directive';
9
+ export { NodeDirective, NodesDirective } from './diagram/nodes.directive';
10
+ export { DiagramComponent } from './diagram/diagram.component';
11
+ export { DiagramModule } from './diagram/diagram.module';
12
+ export { DiagramAllModule, HierarchicalTreeService, MindMapService, RadialTreeService, ComplexHierarchicalTreeService, DataBindingService, SnappingService, PrintAndExportService, BpmnDiagramsService, SymmetricLayoutService, ConnectorBridgingService, UndoRedoService, LayoutAnimationService, DiagramContextMenuService, LineRoutingService, AvoidLineOverlappingService, ConnectorEditingService, LineDistributionService, Ej1SerializationService, FlowchartLayoutService } from './diagram/diagram-all.module';
13
+ export { PaletteDirective, PalettesDirective } from './symbol-palette/palettes.directive';
14
+ export { SymbolPaletteComponent } from './symbol-palette/symbolpalette.component';
15
+ export { SymbolPaletteModule } from './symbol-palette/symbolpalette.module';
16
+ export { SymbolPaletteAllModule } from './symbol-palette/symbolpalette-all.module';
17
+ export { OverviewComponent } from './overview/overview.component';
18
+ export { OverviewModule } from './overview/overview.module';
19
+ export { OverviewAllModule } from './overview/overview-all.module';
20
+ export * from '@syncfusion/ej2-diagrams';
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Overview component with providers.
3
- */
4
- export declare class OverviewAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Overview component with providers.
3
+ */
4
+ export declare class OverviewAllModule {
5
+ }
@@ -1,29 +1,29 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Overview } from '@syncfusion/ej2-diagrams';
4
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Overview Component
9
- * ```html
10
- * <ej-overview></ej-overview>
11
- * ```
12
- */
13
- export declare class OverviewComponent extends Overview implements IComponentBase {
14
- private ngEle;
15
- private srenderer;
16
- private viewContainerRef;
17
- private injector;
18
- context: any;
19
- tagObjects: any;
20
- created: any;
21
- tags: string[];
22
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
23
- ngOnInit(): void;
24
- ngAfterViewInit(): void;
25
- ngOnDestroy(): void;
26
- ngAfterContentChecked(): void;
27
- registerEvents: (eventList: string[]) => void;
28
- addTwoWay: (propList: string[]) => void;
29
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Overview } from '@syncfusion/ej2-diagrams';
4
+ export declare const inputs: string[];
5
+ export declare const outputs: string[];
6
+ export declare const twoWays: string[];
7
+ /**
8
+ * Overview Component
9
+ * ```html
10
+ * <ej-overview></ej-overview>
11
+ * ```
12
+ */
13
+ export declare class OverviewComponent extends Overview implements IComponentBase {
14
+ private ngEle;
15
+ private srenderer;
16
+ private viewContainerRef;
17
+ private injector;
18
+ context: any;
19
+ tagObjects: any;
20
+ created: any;
21
+ tags: string[];
22
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
23
+ ngOnInit(): void;
24
+ ngAfterViewInit(): void;
25
+ ngOnDestroy(): void;
26
+ ngAfterContentChecked(): void;
27
+ registerEvents: (eventList: string[]) => void;
28
+ addTwoWay: (propList: string[]) => void;
29
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Overview component.
3
- */
4
- export declare class OverviewModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Overview component.
3
+ */
4
+ export declare class OverviewModule {
5
+ }
@@ -1,51 +1,51 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * Palette Directive
5
- * ```html
6
- * <e-palettes><e-palette></e-palette><e-palettes>
7
- * ```
8
- */
9
- export declare class PaletteDirective extends ComplexBase<PaletteDirective> {
10
- private viewContainerRef;
11
- directivePropList: any;
12
- /**
13
- * Sets whether the palette items to be expanded or not
14
- * @default true
15
- */
16
- expanded: any;
17
- /**
18
- * Sets the height of the symbol group
19
- * @aspdefaultvalueignore
20
- * @default undefined
21
- */
22
- height: any;
23
- /**
24
- * Defines the content of the symbol group
25
- * @default ''
26
- */
27
- iconCss: any;
28
- /**
29
- * Defines the unique id of a symbol group
30
- * @default ''
31
- */
32
- id: any;
33
- /**
34
- * Defines the collection of predefined symbols
35
- * @asptype object
36
- */
37
- symbols: any;
38
- /**
39
- * Defines the title of the symbol group
40
- * @default ''
41
- */
42
- title: any;
43
- constructor(viewContainerRef: ViewContainerRef);
44
- }
45
- /**
46
- * Palette Array Directive
47
- * @private
48
- */
49
- export declare class PalettesDirective extends ArrayBase<PalettesDirective> {
50
- constructor();
51
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * Palette Directive
5
+ * ```html
6
+ * <e-palettes><e-palette></e-palette><e-palettes>
7
+ * ```
8
+ */
9
+ export declare class PaletteDirective extends ComplexBase<PaletteDirective> {
10
+ private viewContainerRef;
11
+ directivePropList: any;
12
+ /**
13
+ * Sets whether the palette items to be expanded or not
14
+ * @default true
15
+ */
16
+ expanded: any;
17
+ /**
18
+ * Sets the height of the symbol group
19
+ * @aspdefaultvalueignore
20
+ * @default undefined
21
+ */
22
+ height: any;
23
+ /**
24
+ * Defines the content of the symbol group
25
+ * @default ''
26
+ */
27
+ iconCss: any;
28
+ /**
29
+ * Defines the unique id of a symbol group
30
+ * @default ''
31
+ */
32
+ id: any;
33
+ /**
34
+ * Defines the collection of predefined symbols
35
+ * @asptype object
36
+ */
37
+ symbols: any;
38
+ /**
39
+ * Defines the title of the symbol group
40
+ * @default ''
41
+ */
42
+ title: any;
43
+ constructor(viewContainerRef: ViewContainerRef);
44
+ }
45
+ /**
46
+ * Palette Array Directive
47
+ * @private
48
+ */
49
+ export declare class PalettesDirective extends ArrayBase<PalettesDirective> {
50
+ constructor();
51
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the SymbolPalette component with providers.
3
- */
4
- export declare class SymbolPaletteAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the SymbolPalette component with providers.
3
+ */
4
+ export declare class SymbolPaletteAllModule {
5
+ }
@@ -1,32 +1,32 @@
1
- import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { SymbolPalette } from '@syncfusion/ej2-diagrams';
4
- import { PalettesDirective } from './palettes.directive';
5
- export declare const inputs: string[];
6
- export declare const outputs: string[];
7
- export declare const twoWays: string[];
8
- /**
9
- * SymbolPalette Component
10
- * ```html
11
- * <ej-symbol-palette></ej-symbol-palette>
12
- * ```
13
- */
14
- export declare class SymbolPaletteComponent extends SymbolPalette implements IComponentBase {
15
- private ngEle;
16
- private srenderer;
17
- private viewContainerRef;
18
- private injector;
19
- context: any;
20
- tagObjects: any;
21
- paletteExpanding: any;
22
- paletteSelectionChange: any;
23
- childPalettes: QueryList<PalettesDirective>;
24
- tags: string[];
25
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
26
- ngOnInit(): void;
27
- ngAfterViewInit(): void;
28
- ngOnDestroy(): void;
29
- ngAfterContentChecked(): void;
30
- registerEvents: (eventList: string[]) => void;
31
- addTwoWay: (propList: string[]) => void;
32
- }
1
+ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { SymbolPalette } from '@syncfusion/ej2-diagrams';
4
+ import { PalettesDirective } from './palettes.directive';
5
+ export declare const inputs: string[];
6
+ export declare const outputs: string[];
7
+ export declare const twoWays: string[];
8
+ /**
9
+ * SymbolPalette Component
10
+ * ```html
11
+ * <ej-symbol-palette></ej-symbol-palette>
12
+ * ```
13
+ */
14
+ export declare class SymbolPaletteComponent extends SymbolPalette implements IComponentBase {
15
+ private ngEle;
16
+ private srenderer;
17
+ private viewContainerRef;
18
+ private injector;
19
+ context: any;
20
+ tagObjects: any;
21
+ paletteExpanding: any;
22
+ paletteSelectionChange: any;
23
+ childPalettes: QueryList<PalettesDirective>;
24
+ tags: string[];
25
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
26
+ ngOnInit(): void;
27
+ ngAfterViewInit(): void;
28
+ ngOnDestroy(): void;
29
+ ngAfterContentChecked(): void;
30
+ registerEvents: (eventList: string[]) => void;
31
+ addTwoWay: (propList: string[]) => void;
32
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the SymbolPalette component.
3
- */
4
- export declare class SymbolPaletteModule {
5
- }
1
+ /**
2
+ * NgModule definition for the SymbolPalette component.
3
+ */
4
+ export declare class SymbolPaletteModule {
5
+ }