tntd 1.4.6 → 1.4.7
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/components/Layout/HeaderActions.js +90 -128
- package/components/LoadingButton/index.js +11 -15
- package/dist/stats.json +4958 -4958
- package/dist/tntd.js +1 -1
- package/es/Layout/HeaderActions.js +10 -10
- package/es/LoadingButton/index.js +20 -10
- package/lib/ArrayInput/icon.js +27 -31
- package/lib/ArrayInput/index.js +211 -298
- package/lib/AuthContext.js +2 -13
- package/lib/Columns/index.js +71 -100
- package/lib/DevelopmentLogin/LoginModal.js +79 -141
- package/lib/DevelopmentLogin/index.js +28 -55
- package/lib/Ellipsis/Svg/CopySVG.js +23 -71
- package/lib/Ellipsis/Svg/TickSVG.js +17 -49
- package/lib/Ellipsis/index.js +148 -154
- package/lib/Handle/index.js +72 -109
- package/lib/Icon/fonts/iconfont.js +1 -43
- package/lib/Icon/iconList.js +119 -8
- package/lib/Icon/index.js +13 -45
- package/lib/Img/Contain.js +49 -81
- package/lib/Img/Cover.js +88 -136
- package/lib/Img/index.js +36 -89
- package/lib/Layout/ActionsContext.js +2 -11
- package/lib/Layout/AppList.js +262 -256
- package/lib/Layout/Application.js +119 -135
- package/lib/Layout/Avatar.js +137 -137
- package/lib/Layout/CompatibleLanguage.js +214 -195
- package/lib/Layout/EnterpriseLayout/Avatar.js +156 -168
- package/lib/Layout/EnterpriseLayout/Language.js +75 -100
- package/lib/Layout/EnterpriseLayout/Theme.js +96 -94
- package/lib/Layout/EnterpriseLayout/index.js +32 -45
- package/lib/Layout/GlobalNavigation/NavigationPopup.js +335 -407
- package/lib/Layout/GlobalNavigation/index.js +110 -158
- package/lib/Layout/Header.js +165 -116
- package/lib/Layout/HeaderActions.js +132 -129
- package/lib/Layout/HeaderNavs.js +90 -113
- package/lib/Layout/HeaderTabs.js +312 -278
- package/lib/Layout/Iconfont.js +2 -15
- package/lib/Layout/Language.js +63 -102
- package/lib/Layout/Layout.js +272 -261
- package/lib/Layout/Logo.js +132 -87
- package/lib/Layout/OrgAppList.js +440 -319
- package/lib/Layout/SideMenu.js +429 -343
- package/lib/Layout/Theme.js +95 -124
- package/lib/Layout/checkAuth.js +21 -35
- package/lib/Layout/createActions.js +38 -51
- package/lib/Layout/images/index.js +33 -41
- package/lib/Layout/index.js +110 -161
- package/lib/Layout/paaslayout/CompactSideMenu.js +200 -178
- package/lib/Layout/paaslayout/Header.js +84 -90
- package/lib/Layout/paaslayout/Logo.js +27 -32
- package/lib/Layout/paaslayout/SideMenu.js +161 -174
- package/lib/Layout/paaslayout/index.js +240 -261
- package/lib/Layout/storage.js +20 -78
- package/lib/Layout/utils.js +93 -143
- package/lib/LoadingButton/index.js +25 -57
- package/lib/Modal/index.js +83 -108
- package/lib/Page/Box.js +56 -81
- package/lib/Page/index.js +151 -173
- package/lib/Page/utils.js +12 -30
- package/lib/QueryForm/Field/Checkbox.js +11 -33
- package/lib/QueryForm/Field/Select.js +63 -99
- package/lib/QueryForm/Field/SelectInput.js +69 -114
- package/lib/QueryForm/Field/fieldsMap.js +30 -52
- package/lib/QueryForm/Field/index.js +76 -158
- package/lib/QueryForm/createActions.js +50 -65
- package/lib/QueryForm/index.js +304 -383
- package/lib/QueryForm/useForm.js +6 -17
- package/lib/QueryListScene/List.js +290 -366
- package/lib/QueryListScene/QueryForm.js +93 -161
- package/lib/QueryListScene/QueryListScene.js +33 -87
- package/lib/QueryListScene/Title.js +10 -20
- package/lib/QueryListScene/Toolbar.js +8 -31
- package/lib/QueryListScene/createActions.js +64 -79
- package/lib/QueryListScene/index.js +23 -40
- package/lib/QueryListScene/useActions.js +6 -17
- package/lib/Select/DropDownWrap.js +60 -124
- package/lib/Select/index.js +425 -561
- package/lib/Table/ResizableTable/index.js +77 -121
- package/lib/Table/index.js +19 -51
- package/lib/Title/index.js +34 -52
- package/lib/index.js +19 -159
- package/lib/locale.js +48 -63
- package/package.json +1 -1
- package/lib/Layout/EnterpriseLayout/Header.js +0 -113
- package/lib/Layout/EnterpriseLayout/HeaderActions.js +0 -104
package/lib/Layout/Theme.js
CHANGED
|
@@ -1,127 +1,98 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
var getTheme = function getTheme() {
|
|
84
|
-
var theme = (0, _storage.getThemeStore)() || props.theme || 'themeS2';
|
|
85
|
-
return themes.some(function (_ref) {
|
|
86
|
-
var value = _ref.value;
|
|
87
|
-
return value === theme;
|
|
88
|
-
}) ? theme : 'themeS2';
|
|
89
|
-
};
|
|
90
|
-
|
|
91
|
-
var _useState = (0, _react.useState)(getTheme()),
|
|
92
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
93
|
-
theme = _useState2[0],
|
|
94
|
-
setTheme = _useState2[1];
|
|
95
|
-
|
|
96
|
-
var changeTheme = function changeTheme(theme) {
|
|
97
|
-
setTheme(theme);
|
|
98
|
-
(0, _storage.setThemeStore)(theme);
|
|
99
|
-
onChange(theme);
|
|
100
|
-
};
|
|
101
|
-
|
|
102
|
-
return React.createElement(ThemeContentWrapper, null, React.createElement(ThemeSwitch, null, themes.map(function (_ref2) {
|
|
103
|
-
var value = _ref2.value,
|
|
104
|
-
img = _ref2.img;
|
|
105
|
-
return React.createElement("div", {
|
|
106
|
-
key: value,
|
|
107
|
-
onClick: changeTheme.bind(_this, value)
|
|
108
|
-
}, React.createElement("img", {
|
|
109
|
-
src: img
|
|
110
|
-
}), theme === value && React.createElement(_Iconfont["default"], {
|
|
111
|
-
type: "check1"
|
|
112
|
-
}));
|
|
113
|
-
})));
|
|
1
|
+
import { useState } from 'react';
|
|
2
|
+
import styled from 'styled-components';
|
|
3
|
+
import { Popover } from 'antd';
|
|
4
|
+
import Iconfont from './Iconfont';
|
|
5
|
+
import images from './images';
|
|
6
|
+
import { setThemeStore, getThemeStore } from './storage';
|
|
7
|
+
|
|
8
|
+
const Theme = styled.li`
|
|
9
|
+
margin-left: 20px;
|
|
10
|
+
font-size: 20px;
|
|
11
|
+
.tnt-themeS1 & {
|
|
12
|
+
/* color: rgba(255,255,255,.85); */
|
|
13
|
+
}
|
|
14
|
+
.isInIframe & {
|
|
15
|
+
display: none;
|
|
16
|
+
}
|
|
17
|
+
`;
|
|
18
|
+
|
|
19
|
+
const ThemeSwitch = styled.div`
|
|
20
|
+
& > div {
|
|
21
|
+
position: relative;
|
|
22
|
+
display: inline-block;
|
|
23
|
+
cursor: pointer;
|
|
24
|
+
&:first-child {
|
|
25
|
+
margin-right: 10px;
|
|
26
|
+
}
|
|
27
|
+
&:last-child {
|
|
28
|
+
margin-left: 10px;
|
|
29
|
+
}
|
|
30
|
+
& > i, & > .tnt-icon {
|
|
31
|
+
position: absolute;
|
|
32
|
+
top: 50%;
|
|
33
|
+
left: 50%;
|
|
34
|
+
transform: translate(-50%, -50%);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
`;
|
|
38
|
+
|
|
39
|
+
const ThemeContentWrapper = styled.div`
|
|
40
|
+
z-index: 1;
|
|
41
|
+
background-color: #fff;
|
|
42
|
+
border-radius: 4px;
|
|
43
|
+
width: 156px;
|
|
44
|
+
`;
|
|
45
|
+
|
|
46
|
+
const themes = [
|
|
47
|
+
{ value: 'themeS1', img: images.themeSymbol1 },
|
|
48
|
+
{ value: 'themeS2', img: images.themeSymbol2 }
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
const ThemeContent = props => {
|
|
52
|
+
const { onChange } = props;
|
|
53
|
+
const getTheme = () => {
|
|
54
|
+
let theme = getThemeStore() || props.theme || 'themeS2';
|
|
55
|
+
|
|
56
|
+
return themes.some(({ value }) => value === theme) ? theme : 'themeS2';
|
|
57
|
+
};
|
|
58
|
+
const [theme, setTheme] = useState(getTheme());
|
|
59
|
+
const changeTheme = theme => {
|
|
60
|
+
setTheme(theme);
|
|
61
|
+
setThemeStore(theme);
|
|
62
|
+
onChange(theme);
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
return (
|
|
66
|
+
<ThemeContentWrapper>
|
|
67
|
+
<ThemeSwitch>
|
|
68
|
+
{
|
|
69
|
+
themes.map(({ value, img }) => (
|
|
70
|
+
<div key={value} onClick={changeTheme.bind(this, value)}>
|
|
71
|
+
<img src={img} />
|
|
72
|
+
{
|
|
73
|
+
theme === value && (
|
|
74
|
+
<Iconfont type="check1" />
|
|
75
|
+
)
|
|
76
|
+
}
|
|
77
|
+
</div>
|
|
78
|
+
))
|
|
79
|
+
}
|
|
80
|
+
</ThemeSwitch>
|
|
81
|
+
</ThemeContentWrapper>
|
|
82
|
+
);
|
|
114
83
|
};
|
|
115
84
|
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
85
|
+
export default props => {
|
|
86
|
+
return (
|
|
87
|
+
<Theme>
|
|
88
|
+
<Popover
|
|
89
|
+
placement="bottomRight"
|
|
90
|
+
title={null}
|
|
91
|
+
content={<ThemeContent {...props} />}
|
|
92
|
+
trigger="click"
|
|
93
|
+
>
|
|
94
|
+
<Iconfont type="change-theme" />
|
|
95
|
+
</Popover>
|
|
96
|
+
</Theme>
|
|
97
|
+
);
|
|
125
98
|
};
|
|
126
|
-
|
|
127
|
-
exports["default"] = _default;
|
package/lib/Layout/checkAuth.js
CHANGED
|
@@ -1,39 +1,25 @@
|
|
|
1
|
-
|
|
1
|
+
import { get } from 'lodash';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
export default menus => {
|
|
4
|
+
const getAuthMap = (menus = [], authMap = {}) => {
|
|
5
|
+
return menus.reduce(
|
|
6
|
+
(acc, { code, groupName, functionList, children }) => {
|
|
7
|
+
if (groupName) {
|
|
8
|
+
return getAuthMap(children, acc);
|
|
9
|
+
} else {
|
|
10
|
+
acc[code] = acc[code] || {};
|
|
11
|
+
acc[code] = (functionList || []).reduce((acc, curFunc) => {
|
|
12
|
+
acc[curFunc.code] = curFunc.hasPermission;
|
|
13
|
+
return acc;
|
|
14
|
+
}, acc[code]);
|
|
7
15
|
|
|
8
|
-
|
|
16
|
+
return acc;
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
authMap
|
|
20
|
+
);
|
|
21
|
+
};
|
|
22
|
+
const authMap = getAuthMap(menus);
|
|
9
23
|
|
|
10
|
-
|
|
11
|
-
var getAuthMap = function getAuthMap() {
|
|
12
|
-
var menus = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
13
|
-
var authMap = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
14
|
-
return menus.reduce(function (acc, _ref) {
|
|
15
|
-
var code = _ref.code,
|
|
16
|
-
groupName = _ref.groupName,
|
|
17
|
-
functionList = _ref.functionList,
|
|
18
|
-
children = _ref.children;
|
|
19
|
-
|
|
20
|
-
if (groupName) {
|
|
21
|
-
return getAuthMap(children, acc);
|
|
22
|
-
} else {
|
|
23
|
-
acc[code] = acc[code] || {};
|
|
24
|
-
acc[code] = (functionList || []).reduce(function (acc, curFunc) {
|
|
25
|
-
acc[curFunc.code] = curFunc.hasPermission;
|
|
26
|
-
return acc;
|
|
27
|
-
}, acc[code]);
|
|
28
|
-
return acc;
|
|
29
|
-
}
|
|
30
|
-
}, authMap);
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
var authMap = getAuthMap(menus);
|
|
34
|
-
return function (menuCode, funCode) {
|
|
35
|
-
return !!(0, _lodash.get)(authMap, "".concat(menuCode).concat(funCode ? ".".concat(funCode) : ''));
|
|
36
|
-
};
|
|
24
|
+
return (menuCode, funCode) => !!get(authMap, `${menuCode}${funCode ? `.${funCode}` : ''}`);
|
|
37
25
|
};
|
|
38
|
-
|
|
39
|
-
exports["default"] = _default;
|
|
@@ -1,52 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
set(data, key, val);
|
|
23
|
-
},
|
|
24
|
-
setSelectedMenuKey: function setSelectedMenuKey(menuKey) {
|
|
25
|
-
data.selectedMenuKey = menuKey;
|
|
26
|
-
},
|
|
27
|
-
getSelectedMenuKey: function getSelectedMenuKey() {
|
|
28
|
-
return data.selectedMenuKey;
|
|
29
|
-
},
|
|
30
|
-
getLanguage: function getLanguage() {
|
|
31
|
-
return data.language;
|
|
32
|
-
},
|
|
33
|
-
setLanguage: function setLanguage(language) {
|
|
34
|
-
return data.language = language;
|
|
35
|
-
},
|
|
36
|
-
getText: function getText(key) {
|
|
37
|
-
var language = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : data.language;
|
|
38
|
-
return (0, _locale.getText)(key, language);
|
|
39
|
-
},
|
|
40
|
-
on: function on(eventName, callback) {
|
|
41
|
-
eventEmitter.on(eventName, callback);
|
|
42
|
-
},
|
|
43
|
-
emit: function emit() {
|
|
44
|
-
eventEmitter.emit.apply(eventEmitter, arguments);
|
|
45
|
-
},
|
|
46
|
-
off: function off() {
|
|
47
|
-
eventEmitter.removeListener.apply(eventEmitter, arguments);
|
|
48
|
-
}
|
|
49
|
-
};
|
|
50
|
-
};
|
|
1
|
+
import EventEmitter from 'eventemitter3';
|
|
2
|
+
import { getText } from '../locale';
|
|
3
|
+
|
|
4
|
+
export default (params) => {
|
|
5
|
+
const eventEmitter = new EventEmitter();
|
|
6
|
+
const data = {
|
|
7
|
+
language: params?.language || 'cn',
|
|
8
|
+
selectedMenuKey: null,
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
return {
|
|
12
|
+
setData: (key, val) => {
|
|
13
|
+
set(data, key, val);
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
setSelectedMenuKey: menuKey => {
|
|
17
|
+
data.selectedMenuKey = menuKey;
|
|
18
|
+
},
|
|
19
|
+
getSelectedMenuKey: () => data.selectedMenuKey,
|
|
20
|
+
|
|
21
|
+
getLanguage: () => data.language,
|
|
51
22
|
|
|
52
|
-
|
|
23
|
+
setLanguage: language => data.language = language,
|
|
24
|
+
|
|
25
|
+
getText: (key, language = data.language) => getText(key, language),
|
|
26
|
+
|
|
27
|
+
on: (eventName, callback) => {
|
|
28
|
+
eventEmitter.on(eventName, callback);
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
emit: (...args) => {
|
|
32
|
+
eventEmitter.emit(...args);
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
off: (...args) => {
|
|
36
|
+
eventEmitter.removeListener(...args);
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -1,46 +1,38 @@
|
|
|
1
|
-
|
|
1
|
+
export default {
|
|
2
|
+
// theme
|
|
3
|
+
themeSymbol1: require('./theme/theme1.svg'),
|
|
4
|
+
themeSymbol2: require('./theme/theme2.svg'),
|
|
2
5
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
female5: require('./avatar/female5.png'),
|
|
18
|
-
female6: require('./avatar/female6.png'),
|
|
19
|
-
male1: require('./avatar/male1.png'),
|
|
20
|
-
male2: require('./avatar/male2.png'),
|
|
21
|
-
male3: require('./avatar/male3.png'),
|
|
22
|
-
male4: require('./avatar/male4.png'),
|
|
23
|
-
male5: require('./avatar/male5.png'),
|
|
24
|
-
male6: require('./avatar/male6.png')
|
|
6
|
+
// Avatar
|
|
7
|
+
empty: require('./avatar/empty.png'),
|
|
8
|
+
female1: require('./avatar/female1.png'),
|
|
9
|
+
female2: require('./avatar/female2.png'),
|
|
10
|
+
female3: require('./avatar/female3.png'),
|
|
11
|
+
female4: require('./avatar/female4.png'),
|
|
12
|
+
female5: require('./avatar/female5.png'),
|
|
13
|
+
female6: require('./avatar/female6.png'),
|
|
14
|
+
male1: require('./avatar/male1.png'),
|
|
15
|
+
male2: require('./avatar/male2.png'),
|
|
16
|
+
male3: require('./avatar/male3.png'),
|
|
17
|
+
male4: require('./avatar/male4.png'),
|
|
18
|
+
male5: require('./avatar/male5.png'),
|
|
19
|
+
male6: require('./avatar/male6.png'),
|
|
25
20
|
};
|
|
26
|
-
exports["default"] = _default;
|
|
27
21
|
|
|
28
|
-
|
|
22
|
+
export const defaultLogo = require('./logo/default.svg');
|
|
29
23
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
bi: require('./logo/bi.svg')
|
|
24
|
+
export const logoImgMap = {
|
|
25
|
+
default: defaultLogo,
|
|
26
|
+
bridge: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIxLjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMTAyNCAxMDI0IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxMDI0IDEwMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDpub25lO3N0cm9rZTojMTJEMDkzO3N0cm9rZS13aWR0aDoyMDtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9Cgkuc3Qxe2ZpbGw6I0ZGQTMwMDt9Cgkuc3Qye2ZpbGw6IzNDODFGRjt9Cgkuc3Qze2ZpbGw6IzBBQ0M4Njt9Cgkuc3Q0e2ZpbGw6IzNEREFGRjt9Cjwvc3R5bGU+CjxnPgoJPGc+CgkJPHBhdGggY2xhc3M9InN0MCIgZD0iTTUxMiw1MTIiLz4KCTwvZz4KPC9nPgo8Zz4KCTxnPgoJCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik01MTIsNTEyIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTEzLjQsNTQ0Yy0yOSwwLTU4LTExLjEtODAuMi0zMy4yYy00NC4zLTQ0LjMtNDQuMy0xMTYuMSwwLTE2MC40TDM1MC40LDMzLjJjNDQuMy00NC4zLDExNi4xLTQ0LjMsMTYwLjQsMAoJCQlzNDQuMywxMTYuMSwwLDE2MC40TDE5My42LDUxMC44QzE3MS40LDUzMywxNDIuNCw1NDQsMTEzLjQsNTQ0eiIvPgoJPC9nPgoJPGc+CgkJPHBhdGggY2xhc3M9InN0MiIgZD0iTTIwMS40LDkzNi41Yy0yOSwwLTU4LTExLjEtODAuMi0zMy4yYy00NC4zLTQ0LjMtNDQuMy0xMTYuMSwwLTE2MC40bDYyMS43LTYyMS43CgkJCWM0NC4zLTQ0LjMsMTE2LjEtNDQuMywxNjAuNCwwYzQ0LjMsNDQuMyw0NC4zLDExNi4xLDAsMTYwLjRMMjgxLjYsOTAzLjNDMjU5LjQsOTI1LjQsMjMwLjQsOTM2LjUsMjAxLjQsOTM2LjV6Ii8+Cgk8L2c+Cgk8Zz4KCQk8cGF0aCBjbGFzcz0ic3QzIiBkPSJNNTkzLjQsMTAyNGMtMjksMC01OC0xMS4xLTgwLjItMzMuMmMtNDQuMy00NC4zLTQ0LjMtMTE2LjEsMC0xNjAuNGwzMTcuMi0zMTcuMgoJCQljNDQuMy00NC4zLDExNi4xLTQ0LjMsMTYwLjQsMGM0NC4zLDQ0LjMsNDQuMywxMTYuMSwwLDE2MC40TDY3My42LDk5MC44QzY1MS40LDEwMTIuOSw2MjIuNCwxMDI0LDU5My40LDEwMjR6Ii8+Cgk8L2c+Cgk8Zz4KCQk8cGF0aCBjbGFzcz0ic3Q0IiBkPSJNODI2LjQsMzEzLjRDNzYzLjgsMzEzLjQsNzEzLDI2Mi42LDcxMywyMDBWMTk4YzAtNjIuNiw1MC44LTExMy40LDExMy40LTExMy40UzkzOS44LDEzNS40LDkzOS44LDE5OHYxLjkKCQkJQzkzOS44LDI2Mi42LDg4OS4xLDMxMy40LDgyNi40LDMxMy40eiIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=',
|
|
27
|
+
orion: require('./logo/orion.svg'),
|
|
28
|
+
turing: require('./logo/turing.svg'),
|
|
29
|
+
dataocean: require('./logo/dataocean.svg'),
|
|
30
|
+
convert: require('./logo/convert.svg'),
|
|
31
|
+
baldur: require('./logo/baldur.svg'),
|
|
32
|
+
indicator: require('./logo/indicator.svg'),
|
|
33
|
+
dispatch: require('./logo/dispatch.svg'),
|
|
34
|
+
feature: require('./logo/model.svg'),
|
|
35
|
+
model: require('./logo/model.svg'),
|
|
36
|
+
storage: require('./logo/storage.svg'),
|
|
37
|
+
bi: require('./logo/bi.svg')
|
|
45
38
|
};
|
|
46
|
-
exports.logoImgMap = logoImgMap;
|