@syncfusion/ej2-angular-diagrams 30.1.41-ngcc → 30.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2052 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/diagram/connector-annotation.directive.mjs +59 -0
- package/esm2020/src/diagram/connector-fixeduserhandle.directive.mjs +59 -0
- package/esm2020/src/diagram/connectors.directive.mjs +60 -0
- package/esm2020/src/diagram/customcursor.directive.mjs +54 -0
- package/esm2020/src/diagram/diagram-all.module.mjs +83 -0
- package/esm2020/src/diagram/diagram.component.mjs +231 -0
- package/esm2020/src/diagram/diagram.module.mjs +106 -0
- package/esm2020/src/diagram/layers.directive.mjs +54 -0
- package/esm2020/src/diagram/node-annotation.directive.mjs +59 -0
- package/esm2020/src/diagram/node-fixeduserhandle.directive.mjs +59 -0
- package/esm2020/src/diagram/nodes.directive.mjs +62 -0
- package/esm2020/src/diagram/ports.directive.mjs +59 -0
- package/esm2020/src/index.mjs +21 -0
- package/esm2020/src/overview/overview-all.module.mjs +23 -0
- package/esm2020/src/overview/overview.component.mjs +60 -0
- package/esm2020/src/overview/overview.module.mjs +25 -0
- package/esm2020/src/symbol-palette/palettes.directive.mjs +52 -0
- package/esm2020/src/symbol-palette/symbolpalette-all.module.mjs +23 -0
- package/esm2020/src/symbol-palette/symbolpalette.component.mjs +71 -0
- package/esm2020/src/symbol-palette/symbolpalette.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-diagrams.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-diagrams.mjs +1153 -0
- package/fesm2015/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-diagrams.mjs +1153 -0
- package/fesm2020/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/diagram/connector-annotation.directive.d.ts +175 -170
- package/src/diagram/connector-fixeduserhandle.directive.d.ts +116 -111
- package/src/diagram/connectors.directive.d.ts +281 -276
- package/src/diagram/customcursor.directive.d.ts +36 -31
- package/src/diagram/diagram-all.module.d.ts +31 -25
- package/src/diagram/diagram.component.d.ts +106 -103
- package/src/diagram/diagram.module.d.ts +20 -5
- package/src/diagram/layers.directive.d.ts +60 -55
- package/src/diagram/node-annotation.directive.d.ts +156 -151
- package/src/diagram/node-fixeduserhandle.directive.d.ts +107 -102
- package/src/diagram/nodes.directive.d.ts +343 -338
- package/src/diagram/ports.directive.d.ts +147 -142
- package/src/index.d.ts +20 -20
- package/src/overview/overview-all.module.d.ts +11 -5
- package/src/overview/overview.component.d.ts +32 -29
- package/src/overview/overview.module.d.ts +11 -5
- package/src/symbol-palette/palettes.directive.d.ts +56 -51
- package/src/symbol-palette/symbolpalette-all.module.d.ts +11 -5
- package/src/symbol-palette/symbolpalette.component.d.ts +35 -32
- package/src/symbol-palette/symbolpalette.module.d.ts +12 -5
- package/syncfusion-ej2-angular-diagrams.d.ts +5 -0
- package/@syncfusion/ej2-angular-diagrams.es5.js +0 -1342
- package/@syncfusion/ej2-angular-diagrams.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-diagrams.js +0 -1261
- package/@syncfusion/ej2-angular-diagrams.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-diagrams.umd.js +0 -1787
- package/dist/ej2-angular-diagrams.umd.js.map +0 -1
- package/dist/ej2-angular-diagrams.umd.min.js +0 -11
- package/dist/ej2-angular-diagrams.umd.min.js.map +0 -1
- package/ej2-angular-diagrams.d.ts +0 -7
- package/ej2-angular-diagrams.metadata.json +0 -1
@@ -1,142 +1,147 @@
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
|
4
|
-
|
5
|
-
*
|
6
|
-
*
|
7
|
-
* <e-
|
8
|
-
* <e-node
|
9
|
-
* <e-node-
|
10
|
-
*
|
11
|
-
* </e-node-
|
12
|
-
* </e-node>
|
13
|
-
* </e-
|
14
|
-
*
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
*
|
22
|
-
* @
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
*
|
28
|
-
* *
|
29
|
-
* *
|
30
|
-
* *
|
31
|
-
* *
|
32
|
-
*
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
*
|
38
|
-
* @
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
*
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
*
|
49
|
-
* *
|
50
|
-
* *
|
51
|
-
* *
|
52
|
-
* *
|
53
|
-
*
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
*
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
*
|
64
|
-
* @
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
*
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
*
|
75
|
-
* @
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
*
|
81
|
-
* @
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
*
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
*
|
92
|
-
* *
|
93
|
-
* *
|
94
|
-
* *
|
95
|
-
*
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
*
|
101
|
-
*
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
*
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
*
|
112
|
-
* *
|
113
|
-
* *
|
114
|
-
* *
|
115
|
-
* *
|
116
|
-
*
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
*
|
122
|
-
* *
|
123
|
-
* *
|
124
|
-
* *
|
125
|
-
*
|
126
|
-
* @
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
*
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
/**
|
5
|
+
* Nodes Directive
|
6
|
+
* ```html
|
7
|
+
* <e-nodes>
|
8
|
+
* <e-node>
|
9
|
+
* <e-node-ports>
|
10
|
+
* <e-node-port>
|
11
|
+
* </e-node-port>
|
12
|
+
* </e-node-ports>
|
13
|
+
* </e-node>
|
14
|
+
* </e-nodes>
|
15
|
+
* ```
|
16
|
+
*/
|
17
|
+
export declare class PortDirective extends ComplexBase<PortDirective> {
|
18
|
+
private viewContainerRef;
|
19
|
+
directivePropList: any;
|
20
|
+
/**
|
21
|
+
* Allows the user to save custom information/data about a port
|
22
|
+
* @aspdefaultvalueignore
|
23
|
+
* @default undefined
|
24
|
+
*/
|
25
|
+
addInfo: any;
|
26
|
+
/**
|
27
|
+
* Defines the allowed direction for connections to the port
|
28
|
+
* * Auto - Maintains the default behavior of automatic direction calculation.
|
29
|
+
* * Left - Restricts connections to only connect to the left side of the port.
|
30
|
+
* * Top - Restricts connections to only connect to the top side of the port.
|
31
|
+
* * Right - Restricts connections to only connect to the right side of the port.
|
32
|
+
* * Bottom - Restricts connections to only connect to the bottom side of the port.
|
33
|
+
* @default 'Auto'
|
34
|
+
*/
|
35
|
+
connectionDirection: any;
|
36
|
+
/**
|
37
|
+
* Defines the constraints of port
|
38
|
+
* @default 'Default'
|
39
|
+
* @aspnumberenum
|
40
|
+
*/
|
41
|
+
constraints: any;
|
42
|
+
/**
|
43
|
+
* Sets the height of the port
|
44
|
+
* @default 12
|
45
|
+
*/
|
46
|
+
height: any;
|
47
|
+
/**
|
48
|
+
* Sets the horizontal alignment of the port with respect to its immediate parent(node/connector)
|
49
|
+
* * Stretch - Stretches the diagram element throughout its immediate parent
|
50
|
+
* * Left - Aligns the diagram element at the left of its immediate parent
|
51
|
+
* * Right - Aligns the diagram element at the right of its immediate parent
|
52
|
+
* * Center - Aligns the diagram element at the center of its immediate parent
|
53
|
+
* * Auto - Aligns the diagram element based on the characteristics of its immediate parent
|
54
|
+
* @default 'Center'
|
55
|
+
*/
|
56
|
+
horizontalAlignment: any;
|
57
|
+
/**
|
58
|
+
* Defines the unique id of the port
|
59
|
+
* @default ''
|
60
|
+
*/
|
61
|
+
id: any;
|
62
|
+
/**
|
63
|
+
* Defines the collection of the objects that are connected to a particular port
|
64
|
+
* @default undefined
|
65
|
+
* @blazordefaultvalue new string[] { }
|
66
|
+
*/
|
67
|
+
inEdges: any;
|
68
|
+
/**
|
69
|
+
* Defines the space that the port has to be moved from its actual position
|
70
|
+
* @default new Margin(0,0,0,0)
|
71
|
+
*/
|
72
|
+
margin: any;
|
73
|
+
/**
|
74
|
+
* Defines the position of the port with respect to the boundaries of nodes/connector
|
75
|
+
* @default new Point(0.5,0.5)
|
76
|
+
* @blazortype NodePortOffset
|
77
|
+
*/
|
78
|
+
offset: any;
|
79
|
+
/**
|
80
|
+
* Defines the collection of the objects that are connected to a particular port
|
81
|
+
* @default undefined
|
82
|
+
* @blazordefaultvalue new string[] { }
|
83
|
+
*/
|
84
|
+
outEdges: any;
|
85
|
+
/**
|
86
|
+
* Defines the geometry of the port
|
87
|
+
* @default ''
|
88
|
+
*/
|
89
|
+
pathData: any;
|
90
|
+
/**
|
91
|
+
* Defines the type of the port shape
|
92
|
+
* * X - Sets the decorator shape as X
|
93
|
+
* * Circle - Sets the decorator shape as Circle
|
94
|
+
* * Square - Sets the decorator shape as Square
|
95
|
+
* * Custom - Sets the decorator shape as Custom
|
96
|
+
* @default 'Square'
|
97
|
+
*/
|
98
|
+
shape: any;
|
99
|
+
/**
|
100
|
+
* Defines the appearance of the port
|
101
|
+
*
|
102
|
+
* @default {}
|
103
|
+
*/
|
104
|
+
style: any;
|
105
|
+
/**
|
106
|
+
* defines the tooltip for the Ports
|
107
|
+
* @default new DiagramToolTip();
|
108
|
+
*/
|
109
|
+
tooltip: any;
|
110
|
+
/**
|
111
|
+
* Sets the vertical alignment of the port with respect to its immediate parent(node/connector)
|
112
|
+
* * Stretch - Stretches the diagram element throughout its immediate parent
|
113
|
+
* * Top - Aligns the diagram element at the top of its immediate parent
|
114
|
+
* * Bottom - Aligns the diagram element at the bottom of its immediate parent
|
115
|
+
* * Center - Aligns the diagram element at the center of its immediate parent
|
116
|
+
* * Auto - Aligns the diagram element based on the characteristics of its immediate parent
|
117
|
+
* @default 'Center'
|
118
|
+
*/
|
119
|
+
verticalAlignment: any;
|
120
|
+
/**
|
121
|
+
* Defines the type of the port visibility
|
122
|
+
* * Visible - Always shows the port
|
123
|
+
* * Hidden - Always hides the port
|
124
|
+
* * Hover - Shows the port when the mouse hovers over a node
|
125
|
+
* * Connect - Shows the port when a connection end point is dragged over a node
|
126
|
+
* @default 'Connect'
|
127
|
+
* @aspnumberenum
|
128
|
+
*/
|
129
|
+
visibility: any;
|
130
|
+
/**
|
131
|
+
* Sets the width of the port
|
132
|
+
* @default 12
|
133
|
+
*/
|
134
|
+
width: any;
|
135
|
+
constructor(viewContainerRef: ViewContainerRef);
|
136
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PortDirective, never>;
|
137
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PortDirective, "e-node>e-node-ports>e-node-port", never, { "addInfo": "addInfo"; "connectionDirection": "connectionDirection"; "constraints": "constraints"; "height": "height"; "horizontalAlignment": "horizontalAlignment"; "id": "id"; "inEdges": "inEdges"; "margin": "margin"; "offset": "offset"; "outEdges": "outEdges"; "pathData": "pathData"; "shape": "shape"; "style": "style"; "tooltip": "tooltip"; "verticalAlignment": "verticalAlignment"; "visibility": "visibility"; "width": "width"; }, {}, never>;
|
138
|
+
}
|
139
|
+
/**
|
140
|
+
* Port Array Directive
|
141
|
+
* @private
|
142
|
+
*/
|
143
|
+
export declare class PortsDirective extends ArrayBase<PortsDirective> {
|
144
|
+
constructor();
|
145
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PortsDirective, never>;
|
146
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PortsDirective, "e-node>e-node-ports", never, {}, {}, ["children"]>;
|
147
|
+
}
|
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,11 @@
|
|
1
|
-
|
2
|
-
*
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "@angular/common";
|
3
|
+
import * as i2 from "./overview.module";
|
4
|
+
/**
|
5
|
+
* NgModule definition for the Overview component with providers.
|
6
|
+
*/
|
7
|
+
export declare class OverviewAllModule {
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverviewAllModule, never>;
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OverviewAllModule, never, [typeof i1.CommonModule, typeof i2.OverviewModule], [typeof i2.OverviewModule]>;
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OverviewAllModule>;
|
11
|
+
}
|
@@ -1,29 +1,32 @@
|
|
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
|
-
|
5
|
-
export declare const
|
6
|
-
export declare const
|
7
|
-
|
8
|
-
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
private
|
16
|
-
private
|
17
|
-
private
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
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
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare const inputs: string[];
|
6
|
+
export declare const outputs: string[];
|
7
|
+
export declare const twoWays: string[];
|
8
|
+
/**
|
9
|
+
* Overview Component
|
10
|
+
* ```html
|
11
|
+
* <ej-overview></ej-overview>
|
12
|
+
* ```
|
13
|
+
*/
|
14
|
+
export declare class OverviewComponent extends Overview implements IComponentBase {
|
15
|
+
private ngEle;
|
16
|
+
private srenderer;
|
17
|
+
private viewContainerRef;
|
18
|
+
private injector;
|
19
|
+
context: any;
|
20
|
+
tagObjects: any;
|
21
|
+
created: any;
|
22
|
+
tags: string[];
|
23
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
24
|
+
ngOnInit(): void;
|
25
|
+
ngAfterViewInit(): void;
|
26
|
+
ngOnDestroy(): void;
|
27
|
+
ngAfterContentChecked(): void;
|
28
|
+
registerEvents: (eventList: string[]) => void;
|
29
|
+
addTwoWay: (propList: string[]) => void;
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverviewComponent, never>;
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverviewComponent, "ejs-overview", never, { "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "height": "height"; "locale": "locale"; "sourceID": "sourceID"; "width": "width"; }, { "created": "created"; }, never, never>;
|
32
|
+
}
|
@@ -1,5 +1,11 @@
|
|
1
|
-
|
2
|
-
*
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./overview.component";
|
3
|
+
import * as i2 from "@angular/common";
|
4
|
+
/**
|
5
|
+
* NgModule definition for the Overview component.
|
6
|
+
*/
|
7
|
+
export declare class OverviewModule {
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverviewModule, never>;
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OverviewModule, [typeof i1.OverviewComponent], [typeof i2.CommonModule], [typeof i1.OverviewComponent]>;
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OverviewModule>;
|
11
|
+
}
|
@@ -1,51 +1,56 @@
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
|
4
|
-
|
5
|
-
*
|
6
|
-
*
|
7
|
-
*
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
*
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
*
|
20
|
-
* @
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
*
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
*
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
*
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
*
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
/**
|
5
|
+
* Palette Directive
|
6
|
+
* ```html
|
7
|
+
* <e-palettes><e-palette></e-palette><e-palettes>
|
8
|
+
* ```
|
9
|
+
*/
|
10
|
+
export declare class PaletteDirective extends ComplexBase<PaletteDirective> {
|
11
|
+
private viewContainerRef;
|
12
|
+
directivePropList: any;
|
13
|
+
/**
|
14
|
+
* Sets whether the palette items to be expanded or not
|
15
|
+
* @default true
|
16
|
+
*/
|
17
|
+
expanded: any;
|
18
|
+
/**
|
19
|
+
* Sets the height of the symbol group
|
20
|
+
* @aspdefaultvalueignore
|
21
|
+
* @default undefined
|
22
|
+
*/
|
23
|
+
height: any;
|
24
|
+
/**
|
25
|
+
* Defines the content of the symbol group
|
26
|
+
* @default ''
|
27
|
+
*/
|
28
|
+
iconCss: any;
|
29
|
+
/**
|
30
|
+
* Defines the unique id of a symbol group
|
31
|
+
* @default ''
|
32
|
+
*/
|
33
|
+
id: any;
|
34
|
+
/**
|
35
|
+
* Defines the collection of predefined symbols
|
36
|
+
* @asptype object
|
37
|
+
*/
|
38
|
+
symbols: any;
|
39
|
+
/**
|
40
|
+
* Defines the title of the symbol group
|
41
|
+
* @default ''
|
42
|
+
*/
|
43
|
+
title: any;
|
44
|
+
constructor(viewContainerRef: ViewContainerRef);
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaletteDirective, never>;
|
46
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PaletteDirective, "e-palettes>e-palette", never, { "expanded": "expanded"; "height": "height"; "iconCss": "iconCss"; "id": "id"; "symbols": "symbols"; "title": "title"; }, {}, never>;
|
47
|
+
}
|
48
|
+
/**
|
49
|
+
* Palette Array Directive
|
50
|
+
* @private
|
51
|
+
*/
|
52
|
+
export declare class PalettesDirective extends ArrayBase<PalettesDirective> {
|
53
|
+
constructor();
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PalettesDirective, never>;
|
55
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PalettesDirective, "ejs-symbolpalette>e-palettes", never, {}, {}, ["children"]>;
|
56
|
+
}
|
@@ -1,5 +1,11 @@
|
|
1
|
-
|
2
|
-
*
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "@angular/common";
|
3
|
+
import * as i2 from "./symbolpalette.module";
|
4
|
+
/**
|
5
|
+
* NgModule definition for the SymbolPalette component with providers.
|
6
|
+
*/
|
7
|
+
export declare class SymbolPaletteAllModule {
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SymbolPaletteAllModule, never>;
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SymbolPaletteAllModule, never, [typeof i1.CommonModule, typeof i2.SymbolPaletteModule], [typeof i2.SymbolPaletteModule]>;
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SymbolPaletteAllModule>;
|
11
|
+
}
|
@@ -1,32 +1,35 @@
|
|
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
|
-
|
6
|
-
export declare const
|
7
|
-
export declare const
|
8
|
-
|
9
|
-
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
private
|
17
|
-
private
|
18
|
-
private
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
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
|
+
import * as i0 from "@angular/core";
|
6
|
+
export declare const inputs: string[];
|
7
|
+
export declare const outputs: string[];
|
8
|
+
export declare const twoWays: string[];
|
9
|
+
/**
|
10
|
+
* SymbolPalette Component
|
11
|
+
* ```html
|
12
|
+
* <ej-symbol-palette></ej-symbol-palette>
|
13
|
+
* ```
|
14
|
+
*/
|
15
|
+
export declare class SymbolPaletteComponent extends SymbolPalette implements IComponentBase {
|
16
|
+
private ngEle;
|
17
|
+
private srenderer;
|
18
|
+
private viewContainerRef;
|
19
|
+
private injector;
|
20
|
+
context: any;
|
21
|
+
tagObjects: any;
|
22
|
+
paletteExpanding: any;
|
23
|
+
paletteSelectionChange: any;
|
24
|
+
childPalettes: QueryList<PalettesDirective>;
|
25
|
+
tags: string[];
|
26
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
27
|
+
ngOnInit(): void;
|
28
|
+
ngAfterViewInit(): void;
|
29
|
+
ngOnDestroy(): void;
|
30
|
+
ngAfterContentChecked(): void;
|
31
|
+
registerEvents: (eventList: string[]) => void;
|
32
|
+
addTwoWay: (propList: string[]) => void;
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SymbolPaletteComponent, never>;
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SymbolPaletteComponent, "ejs-symbolpalette", never, { "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"; }, { "paletteExpanding": "paletteExpanding"; "paletteSelectionChange": "paletteSelectionChange"; }, ["childPalettes"], never>;
|
35
|
+
}
|