@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
@@ -0,0 +1,201 @@
1
+ @include export-module('diagram-theme') {
2
+
3
+ .e-diagram {
4
+ background-color: $diagram-background-color;
5
+ display: block;
6
+ }
7
+
8
+ .e-symbolpalette {
9
+ display: block;
10
+ }
11
+
12
+ .e-overview {
13
+ display: block;
14
+ }
15
+
16
+ .e-content-placeholder.e-diagram.e-placeholder-diagram {
17
+ background-size: 100% 100%;
18
+ max-height: 500px;
19
+ max-width: 500px;
20
+ }
21
+
22
+ .e-content-placeholder.e-symbolpalette.e-placeholder-symbolpalette {
23
+ background-size: 100% 100%;
24
+ max-height: 200px;
25
+ max-width: 200px;
26
+ }
27
+
28
+ .e-diagram-endpoint-handle {
29
+ fill: $diagram-endpoint-handle-color;
30
+ stroke: $diagram-resize-handle-stroke;
31
+ }
32
+
33
+ .e-diagram-endpoint-handle.e-connected {
34
+ fill: $diagram-endpoint-handle-connected-color;
35
+ stroke: $diagram-endpoint-handle-connected-border;
36
+ }
37
+
38
+ .e-diagram-endpoint-handle.e-disabled {
39
+ fill: $diagram-resize-handle-disable-color;
40
+ opacity: 1;
41
+ stroke: $diagram-resize-handle-disable-stroke;
42
+ }
43
+
44
+ /* stylelint-disable */
45
+ .e-diagram-bezier-handle.e-source.e-disabled {
46
+ opacity: 1 !important;
47
+ }
48
+
49
+ .e-diagram-bezier-handle.e-target.e-disabled {
50
+ opacity: 1 !important;
51
+ }
52
+
53
+ .e-symbolpalette .e-acrdn-content {
54
+ background-color: $palette-background-color !important;
55
+ }
56
+ /* stylelint-enable */
57
+
58
+ .e-diagram-bezier-handle {
59
+ fill: $diagram-bezier-handle-color;
60
+ stroke: $diagram-resize-handle-stroke;
61
+ }
62
+
63
+ .e-diagram-bezier-line {
64
+ stroke: $diagram-bezier-line-color;
65
+ }
66
+
67
+ .e-diagram-resize-handle {
68
+ fill: $diagram-resize-handle-color;
69
+ stroke: $diagram-resize-handle-stroke;
70
+ @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'material' or $skin-name == 'fabric-dark' or $skin-name == 'fabric' or $skin-name == 'highcontrast' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap4' or $skin-name == 'FluentUI') {
71
+ stroke: $diagram-endpoint-handle-color;
72
+ }
73
+ }
74
+
75
+ .e-diagram-helper {
76
+ stroke: $diagram-helper-stroke;
77
+ }
78
+
79
+ .e-diagram-resize-handle.e-disabled {
80
+ fill: $diagram-resize-handle-disable-color;
81
+ opacity: 1;
82
+ stroke: $diagram-resize-handle-disable-stroke;
83
+ }
84
+
85
+ .e-diagram-rotate-handle {
86
+ fill: $diagram-rotate-handle-color;
87
+ stroke: $diagram-resize-handle-stroke;
88
+ }
89
+
90
+ .e-diagram-border {
91
+ stroke: $diagram-border-stroke;
92
+ }
93
+
94
+ .e-diagram-border.e-disabled {
95
+ opacity: 1;
96
+ stroke: $diagram-border-stroke-disabled;
97
+ }
98
+
99
+ .e-diagram-border.e-thick-border {
100
+ stroke: $diagram-border-strokes;
101
+ stroke-width: $diagram-border-stroke-width;
102
+ }
103
+
104
+ .e-diagram-border.e-thick-border.e-diagram-lane {
105
+ stroke: $diagram-lane-border-strokes;
106
+ stroke-width: $diagram-lane-border-stroke-width;
107
+ }
108
+
109
+ .e-diagram-highlighter {
110
+ stroke: $diagram-highlighter-stroke;
111
+ stroke-width: $diagram-highlighter-border-stroke-width;
112
+ }
113
+
114
+ .e-diagram-selected-region {
115
+ stroke: $diagram-selected-region-stroke;
116
+ }
117
+
118
+ .e-diagram-pivot-line {
119
+ stroke: $diagram-pivot-line-stroke;
120
+ }
121
+
122
+ .e-symbolpalette .e-symbol-hover:hover {
123
+ background: $diagram-symbolpalette-hover;
124
+ border-radius: $diagram-symbolpalette-shape-radius;
125
+ }
126
+
127
+ .e-symbolpalette .e-symbol-selected {
128
+ background: $diagram-symbolpalette-selected;
129
+ border-radius: $diagram-symbolpalette-shape-radius;
130
+ }
131
+
132
+ .e-diagram-tooltip {
133
+ pointer-events: $diagram-tooltip;
134
+ }
135
+
136
+ .e-diagram .e-ruler {
137
+ background-color: $diagram-ruler-marker-background-color;
138
+ color: $diagram-ruler-color;
139
+ font-size: $diagram-ruler-font-size;
140
+ }
141
+
142
+ .e-diagram .e-ruler-overlap {
143
+ background-color: $diagram-ruler-marker-background-color;
144
+ }
145
+
146
+ .e-diagram .e-d-ruler-marker {
147
+ stroke: $diagram-ruler-marker-stroke;
148
+ }
149
+
150
+ .e-diagram .e-diagram-text-edit {
151
+ background: $diagram-editbox-background;
152
+ border-color: $diagram-bezier-line-color;
153
+ border-style: dashed;
154
+ border-width: 1px;
155
+ box-sizing: content-box;
156
+ color: $diagram-editbox-fontcolor;
157
+ min-width: 50px;
158
+ }
159
+
160
+ .e-diagram-text-edit::selection {
161
+ background: $diagram-text-edit-selection-background;
162
+ color: $diagram-text-edit-selection-color;
163
+ }
164
+
165
+ .e-ruler-tick-label {
166
+ fill: $diagram-ruler-label-fill;
167
+ }
168
+
169
+ .e-ruler-tick {
170
+ stroke: $diagram-ruler-tick-stroke;
171
+ }
172
+
173
+ .e-menu-item e-blankicon {
174
+ padding-left: 28px;
175
+ }
176
+
177
+ .e-diagram-selection-rect {
178
+ stroke: $diagram-multiselect-stroke;
179
+ }
180
+
181
+ .e-diagram-selection-line {
182
+ stroke: $diagram-multiselect-stroke;
183
+ }
184
+
185
+ /* stylelint-disable */
186
+ .e-diagram-rotate {
187
+ cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsSAAALEgHS3X78AAAA60lEQVQ4jZ1SwQ2DMBAzlfLJI2KEjJAVukG7ARsxQkfoKHQDugHdgOoqh14oCaGWIpSTudzZRg2MdYOxrq0il2Csm411o7Eu5GinTN0D6AGMAGZVux9p1LGBrHIF0LD+4l3ql70thDABSFZYaeTJ6UqNWhL3ELhyyhUR98TcwI06Lk1aNonO1NocqGWy/6zOcGCq6OjiSCw22/wUfEzL8ND2P9duFXBmHMDvWVN7CliFkkGe69VM5RmVLDqG7ZMPOroWP5BTle5WjR6dkQayutyLqU6gsiU/ypHMiI41yf+CE01qov+R0egXAN5x6jng51I3yAAAAABJRU5ErkJggg==), auto !important;
188
+ }
189
+
190
+ .e-symbolpalette-hidden {
191
+ display: none !important;
192
+ }
193
+ .e-symbolpalette-search-hidden {
194
+ display: none !important;
195
+ }
196
+ .e-diagramTooltip-content {
197
+ width: auto !important;
198
+ height: auto !important;
199
+ }
200
+ /* stylelint-enable */
201
+ }
@@ -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 */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/bootstrap-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap-dark-definition.scss';
2
+ @import 'bootstrap-dark-definition.scss';
3
+ @import 'all.scss';
@@ -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 */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/bootstrap.scss';
1
+ @import 'ej2-base/styles/bootstrap-definition.scss';
2
+ @import 'bootstrap-definition.scss';
3
+ @import 'all.scss';
@@ -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 */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/bootstrap4.scss';
1
+ @import 'ej2-base/styles/bootstrap4-definition.scss';
2
+ @import 'bootstrap4-definition.scss';
3
+ @import 'all.scss';
@@ -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 */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/bootstrap5-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap5-dark-definition.scss';
2
+ @import 'bootstrap5-dark-definition.scss';
3
+ @import 'all.scss';
@@ -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 */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/bootstrap5.scss';
1
+ @import 'ej2-base/styles/bootstrap5-definition.scss';
2
+ @import 'bootstrap5-definition.scss';
3
+ @import 'all.scss';
@@ -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: #dadada !important;
218
219
  }
219
220
 
221
+ /* stylelint-enable */
220
222
  .e-diagram-bezier-handle {
221
223
  fill: #fff;
222
224
  stroke: #0074cc;
@@ -342,6 +344,7 @@
342
344
  stroke: #0074cc;
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 */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/fabric-dark.scss';
1
+ @import 'ej2-base/styles/fabric-dark-definition.scss';
2
+ @import 'fabric-dark-definition.scss';
3
+ @import 'all.scss';
@@ -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: #0078d6;
@@ -342,6 +344,7 @@
342
344
  stroke: #0078d6;
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 */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/fabric.scss';
1
+ @import 'ej2-base/styles/fabric-definition.scss';
2
+ @import 'fabric-definition.scss';
3
+ @import 'all.scss';
@@ -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: #f3f2f1 !important;
218
220
  }
219
221
 
222
+ /* stylelint-enable */
220
223
  .e-diagram-bezier-handle {
221
224
  fill: #fff;
222
225
  stroke: #0078d4;
@@ -342,6 +345,7 @@
342
345
  stroke: #0078d4;
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 */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/fluent-dark.scss';
1
+ @import 'ej2-base/styles/fluent-dark-definition.scss';
2
+ @import 'fluent-dark-definition.scss';
3
+ @import 'all.scss';
@@ -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: #0078d4;
@@ -342,6 +345,7 @@
342
345
  stroke: #0078d4;
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 */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/fluent.scss';
1
+ @import 'ej2-base/styles/fluent-definition.scss';
2
+ @import 'fluent-definition.scss';
3
+ @import 'all.scss';
@@ -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: rgb(0, 90, 158);
222
224
  stroke: #fff;
@@ -341,6 +343,7 @@
341
343
  stroke: #fff;
342
344
  }
343
345
 
346
+ /* stylelint-disable */
344
347
  .e-diagram-rotate {
345
348
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsSAAALEgHS3X78AAAA60lEQVQ4jZ1SwQ2DMBAzlfLJI2KEjJAVukG7ARsxQkfoKHQDugHdgOoqh14oCaGWIpSTudzZRg2MdYOxrq0il2Csm411o7Eu5GinTN0D6AGMAGZVux9p1LGBrHIF0LD+4l3ql70thDABSFZYaeTJ6UqNWhL3ELhyyhUR98TcwI06Lk1aNonO1NocqGWy/6zOcGCq6OjiSCw22/wUfEzL8ND2P9duFXBmHMDvWVN7CliFkkGe69VM5RmVLDqG7ZMPOroWP5BTle5WjR6dkQayutyLqU6gsiU/ypHMiI41yf+CE01qov+R0egXAN5x6jng51I3yAAAAABJRU5ErkJggg==), auto !important;
346
349
  }
@@ -356,4 +359,6 @@
356
359
  .e-diagramTooltip-content {
357
360
  width: auto !important;
358
361
  height: auto !important;
359
- }
362
+ }
363
+
364
+ /* stylelint-enable */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/highcontrast-light.scss';
1
+ @import 'ej2-base/styles/highcontrast-light-definition.scss';
2
+ @import 'highcontrast-light-definition.scss';
3
+ @import 'all.scss';
@@ -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: #757575;
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: #cccccc !important;
218
220
  }
219
221
 
222
+ /* stylelint-enable */
220
223
  .e-diagram-bezier-handle {
221
224
  fill: #fff;
222
225
  stroke: #ffd939;
@@ -342,6 +345,7 @@
342
345
  stroke: #ffd939;
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 */
@@ -1 +1,3 @@
1
- @import 'ej2-diagrams/styles/diagram/highcontrast.scss';
1
+ @import 'ej2-base/styles/highcontrast-definition.scss';
2
+ @import 'highcontrast-definition.scss';
3
+ @import 'all.scss';
@@ -206,6 +206,7 @@
206
206
  stroke: #fff;
207
207
  }
208
208
 
209
+ /* stylelint-disable */
209
210
  .e-diagram-bezier-handle.e-source.e-disabled {
210
211
  opacity: 1 !important;
211
212
  }
@@ -218,6 +219,7 @@
218
219
  background-color: #e0e0e0 !important;
219
220
  }
220
221
 
222
+ /* stylelint-enable */
221
223
  .e-diagram-bezier-handle {
222
224
  fill: #fff;
223
225
  stroke: #00b0ff;
@@ -343,6 +345,7 @@
343
345
  stroke: #00b0ff;
344
346
  }
345
347
 
348
+ /* stylelint-disable */
346
349
  .e-diagram-rotate {
347
350
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsSAAALEgHS3X78AAAA60lEQVQ4jZ1SwQ2DMBAzlfLJI2KEjJAVukG7ARsxQkfoKHQDugHdgOoqh14oCaGWIpSTudzZRg2MdYOxrq0il2Csm411o7Eu5GinTN0D6AGMAGZVux9p1LGBrHIF0LD+4l3ql70thDABSFZYaeTJ6UqNWhL3ELhyyhUR98TcwI06Lk1aNonO1NocqGWy/6zOcGCq6OjiSCw22/wUfEzL8ND2P9duFXBmHMDvWVN7CliFkkGe69VM5RmVLDqG7ZMPOroWP5BTle5WjR6dkQayutyLqU6gsiU/ypHMiI41yf+CE01qov+R0egXAN5x6jng51I3yAAAAABJRU5ErkJggg==), auto !important;
348
351
  }
@@ -358,4 +361,6 @@
358
361
  .e-diagramTooltip-content {
359
362
  width: auto !important;
360
363
  height: auto !important;
361
- }
364
+ }
365
+
366
+ /* stylelint-enable */