@riil-frontend/component-topology 3.5.10 → 3.5.11
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/build/1.js +2 -2
- package/build/2.js +1 -1
- package/build/index.js +16 -16
- package/es/core/models/TopoApp.js +1 -1
- package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/ResourceOverview.js +1 -1
- package/es/models/topoAlarm.js +1 -1
- package/lib/core/models/TopoApp.js +1 -1
- package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/ResourceOverview.js +1 -1
- package/lib/models/topoAlarm.js +1 -1
- package/package.json +3 -3
|
@@ -20,7 +20,7 @@ import { updateEdgeExpanded } from "../utils/edgeUtil";
|
|
|
20
20
|
import PluginManager from "./PluginManager";
|
|
21
21
|
import topoFactory from "./topoFactory"; // eslint-disable-next-line no-undef
|
|
22
22
|
|
|
23
|
-
var version = typeof "3.5.
|
|
23
|
+
var version = typeof "3.5.11" === 'string' ? "3.5.11" : null;
|
|
24
24
|
console.info("\u62D3\u6251\u7248\u672C: " + version);
|
|
25
25
|
/**
|
|
26
26
|
* 拓扑显示和编辑
|
|
@@ -461,7 +461,7 @@ export default function ResourceOverview(props) {
|
|
|
461
461
|
case 0:
|
|
462
462
|
_context5.next = 2;
|
|
463
463
|
return alarmService.getAlarmByIds([id], {
|
|
464
|
-
alertStatusList: ['toDeal', 'dealing'],
|
|
464
|
+
alertStatusList: ['toDeal', 'woDealing', 'dealing'],
|
|
465
465
|
// toDeal: 待处理, dealing:处理中
|
|
466
466
|
pageNum: 1,
|
|
467
467
|
pageSize: 999,
|
package/es/models/topoAlarm.js
CHANGED
|
@@ -8,7 +8,7 @@ import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
|
8
8
|
import rlog from "@riil-frontend/component-topology-utils/es/rlog";
|
|
9
9
|
import _ from "lodash";
|
|
10
10
|
import { sortList } from "../utils/topoData";
|
|
11
|
-
var showAlarmStatus = ["toDeal", "dealing", "change"];
|
|
11
|
+
var showAlarmStatus = ["toDeal", "dealing", "change", "woDealing"];
|
|
12
12
|
export default function (topo) {
|
|
13
13
|
return {
|
|
14
14
|
// 定义 model 的初始 state
|
|
@@ -48,7 +48,7 @@ var _PluginManager = _interopRequireDefault(require("./PluginManager"));
|
|
|
48
48
|
var _topoFactory = _interopRequireDefault(require("./topoFactory"));
|
|
49
49
|
|
|
50
50
|
// eslint-disable-next-line no-undef
|
|
51
|
-
var version = typeof "3.5.
|
|
51
|
+
var version = typeof "3.5.11" === 'string' ? "3.5.11" : null;
|
|
52
52
|
console.info("\u62D3\u6251\u7248\u672C: " + version);
|
|
53
53
|
/**
|
|
54
54
|
* 拓扑显示和编辑
|
|
@@ -493,7 +493,7 @@ function ResourceOverview(props) {
|
|
|
493
493
|
case 0:
|
|
494
494
|
_context5.next = 2;
|
|
495
495
|
return _alarm["default"].getAlarmByIds([id], {
|
|
496
|
-
alertStatusList: ['toDeal', 'dealing'],
|
|
496
|
+
alertStatusList: ['toDeal', 'woDealing', 'dealing'],
|
|
497
497
|
// toDeal: 待处理, dealing:处理中
|
|
498
498
|
pageNum: 1,
|
|
499
499
|
pageSize: 999,
|
package/lib/models/topoAlarm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@riil-frontend/component-topology",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.11",
|
|
4
4
|
"description": "拓扑",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "build-scripts start",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@alifd/biz-anchor": "^1.1.7",
|
|
43
43
|
"@ice/store": "^1.4.2",
|
|
44
44
|
"@riil-frontend/component-topo-icon-select": "^1.0.16",
|
|
45
|
-
"@riil-frontend/component-topology-utils": "^2.
|
|
45
|
+
"@riil-frontend/component-topology-utils": "^2.1.0",
|
|
46
46
|
"classnames": "^2.2.3",
|
|
47
47
|
"prop-types": "^15.5.8",
|
|
48
48
|
"react-color": "^2.19.3",
|
|
@@ -110,6 +110,6 @@
|
|
|
110
110
|
"access": "public"
|
|
111
111
|
},
|
|
112
112
|
"license": "MIT",
|
|
113
|
-
"homepage": "https://unpkg.com/@riil-frontend/component-topology@3.5.
|
|
113
|
+
"homepage": "https://unpkg.com/@riil-frontend/component-topology@3.5.11/build/index.html",
|
|
114
114
|
"gitHead": "2da19ffccbb7ca60a8acf396e39f542c68bb33f5"
|
|
115
115
|
}
|