changed the header and license
[aai/sparky-fe.git] / src / generic-components / graph / NodeVisualElementConstants.js
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 export default {
22   SVG_CIRCLE: 'circle',
23   SVG_LINE: 'line',
24   TEXT: 'text',
25   IMAGE: 'image',
26   OBJECT: 'object',
27   ELLIPSE: 'ellipse',
28   G: 'g',
29   PATH: 'path',
30   BUTTON: 'button',
31   ICON: 'icon',
32   CSS_CLASS: 'className',
33   SELECTED_NODE_CLASS_NAME: 'selectedNodeClass',
34   GENERAL_NODE_CLASS_NAME: 'generalNodeClass',
35   SEARCHED_NODE_CLASS_NAME: 'searchedNodeClass',
36   SELECTED_SEARCHED_NODE_CLASS_NAME: 'selectedSearchedNodeClass',
37   SCALE_EXTENT_MIN: 0.125,
38   SACEL_EXTENT_MAX: 10,
39   ICON_ELLIPSES: 'icon_ellipses',
40   ICON_TRIANGLE_WARNING: 'icon_triangle_warning',
41   ICON_TICK: 'icon_tick',
42   ICON_WARNING: 'icon_warning'
43 };