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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/diagram/connector-annotation.directive.mjs +59 -0
  3. package/esm2020/src/diagram/connector-fixeduserhandle.directive.mjs +59 -0
  4. package/esm2020/src/diagram/connectors.directive.mjs +60 -0
  5. package/esm2020/src/diagram/customcursor.directive.mjs +54 -0
  6. package/esm2020/src/diagram/diagram-all.module.mjs +77 -0
  7. package/esm2020/src/diagram/diagram.component.mjs +217 -0
  8. package/esm2020/src/diagram/diagram.module.mjs +106 -0
  9. package/esm2020/src/diagram/layers.directive.mjs +54 -0
  10. package/esm2020/src/diagram/node-annotation.directive.mjs +59 -0
  11. package/esm2020/src/diagram/node-fixeduserhandle.directive.mjs +59 -0
  12. package/esm2020/src/diagram/nodes.directive.mjs +62 -0
  13. package/esm2020/src/diagram/ports.directive.mjs +59 -0
  14. package/esm2020/src/index.mjs +21 -0
  15. package/esm2020/src/overview/overview-all.module.mjs +23 -0
  16. package/esm2020/src/overview/overview.component.mjs +60 -0
  17. package/esm2020/src/overview/overview.module.mjs +25 -0
  18. package/esm2020/src/symbol-palette/palettes.directive.mjs +52 -0
  19. package/esm2020/src/symbol-palette/symbolpalette-all.module.mjs +23 -0
  20. package/esm2020/src/symbol-palette/symbolpalette.component.mjs +71 -0
  21. package/esm2020/src/symbol-palette/symbolpalette.module.mjs +34 -0
  22. package/esm2020/syncfusion-ej2-angular-diagrams.mjs +5 -0
  23. package/fesm2015/syncfusion-ej2-angular-diagrams.mjs +1135 -0
  24. package/fesm2015/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
  25. package/fesm2020/syncfusion-ej2-angular-diagrams.mjs +1135 -0
  26. package/fesm2020/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
  27. package/package.json +27 -13
  28. package/schematics/utils/lib-details.ts +2 -2
  29. package/src/diagram/connector-annotation.directive.d.ts +5 -0
  30. package/src/diagram/connector-fixeduserhandle.directive.d.ts +5 -0
  31. package/src/diagram/connectors.directive.d.ts +6 -16
  32. package/src/diagram/customcursor.directive.d.ts +5 -0
  33. package/src/diagram/diagram-all.module.d.ts +6 -0
  34. package/src/diagram/diagram.component.d.ts +3 -0
  35. package/src/diagram/diagram.module.d.ts +15 -0
  36. package/src/diagram/layers.directive.d.ts +5 -0
  37. package/src/diagram/node-annotation.directive.d.ts +5 -0
  38. package/src/diagram/node-fixeduserhandle.directive.d.ts +5 -0
  39. package/src/diagram/nodes.directive.d.ts +10 -5
  40. package/src/diagram/ports.directive.d.ts +5 -0
  41. package/src/overview/overview-all.module.d.ts +6 -0
  42. package/src/overview/overview.component.d.ts +3 -0
  43. package/src/overview/overview.module.d.ts +6 -0
  44. package/src/symbol-palette/palettes.directive.d.ts +5 -0
  45. package/src/symbol-palette/symbolpalette-all.module.d.ts +6 -0
  46. package/src/symbol-palette/symbolpalette.component.d.ts +3 -0
  47. package/src/symbol-palette/symbolpalette.module.d.ts +7 -0
  48. package/styles/bootstrap-dark.css +6 -1
  49. package/styles/bootstrap.css +6 -1
  50. package/styles/bootstrap4.css +6 -1
  51. package/styles/bootstrap5-dark.css +7 -1
  52. package/styles/bootstrap5.css +7 -1
  53. package/styles/diagram/_all.scss +1 -0
  54. package/styles/diagram/_bootstrap-dark-definition.scss +104 -0
  55. package/styles/diagram/_bootstrap-definition.scss +104 -0
  56. package/styles/diagram/_bootstrap4-definition.scss +98 -0
  57. package/styles/diagram/_bootstrap5-dark-definition.scss +1 -0
  58. package/styles/diagram/_bootstrap5-definition.scss +103 -0
  59. package/styles/diagram/_definition.scss +77 -0
  60. package/styles/diagram/_fabric-dark-definition.scss +96 -0
  61. package/styles/diagram/_fabric-definition.scss +96 -0
  62. package/styles/diagram/_fluent-dark-definition.scss +1 -0
  63. package/styles/diagram/_fluent-definition.scss +103 -0
  64. package/styles/diagram/_fusionnew-definition.scss +103 -0
  65. package/styles/diagram/_highcontrast-definition.scss +106 -0
  66. package/styles/diagram/_highcontrast-light-definition.scss +105 -0
  67. package/styles/diagram/_material-dark-definition.scss +96 -0
  68. package/styles/diagram/_material-definition.scss +96 -0
  69. package/styles/diagram/_material3-definition.scss +103 -0
  70. package/styles/diagram/_tailwind-dark-definition.scss +1 -0
  71. package/styles/diagram/_tailwind-definition.scss +103 -0
  72. package/styles/diagram/_theme.scss +201 -0
  73. package/styles/diagram/bootstrap-dark.css +6 -1
  74. package/styles/diagram/bootstrap-dark.scss +3 -1
  75. package/styles/diagram/bootstrap.css +6 -1
  76. package/styles/diagram/bootstrap.scss +3 -1
  77. package/styles/diagram/bootstrap4.css +6 -1
  78. package/styles/diagram/bootstrap4.scss +3 -1
  79. package/styles/diagram/bootstrap5-dark.css +7 -1
  80. package/styles/diagram/bootstrap5-dark.scss +3 -1
  81. package/styles/diagram/bootstrap5.css +7 -1
  82. package/styles/diagram/bootstrap5.scss +3 -1
  83. package/styles/diagram/fabric-dark.css +6 -1
  84. package/styles/diagram/fabric-dark.scss +3 -1
  85. package/styles/diagram/fabric.css +6 -1
  86. package/styles/diagram/fabric.scss +3 -1
  87. package/styles/diagram/fluent-dark.css +7 -1
  88. package/styles/diagram/fluent-dark.scss +3 -1
  89. package/styles/diagram/fluent.css +7 -1
  90. package/styles/diagram/fluent.scss +3 -1
  91. package/styles/diagram/highcontrast-light.css +6 -1
  92. package/styles/diagram/highcontrast-light.scss +3 -1
  93. package/styles/diagram/highcontrast.css +7 -1
  94. package/styles/diagram/highcontrast.scss +3 -1
  95. package/styles/diagram/material-dark.css +6 -1
  96. package/styles/diagram/material-dark.scss +3 -1
  97. package/styles/diagram/material.css +6 -1
  98. package/styles/diagram/material.scss +3 -1
  99. package/styles/diagram/tailwind-dark.css +7 -1
  100. package/styles/diagram/tailwind-dark.scss +3 -1
  101. package/styles/diagram/tailwind.css +7 -1
  102. package/styles/diagram/tailwind.scss +3 -1
  103. package/styles/fabric-dark.css +6 -1
  104. package/styles/fabric.css +6 -1
  105. package/styles/fluent-dark.css +7 -1
  106. package/styles/fluent.css +7 -1
  107. package/styles/highcontrast-light.css +6 -1
  108. package/styles/highcontrast.css +7 -1
  109. package/styles/material-dark.css +6 -1
  110. package/styles/material.css +6 -1
  111. package/styles/tailwind-dark.css +7 -1
  112. package/styles/tailwind.css +7 -1
  113. package/syncfusion-ej2-angular-diagrams.d.ts +5 -0
  114. package/@syncfusion/ej2-angular-diagrams.es5.js +0 -1324
  115. package/@syncfusion/ej2-angular-diagrams.es5.js.map +0 -1
  116. package/@syncfusion/ej2-angular-diagrams.js +0 -1243
  117. package/@syncfusion/ej2-angular-diagrams.js.map +0 -1
  118. package/CHANGELOG.md +0 -1771
  119. package/dist/ej2-angular-diagrams.umd.js +0 -1731
  120. package/dist/ej2-angular-diagrams.umd.js.map +0 -1
  121. package/dist/ej2-angular-diagrams.umd.min.js +0 -11
  122. package/dist/ej2-angular-diagrams.umd.min.js.map +0 -1
  123. package/ej2-angular-diagrams.d.ts +0 -7
  124. package/ej2-angular-diagrams.metadata.json +0 -1
  125. package/postinstall/tagchange.js +0 -18
  126. package/schematics/collection.json +0 -35
  127. package/schematics/generators/diagram-default-functionalities/index.d.ts +0 -3
  128. package/schematics/generators/diagram-default-functionalities/index.js +0 -8
  129. package/schematics/generators/diagram-default-functionalities/sample-details.d.ts +0 -5
  130. package/schematics/generators/diagram-default-functionalities/sample-details.js +0 -7
  131. package/schematics/generators/diagram-default-functionalities/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  132. package/schematics/generators/diagram-default-functionalities/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -125
  133. package/schematics/generators/diagram-default-functionalities/schema.d.ts +0 -3
  134. package/schematics/generators/diagram-default-functionalities/schema.js +0 -2
  135. package/schematics/generators/diagram-default-functionalities/schema.json +0 -125
  136. package/schematics/generators/diagram-hierarchical-tree/index.d.ts +0 -3
  137. package/schematics/generators/diagram-hierarchical-tree/index.js +0 -8
  138. package/schematics/generators/diagram-hierarchical-tree/sample-details.d.ts +0 -5
  139. package/schematics/generators/diagram-hierarchical-tree/sample-details.js +0 -7
  140. package/schematics/generators/diagram-hierarchical-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  141. package/schematics/generators/diagram-hierarchical-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
  142. package/schematics/generators/diagram-hierarchical-tree/schema.d.ts +0 -3
  143. package/schematics/generators/diagram-hierarchical-tree/schema.js +0 -2
  144. package/schematics/generators/diagram-hierarchical-tree/schema.json +0 -125
  145. package/schematics/generators/diagram-organization-chart/index.d.ts +0 -3
  146. package/schematics/generators/diagram-organization-chart/index.js +0 -8
  147. package/schematics/generators/diagram-organization-chart/sample-details.d.ts +0 -5
  148. package/schematics/generators/diagram-organization-chart/sample-details.js +0 -7
  149. package/schematics/generators/diagram-organization-chart/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  150. package/schematics/generators/diagram-organization-chart/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -66
  151. package/schematics/generators/diagram-organization-chart/schema.d.ts +0 -3
  152. package/schematics/generators/diagram-organization-chart/schema.js +0 -2
  153. package/schematics/generators/diagram-organization-chart/schema.json +0 -125
  154. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Clayton.png +0 -0
  155. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Jenny.png +0 -0
  156. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/John.png +0 -0
  157. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Maria.png +0 -0
  158. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Paul.png +0 -0
  159. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Robin.png +0 -0
  160. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/Thomas.png +0 -0
  161. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/eric.png +0 -0
  162. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/female.png +0 -0
  163. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image12.png +0 -0
  164. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image2.png +0 -0
  165. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image3.png +0 -0
  166. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image50.png +0 -0
  167. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image51.png +0 -0
  168. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image53.png +0 -0
  169. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image54.png +0 -0
  170. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image55.png +0 -0
  171. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image56.png +0 -0
  172. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/image57.png +0 -0
  173. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/images7.png +0 -0
  174. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/images9.png +0 -0
  175. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/male.png +0 -0
  176. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/moreinfo.png +0 -0
  177. package/schematics/generators/diagram-overview/images/__path__/__name@dasherize__/smith.png +0 -0
  178. package/schematics/generators/diagram-overview/index.d.ts +0 -3
  179. package/schematics/generators/diagram-overview/index.js +0 -8
  180. package/schematics/generators/diagram-overview/sample-details.d.ts +0 -5
  181. package/schematics/generators/diagram-overview/sample-details.js +0 -7
  182. package/schematics/generators/diagram-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  183. package/schematics/generators/diagram-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -19
  184. package/schematics/generators/diagram-overview/schema.d.ts +0 -3
  185. package/schematics/generators/diagram-overview/schema.js +0 -2
  186. package/schematics/generators/diagram-overview/schema.json +0 -125
  187. package/schematics/generators/diagram-radial-tree/index.d.ts +0 -3
  188. package/schematics/generators/diagram-radial-tree/index.js +0 -8
  189. package/schematics/generators/diagram-radial-tree/sample-details.d.ts +0 -5
  190. package/schematics/generators/diagram-radial-tree/sample-details.js +0 -7
  191. package/schematics/generators/diagram-radial-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  192. package/schematics/generators/diagram-radial-tree/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  193. package/schematics/generators/diagram-radial-tree/schema.d.ts +0 -3
  194. package/schematics/generators/diagram-radial-tree/schema.js +0 -2
  195. package/schematics/generators/diagram-radial-tree/schema.json +0 -125
  196. package/schematics/ng-add/index.d.ts +0 -3
  197. package/schematics/ng-add/index.js +0 -9
  198. package/schematics/ng-add/schema.d.ts +0 -13
  199. package/schematics/ng-add/schema.js +0 -2
  200. package/schematics/ng-add/schema.json +0 -34
  201. package/schematics/tsconfig.json +0 -25
  202. package/schematics/utils/lib-details.d.ts +0 -4
  203. package/schematics/utils/lib-details.js +0 -6
@@ -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 */
@@ -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 */
@@ -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 */
@@ -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
+ }