strategy-panel 1.0.0

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 (162) hide show
  1. package/.eslintrc.js +9 -0
  2. package/.fatherrc.ts +26 -0
  3. package/.prettierrc.js +1 -0
  4. package/.umirc.ts +29 -0
  5. package/LICENSE +22 -0
  6. package/README.md +33 -0
  7. package/es/assets/AND.svg +11 -0
  8. package/es/assets/OR.svg +11 -0
  9. package/es/assets/XOR.svg +11 -0
  10. package/es/assets/add.svg +13 -0
  11. package/es/assets/alarm.svg +11 -0
  12. package/es/assets/application.svg +11 -0
  13. package/es/assets/cancel.svg +13 -0
  14. package/es/assets/check.svg +12 -0
  15. package/es/assets/condition.svg +12 -0
  16. package/es/assets/control.svg +11 -0
  17. package/es/assets/decive.svg +11 -0
  18. package/es/assets/delete.svg +11 -0
  19. package/es/assets/device.svg +11 -0
  20. package/es/assets/edit.svg +11 -0
  21. package/es/assets/hand.svg +11 -0
  22. package/es/assets/link.svg +11 -0
  23. package/es/assets/logical.svg +12 -0
  24. package/es/assets/notice.svg +11 -0
  25. package/es/assets/order.svg +11 -0
  26. package/es/assets/relation.svg +11 -0
  27. package/es/assets/rhombus.svg +3 -0
  28. package/es/assets/save.svg +13 -0
  29. package/es/assets/time.svg +11 -0
  30. package/es/assets/variate.svg +12 -0
  31. package/es/common/constants/global.d.ts +1 -0
  32. package/es/common/constants/global.js +1 -0
  33. package/es/common/constants/graph.d.ts +10 -0
  34. package/es/common/constants/graph.js +17 -0
  35. package/es/common/graph-common/category-type.d.ts +16 -0
  36. package/es/common/graph-common/category-type.js +72 -0
  37. package/es/common/graph-common/connector/index.d.ts +1 -0
  38. package/es/common/graph-common/connector/index.js +14 -0
  39. package/es/common/graph-common/node-element/common-element.less +117 -0
  40. package/es/common/graph-common/node-element/condition-element.d.ts +8 -0
  41. package/es/common/graph-common/node-element/condition-element.js +35 -0
  42. package/es/common/graph-common/node-element/condition-element.less +82 -0
  43. package/es/common/graph-common/node-element/logical-element.d.ts +8 -0
  44. package/es/common/graph-common/node-element/logical-element.js +34 -0
  45. package/es/common/graph-common/node-element/logical-element.less +54 -0
  46. package/es/common/graph-common/node-element/node-element.d.ts +8 -0
  47. package/es/common/graph-common/node-element/node-element.js +27 -0
  48. package/es/common/graph-common/node-element/node-element.less +48 -0
  49. package/es/common/graph-common/node-element/node-group.d.ts +8 -0
  50. package/es/common/graph-common/node-element/node-group.js +395 -0
  51. package/es/common/graph-common/node-element/node-group.less +53 -0
  52. package/es/common/graph-common/node-popover/index.d.ts +7 -0
  53. package/es/common/graph-common/node-popover/index.js +11 -0
  54. package/es/common/graph-common/node-popover/index.less +5 -0
  55. package/es/common/graph-common/node-types.d.ts +28 -0
  56. package/es/common/graph-common/node-types.js +60 -0
  57. package/es/common/graph-common/shape/edge.d.ts +10 -0
  58. package/es/common/graph-common/shape/edge.js +115 -0
  59. package/es/common/graph-common/shape/edge.less +8 -0
  60. package/es/common/graph-common/shape/node.d.ts +6 -0
  61. package/es/common/graph-common/shape/node.js +6 -0
  62. package/es/common/graph-common/shape/nodes/BaseNode.d.ts +4 -0
  63. package/es/common/graph-common/shape/nodes/BaseNode.js +46 -0
  64. package/es/common/graph-common/shape/nodes/CommonNode.d.ts +5 -0
  65. package/es/common/graph-common/shape/nodes/CommonNode.js +118 -0
  66. package/es/common/graph-common/shape/nodes/ConditionJudgment.d.ts +5 -0
  67. package/es/common/graph-common/shape/nodes/ConditionJudgment.js +130 -0
  68. package/es/common/graph-common/shape/nodes/GroupNode.d.ts +4 -0
  69. package/es/common/graph-common/shape/nodes/GroupNode.js +99 -0
  70. package/es/common/graph-common/shape/nodes/LogicalNode.d.ts +5 -0
  71. package/es/common/graph-common/shape/nodes/LogicalNode.js +130 -0
  72. package/es/common/graph-utils/graph.d.ts +83 -0
  73. package/es/common/graph-utils/graph.js +98 -0
  74. package/es/component/cut.d.ts +10 -0
  75. package/es/component/cut.js +34 -0
  76. package/es/component/cut.less +6 -0
  77. package/es/component/item-name.d.ts +6 -0
  78. package/es/component/item-name.js +30 -0
  79. package/es/component/keyword.d.ts +9 -0
  80. package/es/component/keyword.js +26 -0
  81. package/es/component/keyword.less +11 -0
  82. package/es/component/rx-component/rx-input.d.ts +8 -0
  83. package/es/component/rx-component/rx-input.js +47 -0
  84. package/es/hooks/useObservableState.d.ts +3 -0
  85. package/es/hooks/useObservableState.js +44 -0
  86. package/es/index.d.ts +8 -0
  87. package/es/index.js +9 -0
  88. package/es/pages/component-tree-panel/category-tree/index.d.ts +16 -0
  89. package/es/pages/component-tree-panel/category-tree/index.js +100 -0
  90. package/es/pages/component-tree-panel/category-tree/index.less +35 -0
  91. package/es/pages/component-tree-panel/category-tree/node-title.d.ts +12 -0
  92. package/es/pages/component-tree-panel/category-tree/node-title.js +57 -0
  93. package/es/pages/component-tree-panel/category-tree/node-title.less +113 -0
  94. package/es/pages/component-tree-panel/index.d.ts +17 -0
  95. package/es/pages/component-tree-panel/index.js +19 -0
  96. package/es/pages/component-tree-panel/index.less +51 -0
  97. package/es/pages/config-panel/components/condition-configuration/configure-modal/data-origin.d.ts +49 -0
  98. package/es/pages/config-panel/components/condition-configuration/configure-modal/data-origin.js +212 -0
  99. package/es/pages/config-panel/components/condition-configuration/configure-modal/index.d.ts +11 -0
  100. package/es/pages/config-panel/components/condition-configuration/configure-modal/index.js +178 -0
  101. package/es/pages/config-panel/components/condition-configuration/configure-modal/style.less +13 -0
  102. package/es/pages/config-panel/components/condition-configuration/cross-line.d.ts +8 -0
  103. package/es/pages/config-panel/components/condition-configuration/cross-line.js +47 -0
  104. package/es/pages/config-panel/components/condition-configuration/index.d.ts +9 -0
  105. package/es/pages/config-panel/components/condition-configuration/index.js +180 -0
  106. package/es/pages/config-panel/components/condition-configuration/style.less +70 -0
  107. package/es/pages/config-panel/components/time-trigger/components/cycle-time.d.ts +8 -0
  108. package/es/pages/config-panel/components/time-trigger/components/cycle-time.js +87 -0
  109. package/es/pages/config-panel/components/time-trigger/components/time-horizon.d.ts +9 -0
  110. package/es/pages/config-panel/components/time-trigger/components/time-horizon.js +73 -0
  111. package/es/pages/config-panel/components/time-trigger/delay-time.d.ts +8 -0
  112. package/es/pages/config-panel/components/time-trigger/delay-time.js +18 -0
  113. package/es/pages/config-panel/components/time-trigger/index.d.ts +8 -0
  114. package/es/pages/config-panel/components/time-trigger/index.js +84 -0
  115. package/es/pages/config-panel/components/time-trigger/interval-time.d.ts +8 -0
  116. package/es/pages/config-panel/components/time-trigger/interval-time.js +50 -0
  117. package/es/pages/config-panel/components/time-trigger/persistent-time.d.ts +8 -0
  118. package/es/pages/config-panel/components/time-trigger/persistent-time.js +18 -0
  119. package/es/pages/config-panel/components/time-trigger/timing-time.d.ts +8 -0
  120. package/es/pages/config-panel/components/time-trigger/timing-time.js +52 -0
  121. package/es/pages/config-panel/config-common.d.ts +37 -0
  122. package/es/pages/config-panel/config-common.js +135 -0
  123. package/es/pages/config-panel/index.d.ts +12 -0
  124. package/es/pages/config-panel/index.js +50 -0
  125. package/es/pages/config-panel/node-form.d.ts +21 -0
  126. package/es/pages/config-panel/node-form.js +97 -0
  127. package/es/pages/config-panel/style.less +62 -0
  128. package/es/pages/dag-canvas/canvas-content.d.ts +9 -0
  129. package/es/pages/dag-canvas/canvas-content.js +92 -0
  130. package/es/pages/dag-canvas/canvas-content.less +5 -0
  131. package/es/pages/dag-canvas/index.d.ts +13 -0
  132. package/es/pages/dag-canvas/index.js +28 -0
  133. package/es/pages/dag-canvas/index.less +11 -0
  134. package/es/pages/dag-canvas/preview.d.ts +9 -0
  135. package/es/pages/dag-canvas/preview.js +34 -0
  136. package/es/pages/index.d.ts +37 -0
  137. package/es/pages/index.js +73 -0
  138. package/es/pages/index.less +50 -0
  139. package/es/pages/rx-models/experiment-graph.d.ts +82 -0
  140. package/es/pages/rx-models/experiment-graph.js +1186 -0
  141. package/es/pages/rx-models/graph-core.d.ts +96 -0
  142. package/es/pages/rx-models/graph-core.js +755 -0
  143. package/es/pages/rx-models/graph-core.less +14 -0
  144. package/es/pages/rx-models/graph-util.d.ts +186 -0
  145. package/es/pages/rx-models/graph-util.js +358 -0
  146. package/es/pages/rx-models/typing.d.ts +126 -0
  147. package/es/pages/strategy-header/index.d.ts +56 -0
  148. package/es/pages/strategy-header/index.js +141 -0
  149. package/es/pages/strategy-header/style.less +22 -0
  150. package/es/pages/strategy-header/theme-switch/index.d.ts +4 -0
  151. package/es/pages/strategy-header/theme-switch/index.js +19 -0
  152. package/es/pages/strategy-header/theme-switch/style.less +11 -0
  153. package/es/style/basic.less +12 -0
  154. package/es/style/default.less +2 -0
  155. package/es/style/position.less +25 -0
  156. package/es/style/theme-light.less +7 -0
  157. package/es/style/variable.less +3 -0
  158. package/es/typings.d.ts +6 -0
  159. package/es/utils/utils.d.ts +1 -0
  160. package/es/utils/utils.js +1 -0
  161. package/package.json +70 -0
  162. package/tsconfig.json +18 -0
package/.eslintrc.js ADDED
@@ -0,0 +1,9 @@
1
+ module.exports = {
2
+ extends: [require.resolve('@umijs/fabric/dist/eslint')],
3
+ globals: {
4
+ ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION: true,
5
+ page: true,
6
+ REACT_APP_ENV: true,
7
+ APP_ENV: true,
8
+ },
9
+ };
package/.fatherrc.ts ADDED
@@ -0,0 +1,26 @@
1
+ export default {
2
+ esm: 'babel',
3
+ // cjs: 'babel',
4
+ // lessInBabelMode: true,
5
+ // cssModules: true,
6
+ extraBabelPlugins: [
7
+ [
8
+ 'babel-plugin-module-resolver',
9
+ {
10
+ root: ['./'],
11
+ extensions: ['.d.ts', '.ts'],
12
+ alias: {
13
+ '@': './src',
14
+ },
15
+ },
16
+ ],
17
+ [
18
+ 'babel-plugin-import',
19
+ {
20
+ libraryName: 'antd',
21
+ libraryDirectory: 'es',
22
+ style: true,
23
+ },
24
+ ],
25
+ ],
26
+ };
package/.prettierrc.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('@umijs/fabric').prettier;
package/.umirc.ts ADDED
@@ -0,0 +1,29 @@
1
+ import { defineConfig } from 'dumi';
2
+ const { NODE_ENV } = process.env;
3
+
4
+ const basicBabelPlugin = [
5
+ [
6
+ 'babel-plugin-import',
7
+ {
8
+ libraryName: 'antd',
9
+ libraryDirectory: 'es',
10
+ style: true,
11
+ },
12
+ ],
13
+ ];
14
+
15
+ const extraBabelPlugins =
16
+ NODE_ENV === 'development'
17
+ ? [...basicBabelPlugin]
18
+ : ['babel-plugin-transform-remove-console', ...basicBabelPlugin];
19
+
20
+ export default defineConfig({
21
+ title: 'strategy-panel',
22
+ outputPath: 'docs-dist',
23
+ logo: '/logo.svg',
24
+ locales: [
25
+ ['zh-CN', '中文'],
26
+ ['en-US', 'English'],
27
+ ],
28
+ extraBabelPlugins,
29
+ });
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT LICENSE
2
+
3
+ Copyright (c) 2021-present XCW UED
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # strategy-panel
2
+
3
+ ## Getting Started
4
+
5
+ Install dependencies,
6
+
7
+ ```bash
8
+ $ npm i
9
+ ```
10
+
11
+ Start the dev server,
12
+
13
+ ```bash
14
+ $ npm start
15
+ ```
16
+
17
+ Build documentation,
18
+
19
+ ```bash
20
+ $ npm run docs:build
21
+ ```
22
+
23
+ Run test,
24
+
25
+ ```bash
26
+ $ npm test
27
+ ```
28
+
29
+ Build library via `father-build`,
30
+
31
+ ```bash
32
+ $ npm run build
33
+ ```
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28px" height="28px" viewBox="0 0 28 28" version="1.1">
3
+ <title>运算符</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-506.000000, -1299.000000)" fill="#5B5B5B">
6
+ <g id="运算符" transform="translate(506.000000, 1299.000000)">
7
+ <path d="M28,0 L28,28 L0,28 L0,0 L28,0 Z M24.5,5.25 L3.5,5.25 L3.5,24.5 L24.5,24.5 L24.5,5.25 Z M10.1323,7 L12.3103,7.166 L12.1203,8.905 L20.9723,8.905 L20.9723,11.006 L11.8893,11.006 L11.7213,12.522 L20.5243,12.522 L20.5243,12.772 C20.5243,17.563 20.2523,20.279 19.6943,21.075 C19.1143,21.87 17.9543,22.254 16.1463,22.254 C15.6637286,22.254 15.0812388,22.2341633 14.4095362,22.1944898 L14.0663,22.173 L13.8913,22.162 L13.2913,20.126 L13.6533,20.154 C14.7513,20.239 15.4763,20.282 15.8103,20.282 C17.0173,20.282 17.7373,20.036 17.9493,19.552 C18.1196226,19.1707097 18.3199139,18.0533111 18.3417219,14.9110259 L18.3433,14.59 L9.2903,14.59 L10.1323,7 Z M17.612,16.2333 L17.612,18.3343 L7,18.3343 L7,16.2333 L17.612,16.2333 Z M12.25,1.75 L10.5,1.75 L10.5,3.5 L12.25,3.5 L12.25,1.75 Z M8.75,1.75 L7,1.75 L7,3.5 L8.75,3.5 L8.75,1.75 Z M5.25,1.75 L3.5,1.75 L3.5,3.5 L5.25,3.5 L5.25,1.75 Z" id="形状结合"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28px" height="28px" viewBox="0 0 28 28" version="1.1">
3
+ <title>运算符-或</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-664.000000, -1299.000000)" fill="#5B5B5B" fill-rule="nonzero">
6
+ <g id="运算符-或" transform="translate(664.000000, 1299.000000)">
7
+ <path d="M28,0 L28,28 L0,28 L0,0 L28,0 Z M24.5,5.25 L3.5,5.25 L3.5,24.5 L24.5,24.5 L24.5,5.25 Z M16.143,7 L16.143,8.872 L17.211,8.872 C17.047,8.567 16.863,8.263 16.662,7.965 L16.662,7.965 L16.443,7.641 L18.687,7.278 L18.771,7.438 C19.004,7.886 19.224,8.368 19.424,8.872 L19.424,8.872 L20.975,8.872 L20.975,11.004 L16.165,11.004 C16.204,12.679 16.335,14.151 16.555,15.382 C16.577,15.495 16.598,15.603 16.618,15.707 C17.229,14.528 17.764,13.174 18.214,11.674 L18.214,11.674 L18.301,11.382 L20.225,12.407 L20.164,12.604 C19.453,14.882 18.556,16.853 17.496,18.465 L17.496,18.465 L17.714,18.877 C18.281,19.775 18.651,19.912 18.821,19.912 C18.825,19.889 19.067,19.63 19.309,17.682 L19.309,17.682 L19.359,17.282 L21.259,18.543 L21.226,18.707 C20.747,21.092 20.023,22.252 19.013,22.252 C18.079,22.24 17.195,21.684 16.381,20.6 C16.283,20.47 16.194,20.346 16.114,20.226 C15.354,21.059 14.485,21.776 13.527,22.36 L13.527,22.36 L13.319,22.486 L12.118,20.622 L12.343,20.49 C12.858,20.187 13.348,19.832 13.811,19.426 L13.811,19.426 L13.752,19.443 C11.562,20.051 9.207,20.57 6.75,20.984 L6.75,20.984 L6.521,21.023 L6,18.858 L6.28,18.826 C8.696,18.545 11.132,18.06 13.522,17.387 L13.522,17.387 L6.859,17.387 L6.859,11.752 L13.567,11.752 L13.567,17.375 C13.583,17.37 13.6,17.366 13.617,17.361 L13.617,17.361 L13.935,17.27 L13.935,19.316 C14.339,18.95 14.722,18.545 15.08,18.102 C14.884,17.59 14.715,17.009 14.577,16.376 C14.217,14.821 14.012,13.013 13.967,11.004 L13.967,11.004 L6.123,11.004 L6.123,8.872 L13.963,8.872 L13.963,7 L16.143,7 Z M11.419,13.788 L9.023,13.788 L9.023,15.384 L11.419,15.384 L11.419,13.788 Z M12.25,1.75 L10.5,1.75 L10.5,3.5 L12.25,3.5 L12.25,1.75 Z M8.75,1.75 L7,1.75 L7,3.5 L8.75,3.5 L8.75,1.75 Z M5.25,1.75 L3.5,1.75 L3.5,3.5 L5.25,3.5 L5.25,1.75 Z" id="形状结合"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28px" height="28px" viewBox="0 0 28 28" version="1.1">
3
+ <title>运算符-异</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-664.000000, -1343.000000)" fill="#5B5B5B" fill-rule="nonzero">
6
+ <g id="运算符-异" transform="translate(664.000000, 1343.000000)">
7
+ <path d="M28,0 L28,28 L0,28 L0,0 L28,0 Z M24.5,5.25 L3.5,5.25 L3.5,24.5 L24.5,24.5 L24.5,5.25 Z M18.868,8 L18.868,12.627 L9.748,12.627 L9.748,13.082 C9.748,13.424 9.876,13.551 10.218,13.551 L10.218,13.551 L18.506,13.551 C18.698,13.533 18.735,13.459 18.747,13.434 C18.763,13.403 18.828,13.244 18.914,12.416 L18.914,12.416 L18.946,12.106 L20.94,12.764 L20.914,12.968 C20.814,13.755 20.704,14.289 20.578,14.599 C20.349,15.195 19.828,15.518 19.03,15.555 L19.03,15.555 L17.444,15.555 L17.444,17.023 L21.252,17.023 L21.252,19.044 L17.444,19.044 L17.444,22.755 L15.28,22.755 L15.28,19.044 L11.786,19.044 C11.265,20.875 10.04,22.14 8.141,22.806 L8.141,22.806 L7.947,22.874 L6.811,20.939 L7.131,20.855 C8.381,20.53 9.196,19.935 9.611,19.044 L9.611,19.044 L6,19.044 L6,17.023 L9.939,17.023 L9.955,15.555 L9.546,15.555 C7.938,15.555 7.6,14.567 7.6,13.738 L7.6,13.738 L7.6,8 L18.868,8 Z M15.28,15.555 L12.116,15.555 L12.116,15.769 C12.116,16.18 12.109,16.598 12.094,17.023 L12.094,17.023 L15.28,17.023 L15.28,15.555 Z M16.752,10.003 L9.748,10.003 L9.748,10.655 L16.752,10.655 L16.752,10.003 Z M12.25,1.75 L10.5,1.75 L10.5,3.5 L12.25,3.5 L12.25,1.75 Z M8.75,1.75 L7,1.75 L7,3.5 L8.75,3.5 L8.75,1.75 Z M5.25,1.75 L3.5,1.75 L3.5,3.5 L5.25,3.5 L5.25,1.75 Z" id="形状结合"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="22px" height="22px" viewBox="0 0 22 22" version="1.1">
3
+ <title>添加 (10)</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-179.000000, -1121.000000)" fill="#0052D9" fill-rule="nonzero">
6
+ <g id="添加-(10)" transform="translate(179.000000, 1121.000000)">
7
+ <path d="M11,1.47321428 C12.2866071,1.47321428 13.5339286,1.72611606 14.7075893,2.22209822 C15.8419643,2.70089286 16.8609375,3.38839287 17.7350447,4.26495537 C18.6116072,5.14151787 19.2966518,6.16049109 19.7779018,7.29241072 C20.2738839,8.46607142 20.5267857,9.71339286 20.5267857,11 C20.5267857,12.2866071 20.2738839,13.5339286 19.7779018,14.7075893 C19.2991071,15.8419643 18.6116071,16.8609375 17.7350447,17.7350447 C16.8584822,18.6116072 15.8395089,19.2966518 14.7075893,19.7779018 C13.5339286,20.2738839 12.2866071,20.5267857 11,20.5267857 C9.71339286,20.5267857 8.46607142,20.2738839 7.29241072,19.7779018 C6.15803571,19.2991071 5.13906251,18.6116071 4.26495537,17.7350447 C3.38839287,16.8584822 2.70334821,15.8395089 2.22209822,14.7075893 C1.72611606,13.5339286 1.47321428,12.2866071 1.47321428,11 C1.47321428,9.71339286 1.72611606,8.46607142 2.22209822,7.29241072 C2.70089286,6.15803571 3.38839287,5.13906251 4.26495537,4.26495537 C5.14151787,3.38839287 6.16049109,2.70334821 7.29241072,2.22209822 C8.46607142,1.72611606 9.71339286,1.47321428 11,1.47321428 M11,0 C4.92544643,0 0,4.92544643 0,11 C0,17.0745536 4.92544643,22 11,22 C17.0745536,22 22,17.0745536 22,11 C22,4.92544643 17.0745536,0 11,0 Z" id="形状"></path>
8
+ <polygon id="路径" points="5.07692308 10.1538462 16.9230769 10.1538462 16.9230769 11.8461538 5.07692308 11.8461538"></polygon>
9
+ <polygon id="路径" points="10.1538462 5.07692308 11.8461538 5.07692308 11.8461538 17.7692308 10.1538462 17.7692308"></polygon>
10
+ </g>
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="27px" height="30px" viewBox="0 0 27 30" version="1.1">
3
+ <title>g报警1s</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-431.000000, -1376.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="g报警1s" transform="translate(431.000000, 1376.000000)">
7
+ <path d="M26.5496788,24.4052193 C26.4089261,24.6227108 26.1792768,24.7502061 25.9274036,24.7502061 L0.740073636,24.7502061 C0.488712998,24.7504637 0.25444243,24.6214121 0.118138891,24.4076031 C-0.0181646488,24.1937942 -0.0378261248,23.924522 0.0659421713,23.6927472 L2.19649397,18.8381875 C2.70165154,17.6876813 2.96260951,16.4426293 2.9624851,15.1835808 L2.9624851,10.788753 C2.9624851,5.11897529 7.28285298,0.252416049 12.8781442,0.0109255272 C15.7851918,-0.12361065 18.6134748,0.989297292 20.6676964,3.07605537 C22.6234185,5.06347745 23.7049921,7.69587427 23.7049921,10.5007643 L23.7049921,15.1835808 C23.7049921,16.4427814 23.965755,17.6869826 24.4709832,18.8374375 L26.601535,23.6919973 C26.7052476,23.9252381 26.6830235,24.1952275 26.5496788,24.4052193 L26.5496788,24.4052193 Z M16.2969539,27.0001176 C16.2969539,27.8025861 15.9858163,28.5525567 15.4302134,29.1225344 C14.8672025,29.6850123 14.1263987,30 13.3337386,30 C11.6965621,30 10.3705233,28.6575526 10.3705233,27.0001176 C10.3705233,26.5876337 10.703885,26.250147 11.1113271,26.250147 L15.5561501,26.250147 C15.9635921,26.250147 16.2969539,26.5876337 16.2969539,27.0001176 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32px" height="28px" viewBox="0 0 32 28" version="1.1">
3
+ <title>策略管理</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-502.000000, -1451.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="策略管理" transform="translate(502.000000, 1451.000000)">
7
+ <path d="M9.4248421,8.79035295 C10.2267088,8.13161366 10.5298491,7.05735464 10.1869356,6.08966963 C9.84402223,5.12198463 8.92615979,4.46152759 7.87943278,4.42928301 C6.83270578,4.39703843 5.87415787,4.99969237 5.46964679,5.94435285 C5.06513571,6.88901334 5.2985387,7.97980065 6.05642107,8.68658824 L6.05642107,16.576 C6.05642111,19.7515723 8.68879826,22.3258823 11.936,22.3258823 C15.1832018,22.3258823 17.8155789,19.7515723 17.815579,16.576 L17.815579,11.2971765 C17.815579,10.0118475 18.881047,8.96988246 20.1953684,8.96988246 C21.5096898,8.96988246 22.5751578,10.0118475 22.5751579,11.2971765 L22.5751579,19.2607059 C21.7937365,19.9428393 21.5237958,21.0257916 21.896571,21.9830716 C22.2693461,22.9403517 23.2075088,23.5733817 24.2549591,23.5744073 C25.3024095,23.5754304 26.2418649,22.9442365 26.616597,21.9876875 C26.9913291,21.0311385 26.7236037,19.9476604 25.9435789,19.264 L25.9435789,11.2971765 C25.943579,9.28883946 24.8479763,7.43305951 23.0694737,6.42889098 C21.2909712,5.42472246 19.0997657,5.42472246 17.3212631,6.42889098 C15.5427606,7.43305951 14.4471578,9.28883946 14.4471579,11.2971765 L14.4471579,16.576 C14.4471579,17.9322814 13.3228742,19.0317647 11.936,19.0317647 C10.5491258,19.0317647 9.4248421,17.9322814 9.4248421,16.576 L9.4248421,8.79035295 Z M3.36842107,0 L28.6315789,0 C30.4919065,0 32,1.47482671 32,3.29411766 L32,24.7058824 C32,26.5251733 30.4919065,28 28.6315789,28 L3.36842107,28 C1.50809349,28 0,26.5251733 0,24.7058824 L0,3.29411766 C0,1.47482671 1.50809348,0 3.36842107,0 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16px" height="16px" viewBox="0 0 16 16" version="1.1">
3
+ <title>close-circle-filled</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-80.000000, -831.000000)">
6
+ <g id="close-circle-filled" transform="translate(80.000000, 831.000000)">
7
+ <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="close-circle-filled-(Background)"></path>
8
+ <path d="M8,1 C4.13400912,1 1,4.13400483 1,8 C1,11.8659916 4.13400483,15 8,15 C11.8659916,15 15,11.8659954 15,8 C15,4.13400912 11.8659954,1 8,1 Z M8.00001192,7.29075146 L10.3291178,4.94753814 L11.0383558,5.65250731 L8.70499325,8 L11.0383472,10.3474894 L10.3291082,11.0524578 L8.00001144,8.70925426 L5.6709156,11.0524578 L4.9616766,10.3474884 L7.29503059,8 L4.96166778,5.65250683 L5.67090654,4.94753814 L8.00001192,7.29075146 Z" fill-opacity="0.9" fill="#000000"></path>
9
+ <rect id="矩形" x="0" y="0" width="16" height="16"></rect>
10
+ </g>
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>正确</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-176.000000, -1252.000000)">
6
+ <g id="正确" transform="translate(176.000000, 1252.000000)">
7
+ <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="check-circle-filled-(Background)"></path>
8
+ <path d="M15,8 C15,4.13400674 11.8659935,1 8,1 C4.13400674,1 1,4.13400674 1,8 C1,11.8659935 4.13400674,15 8,15 C11.8659935,15 15,11.8659935 15,8 Z M7,10.7069998 L11.5,6.20749998 L10.7924995,5.5 L7,9.29300022 L5.20650005,7.5 L4.5,8.20650005 L7,10.7069998 Z" id="check-circle-filled" fill-opacity="0.9" fill="#000000"></path>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="31px" height="28px" viewBox="0 0 31 28" version="1.1">
3
+ <title>逻辑</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-581.000000, -1299.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="逻辑" transform="translate(581.500000, 1299.000000)">
7
+ <path d="M29.8666667,22.1185721 L21.3101447,16.2371442 L21.3101447,19.9111111 L19.153465,19.9111111 L15.407653,15.1911805 L12.6445939,18.6741319 L16.4844992,23.5142174 C16.8903261,24.0273504 17.4988059,24.3244502 18.1408412,24.3229522 L21.3101447,24.3229522 L21.3101447,28 L29.8666667,22.1185721 Z M5.30979203,3.73333333 L2.138995,3.73333333 C1.37483402,3.73333333 0.668683794,4.1536726 0.286578769,4.8362228 C-0.0955262563,5.51877299 -0.0955262563,6.35973482 0.286578769,7.04228502 C0.668683794,7.72483522 1.37483402,8.14526213 2.138995,8.14517447 L4.29268759,8.14517447 L8.03849962,12.8666455 L10.8015587,9.38215366 L6.96165332,4.54206819 C6.55561461,4.03177685 5.94982818,3.73518984 5.30979203,3.73333333" id="形状"></path>
8
+ <path d="M29.8666667,5.88292165 L21.3110003,0 L21.3110003,3.6749 L18.1420138,3.6749 C17.5003295,3.67472168 16.8924316,3.97164239 16.4858375,4.48384025 L4.29673847,19.853705 L2.13878109,19.853705 C1.37469653,19.8536173 0.668616923,20.274151 0.28655011,20.9568746 C-0.0955167033,21.6395981 -0.0955167033,22.4807735 0.28655011,23.1634971 C0.668616923,23.8462206 1.37469653,24.2666667 2.13878109,24.2666667 L5.30926101,24.2666667 C5.95161164,24.2660243 6.56010139,23.9693495 6.96842409,23.4577264 L19.1545364,8.08323914 L21.3110003,8.08323914 L21.3110003,11.7612208 L29.8666667,5.88292165 Z" id="路径"></path>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30px" height="30px" viewBox="0 0 30 30" version="1.1">
3
+ <title>控制中心 (1)</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-429.000000, -1450.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="控制中心-(1)" transform="translate(429.000000, 1450.000000)">
7
+ <path d="M2.14285714,0 L6.42857143,0 L6.42857143,4.28571429 L2.14285714,4.28571429 L2.14285714,0 Z M0,6.42857143 L8.57142857,6.42857143 L8.57142857,10.7142857 L0,10.7142857 L0,6.42857143 Z M2.14285714,12.8571429 L6.42857143,12.8571429 L6.42857143,30 L2.14285714,30 L2.14285714,12.8571429 Z M23.5714286,0 L27.8571429,0 L27.8571429,6.42857143 L23.5714286,6.42857143 L23.5714286,0 Z M21.4285714,8.57142857 L30,8.57142857 L30,12.8571429 L21.4285714,12.8571429 L21.4285714,8.57142857 Z M23.5714286,15 L27.8571429,15 L27.8571429,30 L23.5714286,30 L23.5714286,15 Z M12.8571429,0 L17.1428571,0 L17.1428571,17.1428571 L12.8571429,17.1428571 L12.8571429,0 Z M10.7142857,19.2857143 L19.2857143,19.2857143 L19.2857143,23.5714286 L10.7142857,23.5714286 L10.7142857,19.2857143 Z M12.8571429,25.7142857 L17.1428571,25.7142857 L17.1428571,30 L12.8571429,30 L12.8571429,25.7142857 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
3
+ <title>设备管理 (2)</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-431.000000, -1228.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="设备管理-(2)" transform="translate(431.000000, 1228.000000)">
7
+ <path d="M17.2631579,1.77635684e-15 L11.368421,1.77635684e-15 C10.6526316,1.77635684e-15 10.1052632,0.537931031 10.1052632,1.2413793 L10.1052632,20.2758621 L8.42105262,20.2758621 L8.42105262,1.2413793 C8.42105262,0.579310336 7.8736842,1.77635684e-15 7.15789473,1.77635684e-15 L1.26315789,1.77635684e-15 C0.547368418,1.77635684e-15 0,0.537931031 0,1.2413793 L0,22.7586207 C0,23.4206897 0.547368418,24 1.26315789,24 L7.15789473,24 C7.8736842,24 8.42105262,23.462069 8.42105262,22.7586207 L8.42105262,21.9310345 L10.1052632,21.9310345 L10.1052632,22.7586207 C10.1052632,23.4206897 10.6526316,24 11.368421,24 L17.2631579,24 C17.9789474,24 18.5263158,23.462069 18.5263158,22.7586207 L18.5263158,1.2413793 C18.5263158,0.537931031 17.9789474,1.77635684e-15 17.2631579,1.77635684e-15 Z M3.78947369,21.9310345 L2.10526316,21.9310345 L2.10526316,20.2758621 L3.78947369,20.2758621 L3.78947369,21.9310345 Z M6.31578947,3.72413794 L2.10526316,3.72413794 L2.10526316,2.06896552 L6.31578947,2.06896552 L6.31578947,3.72413794 Z M13.8947368,21.9310345 L12.2105263,21.9310345 L12.2105263,20.2758621 L13.8947368,20.2758621 L13.8947368,21.9310345 Z M16.4210526,3.72413794 L12.2105263,3.72413794 L12.2105263,2.06896552 L16.4210526,2.06896552 L16.4210526,3.72413794 Z M22.7789474,24 C22.1052632,24 21.5578947,23.462069 21.5578947,22.8 L21.5578947,1.2 C21.5578947,0.537931031 22.1052632,0 22.7789474,0 C23.4526316,0 24,0.537931031 24,1.2 L24,22.8 C24,23.462069 23.4526316,24 22.7789474,24 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16px" height="16px" viewBox="0 0 16 16" version="1.1">
3
+ <title>删除 (1)</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-395.000000, -1117.000000)" fill="#FF5A61" fill-rule="nonzero">
6
+ <g id="删除-(1)" transform="translate(395.000000, 1117.000000)">
7
+ <path d="M9.55765486,0 C9.71696394,0 9.84610947,0.134312896 9.84610947,0.29999625 L9.84610947,1.279784 L15.4230908,1.279784 C15.7417089,1.279784 16,1.54840979 16,1.8797765 L16,1.9601755 C16,2.29154221 15.7417089,2.560168 15.4230908,2.560168 L14.7048388,2.560168 L14.0610081,15.3934076 C14.0438307,15.7333268 13.7738925,15.9998311 13.4465998,16 L2.55340016,16 C2.2261075,15.9998311 1.95616931,15.7333268 1.93899185,15.3934076 L1.29458426,2.55956801 L0.576909209,2.560168 C0.258291051,2.560168 0,2.29154221 0,1.9601755 L0,1.8803765 C0,1.54900979 0.258291051,1.280384 0.576909209,1.280384 L6.15389053,1.280384 L6.15446744,0.29999625 C6.15446744,0.134312896 6.28361297,0 6.44292205,0 L9.55823177,0 L9.55765486,0 Z M6.19254345,5.759928 L6.11523761,5.759928 C5.79661946,5.759928 5.53832841,6.02855379 5.53832841,6.3599205 L5.53832841,10.9198635 C5.53832841,11.2512302 5.79661946,11.519856 6.11523761,11.519856 L6.19254345,11.519856 C6.51116161,11.519856 6.76945266,11.2512302 6.76945266,10.9198635 L6.76945266,6.3599205 C6.76945266,6.02855379 6.51116161,5.759928 6.19254345,5.759928 L6.19254345,5.759928 Z M9.88476239,5.759928 L9.80745655,5.759928 C9.48883839,5.759928 9.23054734,6.02855379 9.23054734,6.3599205 L9.23054734,10.9198635 C9.23054734,11.2512302 9.48883839,11.519856 9.80745655,11.519856 L9.88476239,11.519856 C10.2033805,11.519856 10.4616716,11.2512302 10.4616716,10.9198635 L10.4616716,6.3599205 C10.4616716,6.02855379 10.2033805,5.759928 9.88476239,5.759928 L9.88476239,5.759928 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
3
+ <title>设备管理 (2)</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-431.000000, -1228.000000)" fill="#5B5B5B" fill-rule="nonzero">
6
+ <g id="设备管理-(2)" transform="translate(431.000000, 1228.000000)">
7
+ <path d="M17.2631579,1.77635684e-15 L11.368421,1.77635684e-15 C10.6526316,1.77635684e-15 10.1052632,0.537931031 10.1052632,1.2413793 L10.1052632,20.2758621 L8.42105262,20.2758621 L8.42105262,1.2413793 C8.42105262,0.579310336 7.8736842,1.77635684e-15 7.15789473,1.77635684e-15 L1.26315789,1.77635684e-15 C0.547368418,1.77635684e-15 0,0.537931031 0,1.2413793 L0,22.7586207 C0,23.4206897 0.547368418,24 1.26315789,24 L7.15789473,24 C7.8736842,24 8.42105262,23.462069 8.42105262,22.7586207 L8.42105262,21.9310345 L10.1052632,21.9310345 L10.1052632,22.7586207 C10.1052632,23.4206897 10.6526316,24 11.368421,24 L17.2631579,24 C17.9789474,24 18.5263158,23.462069 18.5263158,22.7586207 L18.5263158,1.2413793 C18.5263158,0.537931031 17.9789474,1.77635684e-15 17.2631579,1.77635684e-15 Z M3.78947369,21.9310345 L2.10526316,21.9310345 L2.10526316,20.2758621 L3.78947369,20.2758621 L3.78947369,21.9310345 Z M6.31578947,3.72413794 L2.10526316,3.72413794 L2.10526316,2.06896552 L6.31578947,2.06896552 L6.31578947,3.72413794 Z M13.8947368,21.9310345 L12.2105263,21.9310345 L12.2105263,20.2758621 L13.8947368,20.2758621 L13.8947368,21.9310345 Z M16.4210526,3.72413794 L12.2105263,3.72413794 L12.2105263,2.06896552 L16.4210526,2.06896552 L16.4210526,3.72413794 Z M22.7789474,24 C22.1052632,24 21.5578947,23.462069 21.5578947,22.8 L21.5578947,1.2 C21.5578947,0.537931031 22.1052632,0 22.7789474,0 C23.4526316,0 24,0.537931031 24,1.2 L24,22.8 C24,23.462069 23.4526316,24 22.7789474,24 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16px" height="16px" viewBox="0 0 16 16" version="1.1">
3
+ <title>编辑 (12)</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-365.000000, -1117.000000)" fill="#009944" fill-rule="nonzero">
6
+ <g id="编辑-(12)" transform="translate(365.000000, 1117.000000)">
7
+ <path d="M13.5384615,0 L2.46153847,0 C1.10206831,0 0,1.10206831 0,2.46153847 L0,13.5384615 C0,14.8979317 1.10206831,16 2.46153847,16 L13.5384615,16 C14.8979317,16 16,14.8979317 16,13.5384615 L16,2.46153847 C16,1.10206831 14.8979317,0 13.5384615,0 Z M9.85230769,2.66092308 C9.92163689,2.59102302 10.0160108,2.55170523 10.1144615,2.55170523 C10.2129123,2.55170523 10.3072862,2.59102302 10.3766154,2.66092308 L12.0276923,4.312 C12.0977822,4.381353 12.1372208,4.47585919 12.1372208,4.57446154 C12.1372208,4.67306389 12.0977822,4.76757008 12.0276923,4.83692308 L11.4196923,5.44430769 L9.24430769,3.26892308 L9.85230769,2.66092308 Z M4.00615384,8.69169231 C4.01788745,8.56263344 4.07450569,8.44177527 4.16615384,8.35015384 L8.81107692,3.70523077 L10.9864615,5.88123077 L6.34153847,10.5255385 C6.24991705,10.6171866 6.12905887,10.6738049 6,10.6855385 L4.46892308,10.8252308 C4.305064,10.8401875 4.14303807,10.7815127 4.02674999,10.6651057 C3.91046192,10.5486988 3.85195275,10.3866129 3.86707692,10.2227692 L4.00615384,8.69169231 Z M12.3076923,13.6923077 L3.69230769,13.6923077 C3.35244015,13.6923077 3.07692308,13.4167906 3.07692308,13.0769231 C3.07692308,12.7370555 3.35244015,12.4615385 3.69230769,12.4615385 L12.3076923,12.4615385 C12.6475598,12.4615385 12.9230769,12.7370555 12.9230769,13.0769231 C12.9230769,13.4167906 12.6475598,13.6923077 12.3076923,13.6923077 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28px" height="27px" viewBox="0 0 28 27" version="1.1">
3
+ <title>手动</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-582.000000, -1228.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="手动" transform="translate(582.000000, 1228.000000)">
7
+ <path d="M22.8719494,24.6492901 C20.4845485,26.1940424 17.5834032,26.6424059 14.8031389,25.8998039 L13.2820522,25.4899716 L3.92720155,22.9819384 C2.23150894,22.5265693 1.15365285,20.7120983 1.51629602,18.9256501 C1.87893919,17.1392019 3.54776934,16.0603273 5.24010414,16.5156965 L8.45688338,17.377395 L5.03863571,11.632738 L1.12007478,5.04389662 C0.176530975,3.4606131 0.59289906,1.41145191 2.04682955,0.469188045 C3.50076004,-0.473075819 5.44493037,0.0488472877 6.38847418,1.63213081 L10.1055667,7.88469957 C10.2163743,8.07035007 10.4447052,8.13340119 10.6159534,8.02131032 L18.3892769,2.99123259 C20.0077399,1.9403807 22.1735255,2.52185208 23.2211614,4.28728326 L26.0417194,9.02662529 C29.2618564,14.4385125 27.841504,21.4336833 22.8719494,24.6492901" id="路径"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20px" height="20px" viewBox="0 0 20 20" version="1.1">
3
+ <title>已关联</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-127.000000, -1122.000000)" fill="#0052D9" fill-rule="nonzero">
6
+ <g id="已关联" transform="translate(127.000000, 1122.000000)">
7
+ <path d="M5.28144586,19.9999386 C3.87800395,20.0044191 2.53153843,19.4459616 1.54437385,18.4498953 C-0.514791285,16.3765552 -0.514791285,13.0333282 1.54437385,10.9599881 L5.18272535,7.31003332 C5.99980695,6.4832938 7.1170166,6.02163291 8.28026013,6.02993607 C9.46061403,6.02993607 10.5494011,6.48004359 11.3792257,7.31003332 L11.6195886,7.55003033 C11.9785263,7.9435133 11.964688,8.54910398 11.5881503,8.92583179 C11.2116126,9.3025596 10.6051278,9.3176052 10.2103176,8.96001288 L9.96995462,8.72001585 C9.52599002,8.27351808 8.92039058,8.02474534 8.29027526,8.0300244 C7.65073805,8.0300244 7.06127646,8.2800213 6.61202662,8.72001585 L2.97367513,12.3699706 C1.6942244,13.6645141 1.6942244,15.7453693 2.97367513,17.0399128 C3.58626477,17.6570279 4.42125953,18.0028687 5.29146097,17.9999009 C6.17136116,17.9999009 7.00118571,17.6599051 7.61067756,17.0399128 L9.53071989,15.1199366 C9.92553012,14.7623444 10.5320148,14.77739 10.9085525,15.1541178 C11.2850901,15.5308455 11.2989285,16.1364361 10.9399909,16.5299191 L9.01994857,18.4498953 C8.03354005,19.4479536 6.68576594,20.0067399 5.28144586,19.9999386 Z M11.7197399,13.9699898 C10.5567619,13.9748704 9.44041206,13.5137778 8.62077435,12.6899667 L8.38041136,12.4499696 C8.02147379,12.0564867 8.03531215,11.4508961 8.41184982,11.0741683 C8.78838748,10.6974405 9.39487217,10.6823949 9.78968239,11.0399871 L10.0300454,11.2799841 C10.4792952,11.7299786 11.0701875,11.9699756 11.7097247,11.9699756 C12.3492619,11.9699756 12.9387235,11.7199787 13.3879734,11.2799841 L17.0263249,7.63002934 C18.3057756,6.33548585 18.3057756,4.25463069 17.0263249,2.9600872 C16.4137352,2.3429721 15.5787405,1.99713124 14.708539,2.00009908 C13.8286388,2.00009908 12.9988143,2.34009487 12.3893224,2.9600872 L10.4692801,4.88006341 C10.0744699,5.23765563 9.46798519,5.22260999 9.09144753,4.84588223 C8.71490987,4.46915446 8.70107151,3.86356386 9.06000908,3.47008088 L10.9800514,1.55010465 C11.96646,0.552046401 13.3142341,-0.00673986739 14.7185541,6.13665099e-05 C16.1378403,6.13665099e-05 17.4569752,0.550117054 18.4556261,1.55010465 C20.5147913,3.62344479 20.5147913,6.96667174 18.4556261,9.04001188 L14.8172747,12.6899667 C13.9953785,13.5095325 12.8813127,13.9699898 11.7197399,13.9699898 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28px" height="28px" viewBox="0 0 28 28" version="1.1">
3
+ <title>运算符总</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-664.000000, -1227.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="运算符总" transform="translate(664.000000, 1227.000000)">
7
+ <path d="M8.34388757,21.4666667 L6.53333333,19.6970693 L9.49745465,16.8 L6.53333333,13.9029307 L8.34388757,12.1333333 L13.1168567,16.8 L8.34388757,21.4666667 Z M15.5741593,15.966071 L22.4,15.966071 L22.4,19.301787 L15.5741593,19.301787 L15.5741593,15.966071 Z" id="形状"></path>
8
+ <path d="M0,0 L0,28 L28,28 L28,0 L0,0 Z M10.5,1.75 L12.25,1.75 L12.25,3.5 L10.5,3.5 L10.5,1.75 Z M7,1.75 L8.75,1.75 L8.75,3.5 L7,3.5 L7,1.75 Z M3.5,1.75 L5.25,1.75 L5.25,3.5 L3.5,3.5 L3.5,1.75 Z M24.5,24.5 L3.5,24.5 L3.5,5.25 L24.5,5.25 L24.5,24.5 Z" id="形状"></path>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32px" height="29px" viewBox="0 0 32 29" version="1.1">
3
+ <title>通知 (3)</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-504.000000, -1377.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="通知-(3)" transform="translate(504.000000, 1377.000000)">
7
+ <path d="M17.2857249,0.136739873 C16.795823,-0.101227215 16.2119768,-0.0240946303 15.8000116,0.333019161 L7.80001742,7.19475939 L1.42287914,7.16835925 L1.42059344,7.16835925 C1.05120479,7.16894765 0.697671158,7.31917077 0.440022717,7.58502228 C0.176288176,7.85580443 0.0289553154,8.21976354 0.0297372969,8.59855801 L1.1430647e-05,20.0608092 C-0.00148528823,20.4395392 0.144054722,20.803944 0.405737017,21.0766406 C0.663721777,21.3453228 1.01923228,21.4973418 1.39087918,21.497895 L7.84458882,21.497895 L15.8057259,28.3343829 C16.2179341,28.6911144 16.8017592,28.7677931 17.2914391,28.5295143 C17.7840388,28.2868076 18.0948891,27.7823757 18.091467,27.2313163 L18.091467,1.43379015 C18.0941745,0.883221789 17.783474,0.379478633 17.2914391,0.136739873 L17.2857249,0.136739873 Z M22.6800067,7.30380342 C22.3481803,7.14616209 21.9672814,7.12870452 21.6225387,7.25533693 C21.277796,7.38196935 20.9979875,7.64212085 20.8457223,7.97758086 C20.5156978,8.68319437 20.7953359,9.52475111 21.4811504,9.88986911 C22.9458605,10.8241768 23.7802489,12.4918389 23.6525774,14.2298222 C23.6525774,17.6251095 21.7040074,18.749985 21.6388646,18.7867156 C20.9474755,19.1533284 20.671547,20.0055662 21.0160079,20.7104822 C21.2457417,21.1931858 21.7301734,21.5013431 22.2628641,21.5036343 C22.4786749,21.5036343 22.6914017,21.4521725 22.8834351,21.3532682 C23.0285779,21.2775113 26.4342897,19.4616409 26.4342897,14.2298222 C26.5847653,11.3942163 25.1321817,8.7152601 22.6788639,7.30380342 L22.6800067,7.30380342 Z M27.0114322,3.09355534 C26.702258,2.8920269 26.3253299,2.82397172 25.9656286,2.90473323 C25.6059273,2.98549474 25.2937337,3.20827414 25.0994335,3.52284455 C24.6837434,4.18513837 24.8616507,5.05880649 25.5028618,5.50400271 C25.6537188,5.60615977 29.2182877,8.10843372 29.2182877,14.3354228 C29.2182878,20.5624119 25.7988616,23.0819033 25.6628617,23.1737298 C25.0207872,23.6229722 24.8497872,24.5030356 25.2765763,25.161775 C25.4761249,25.4763286 25.7941533,25.6961587 26.1579573,25.7710102 C26.5217613,25.8458617 26.9002367,25.7693351 27.2068606,25.5589249 C27.402289,25.4246286 32,22.1774116 32,14.3308314 C32,6.48425132 27.2148606,3.2244082 27.0114322,3.09011182 L27.0114322,3.09355534 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28px" height="28px" viewBox="0 0 28 28" version="1.1">
3
+ <title>派发任务</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-581.000000, -1377.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="派发任务" transform="translate(581.000000, 1377.000000)">
7
+ <path d="M27.3485289,0 L26.4823896,0 L0.669946428,12.908 C0.453411623,12.908 0.236876791,13.1058667 0.236876818,13.3056 C-0.19805948,13.7013333 0.0203420135,14.4965333 0.453411623,14.8922667 L6.52571982,18.8645333 L17.3711273,9.73093332 C18.6722029,8.73786665 19.1071392,9.33333332 18.4556681,9.9288 L6.96252281,21.0504 L6.96252281,26.4114667 C6.96252281,27.0088 7.39559245,27.4045334 7.83052875,27.6024 C8.26359838,27.8021333 8.91320283,27.6024 9.13160429,27.2066667 L11.3006858,24.2274667 L12.1686917,23.0346667 L13.034831,23.632 L19.1090059,27.8021333 C19.3255407,28 19.760477,28 20.1916799,28 C20.6266162,27.8021333 20.8450177,27.6024 20.8450177,27.2066667 L28,1.7864 L28,0.993066676 C28,0.395733352 27.5669304,0.197866676 27.3485289,0" id="路径"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28px" height="28px" viewBox="0 0 28 28" version="1.1">
3
+ <title>关联</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-430.000000, -1300.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="关联" transform="translate(430.000000, 1300.000000)">
7
+ <path d="M22.75,19.25 L22.75,15.75 L24.5,15.75 L24.5,3.5 L10.5,3.5 L10.5,15.75 L15.75,15.75 L15.75,19.25 L7,19.25 L7,0 L28,0 L28,19.25 L22.75,19.25 Z M3.5,24.5 L17.5,24.5 L17.5,12.25 L12.25,12.25 L12.25,8.75 L21,8.75 L21,28 L0,28 L0,8.75 L5.25,8.75 L5.25,12.25 L3.5,12.25 L3.5,24.5 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 167 90" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path vector-effect="non-scaling-stroke" d="M2.10786 45L83.5 1.13597L164.892 45L83.5 88.864L2.10786 45Z" fill="#FFECC7" stroke="#FFB200" stroke-width="1"/>
3
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16px" height="16px" viewBox="0 0 16 16" version="1.1">
3
+ <title>file</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Icons" transform="translate(-224.000000, -411.000000)">
6
+ <g id="file" transform="translate(224.000000, 411.000000)">
7
+ <rect id="file-(Background)" x="0" y="0" width="16" height="16"></rect>
8
+ <path d="M2.5,1.92191112 L2.5,14.0780878 C2.5,14.6627293 3.0200516,15.0000715 3.49534374,15.0000715 L12.5046558,15.0000715 C12.9799471,15.0000715 13.5,14.6628017 13.5,14.0781593 L13.5,5.70717812 C13.5,5.44196224 13.3946438,5.18760872 13.2071075,5.000072 L9.5,1.29296207 C9.31246424,1.10542887 9.05811548,1 8.79290342,1 L3.49534374,1 C3.02005339,1 2.5,1.3372677 2.5,1.92191112 Z M3.5,2 L3.5,14 L12.5,14.0000715 L12.5,6.01282787 L8.50004625,6.01282787 L8.50004625,2.00006509 L3.5,2 Z M9.50004625,5.01282787 L11.8056498,5.01282787 L9.50004625,2.70722461 L9.50004625,5.01282787 Z" fill-opacity="0.9" fill="#000000"></path>
9
+ <rect id="矩形" x="0" y="0" width="16" height="16"></rect>
10
+ </g>
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28px" height="28px" viewBox="0 0 28 28" version="1.1">
3
+ <title>B-时间 (1)</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-506.000000, -1227.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="B-时间-(1)" transform="translate(506.000000, 1227.000000)">
7
+ <path d="M23.5863225,3.9664885 C21.0235226,1.40990361 17.6205594,0 14.0030222,0 C10.385485,0 6.98252178,1.40990361 4.42274399,3.9664885 C1.86296619,6.52609892 0.451612903,9.92681064 0.451612903,13.5483871 C0.451612903,17.166938 1.85994402,20.5706753 4.41972182,23.1302857 C6.97949962,25.6868706 10.3794406,27.0967742 14,27.0967742 C17.6205594,27.0967742 21.0235226,25.6868706 23.5863225,23.1272602 C28.8690753,17.8476855 28.8690753,9.25211428 23.5863225,3.9664885 Z M20.4341994,18.4316155 C20.2649579,18.7250933 20.0141179,18.9338558 19.7239896,19.0185711 C19.6242579,19.0488265 19.5215042,19.0609287 19.4187504,19.0609287 C19.2132429,19.0609287 19.0077353,19.0034434 18.8143164,18.8945238 L14.1299533,16.0595888 C13.9728005,15.971848 13.7793816,15.865954 13.6766278,15.7298045 C13.0812604,15.3848924 12.7820656,15.0278782 12.7820656,14.6678385 L12.7820656,6.84680661 C12.7820656,6.15093144 13.3472113,5.58818021 14.0423104,5.58818021 C14.7374094,5.58818021 15.3025552,6.15395698 15.3025552,6.84680661 L15.3025552,14.0718062 L19.8660315,16.7100808 C20.5127759,17.0852483 20.7666381,17.8567621 20.4341994,18.4316155 Z" id="形状"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30px" height="30px" viewBox="0 0 30 30" version="1.1">
3
+ <title>变量</title>
4
+ <g id="全局样式" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.8">
5
+ <g id="Icons" transform="translate(-576.000000, -1449.000000)" fill="#323232" fill-rule="nonzero">
6
+ <g id="变量" transform="translate(576.000000, 1449.000000)">
7
+ <path d="M28.3875,0 L1.6125,0 C0.721875,0 0,0.721875 0,1.6125 L0,28.3875 C0,29.278125 0.721875,30 1.6125,30 L15.8625,30 C16.753125,30 17.475,29.278125 17.475,28.3875 C17.475,27.496875 16.753125,26.775 15.8625,26.775 L3.225,26.775 L3.225,3.225 L26.775,3.225 L26.775,26.775 L24.825,26.775 C23.934375,26.775 23.2125,27.496875 23.2125,28.3875 C23.2125,29.278125 23.934375,30 24.825,30 L28.3875,30 C29.278125,30 30,29.278125 30,28.3875 L30,1.6125 C30,0.721875 29.278125,0 28.3875,0 Z" id="路径"></path>
8
+ <path d="M10.0021391,11.5414235 C10.0021391,11.0038866 10.1369467,10.600734 10.6761771,10.4663498 C11.6198302,10.1975813 12.4286758,9.79442871 13.3723289,10.0631971 C14.1811744,10.1975813 14.7204048,10.600734 15.1248275,11.5414235 C15.2596351,12.0789603 15.3944427,12.7508813 15.6640579,13.2884182 C15.7992442,13.154034 15.7992442,13.0196498 15.9336731,12.8852656 C16.3380959,12.2133445 16.7425186,11.5414235 17.281749,10.8695024 C17.5513642,10.600734 17.8209793,10.1975813 18.2254021,10.0631971 C18.8994401,9.6600445 19.573478,9.92881292 19.9779008,10.4663498 C20.3823235,11.0038866 20.3823235,11.9445761 19.8430932,12.4821129 C19.3038628,13.154034 18.6298249,13.2884182 17.9557869,13.154034 C17.8209793,13.154034 17.5513642,13.154034 17.4165566,13.0196498 C17.1469414,12.8852656 16.8773262,13.0196498 16.607711,13.2884182 C16.4729034,13.5571866 16.2032883,13.825955 16.0684807,14.0947235 C16.0684807,14.2291077 15.9336731,14.3634919 16.0684807,14.4978761 C16.3380959,15.5729498 16.607711,16.6480235 16.8773262,17.5887129 C17.1469414,18.5294024 17.8209793,18.932555 18.7646325,18.6637866 C19.0342476,18.6637866 19.1690552,18.5294024 19.4386704,18.5294024 C19.4386704,19.2013235 19.3038628,19.3357077 18.7646325,19.6044761 C17.9557869,20.0076287 17.0121338,20.2763972 16.0684807,20.1420129 C15.2596351,20.0076287 14.5855972,19.6044761 14.315982,18.6637866 C14.1811744,18.1262498 14.0463668,17.4543287 13.7767517,16.7824077 C13.6419441,16.9167919 13.6419441,17.0511761 13.5071365,17.1855603 C13.1027137,17.8574814 12.6982909,18.6637866 12.1590606,19.3357077 C11.8894454,19.7388603 11.4850226,20.0076287 11.0805999,20.1420129 C10.4065619,20.4107814 9.73252397,20.1420129 9.46290879,19.6044761 C9.19329361,19.0669393 9.19329361,18.1262498 9.59771638,17.5887129 C10.1369467,16.9167919 10.8109847,16.7824077 11.6198302,16.9167919 C11.7546378,16.9167919 11.8894454,16.9167919 12.024253,17.0511761 C12.4286758,17.3199445 12.6982909,17.1855603 12.8330985,16.7824077 C12.9679061,16.5136393 13.2375213,16.2448708 13.3723289,15.9761024 C13.5071365,15.8417182 13.5071365,15.707334 13.3723289,15.5729498 C13.1027137,14.6322603 12.9679061,13.6915708 12.6982909,12.8852656 C12.2938682,11.6758077 11.7546378,11.272655 10.6761771,11.6758077 C10.4065619,11.5414235 10.2717543,11.5414235 10.0021391,11.5414235 L10.0021391,11.5414235 Z M20.8382458,21.6202393 C21.9167066,19.4700919 22.5907445,17.3199445 22.5907445,14.9010287 C22.5907445,12.4821129 22.1863217,10.3319656 21.107861,8.18181818 L22.7255521,8.18181818 C22.8603597,8.18181818 22.8603597,8.31620239 22.8603597,8.31620239 C24.2084356,10.600734 24.7476659,13.154034 24.4780508,15.9757249 C24.2084356,17.9914881 23.39959,19.7384828 22.4559369,21.3514708 C22.4559369,21.4858551 22.3211293,21.4858551 22.1863217,21.4858551 C21.781899,21.6202393 21.3774762,21.6202393 20.8382458,21.6202393 L20.8382458,21.6202393 Z M7.92852578,8.18181818 C5.90641193,12.7508813 6.04121952,17.1855603 8.33294855,21.6202393 L6.85006506,21.6202393 C6.85006506,21.6202393 6.71525747,21.6202393 6.71525747,21.4858551 C5.77160435,19.8732445 4.96275881,18.260634 4.69314363,16.379255 C4.28872086,13.5571866 4.69314363,10.8695024 6.17602711,8.4505866 C6.3108347,8.31620239 6.44564229,8.18181818 6.58044988,8.18181818 L7.92852578,8.18181818 L7.92852578,8.18181818 Z M18.2727362,28.3768207 C18.2726458,28.9567602 18.5830195,29.4926678 19.0868832,29.7825701 C19.5906916,30.0724766 20.2113687,30.0724766 20.7151771,29.7825701 C21.218915,29.4925424 21.5292426,28.9567143 21.5293241,28.3768207 C21.5293241,27.7966282 21.2191909,27.2609788 20.7151771,26.9710713 C20.2113687,26.6811648 19.5906916,26.6811648 19.0868832,26.9710713 C18.5830195,27.2609735 18.2726458,27.7968812 18.2727362,28.3768207 L18.2727362,28.3768207 Z" id="形状"></path>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1 @@
1
+ export declare const ANT_PREFIX = "ant";
@@ -0,0 +1 @@
1
+ export var ANT_PREFIX = 'ant';
@@ -0,0 +1,10 @@
1
+ export declare const GROUP_HORIZONTAL__PADDING = 24;
2
+ export declare const GROUP_VERTICAL__PADDING = 40;
3
+ export declare const NODE_WIDTH = 180;
4
+ export declare const NODE_HEIGHT = 43;
5
+ export declare const LOGICAL_EDG = 50;
6
+ export declare const CONDITION_WIDTH = 260;
7
+ export declare const CONDITION_HEIGHT = 107;
8
+ export declare const RERENDER_EVENT = "RERENDER_EVENT";
9
+ export declare const DRAGGABLE_ALGO_COMPONENT = "ALGO_COMPONENT";
10
+ export declare const DRAGGABLE_MODEL = "MODEL";
@@ -0,0 +1,17 @@
1
+ export var GROUP_HORIZONTAL__PADDING = 24; // 分组横向 padding
2
+
3
+ export var GROUP_VERTICAL__PADDING = 40; // 分组纵向 padding
4
+
5
+ export var NODE_WIDTH = 180;
6
+ export var NODE_HEIGHT = 43;
7
+ export var LOGICAL_EDG = 50;
8
+ export var CONDITION_WIDTH = 260;
9
+ export var CONDITION_HEIGHT = 107; // 触发画布重新渲染事件
10
+
11
+ export var RERENDER_EVENT = 'RERENDER_EVENT';
12
+ /*
13
+ * 以下是拖拽相关
14
+ */
15
+
16
+ export var DRAGGABLE_ALGO_COMPONENT = 'ALGO_COMPONENT';
17
+ export var DRAGGABLE_MODEL = 'MODEL';
@@ -0,0 +1,16 @@
1
+ export declare const componentsData: {
2
+ id: string;
3
+ name: string;
4
+ isDir: boolean;
5
+ children: ({
6
+ id: string;
7
+ name: string;
8
+ imgUrl: any;
9
+ number: number;
10
+ } | {
11
+ id: string;
12
+ name: string;
13
+ imgUrl: any;
14
+ number?: undefined;
15
+ })[];
16
+ }[];