@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.
- package/esm2020/public_api.mjs +3 -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 +77 -0
- package/esm2020/src/diagram/diagram.component.mjs +217 -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 +1135 -0
- package/fesm2015/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-diagrams.mjs +1135 -0
- package/fesm2020/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/diagram/connector-annotation.directive.d.ts +5 -0
- package/src/diagram/connector-fixeduserhandle.directive.d.ts +5 -0
- package/src/diagram/connectors.directive.d.ts +6 -16
- package/src/diagram/customcursor.directive.d.ts +5 -0
- package/src/diagram/diagram-all.module.d.ts +6 -0
- package/src/diagram/diagram.component.d.ts +3 -0
- package/src/diagram/diagram.module.d.ts +15 -0
- package/src/diagram/layers.directive.d.ts +5 -0
- package/src/diagram/node-annotation.directive.d.ts +5 -0
- package/src/diagram/node-fixeduserhandle.directive.d.ts +5 -0
- package/src/diagram/nodes.directive.d.ts +10 -5
- package/src/diagram/ports.directive.d.ts +5 -0
- package/src/overview/overview-all.module.d.ts +6 -0
- package/src/overview/overview.component.d.ts +3 -0
- package/src/overview/overview.module.d.ts +6 -0
- package/src/symbol-palette/palettes.directive.d.ts +5 -0
- package/src/symbol-palette/symbolpalette-all.module.d.ts +6 -0
- package/src/symbol-palette/symbolpalette.component.d.ts +3 -0
- package/src/symbol-palette/symbolpalette.module.d.ts +7 -0
- package/styles/bootstrap-dark.css +6 -1
- package/styles/bootstrap.css +6 -1
- package/styles/bootstrap4.css +6 -1
- package/styles/bootstrap5-dark.css +7 -1
- package/styles/bootstrap5.css +7 -1
- package/styles/diagram/_all.scss +1 -0
- package/styles/diagram/_bootstrap-dark-definition.scss +104 -0
- package/styles/diagram/_bootstrap-definition.scss +104 -0
- package/styles/diagram/_bootstrap4-definition.scss +98 -0
- package/styles/diagram/_bootstrap5-dark-definition.scss +1 -0
- package/styles/diagram/_bootstrap5-definition.scss +103 -0
- package/styles/diagram/_definition.scss +77 -0
- package/styles/diagram/_fabric-dark-definition.scss +96 -0
- package/styles/diagram/_fabric-definition.scss +96 -0
- package/styles/diagram/_fluent-dark-definition.scss +1 -0
- package/styles/diagram/_fluent-definition.scss +103 -0
- package/styles/diagram/_fusionnew-definition.scss +103 -0
- package/styles/diagram/_highcontrast-definition.scss +106 -0
- package/styles/diagram/_highcontrast-light-definition.scss +105 -0
- package/styles/diagram/_material-dark-definition.scss +96 -0
- package/styles/diagram/_material-definition.scss +96 -0
- package/styles/diagram/_material3-definition.scss +103 -0
- package/styles/diagram/_tailwind-dark-definition.scss +1 -0
- package/styles/diagram/_tailwind-definition.scss +103 -0
- package/styles/diagram/_theme.scss +201 -0
- package/styles/diagram/bootstrap-dark.css +6 -1
- package/styles/diagram/bootstrap-dark.scss +3 -1
- package/styles/diagram/bootstrap.css +6 -1
- package/styles/diagram/bootstrap.scss +3 -1
- package/styles/diagram/bootstrap4.css +6 -1
- package/styles/diagram/bootstrap4.scss +3 -1
- package/styles/diagram/bootstrap5-dark.css +7 -1
- package/styles/diagram/bootstrap5-dark.scss +3 -1
- package/styles/diagram/bootstrap5.css +7 -1
- package/styles/diagram/bootstrap5.scss +3 -1
- package/styles/diagram/fabric-dark.css +6 -1
- package/styles/diagram/fabric-dark.scss +3 -1
- package/styles/diagram/fabric.css +6 -1
- package/styles/diagram/fabric.scss +3 -1
- package/styles/diagram/fluent-dark.css +7 -1
- package/styles/diagram/fluent-dark.scss +3 -1
- package/styles/diagram/fluent.css +7 -1
- package/styles/diagram/fluent.scss +3 -1
- package/styles/diagram/highcontrast-light.css +6 -1
- package/styles/diagram/highcontrast-light.scss +3 -1
- package/styles/diagram/highcontrast.css +7 -1
- package/styles/diagram/highcontrast.scss +3 -1
- package/styles/diagram/material-dark.css +6 -1
- package/styles/diagram/material-dark.scss +3 -1
- package/styles/diagram/material.css +6 -1
- package/styles/diagram/material.scss +3 -1
- package/styles/diagram/tailwind-dark.css +7 -1
- package/styles/diagram/tailwind-dark.scss +3 -1
- package/styles/diagram/tailwind.css +7 -1
- package/styles/diagram/tailwind.scss +3 -1
- package/styles/fabric-dark.css +6 -1
- package/styles/fabric.css +6 -1
- package/styles/fluent-dark.css +7 -1
- package/styles/fluent.css +7 -1
- package/styles/highcontrast-light.css +6 -1
- package/styles/highcontrast.css +7 -1
- package/styles/material-dark.css +6 -1
- package/styles/material.css +6 -1
- package/styles/tailwind-dark.css +7 -1
- package/styles/tailwind.css +7 -1
- package/syncfusion-ej2-angular-diagrams.d.ts +5 -0
- package/@syncfusion/ej2-angular-diagrams.es5.js +0 -1324
- package/@syncfusion/ej2-angular-diagrams.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-diagrams.js +0 -1243
- package/@syncfusion/ej2-angular-diagrams.js.map +0 -1
- package/CHANGELOG.md +0 -1771
- package/dist/ej2-angular-diagrams.umd.js +0 -1731
- 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
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -35
- package/schematics/generators/diagram-default-functionalities/index.d.ts +0 -3
- package/schematics/generators/diagram-default-functionalities/index.js +0 -8
- package/schematics/generators/diagram-default-functionalities/sample-details.d.ts +0 -5
- package/schematics/generators/diagram-default-functionalities/sample-details.js +0 -7
- package/schematics/generators/diagram-default-functionalities/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/diagram-default-functionalities/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -125
- package/schematics/generators/diagram-default-functionalities/schema.d.ts +0 -3
- package/schematics/generators/diagram-default-functionalities/schema.js +0 -2
- package/schematics/generators/diagram-default-functionalities/schema.json +0 -125
- package/schematics/generators/diagram-hierarchical-tree/index.d.ts +0 -3
- package/schematics/generators/diagram-hierarchical-tree/index.js +0 -8
- package/schematics/generators/diagram-hierarchical-tree/sample-details.d.ts +0 -5
- package/schematics/generators/diagram-hierarchical-tree/sample-details.js +0 -7
- package/schematics/generators/diagram-hierarchical-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/diagram-hierarchical-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
- package/schematics/generators/diagram-hierarchical-tree/schema.d.ts +0 -3
- package/schematics/generators/diagram-hierarchical-tree/schema.js +0 -2
- package/schematics/generators/diagram-hierarchical-tree/schema.json +0 -125
- package/schematics/generators/diagram-organization-chart/index.d.ts +0 -3
- package/schematics/generators/diagram-organization-chart/index.js +0 -8
- package/schematics/generators/diagram-organization-chart/sample-details.d.ts +0 -5
- package/schematics/generators/diagram-organization-chart/sample-details.js +0 -7
- package/schematics/generators/diagram-organization-chart/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/diagram-organization-chart/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -66
- package/schematics/generators/diagram-organization-chart/schema.d.ts +0 -3
- package/schematics/generators/diagram-organization-chart/schema.js +0 -2
- package/schematics/generators/diagram-organization-chart/schema.json +0 -125
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Clayton.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Jenny.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/John.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Maria.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Paul.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Robin.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Thomas.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/eric.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/female.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image12.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image2.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image3.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image50.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image51.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image53.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image54.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image55.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image56.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image57.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/images7.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/images9.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/male.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/moreinfo.png +0 -0
- package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/smith.png +0 -0
- package/schematics/generators/diagram-overview/index.d.ts +0 -3
- package/schematics/generators/diagram-overview/index.js +0 -8
- package/schematics/generators/diagram-overview/sample-details.d.ts +0 -5
- package/schematics/generators/diagram-overview/sample-details.js +0 -7
- package/schematics/generators/diagram-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/diagram-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -19
- package/schematics/generators/diagram-overview/schema.d.ts +0 -3
- package/schematics/generators/diagram-overview/schema.js +0 -2
- package/schematics/generators/diagram-overview/schema.json +0 -125
- package/schematics/generators/diagram-radial-tree/index.d.ts +0 -3
- package/schematics/generators/diagram-radial-tree/index.js +0 -8
- package/schematics/generators/diagram-radial-tree/sample-details.d.ts +0 -5
- package/schematics/generators/diagram-radial-tree/sample-details.js +0 -7
- package/schematics/generators/diagram-radial-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/diagram-radial-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
- package/schematics/generators/diagram-radial-tree/schema.d.ts +0 -3
- package/schematics/generators/diagram-radial-tree/schema.js +0 -2
- package/schematics/generators/diagram-radial-tree/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Nodes Directive
|
|
5
6
|
* ```html
|
|
@@ -131,6 +132,8 @@ export declare class NodeAnnotationDirective extends ComplexBase<NodeAnnotationD
|
|
|
131
132
|
*/
|
|
132
133
|
width: any;
|
|
133
134
|
constructor(viewContainerRef: ViewContainerRef);
|
|
135
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NodeAnnotationDirective, never>;
|
|
136
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NodeAnnotationDirective, "e-node>e-node-annotations>e-node-annotation", never, { "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"; }, {}, never>;
|
|
134
137
|
}
|
|
135
138
|
/**
|
|
136
139
|
* NodeAnnotation Array Directive
|
|
@@ -138,4 +141,6 @@ export declare class NodeAnnotationDirective extends ComplexBase<NodeAnnotationD
|
|
|
138
141
|
*/
|
|
139
142
|
export declare class NodeAnnotationsDirective extends ArrayBase<NodeAnnotationsDirective> {
|
|
140
143
|
constructor();
|
|
144
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NodeAnnotationsDirective, never>;
|
|
145
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NodeAnnotationsDirective, "e-node>e-node-annotations", never, {}, {}, ["children"]>;
|
|
141
146
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Nodes Directive
|
|
5
6
|
* ```html
|
|
@@ -87,6 +88,8 @@ export declare class NodeFixedUserHandleDirective extends ComplexBase<NodeFixedU
|
|
|
87
88
|
*/
|
|
88
89
|
width: any;
|
|
89
90
|
constructor(viewContainerRef: ViewContainerRef);
|
|
91
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NodeFixedUserHandleDirective, never>;
|
|
92
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NodeFixedUserHandleDirective, "e-node>e-node-fixeduserhandles>e-node-fixeduserhandle", never, { "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"; }, {}, never>;
|
|
90
93
|
}
|
|
91
94
|
/**
|
|
92
95
|
* NodeFixedUserHandle Array Directive
|
|
@@ -94,4 +97,6 @@ export declare class NodeFixedUserHandleDirective extends ComplexBase<NodeFixedU
|
|
|
94
97
|
*/
|
|
95
98
|
export declare class NodeFixedUserHandlesDirective extends ArrayBase<NodeFixedUserHandlesDirective> {
|
|
96
99
|
constructor();
|
|
100
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NodeFixedUserHandlesDirective, never>;
|
|
101
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NodeFixedUserHandlesDirective, "e-node>e-node-fixeduserhandles", never, {}, {}, ["children"]>;
|
|
97
102
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Nodes Directive
|
|
5
6
|
* ```html
|
|
@@ -34,13 +35,13 @@ export declare class NodeDirective extends ComplexBase<NodeDirective> {
|
|
|
34
35
|
backgroundColor: any;
|
|
35
36
|
/**
|
|
36
37
|
* Sets the border color of the node
|
|
37
|
-
|
|
38
|
+
* @deprecated
|
|
38
39
|
* @default 'none'
|
|
39
40
|
*/
|
|
40
41
|
borderColor: any;
|
|
41
42
|
/**
|
|
42
43
|
* Sets the border width of the node
|
|
43
|
-
|
|
44
|
+
* @deprecated
|
|
44
45
|
* @default 0
|
|
45
46
|
*/
|
|
46
47
|
borderWidth: any;
|
|
@@ -116,7 +117,7 @@ export declare class NodeDirective extends ComplexBase<NodeDirective> {
|
|
|
116
117
|
* Defines the type of the container
|
|
117
118
|
* @aspdefaultvalueignore
|
|
118
119
|
* @default null
|
|
119
|
-
|
|
120
|
+
* @deprecated
|
|
120
121
|
*/
|
|
121
122
|
container: any;
|
|
122
123
|
/**
|
|
@@ -266,7 +267,7 @@ export declare class NodeDirective extends ComplexBase<NodeDirective> {
|
|
|
266
267
|
/**
|
|
267
268
|
* Used to define the rows for the grid container
|
|
268
269
|
* @aspdefaultvalueignore
|
|
269
|
-
|
|
270
|
+
* @deprecated
|
|
270
271
|
* @default undefined
|
|
271
272
|
*/
|
|
272
273
|
rows: any;
|
|
@@ -318,7 +319,7 @@ export declare class NodeDirective extends ComplexBase<NodeDirective> {
|
|
|
318
319
|
/**
|
|
319
320
|
* Sets or gets the UI of a node
|
|
320
321
|
* @default null
|
|
321
|
-
|
|
322
|
+
* @deprecated
|
|
322
323
|
*/
|
|
323
324
|
wrapper: any;
|
|
324
325
|
/**
|
|
@@ -327,6 +328,8 @@ export declare class NodeDirective extends ComplexBase<NodeDirective> {
|
|
|
327
328
|
*/
|
|
328
329
|
zIndex: any;
|
|
329
330
|
constructor(viewContainerRef: ViewContainerRef);
|
|
331
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NodeDirective, never>;
|
|
332
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NodeDirective, "e-nodes>e-node", never, { "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"; }, {}, ["childFixedUserHandles", "childAnnotations", "childPorts"]>;
|
|
330
333
|
}
|
|
331
334
|
/**
|
|
332
335
|
* Node Array Directive
|
|
@@ -334,4 +337,6 @@ export declare class NodeDirective extends ComplexBase<NodeDirective> {
|
|
|
334
337
|
*/
|
|
335
338
|
export declare class NodesDirective extends ArrayBase<NodesDirective> {
|
|
336
339
|
constructor();
|
|
340
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NodesDirective, never>;
|
|
341
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NodesDirective, "ej-diagram>e-nodes", never, {}, {}, ["children"]>;
|
|
337
342
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Nodes Directive
|
|
5
6
|
* ```html
|
|
@@ -117,6 +118,8 @@ export declare class PortDirective extends ComplexBase<PortDirective> {
|
|
|
117
118
|
*/
|
|
118
119
|
width: any;
|
|
119
120
|
constructor(viewContainerRef: ViewContainerRef);
|
|
121
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PortDirective, never>;
|
|
122
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PortDirective, "e-node>e-node-ports>e-node-port", never, { "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"; }, {}, never>;
|
|
120
123
|
}
|
|
121
124
|
/**
|
|
122
125
|
* Port Array Directive
|
|
@@ -124,4 +127,6 @@ export declare class PortDirective extends ComplexBase<PortDirective> {
|
|
|
124
127
|
*/
|
|
125
128
|
export declare class PortsDirective extends ArrayBase<PortsDirective> {
|
|
126
129
|
constructor();
|
|
130
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PortsDirective, never>;
|
|
131
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PortsDirective, "e-node>e-node-ports", never, {}, {}, ["children"]>;
|
|
127
132
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./overview.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Overview component with providers.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { Overview } from '@syncfusion/ej2-diagrams';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -26,4 +27,6 @@ export declare class OverviewComponent extends Overview implements IComponentBas
|
|
|
26
27
|
ngAfterContentChecked(): void;
|
|
27
28
|
registerEvents: (eventList: string[]) => void;
|
|
28
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>;
|
|
29
32
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./overview.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Overview component.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Palette Directive
|
|
5
6
|
* ```html
|
|
@@ -41,6 +42,8 @@ export declare class PaletteDirective extends ComplexBase<PaletteDirective> {
|
|
|
41
42
|
*/
|
|
42
43
|
title: any;
|
|
43
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>;
|
|
44
47
|
}
|
|
45
48
|
/**
|
|
46
49
|
* Palette Array Directive
|
|
@@ -48,4 +51,6 @@ export declare class PaletteDirective extends ComplexBase<PaletteDirective> {
|
|
|
48
51
|
*/
|
|
49
52
|
export declare class PalettesDirective extends ArrayBase<PalettesDirective> {
|
|
50
53
|
constructor();
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PalettesDirective, never>;
|
|
55
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PalettesDirective, "ejs-symbolpalette>e-palettes", never, {}, {}, ["children"]>;
|
|
51
56
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./symbolpalette.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the SymbolPalette component with providers.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@a
|
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { SymbolPalette } from '@syncfusion/ej2-diagrams';
|
|
4
4
|
import { PalettesDirective } from './palettes.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare const inputs: string[];
|
|
6
7
|
export declare const outputs: string[];
|
|
7
8
|
export declare const twoWays: string[];
|
|
@@ -29,4 +30,6 @@ export declare class SymbolPaletteComponent extends SymbolPalette implements ICo
|
|
|
29
30
|
ngAfterContentChecked(): void;
|
|
30
31
|
registerEvents: (eventList: string[]) => void;
|
|
31
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>;
|
|
32
35
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./symbolpalette.component";
|
|
3
|
+
import * as i2 from "./palettes.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
1
5
|
/**
|
|
2
6
|
* NgModule definition for the SymbolPalette component.
|
|
3
7
|
*/
|
|
4
8
|
export declare class SymbolPaletteModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SymbolPaletteModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SymbolPaletteModule, [typeof i1.SymbolPaletteComponent, typeof i2.PaletteDirective, typeof i2.PalettesDirective], [typeof i3.CommonModule], [typeof i1.SymbolPaletteComponent, typeof i2.PaletteDirective, typeof i2.PalettesDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SymbolPaletteModule>;
|
|
5
12
|
}
|
|
@@ -205,6 +205,7 @@
|
|
|
205
205
|
stroke: #fff;
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
+
/* stylelint-disable */
|
|
208
209
|
.e-diagram-bezier-handle.e-source.e-disabled {
|
|
209
210
|
opacity: 1 !important;
|
|
210
211
|
}
|
|
@@ -217,6 +218,7 @@
|
|
|
217
218
|
background-color: #dfdfdf !important;
|
|
218
219
|
}
|
|
219
220
|
|
|
221
|
+
/* stylelint-enable */
|
|
220
222
|
.e-diagram-bezier-handle {
|
|
221
223
|
fill: #fff;
|
|
222
224
|
stroke: #0070f0;
|
|
@@ -342,6 +344,7 @@
|
|
|
342
344
|
stroke: #0070f0;
|
|
343
345
|
}
|
|
344
346
|
|
|
347
|
+
/* stylelint-disable */
|
|
345
348
|
.e-diagram-rotate {
|
|
346
349
|
cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsSAAALEgHS3X78AAAA60lEQVQ4jZ1SwQ2DMBAzlfLJI2KEjJAVukG7ARsxQkfoKHQDugHdgOoqh14oCaGWIpSTudzZRg2MdYOxrq0il2Csm411o7Eu5GinTN0D6AGMAGZVux9p1LGBrHIF0LD+4l3ql70thDABSFZYaeTJ6UqNWhL3ELhyyhUR98TcwI06Lk1aNonO1NocqGWy/6zOcGCq6OjiSCw22/wUfEzL8ND2P9duFXBmHMDvWVN7CliFkkGe69VM5RmVLDqG7ZMPOroWP5BTle5WjR6dkQayutyLqU6gsiU/ypHMiI41yf+CE01qov+R0egXAN5x6jng51I3yAAAAABJRU5ErkJggg==), auto !important;
|
|
347
350
|
}
|
|
@@ -357,4 +360,6 @@
|
|
|
357
360
|
.e-diagramTooltip-content {
|
|
358
361
|
width: auto !important;
|
|
359
362
|
height: auto !important;
|
|
360
|
-
}
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
/* stylelint-enable */
|
package/styles/bootstrap.css
CHANGED
|
@@ -205,6 +205,7 @@
|
|
|
205
205
|
stroke: #fff;
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
+
/* stylelint-disable */
|
|
208
209
|
.e-diagram-bezier-handle.e-source.e-disabled {
|
|
209
210
|
opacity: 1 !important;
|
|
210
211
|
}
|
|
@@ -217,6 +218,7 @@
|
|
|
217
218
|
background-color: #fff !important;
|
|
218
219
|
}
|
|
219
220
|
|
|
221
|
+
/* stylelint-enable */
|
|
220
222
|
.e-diagram-bezier-handle {
|
|
221
223
|
fill: #fff;
|
|
222
224
|
stroke: #317ab9;
|
|
@@ -342,6 +344,7 @@
|
|
|
342
344
|
stroke: #317ab9;
|
|
343
345
|
}
|
|
344
346
|
|
|
347
|
+
/* stylelint-disable */
|
|
345
348
|
.e-diagram-rotate {
|
|
346
349
|
cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsSAAALEgHS3X78AAAA60lEQVQ4jZ1SwQ2DMBAzlfLJI2KEjJAVukG7ARsxQkfoKHQDugHdgOoqh14oCaGWIpSTudzZRg2MdYOxrq0il2Csm411o7Eu5GinTN0D6AGMAGZVux9p1LGBrHIF0LD+4l3ql70thDABSFZYaeTJ6UqNWhL3ELhyyhUR98TcwI06Lk1aNonO1NocqGWy/6zOcGCq6OjiSCw22/wUfEzL8ND2P9duFXBmHMDvWVN7CliFkkGe69VM5RmVLDqG7ZMPOroWP5BTle5WjR6dkQayutyLqU6gsiU/ypHMiI41yf+CE01qov+R0egXAN5x6jng51I3yAAAAABJRU5ErkJggg==), auto !important;
|
|
347
350
|
}
|
|
@@ -357,4 +360,6 @@
|
|
|
357
360
|
.e-diagramTooltip-content {
|
|
358
361
|
width: auto !important;
|
|
359
362
|
height: auto !important;
|
|
360
|
-
}
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
/* stylelint-enable */
|
package/styles/bootstrap4.css
CHANGED
|
@@ -205,6 +205,7 @@
|
|
|
205
205
|
stroke: #fff;
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
+
/* stylelint-disable */
|
|
208
209
|
.e-diagram-bezier-handle.e-source.e-disabled {
|
|
209
210
|
opacity: 1 !important;
|
|
210
211
|
}
|
|
@@ -217,6 +218,7 @@
|
|
|
217
218
|
background-color: #fff !important;
|
|
218
219
|
}
|
|
219
220
|
|
|
221
|
+
/* stylelint-enable */
|
|
220
222
|
.e-diagram-bezier-handle {
|
|
221
223
|
fill: #007bff;
|
|
222
224
|
stroke: #007bff;
|
|
@@ -342,6 +344,7 @@
|
|
|
342
344
|
stroke: #007bff;
|
|
343
345
|
}
|
|
344
346
|
|
|
347
|
+
/* stylelint-disable */
|
|
345
348
|
.e-diagram-rotate {
|
|
346
349
|
cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsSAAALEgHS3X78AAAA60lEQVQ4jZ1SwQ2DMBAzlfLJI2KEjJAVukG7ARsxQkfoKHQDugHdgOoqh14oCaGWIpSTudzZRg2MdYOxrq0il2Csm411o7Eu5GinTN0D6AGMAGZVux9p1LGBrHIF0LD+4l3ql70thDABSFZYaeTJ6UqNWhL3ELhyyhUR98TcwI06Lk1aNonO1NocqGWy/6zOcGCq6OjiSCw22/wUfEzL8ND2P9duFXBmHMDvWVN7CliFkkGe69VM5RmVLDqG7ZMPOroWP5BTle5WjR6dkQayutyLqU6gsiU/ypHMiI41yf+CE01qov+R0egXAN5x6jng51I3yAAAAABJRU5ErkJggg==), auto !important;
|
|
347
350
|
}
|
|
@@ -357,4 +360,6 @@
|
|
|
357
360
|
.e-diagramTooltip-content {
|
|
358
361
|
width: auto !important;
|
|
359
362
|
height: auto !important;
|
|
360
|
-
}
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
/* stylelint-enable */
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
content: "\e58c";
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
/* stylelint-disable-line length-zero-no-unit */
|
|
84
85
|
.e-icons {
|
|
85
86
|
font-family: "e-icons";
|
|
86
87
|
font-style: normal;
|
|
@@ -205,6 +206,7 @@
|
|
|
205
206
|
stroke: #fff;
|
|
206
207
|
}
|
|
207
208
|
|
|
209
|
+
/* stylelint-disable */
|
|
208
210
|
.e-diagram-bezier-handle.e-source.e-disabled {
|
|
209
211
|
opacity: 1 !important;
|
|
210
212
|
}
|
|
@@ -217,6 +219,7 @@
|
|
|
217
219
|
background-color: #dee2e6 !important;
|
|
218
220
|
}
|
|
219
221
|
|
|
222
|
+
/* stylelint-enable */
|
|
220
223
|
.e-diagram-bezier-handle {
|
|
221
224
|
fill: #fff;
|
|
222
225
|
stroke: #0d6efd;
|
|
@@ -342,6 +345,7 @@
|
|
|
342
345
|
stroke: #0d6efd;
|
|
343
346
|
}
|
|
344
347
|
|
|
348
|
+
/* stylelint-disable */
|
|
345
349
|
.e-diagram-rotate {
|
|
346
350
|
cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsSAAALEgHS3X78AAAA60lEQVQ4jZ1SwQ2DMBAzlfLJI2KEjJAVukG7ARsxQkfoKHQDugHdgOoqh14oCaGWIpSTudzZRg2MdYOxrq0il2Csm411o7Eu5GinTN0D6AGMAGZVux9p1LGBrHIF0LD+4l3ql70thDABSFZYaeTJ6UqNWhL3ELhyyhUR98TcwI06Lk1aNonO1NocqGWy/6zOcGCq6OjiSCw22/wUfEzL8ND2P9duFXBmHMDvWVN7CliFkkGe69VM5RmVLDqG7ZMPOroWP5BTle5WjR6dkQayutyLqU6gsiU/ypHMiI41yf+CE01qov+R0egXAN5x6jng51I3yAAAAABJRU5ErkJggg==), auto !important;
|
|
347
351
|
}
|
|
@@ -357,4 +361,6 @@
|
|
|
357
361
|
.e-diagramTooltip-content {
|
|
358
362
|
width: auto !important;
|
|
359
363
|
height: auto !important;
|
|
360
|
-
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
/* stylelint-enable */
|
package/styles/bootstrap5.css
CHANGED
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
content: "\e58c";
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
/* stylelint-disable-line length-zero-no-unit */
|
|
84
85
|
.e-icons {
|
|
85
86
|
font-family: "e-icons";
|
|
86
87
|
font-style: normal;
|
|
@@ -205,6 +206,7 @@
|
|
|
205
206
|
stroke: #fff;
|
|
206
207
|
}
|
|
207
208
|
|
|
209
|
+
/* stylelint-disable */
|
|
208
210
|
.e-diagram-bezier-handle.e-source.e-disabled {
|
|
209
211
|
opacity: 1 !important;
|
|
210
212
|
}
|
|
@@ -217,6 +219,7 @@
|
|
|
217
219
|
background-color: #fff !important;
|
|
218
220
|
}
|
|
219
221
|
|
|
222
|
+
/* stylelint-enable */
|
|
220
223
|
.e-diagram-bezier-handle {
|
|
221
224
|
fill: #fff;
|
|
222
225
|
stroke: #0d6efd;
|
|
@@ -342,6 +345,7 @@
|
|
|
342
345
|
stroke: #0d6efd;
|
|
343
346
|
}
|
|
344
347
|
|
|
348
|
+
/* stylelint-disable */
|
|
345
349
|
.e-diagram-rotate {
|
|
346
350
|
cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsSAAALEgHS3X78AAAA60lEQVQ4jZ1SwQ2DMBAzlfLJI2KEjJAVukG7ARsxQkfoKHQDugHdgOoqh14oCaGWIpSTudzZRg2MdYOxrq0il2Csm411o7Eu5GinTN0D6AGMAGZVux9p1LGBrHIF0LD+4l3ql70thDABSFZYaeTJ6UqNWhL3ELhyyhUR98TcwI06Lk1aNonO1NocqGWy/6zOcGCq6OjiSCw22/wUfEzL8ND2P9duFXBmHMDvWVN7CliFkkGe69VM5RmVLDqG7ZMPOroWP5BTle5WjR6dkQayutyLqU6gsiU/ypHMiI41yf+CE01qov+R0egXAN5x6jng51I3yAAAAABJRU5ErkJggg==), auto !important;
|
|
347
351
|
}
|
|
@@ -357,4 +361,6 @@
|
|
|
357
361
|
.e-diagramTooltip-content {
|
|
358
362
|
width: auto !important;
|
|
359
363
|
height: auto !important;
|
|
360
|
-
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
/* stylelint-enable */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'theme.scss';
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
@import 'definition.scss';
|
|
2
|
+
|
|
3
|
+
$skin-name: 'bootstrap-dark';
|
|
4
|
+
|
|
5
|
+
//layout variables
|
|
6
|
+
$diagram-border-stroke-width: 2;
|
|
7
|
+
$diagram-lane-border-stroke-width: 2;
|
|
8
|
+
$diagram-highlighter-border-stroke-width: 2;
|
|
9
|
+
$diagram-symbolpalette-shape-radius: 4px;
|
|
10
|
+
$diagram-ruler-font-size: 10px;
|
|
11
|
+
$diagram-tooltip: none;
|
|
12
|
+
|
|
13
|
+
//normal
|
|
14
|
+
$diagram-resize-handle-disable-color: $grey-cc;
|
|
15
|
+
$diagram-border-stroke-disabled: $grey-cc;
|
|
16
|
+
$diagram-resize-handle-disable-stroke: $brand-primary-font;
|
|
17
|
+
$diagram-rotate-handle-color: $brand-primary;
|
|
18
|
+
$diagram-bezier-handle-color: $brand-primary-font;
|
|
19
|
+
|
|
20
|
+
$diagram-symbolpalette-hover: lighten($grey-cc, 5%);
|
|
21
|
+
$diagram-symbolpalette-selected: $grey-cc;
|
|
22
|
+
|
|
23
|
+
$diagram-ruler-color: $grey-dark-font;
|
|
24
|
+
$diagram-ruler-marker-stroke: $brand-primary;
|
|
25
|
+
$diagram-ruler-marker-background-color: $grey;
|
|
26
|
+
$diagram-ruler-label-fill: lighten($grey-cc, 10%);
|
|
27
|
+
$diagram-ruler-tick-stroke: $grey-f8;
|
|
28
|
+
|
|
29
|
+
//end normal
|
|
30
|
+
|
|
31
|
+
//primary
|
|
32
|
+
$diagram-endpoint-handle-color: $brand-primary-font;
|
|
33
|
+
$diagram-endpoint-handle-connected-border: $brand-primary-font;
|
|
34
|
+
$diagram-endpoint-handle-connected-color: $brand-primary;
|
|
35
|
+
|
|
36
|
+
$diagram-resize-handle-color: $brand-primary;
|
|
37
|
+
$diagram-resize-handle-stroke: $brand-primary;
|
|
38
|
+
$diagram-border-stroke: $brand-primary-darken-10;
|
|
39
|
+
|
|
40
|
+
$diagram-bezier-line-color: $brand-primary;
|
|
41
|
+
|
|
42
|
+
$palette-background-color: lighten($grey-cc, 20%);
|
|
43
|
+
|
|
44
|
+
$diagram-highlighter-stroke: $brand-primary;
|
|
45
|
+
$diagram-selected-region-stroke: $brand-primary;
|
|
46
|
+
$diagram-pivot-line-stroke: $brand-primary;
|
|
47
|
+
|
|
48
|
+
$diagram-helper-stroke: $brand-primary;
|
|
49
|
+
|
|
50
|
+
$diagram-text-edit-selection-color: $brand-primary-font;
|
|
51
|
+
$diagram-text-edit-selection-background: $brand-primary;
|
|
52
|
+
|
|
53
|
+
$diagram-background-color: $brand-primary-font;
|
|
54
|
+
|
|
55
|
+
$diagram-editbox-background: $brand-primary-font;
|
|
56
|
+
$diagram-editbox-fontcolor: $gray-base;
|
|
57
|
+
|
|
58
|
+
$diagram-border-strokes: $brand-primary-darken-10;
|
|
59
|
+
$diagram-lane-border-strokes: $brand-primary;
|
|
60
|
+
|
|
61
|
+
$diagram-multiselect-stroke: $diagram-resize-handle-stroke;
|
|
62
|
+
|
|
63
|
+
//end primary
|
|
64
|
+
|
|
65
|
+
.e-icons {
|
|
66
|
+
font-family: 'e-icons';
|
|
67
|
+
font-style: normal;
|
|
68
|
+
font-variant: normal;
|
|
69
|
+
font-weight: normal;
|
|
70
|
+
line-height: 1;
|
|
71
|
+
text-transform: none;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@include export-module('diagram-bootstrap-icons') {
|
|
75
|
+
.e-diagram-menu {
|
|
76
|
+
.e-bringforward::before{ content: '\e5a1'; }
|
|
77
|
+
.e-bringfront::before{ content: '\e5a2'; }
|
|
78
|
+
.e-sendback::before{ content: '\e5a3'; }
|
|
79
|
+
.e-sendbackward::before{ content: '\e5a4'; }
|
|
80
|
+
.e-delete::before{ content: '\e94a'; }
|
|
81
|
+
.e-ungroup::before{ content: '\e5a6'; }
|
|
82
|
+
.e-group::before{ content: '\e5a7'; }
|
|
83
|
+
.e-undo::before{ content: '\e341'; }
|
|
84
|
+
.e-redo::before{ content: '\e354'; }
|
|
85
|
+
.e-copy::before{ content: '\e33d'; }
|
|
86
|
+
.e-cut::before{ content: '\e33b'; }
|
|
87
|
+
.e-save::before{ content: '\ebc2'; }
|
|
88
|
+
.e-paste::before{ content: '\e355'; }
|
|
89
|
+
.e-zoomin::before{ content: '\e349'; }
|
|
90
|
+
.e-italic::before{ content: '\e35a'; }
|
|
91
|
+
.e-close::before{ content: '\ea7b'; }
|
|
92
|
+
.e-pan::before{ content: '\ebcb'; }
|
|
93
|
+
.e-bold::before{ content: '\e339'; }
|
|
94
|
+
.e-underline::before{ content: '\e343'; }
|
|
95
|
+
.e-zoomout::before{ content: '\e351'; }
|
|
96
|
+
.e-export::before{ content: '\e702'; }
|
|
97
|
+
.e-print::before{ content: '\e34b'; }
|
|
98
|
+
.e-order::before{ content: '\e4a4'; }
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-symbolpalette {
|
|
102
|
+
.e-clear-searchtext::before{ content: '\e60e'; }
|
|
103
|
+
}
|
|
104
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
@import 'definition.scss';
|
|
2
|
+
|
|
3
|
+
$skin-name: 'bootstrap';
|
|
4
|
+
|
|
5
|
+
//layout variables
|
|
6
|
+
$diagram-border-stroke-width: 2;
|
|
7
|
+
$diagram-lane-border-stroke-width: 2;
|
|
8
|
+
$diagram-highlighter-border-stroke-width: 2;
|
|
9
|
+
$diagram-symbolpalette-shape-radius: 4px;
|
|
10
|
+
$diagram-ruler-font-size: 10px;
|
|
11
|
+
$diagram-tooltip: none;
|
|
12
|
+
|
|
13
|
+
//normal
|
|
14
|
+
$diagram-resize-handle-disable-color: $grey-cc;
|
|
15
|
+
$diagram-border-stroke-disabled: $grey-cc;
|
|
16
|
+
$diagram-resize-handle-disable-stroke: $brand-primary-font;
|
|
17
|
+
$diagram-rotate-handle-color: $brand-primary;
|
|
18
|
+
$diagram-bezier-handle-color: $brand-primary-font;
|
|
19
|
+
|
|
20
|
+
$diagram-symbolpalette-hover: $grey-f5;
|
|
21
|
+
$diagram-symbolpalette-selected: $grey-cc;
|
|
22
|
+
|
|
23
|
+
$palette-background-color: #fff;
|
|
24
|
+
|
|
25
|
+
$diagram-ruler-color: $grey-8c;
|
|
26
|
+
$diagram-ruler-marker-stroke: $brand-primary;
|
|
27
|
+
$diagram-ruler-marker-background-color: $grey-f8;
|
|
28
|
+
$diagram-ruler-label-fill: $grey-44;
|
|
29
|
+
$diagram-ruler-tick-stroke: $grey-dd;
|
|
30
|
+
|
|
31
|
+
//end normal
|
|
32
|
+
|
|
33
|
+
//primary
|
|
34
|
+
$diagram-endpoint-handle-color: $brand-primary-font;
|
|
35
|
+
$diagram-endpoint-handle-connected-border: $brand-primary-font;
|
|
36
|
+
$diagram-endpoint-handle-connected-color: $brand-primary;
|
|
37
|
+
|
|
38
|
+
$diagram-resize-handle-color: $brand-primary;
|
|
39
|
+
$diagram-resize-handle-stroke: $brand-primary;
|
|
40
|
+
$diagram-border-stroke: $brand-primary-darken-10;
|
|
41
|
+
|
|
42
|
+
$diagram-bezier-line-color: $brand-primary;
|
|
43
|
+
|
|
44
|
+
$diagram-highlighter-stroke: $brand-primary;
|
|
45
|
+
$diagram-selected-region-stroke: $brand-primary;
|
|
46
|
+
$diagram-pivot-line-stroke: $brand-primary;
|
|
47
|
+
|
|
48
|
+
$diagram-helper-stroke: $brand-primary;
|
|
49
|
+
|
|
50
|
+
$diagram-text-edit-selection-color: $brand-primary-font;
|
|
51
|
+
$diagram-text-edit-selection-background: $brand-primary;
|
|
52
|
+
|
|
53
|
+
$diagram-background-color: $brand-primary-font;
|
|
54
|
+
|
|
55
|
+
$diagram-editbox-background: $brand-primary-font;
|
|
56
|
+
$diagram-editbox-fontcolor: $gray-base;
|
|
57
|
+
|
|
58
|
+
$diagram-border-strokes: $brand-primary-darken-10;
|
|
59
|
+
$diagram-lane-border-strokes: $brand-primary;
|
|
60
|
+
|
|
61
|
+
$diagram-multiselect-stroke: $diagram-resize-handle-stroke;
|
|
62
|
+
|
|
63
|
+
//end primary
|
|
64
|
+
|
|
65
|
+
.e-icons {
|
|
66
|
+
font-family: 'e-icons';
|
|
67
|
+
font-style: normal;
|
|
68
|
+
font-variant: normal;
|
|
69
|
+
font-weight: normal;
|
|
70
|
+
line-height: 1;
|
|
71
|
+
text-transform: none;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@include export-module('diagram-bootstrap-icons') {
|
|
75
|
+
.e-diagram-menu {
|
|
76
|
+
.e-bringforward::before{ content: '\e5a1'; }
|
|
77
|
+
.e-bringfront::before{ content: '\e5a2'; }
|
|
78
|
+
.e-sendback::before{ content: '\e5a3'; }
|
|
79
|
+
.e-sendbackward::before{ content: '\e5a4'; }
|
|
80
|
+
.e-delete::before{ content: '\e94a'; }
|
|
81
|
+
.e-ungroup::before{ content: '\e5a6'; }
|
|
82
|
+
.e-group::before{ content: '\e5a7'; }
|
|
83
|
+
.e-undo::before{ content: '\e341'; }
|
|
84
|
+
.e-redo::before{ content: '\e354'; }
|
|
85
|
+
.e-copy::before{ content: '\e33d'; }
|
|
86
|
+
.e-cut::before{ content: '\e33b'; }
|
|
87
|
+
.e-save::before{ content: '\ebc2'; }
|
|
88
|
+
.e-paste::before{ content: '\e355'; }
|
|
89
|
+
.e-zoomin::before{ content: '\e349'; }
|
|
90
|
+
.e-italic::before{ content: '\e35a'; }
|
|
91
|
+
.e-close::before{ content: '\ea7b'; }
|
|
92
|
+
.e-pan::before{ content: '\ebcb'; }
|
|
93
|
+
.e-bold::before{ content: '\e339'; }
|
|
94
|
+
.e-underline::before{ content: '\e343'; }
|
|
95
|
+
.e-zoomout::before{ content: '\e351'; }
|
|
96
|
+
.e-export::before{ content: '\e702'; }
|
|
97
|
+
.e-print::before{ content: '\e34b'; }
|
|
98
|
+
.e-order::before{ content: '\e4a4'; }
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-symbolpalette {
|
|
102
|
+
.e-clear-searchtext::before{ content: '\e60e'; }
|
|
103
|
+
}
|
|
104
|
+
}
|