[AAI-92 Amsterdam] Update license
[aai/sparky-fe.git] / src / generic-components / graph / NodeVisualElementConstants.js
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 export default {
24   SVG_CIRCLE: 'circle',
25   SVG_LINE: 'line',
26   TEXT: 'text',
27   IMAGE: 'image',
28   OBJECT: 'object',
29   ELLIPSE: 'ellipse',
30   G: 'g',
31   PATH: 'path',
32   BUTTON: 'button',
33   ICON: 'icon',
34   CSS_CLASS: 'className',
35   SELECTED_NODE_CLASS_NAME: 'selectedNodeClass',
36   GENERAL_NODE_CLASS_NAME: 'generalNodeClass',
37   SEARCHED_NODE_CLASS_NAME: 'searchedNodeClass',
38   SELECTED_SEARCHED_NODE_CLASS_NAME: 'selectedSearchedNodeClass',
39   SCALE_EXTENT_MIN: 0.125,
40   SACEL_EXTENT_MAX: 10,
41   ICON_ELLIPSES: 'icon_ellipses',
42   ICON_TRIANGLE_WARNING: 'icon_triangle_warning',
43   ICON_TICK: 'icon_tick',
44   ICON_WARNING: 'icon_warning',
45   BUTTON_CLICK_NODE_DETAILS: 'NODE_DETAILS'
46 };