@giteeteam/apps-team-components 1.2.2 → 1.3.0-alpha.2

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 (314) hide show
  1. package/README.md +21 -28
  2. package/dist/components/common/EmptyField.d.ts +0 -1
  3. package/dist/components/common/EmptyField.js +7 -5
  4. package/dist/components/common/PriceTag.js +26 -23
  5. package/dist/components/common/expand-component/index.d.ts +22 -0
  6. package/dist/components/common/expand-component/index.js +67 -0
  7. package/dist/components/common/expand-component/style.d.ts +2 -0
  8. package/dist/components/common/expand-component/style.js +10 -0
  9. package/dist/components/common/item-icon/ItemIcon.d.ts +7 -0
  10. package/dist/components/common/item-icon/ItemIcon.js +8 -0
  11. package/dist/components/common/overflow-tooltip/BaseOverflowTooltip.d.ts +0 -1
  12. package/dist/components/common/overflow-tooltip/BaseOverflowTooltip.js +9 -6
  13. package/dist/components/common/overflow-tooltip/OverflowTooltip.d.ts +19 -0
  14. package/dist/components/common/overflow-tooltip/OverflowTooltip.js +57 -0
  15. package/dist/components/common/overflow-tooltip/SimpleOverflowToolTip.js +8 -5
  16. package/dist/components/common/overflow-tooltip/style/index.js +16 -14
  17. package/dist/components/common/style/global.js +4 -2
  18. package/dist/components/common/style/mixin.d.ts +2 -0
  19. package/dist/components/common/style/mixin.js +20 -0
  20. package/dist/components/common/user-field/UserAvatar.js +8 -6
  21. package/dist/components/common/user-field/style/index.js +23 -21
  22. package/dist/components/common/utils.d.ts +6 -0
  23. package/dist/components/common/utils.js +63 -5
  24. package/dist/components/default-empty-icon/config.d.ts +2 -0
  25. package/dist/components/default-empty-icon/config.js +24 -0
  26. package/dist/components/default-empty-icon/index.d.ts +5 -0
  27. package/dist/components/default-empty-icon/index.js +24 -0
  28. package/dist/components/default-empty-icon/style.d.ts +11 -0
  29. package/dist/components/default-empty-icon/style.js +67 -0
  30. package/dist/components/default-empty-icon/types.d.ts +29 -0
  31. package/dist/components/default-empty-icon/types.js +8 -0
  32. package/dist/components/field-behavior/fields/type.js +5 -2
  33. package/dist/components/fields/actors/BaseField.js +5 -2
  34. package/dist/components/fields/actors/ReadView.d.ts +0 -1
  35. package/dist/components/fields/actors/ReadView.js +8 -6
  36. package/dist/components/fields/ancestor/ReadView.js +8 -6
  37. package/dist/components/fields/ancestor/utils.js +4 -12
  38. package/dist/components/fields/assignee/ReadView.d.ts +0 -1
  39. package/dist/components/fields/assignee/ReadView.js +13 -11
  40. package/dist/components/fields/base-component/types.d.ts +1 -0
  41. package/dist/components/fields/base-component/utils.d.ts +2 -0
  42. package/dist/components/fields/base-component/utils.js +11 -0
  43. package/dist/components/fields/bind-workspace/ReadView.d.ts +0 -1
  44. package/dist/components/fields/bind-workspace/ReadView.js +11 -9
  45. package/dist/components/fields/bind-workspace/hooks.js +10 -7
  46. package/dist/components/fields/bind-workspace/style/index.js +5 -3
  47. package/dist/components/fields/cascade/ReadView.js +8 -6
  48. package/dist/components/fields/cascade/utils.js +4 -3
  49. package/dist/components/fields/checkbox/ReadView.d.ts +0 -1
  50. package/dist/components/fields/checkbox/ReadView.js +7 -5
  51. package/dist/components/fields/created-at/ReadView.js +10 -8
  52. package/dist/components/fields/created-by/ReadView.d.ts +0 -1
  53. package/dist/components/fields/created-by/ReadView.js +11 -9
  54. package/dist/components/fields/data-quote/ReadView.js +12 -10
  55. package/dist/components/fields/data-quote/utils.js +5 -3
  56. package/dist/components/fields/date/ReadView.d.ts +0 -1
  57. package/dist/components/fields/date/ReadView.js +8 -6
  58. package/dist/components/fields/dropdown/BaseField.d.ts +24 -2
  59. package/dist/components/fields/dropdown/BaseField.js +565 -2
  60. package/dist/components/fields/dropdown/Cell.d.ts +3 -0
  61. package/dist/components/fields/dropdown/Cell.js +8 -0
  62. package/dist/components/fields/dropdown/ReadView.d.ts +0 -1
  63. package/dist/components/fields/dropdown/ReadView.js +10 -8
  64. package/dist/components/fields/dropdown/data.d.ts +9 -0
  65. package/dist/components/fields/dropdown/data.js +29 -0
  66. package/dist/components/fields/dropdown/hook.d.ts +102 -0
  67. package/dist/components/fields/dropdown/hook.js +155 -0
  68. package/dist/components/fields/dropdown/style.d.ts +16 -0
  69. package/dist/components/fields/dropdown/style.js +93 -0
  70. package/dist/components/fields/file/ReadView.d.ts +0 -1
  71. package/dist/components/fields/file/ReadView.js +7 -5
  72. package/dist/components/fields/formula/ReadView.d.ts +0 -1
  73. package/dist/components/fields/formula/ReadView.js +7 -5
  74. package/dist/components/fields/hooks/useViewClass.d.ts +11 -0
  75. package/dist/components/fields/hooks/useViewClass.js +20 -0
  76. package/dist/components/fields/hyper-link/ReadView.d.ts +0 -1
  77. package/dist/components/fields/hyper-link/ReadView.js +8 -6
  78. package/dist/components/fields/hyper-link/style/index.js +18 -15
  79. package/dist/components/fields/item-group/ReadView.d.ts +0 -1
  80. package/dist/components/fields/item-group/ReadView.js +6 -4
  81. package/dist/components/fields/item-type/ItemTypeIcon.d.ts +9 -0
  82. package/dist/components/fields/item-type/ItemTypeIcon.js +31 -0
  83. package/dist/components/fields/item-type/ReadView.d.ts +0 -1
  84. package/dist/components/fields/item-type/ReadView.js +7 -5
  85. package/dist/components/fields/item-type/style/index.d.ts +1 -0
  86. package/dist/components/fields/item-type/style/index.js +8 -0
  87. package/dist/components/fields/key/ReadView.d.ts +0 -1
  88. package/dist/components/fields/key/ReadView.js +7 -5
  89. package/dist/components/fields/long-text/ReadView.d.ts +0 -1
  90. package/dist/components/fields/long-text/ReadView.js +8 -6
  91. package/dist/components/fields/long-text/style/index.js +7 -5
  92. package/dist/components/fields/number/BaseField.js +5 -2
  93. package/dist/components/fields/number/ReadView.d.ts +0 -1
  94. package/dist/components/fields/number/ReadView.js +8 -6
  95. package/dist/components/fields/priority/ReadView.js +12 -10
  96. package/dist/components/fields/priority/style/index.js +54 -51
  97. package/dist/components/fields/radio/ReadView.d.ts +0 -1
  98. package/dist/components/fields/radio/ReadView.js +8 -6
  99. package/dist/components/fields/repo-files/ReadView.js +8 -6
  100. package/dist/components/fields/repo-files/utils.js +5 -3
  101. package/dist/components/fields/reporter/ReadView.d.ts +0 -1
  102. package/dist/components/fields/reporter/ReadView.js +11 -9
  103. package/dist/components/fields/script/BaseField.js +4 -1
  104. package/dist/components/fields/script/ReadView.d.ts +0 -1
  105. package/dist/components/fields/script/ReadView.js +10 -8
  106. package/dist/components/fields/sprint/ReadView.js +7 -5
  107. package/dist/components/fields/status/Cell.js +8 -6
  108. package/dist/components/fields/status/Field.d.ts +0 -1
  109. package/dist/components/fields/status/ReadView.js +10 -8
  110. package/dist/components/fields/status/SelectFlowHandler.js +15 -12
  111. package/dist/components/fields/status/SelectTransition.js +13 -10
  112. package/dist/components/fields/status/Transition.js +18 -15
  113. package/dist/components/fields/status/TransitionButton.js +17 -14
  114. package/dist/components/fields/status/TransitionPanel.js +14 -11
  115. package/dist/components/fields/status/View.js +11 -8
  116. package/dist/components/fields/status/style/index.js +302 -325
  117. package/dist/components/fields/story-point/ReadView.d.ts +0 -1
  118. package/dist/components/fields/story-point/ReadView.js +6 -4
  119. package/dist/components/fields/tag/ReadView.js +10 -8
  120. package/dist/components/fields/tag/style/index.js +7 -5
  121. package/dist/components/fields/team/ReadView.js +10 -8
  122. package/dist/components/fields/team/style/index.js +5 -3
  123. package/dist/components/fields/text/BaseField.d.ts +0 -1
  124. package/dist/components/fields/text/ReadView.js +8 -6
  125. package/dist/components/fields/tree/ReadView.js +10 -8
  126. package/dist/components/fields/tree/utils.js +5 -3
  127. package/dist/components/fields/updated-at/ReadView.js +10 -8
  128. package/dist/components/fields/updated-by/ReadView.d.ts +0 -1
  129. package/dist/components/fields/updated-by/ReadView.js +11 -9
  130. package/dist/components/fields/user/ReadView.d.ts +0 -1
  131. package/dist/components/fields/user/ReadView.js +11 -9
  132. package/dist/components/fields/user/style/index.js +12 -9
  133. package/dist/components/fields/user-group/BaseField.d.ts +0 -1
  134. package/dist/components/fields/user-group/ReadView.js +12 -14
  135. package/dist/components/fields/version/ReadView.js +8 -6
  136. package/dist/components/fields/workspace/ReadView.d.ts +0 -1
  137. package/dist/components/fields/workspace/ReadView.js +10 -8
  138. package/dist/components/filters/filter-search/utils.d.ts +4 -0
  139. package/dist/components/filters/filter-search/utils.js +28 -0
  140. package/dist/components/item/hooks.js +5 -2
  141. package/dist/components/table-components/EditTableCell.d.ts +1 -0
  142. package/dist/components/table-components/EditTableCell.js +8 -4
  143. package/dist/components/table-components/index.js +14 -11
  144. package/dist/components/table-components/style/index.js +7 -5
  145. package/dist/components/table-components/utils.js +50 -45
  146. package/dist/icons/SyncIconFont.d.ts +6 -0
  147. package/dist/icons/SyncIconFont.js +17 -0
  148. package/dist/icons/createFromIconFontClass.d.ts +4 -0
  149. package/dist/icons/createFromIconFontClass.js +35 -0
  150. package/dist/icons/empty-icon/data-empty.png +0 -0
  151. package/dist/icons/empty-icon/forbidden.png +0 -0
  152. package/dist/icons/empty-icon/index.d.ts +8 -0
  153. package/dist/icons/empty-icon/large-item@2x.png +0 -0
  154. package/dist/icons/empty-icon/large-item@2x.png.js +3 -0
  155. package/dist/icons/empty-icon/large-workspace@2x.png +0 -0
  156. package/dist/icons/empty-icon/large-workspace@2x.png.js +3 -0
  157. package/dist/icons/empty-icon/load-error.png +0 -0
  158. package/dist/icons/empty-icon/not-found.png +0 -0
  159. package/dist/icons/empty-icon/small-default@2x.png +0 -0
  160. package/dist/icons/empty-icon/small-default@2x.png.js +3 -0
  161. package/dist/icons/empty-icon/workspace-empty.svg +127 -0
  162. package/dist/icons/index.d.ts +58 -1
  163. package/dist/icons/index.js +315 -19
  164. package/dist/icons/style/index.d.ts +2 -0
  165. package/dist/icons/style/index.js +25 -0
  166. package/dist/icons/svg/ArrowBack.svg.js +3 -0
  167. package/dist/icons/svg/Done.svg.js +3 -0
  168. package/dist/icons/svg/DottedCircle.svg.js +3 -0
  169. package/dist/icons/svg/HollowCircle.svg.js +3 -0
  170. package/dist/icons/svg/Search.svg.js +3 -0
  171. package/dist/icons/svg/Workflow.svg.js +3 -0
  172. package/dist/index.d.ts +1 -0
  173. package/dist/index.js +47 -46
  174. package/dist/lib/app/utils.d.ts +2 -0
  175. package/dist/lib/app/utils.js +18 -0
  176. package/dist/lib/array.js +5 -44
  177. package/dist/lib/config.d.ts +14 -0
  178. package/dist/lib/config.js +47 -0
  179. package/dist/lib/constants/code.d.ts +4 -0
  180. package/dist/lib/constants/code.js +6 -0
  181. package/dist/lib/constants/field.d.ts +1 -0
  182. package/dist/lib/constants/field.js +5 -0
  183. package/dist/lib/contexts/antdConfig.js +10 -7
  184. package/dist/lib/contexts/currentUser.js +7 -4
  185. package/dist/lib/contexts/currentWorkspace.js +7 -4
  186. package/dist/lib/contexts/datetimeFormat.js +7 -4
  187. package/dist/lib/contexts/index.js +16 -13
  188. package/dist/lib/contexts/itemConfig.js +7 -4
  189. package/dist/lib/contexts/teamConfig.d.ts +3 -0
  190. package/dist/lib/contexts/teamConfig.js +25 -7
  191. package/dist/lib/contexts/tenant.js +7 -4
  192. package/dist/lib/contexts/workflowConfig.js +7 -4
  193. package/dist/lib/dataType.js +4 -5
  194. package/dist/lib/date.js +11 -52
  195. package/dist/lib/dayjs.js +2 -1
  196. package/dist/lib/error/index.d.ts +2 -0
  197. package/dist/lib/error/log.d.ts +10 -0
  198. package/dist/lib/error/log.js +28 -0
  199. package/dist/lib/error/utils.d.ts +14 -0
  200. package/dist/lib/error/utils.js +38 -0
  201. package/dist/lib/error/withServerError.d.ts +1 -0
  202. package/dist/lib/error/withServerError.js +3 -0
  203. package/dist/lib/fetch.d.ts +45 -0
  204. package/dist/lib/fetch.js +270 -0
  205. package/dist/lib/global.d.ts +18 -0
  206. package/dist/lib/global.js +28 -8
  207. package/dist/lib/hooks/useAntdConfig.js +4 -2
  208. package/dist/lib/hooks/useCurrentUser.js +4 -2
  209. package/dist/lib/hooks/useCurrentWorkspace.js +4 -2
  210. package/dist/lib/hooks/useDataQuoteStore.js +8 -5
  211. package/dist/lib/hooks/useDateTimeFormatType.js +4 -2
  212. package/dist/lib/hooks/useI18n.d.ts +1 -1
  213. package/dist/lib/hooks/useI18n.js +4 -2
  214. package/dist/lib/hooks/useItemConfig.js +4 -2
  215. package/dist/lib/hooks/useTeamConfig.js +4 -2
  216. package/dist/lib/hooks/useTenant.js +4 -2
  217. package/dist/lib/hooks/useWorkflowConfig.js +4 -2
  218. package/dist/lib/i18n.d.ts +1 -0
  219. package/dist/lib/i18n.js +6 -2
  220. package/dist/lib/icons/utils.d.ts +23 -0
  221. package/dist/lib/icons/utils.js +60 -0
  222. package/dist/lib/isInOne.js +2 -1
  223. package/dist/lib/number.js +3 -1
  224. package/dist/lib/path.d.ts +5 -0
  225. package/dist/lib/path.js +50 -0
  226. package/dist/lib/regExp.js +3 -1
  227. package/dist/lib/router.d.ts +23 -0
  228. package/dist/lib/router.js +23 -0
  229. package/dist/lib/storage.d.ts +10 -0
  230. package/dist/lib/storage.js +27 -0
  231. package/dist/lib/store/dataQuoteStore.js +5 -2
  232. package/dist/lib/swr/constants.js +4 -2
  233. package/dist/lib/swr/hooks.js +6 -3
  234. package/dist/lib/swr/throttleWithCache.d.ts +17 -0
  235. package/dist/lib/swr/throttleWithCache.js +110 -0
  236. package/dist/lib/throttleFetch.d.ts +2 -0
  237. package/dist/lib/throttleFetch.js +68 -0
  238. package/dist/lib/useConfig.d.ts +8 -0
  239. package/dist/lib/useConfig.js +31 -0
  240. package/dist/lib/useUser.js +9 -6
  241. package/dist/lib/users.js +5 -2
  242. package/dist/lib/workflow.js +21 -20
  243. package/dist/locales/index.d.ts +45 -0
  244. package/dist/locales/index.js +50 -3
  245. package/dist/public/icons/BulbIcon.svg +1 -0
  246. package/dist/public/icons/Cloud.svg +1 -0
  247. package/dist/public/icons/ConsultIcon.svg +1 -0
  248. package/dist/public/icons/Demo.svg +1 -0
  249. package/dist/public/icons/ErrorTemplate.svg +1 -0
  250. package/dist/public/icons/Fail.svg +1 -0
  251. package/dist/public/icons/Flag.svg +1 -0
  252. package/dist/public/icons/GiteeIcon.svg +1 -0
  253. package/dist/public/icons/IntelligenceGradient.svg +1 -0
  254. package/dist/public/icons/Issue_Approval.svg +1 -0
  255. package/dist/public/icons/Issue_Bug.svg +1 -0
  256. package/dist/public/icons/Issue_Demand.svg +1 -0
  257. package/dist/public/icons/Issue_Doc.svg +1 -0
  258. package/dist/public/icons/Issue_Idea.svg +1 -0
  259. package/dist/public/icons/Issue_List.svg +1 -0
  260. package/dist/public/icons/Issue_Plan.svg +1 -0
  261. package/dist/public/icons/Issue_Product.svg +1 -0
  262. package/dist/public/icons/Issue_Risk.svg +1 -0
  263. package/dist/public/icons/Issue_Story.svg +1 -0
  264. package/dist/public/icons/Issue_Subtask.svg +1 -0
  265. package/dist/public/icons/Issue_Task.svg +1 -0
  266. package/dist/public/icons/Issue_Test.svg +1 -0
  267. package/dist/public/icons/Issue_TestExcution.svg +1 -0
  268. package/dist/public/icons/Issue_TestPlan.svg +1 -0
  269. package/dist/public/icons/Issue_Time.svg +1 -0
  270. package/dist/public/icons/Issue_develop.svg +1 -0
  271. package/dist/public/icons/KanbanCover.svg +7 -0
  272. package/dist/public/icons/ListCover.svg +118 -0
  273. package/dist/public/icons/ManHour.svg +1 -0
  274. package/dist/public/icons/MobileIcon.svg +1 -0
  275. package/dist/public/icons/NoItemType.svg +10 -0
  276. package/dist/public/icons/ProductIcon.svg +1 -0
  277. package/dist/public/icons/RedFlagIcon.svg +1 -0
  278. package/dist/public/icons/Safe.svg +1 -0
  279. package/dist/public/icons/StarIcon.svg +61 -0
  280. package/dist/public/icons/StructureCover.svg +1 -0
  281. package/dist/public/icons/Success.svg +1 -0
  282. package/dist/public/icons/TeamIcon.svg +1 -0
  283. package/dist/public/icons/WebIcon.svg +1 -0
  284. package/dist/public/icons/iconfont.svg +467 -0
  285. package/dist/public/icons/iconfont.ttf +0 -0
  286. package/dist/public/icons/iconfont.woff +0 -0
  287. package/dist/public/icons/iconfont.woff2 +0 -0
  288. package/dist/public/icons/iconfont_multiple_color.js +1 -0
  289. package/dist/public/icons/iconfont_single_color.css +912 -0
  290. package/dist/public/icons/iconfont_single_color.js +1 -0
  291. package/dist/public/icons/loginBg.svg +1 -0
  292. package/dist/public/mockServiceWorker.js +284 -0
  293. package/dist/style/common.d.ts +1 -0
  294. package/dist/style/common.js +19 -23
  295. package/dist/style/global.d.ts +1 -0
  296. package/dist/style/global.js +10 -0
  297. package/package.json +111 -69
  298. package/dist/components/fields/base-component/types.js +0 -1
  299. package/dist/components/fields/hooks/useParamsAdapter.js +0 -1
  300. package/dist/components/fields/radio/BaseField.js +0 -1
  301. package/dist/components/fields/status/Field.js +0 -1
  302. package/dist/components/fields/tag/BaseField.js +0 -1
  303. package/dist/components/fields/text/BaseField.js +0 -1
  304. package/dist/components/fields/tree/BaseField.js +0 -1
  305. package/dist/components/fields/tree/types.js +0 -1
  306. package/dist/components/fields/types.js +0 -1
  307. package/dist/components/fields/user-group/ActionCell.js +0 -1
  308. package/dist/components/fields/user-group/BaseField.js +0 -1
  309. package/dist/icons/svg/ArrowBack.svg +0 -1
  310. package/dist/icons/svg/Done.svg +0 -1
  311. package/dist/icons/svg/DottedCircle.svg +0 -7
  312. package/dist/icons/svg/HollowCircle.svg +0 -6
  313. package/dist/icons/svg/Search.svg +0 -1
  314. package/dist/icons/svg/Workflow.svg +0 -12
@@ -1,21 +1,22 @@
1
- import { useEffect, useState } from 'react';
1
+ import { useState, useEffect } from 'react';
2
2
  import { pick } from 'lodash-es';
3
- import { SUPPORT_USER_KEYS } from '../components/field-behavior/fields/type';
4
- import useWorkflowConfig from './hooks/useWorkflowConfig';
5
- import { getDateType, getFormat } from './date';
6
- import { CustomFieldComponentTypes } from './global';
7
- import { i18n } from './i18n';
8
- export var ElementEnum;
3
+ import { SUPPORT_USER_KEYS } from '../components/field-behavior/fields/type.js';
4
+ import useWorkflowConfig from './hooks/useWorkflowConfig.js';
5
+ import { getFormat, getDateType } from './date.js';
6
+ import { CustomFieldComponentTypes } from './global.js';
7
+ import { i18n } from './i18n.js';
8
+
9
+ var ElementEnum;
9
10
  (function (ElementEnum) {
10
11
  ElementEnum["Node"] = "Node";
11
12
  ElementEnum["Edge"] = "Edge";
12
13
  })(ElementEnum || (ElementEnum = {}));
13
- export var NodeEnum;
14
+ var NodeEnum;
14
15
  (function (NodeEnum) {
15
16
  NodeEnum["Start"] = "Start";
16
17
  NodeEnum["Task"] = "Task";
17
18
  })(NodeEnum || (NodeEnum = {}));
18
- export const getScriptUser = (user) => {
19
+ const getScriptUser = (user) => {
19
20
  if (!user)
20
21
  return null;
21
22
  return pick(user.toJSON(), [
@@ -29,8 +30,8 @@ export const getScriptUser = (user) => {
29
30
  };
30
31
  const EmptyCondition = { key: 'isEmpty', name: '为空' };
31
32
  const NotEmptyCondition = { key: 'notEmpty', name: '非空' };
32
- export const EmptyConditionList = [EmptyCondition, NotEmptyCondition];
33
- export const NumberConditions = {
33
+ const EmptyConditionList = [EmptyCondition, NotEmptyCondition];
34
+ const NumberConditions = {
34
35
  equalTo: { key: 'equalTo', name: '等于' },
35
36
  greaterThan: { key: 'greaterThan', name: '大于' },
36
37
  greaterThanOrEqualTo: { key: 'greaterThanOrEqualTo', name: '大于等于' },
@@ -40,13 +41,13 @@ export const NumberConditions = {
40
41
  isEmpty: EmptyCondition,
41
42
  notEmpty: NotEmptyCondition,
42
43
  };
43
- export const StringConditions = {
44
+ const StringConditions = {
44
45
  equalTo: { key: 'equalTo', name: '等于' },
45
46
  notEqualTo: { key: 'notEqualTo', name: '不等于' },
46
47
  isEmpty: EmptyCondition,
47
48
  notEmpty: NotEmptyCondition,
48
49
  };
49
- export const DropdownConditions = {
50
+ const DropdownConditions = {
50
51
  containedIn: { key: 'containedIn', name: '包含', not: 'File' },
51
52
  notContainedIn: { key: 'notContainedIn', name: '不包含', not: 'File' },
52
53
  isEmpty: EmptyCondition,
@@ -59,7 +60,7 @@ const ItemFieldType = {
59
60
  workspace: 'workspace',
60
61
  reporter: 'reporter',
61
62
  };
62
- export function isEmptyCondition(key) {
63
+ function isEmptyCondition(key) {
63
64
  return EmptyConditionList.map(d => d.key).includes(key);
64
65
  }
65
66
  function numberToCompare(num1, num2, compareString) {
@@ -115,7 +116,7 @@ function listToCompare(list1, list2, compareString) {
115
116
  return false;
116
117
  }
117
118
  }
118
- export function checkUserPermission({ transition, userId, roleIds, groupIds, item, workspaceRoleIds, }) {
119
+ function checkUserPermission({ transition, userId, roleIds, groupIds, item, workspaceRoleIds, }) {
119
120
  var _a, _b, _c;
120
121
  const values = (item === null || item === void 0 ? void 0 : item.values) || {};
121
122
  const { users: authUsers, roles: authRoles, groups: authGroups, customFields: authUserFields, workspaceRoles: authWorkspaceRoles, creatorAuth, } = ((_a = transition.parameters) === null || _a === void 0 ? void 0 : _a.permissionType) || {};
@@ -214,7 +215,7 @@ export function checkUserPermission({ transition, userId, roleIds, groupIds, ite
214
215
  }
215
216
  return { result: true };
216
217
  }
217
- export function checkItemCondition(transition, item) {
218
+ function checkItemCondition(transition, item) {
218
219
  var _a, _b;
219
220
  const conditions = ((_a = transition.parameters) === null || _a === void 0 ? void 0 : _a.fieldType) || [];
220
221
  for (const i in conditions) {
@@ -338,13 +339,11 @@ export function checkItemCondition(transition, item) {
338
339
  };
339
340
  }
340
341
  break;
341
- default:
342
- break;
343
342
  }
344
343
  }
345
344
  return { result: true };
346
345
  }
347
- export function checkTransition(item, transition, permissions, flowHandlerActive) {
346
+ function checkTransition(item, transition, permissions, flowHandlerActive) {
348
347
  var _a, _b;
349
348
  if (!item || !transition)
350
349
  return { result: false };
@@ -374,7 +373,7 @@ export function checkTransition(item, transition, permissions, flowHandlerActive
374
373
  return conditionCheck;
375
374
  return { result: true };
376
375
  }
377
- export const useWorkflowPermission = (workspaceId) => {
376
+ const useWorkflowPermission = (workspaceId) => {
378
377
  const [roles, setRoles] = useState([]);
379
378
  const [groups, setGroups] = useState([]);
380
379
  const [workspaceRoles, setWorkspaceRoles] = useState([]);
@@ -395,3 +394,5 @@ export const useWorkflowPermission = (workspaceId) => {
395
394
  }, [workspaceId, fetchRole]);
396
395
  return [groups, roles, workspaceRoles];
397
396
  };
397
+
398
+ export { DropdownConditions, ElementEnum, EmptyConditionList, NodeEnum, NumberConditions, StringConditions, checkItemCondition, checkTransition, checkUserPermission, getScriptUser, isEmptyCondition, useWorkflowPermission };
@@ -11,12 +11,23 @@ export declare const en: {
11
11
  'date.month': string;
12
12
  'date.year': string;
13
13
  'pages.fields.default.toWorkspacePage': string;
14
+ 'pages.fields.default.onlyWorkspace': string;
15
+ 'pages.fields.default.getImageError': string;
16
+ 'pages.fields.default.noItemType': string;
14
17
  'pages.fields.view.noWorkflowOrAuth': string;
15
18
  'pages.fields.view.viewWorkflow': string;
16
19
  'pages.fields.view.unrestrictedStatus': string;
17
20
  'pages.fields.view.approvalStatus': string;
18
21
  'pages.fields.view.checkInStatus': string;
19
22
  'pages.fields.view.readonlyStatus': string;
23
+ 'pages.fields.workspace.default.currentWorkspace': string;
24
+ 'pages.fields.fieldName.undefined': string;
25
+ 'pages.fields.fieldName.CustomVersion': string;
26
+ 'pages.fields.fieldName.Sprint': string;
27
+ 'pages.fields.fieldName.Team': string;
28
+ 'pages.fields.fieldName.Version': string;
29
+ 'pages.fields.fieldName.TestPlan': string;
30
+ 'pages.fields.fieldName.TestExecution': string;
20
31
  'pages.workflow.default.userType.creatorAuth': string;
21
32
  'pages.workflow.condition.isEmpty': string;
22
33
  'pages.workflow.condition.notEmpty': string;
@@ -38,6 +49,8 @@ export declare const en: {
38
49
  'pages.workflow.flowHandler.message': string;
39
50
  'global.stateless': string;
40
51
  'global.haveDelete': string;
52
+ 'global.collapse': string;
53
+ 'global.expand': string;
41
54
  'global.columns.forbiddenActive': string;
42
55
  'message.fields.stateFlowSuccess': string;
43
56
  'message.fields.stateFlowFailure': string;
@@ -52,6 +65,8 @@ export declare const en: {
52
65
  'libs.default.flowTextTip.1': string;
53
66
  'pages.fields.view.noPriority': string;
54
67
  'components.priceTag.pro': string;
68
+ 'views.common.searchSelect.emptyData.noData': string;
69
+ 'workspaceArchived.archived': string;
55
70
  };
56
71
  export declare const zh: {
57
72
  'pages.users.default.delete': string;
@@ -66,12 +81,23 @@ export declare const zh: {
66
81
  'date.month': string;
67
82
  'date.year': string;
68
83
  'pages.fields.default.toWorkspacePage': string;
84
+ 'pages.fields.default.onlyWorkspace': string;
85
+ 'pages.fields.default.getImageError': string;
86
+ 'pages.fields.default.noItemType': string;
69
87
  'pages.fields.view.noWorkflowOrAuth': string;
70
88
  'pages.fields.view.viewWorkflow': string;
71
89
  'pages.fields.view.unrestrictedStatus': string;
72
90
  'pages.fields.view.approvalStatus': string;
73
91
  'pages.fields.view.checkInStatus': string;
74
92
  'pages.fields.view.readonlyStatus': string;
93
+ 'pages.fields.workspace.default.currentWorkspace': string;
94
+ 'pages.fields.fieldName.undefined': string;
95
+ 'pages.fields.fieldName.CustomVersion': string;
96
+ 'pages.fields.fieldName.Sprint': string;
97
+ 'pages.fields.fieldName.Team': string;
98
+ 'pages.fields.fieldName.Version': string;
99
+ 'pages.fields.fieldName.TestPlan': string;
100
+ 'pages.fields.fieldName.TestExecution': string;
75
101
  'pages.workflow.default.userType.creatorAuth': string;
76
102
  'pages.workflow.condition.isEmpty': string;
77
103
  'pages.workflow.condition.notEmpty': string;
@@ -94,6 +120,8 @@ export declare const zh: {
94
120
  'global.stateless': string;
95
121
  'global.haveDelete': string;
96
122
  'global.columns.forbiddenActive': string;
123
+ 'global.collapse': string;
124
+ 'global.expand': string;
97
125
  'message.fields.stateFlowSuccess': string;
98
126
  'message.fields.stateFlowFailure': string;
99
127
  'libs.workflow.user': string;
@@ -107,6 +135,8 @@ export declare const zh: {
107
135
  'libs.default.flowTextTip.1': string;
108
136
  'pages.fields.view.noPriority': string;
109
137
  'components.priceTag.pro': string;
138
+ 'views.common.searchSelect.emptyData.noData': string;
139
+ 'workspaceArchived.archived': string;
110
140
  };
111
141
  export declare const ru: {
112
142
  'pages.users.default.delete': string;
@@ -121,12 +151,23 @@ export declare const ru: {
121
151
  'date.month': string;
122
152
  'date.year': string;
123
153
  'pages.fields.default.toWorkspacePage': string;
154
+ 'pages.fields.default.onlyWorkspace': string;
155
+ 'pages.fields.default.getImageError': string;
156
+ 'pages.fields.default.noItemType': string;
124
157
  'pages.fields.view.noWorkflowOrAuth': string;
125
158
  'pages.fields.view.viewWorkflow': string;
126
159
  'pages.fields.view.unrestrictedStatus': string;
127
160
  'pages.fields.view.approvalStatus': string;
128
161
  'pages.fields.view.checkInStatus': string;
129
162
  'pages.fields.view.readonlyStatus': string;
163
+ 'pages.fields.workspace.default.currentWorkspace': string;
164
+ 'pages.fields.fieldName.undefined': string;
165
+ 'pages.fields.fieldName.CustomVersion': string;
166
+ 'pages.fields.fieldName.Sprint': string;
167
+ 'pages.fields.fieldName.Team': string;
168
+ 'pages.fields.fieldName.Version': string;
169
+ 'pages.fields.fieldName.TestPlan': string;
170
+ 'pages.fields.fieldName.TestExecution': string;
130
171
  'pages.workflow.default.userType.creatorAuth': string;
131
172
  'pages.workflow.condition.isEmpty': string;
132
173
  'pages.workflow.condition.notEmpty': string;
@@ -149,6 +190,8 @@ export declare const ru: {
149
190
  'global.stateless': string;
150
191
  'global.haveDelete': string;
151
192
  'global.columns.forbiddenActive': string;
193
+ 'global.collapse': string;
194
+ 'global.expand': string;
152
195
  'message.fields.stateFlowSuccess': string;
153
196
  'message.fields.stateFlowFailure': string;
154
197
  'libs.workflow.user': string;
@@ -162,4 +205,6 @@ export declare const ru: {
162
205
  'libs.default.flowTextTip.1': string;
163
206
  'pages.fields.view.noPriority': string;
164
207
  'components.priceTag.pro': string;
208
+ 'views.common.searchSelect.emptyData.noData': string;
209
+ 'workspaceArchived.archived': string;
165
210
  };
@@ -1,4 +1,4 @@
1
- export const en = {
1
+ const en = {
2
2
  'pages.users.default.delete': '(Deleted)',
3
3
  'pages.users.default.forbidden': '(Disabled)',
4
4
  'views.common.emptyField.user': 'Unassigned',
@@ -11,12 +11,23 @@ export const en = {
11
11
  'date.month': 'Month',
12
12
  'date.year': 'Year',
13
13
  'pages.fields.default.toWorkspacePage': 'Click to enter the workspace',
14
+ 'pages.fields.default.onlyWorkspace': 'Current Workspace',
15
+ 'pages.fields.default.getImageError': 'Image acquisition failure',
16
+ 'pages.fields.default.noItemType': 'Issue type is not specified',
14
17
  'pages.fields.view.noWorkflowOrAuth': `Current state doesn't allow workflow or has no permission`,
15
18
  'pages.fields.view.viewWorkflow': 'View workflow diagram',
16
19
  'pages.fields.view.unrestrictedStatus': 'This transition can only be clicked before approval',
17
20
  'pages.fields.view.approvalStatus': 'The transition needs approval',
18
21
  'pages.fields.view.checkInStatus': 'The transition needs check-in',
19
22
  'pages.fields.view.readonlyStatus': 'Read only status, please contact the administrator for configuration.',
23
+ 'pages.fields.workspace.default.currentWorkspace': 'Current workspace',
24
+ 'pages.fields.fieldName.undefined': '',
25
+ 'pages.fields.fieldName.CustomVersion': 'CustomVersion',
26
+ 'pages.fields.fieldName.Sprint': 'Sprint',
27
+ 'pages.fields.fieldName.Team': 'Team',
28
+ 'pages.fields.fieldName.Version': 'Version',
29
+ 'pages.fields.fieldName.TestPlan': 'TestPlan',
30
+ 'pages.fields.fieldName.TestExecution': 'TestExecution',
20
31
  'pages.workflow.default.userType.creatorAuth': 'Issue Creator',
21
32
  'pages.workflow.condition.isEmpty': 'is empty',
22
33
  'pages.workflow.condition.notEmpty': 'not empty',
@@ -38,6 +49,8 @@ export const en = {
38
49
  'pages.workflow.flowHandler.message': 'Please select at least one handler',
39
50
  'global.stateless': 'Stateless',
40
51
  'global.haveDelete': 'deleted',
52
+ 'global.collapse': 'Collapse',
53
+ 'global.expand': 'Expand',
41
54
  'global.columns.forbiddenActive': 'disabled',
42
55
  'message.fields.stateFlowSuccess': 'State transfer completed successfully',
43
56
  'message.fields.stateFlowFailure': 'State transfer failed {{messageText}}',
@@ -52,8 +65,10 @@ export const en = {
52
65
  'libs.default.flowTextTip.1': 'The issue field [{{field}}] should be [{{condition}}]',
53
66
  'pages.fields.view.noPriority': 'No priority',
54
67
  'components.priceTag.pro': 'Pro',
68
+ 'views.common.searchSelect.emptyData.noData': 'No data',
69
+ 'workspaceArchived.archived': 'Archived',
55
70
  };
56
- export const zh = {
71
+ const zh = {
57
72
  'pages.users.default.delete': '(已删除)',
58
73
  'pages.users.default.forbidden': '(已禁用)',
59
74
  'views.common.emptyField.user': '未指定',
@@ -66,12 +81,23 @@ export const zh = {
66
81
  'date.month': '月',
67
82
  'date.year': '年',
68
83
  'pages.fields.default.toWorkspacePage': '点击进入空间',
84
+ 'pages.fields.default.onlyWorkspace': '只显示当前空间的{{name}}',
85
+ 'pages.fields.default.getImageError': '图片获取失败',
86
+ 'pages.fields.default.noItemType': '未指定类型',
69
87
  'pages.fields.view.noWorkflowOrAuth': '当前状态无法继续流转或者没有权限',
70
88
  'pages.fields.view.viewWorkflow': '查看工作流图',
71
89
  'pages.fields.view.unrestrictedStatus': '该流转动作只有未审批前才可点击',
72
90
  'pages.fields.view.approvalStatus': '该流转需要审批完成后才能流转',
73
91
  'pages.fields.view.checkInStatus': '该流转需要签到完成后才能流转',
74
92
  'pages.fields.view.readonlyStatus': '只读状态,请联系管理员配置。',
93
+ 'pages.fields.workspace.default.currentWorkspace': '当前空间',
94
+ 'pages.fields.fieldName.undefined': '',
95
+ 'pages.fields.fieldName.CustomVersion': '版本',
96
+ 'pages.fields.fieldName.Sprint': '迭代',
97
+ 'pages.fields.fieldName.Team': '团队',
98
+ 'pages.fields.fieldName.Version': '版本',
99
+ 'pages.fields.fieldName.TestPlan': '测试计划',
100
+ 'pages.fields.fieldName.TestExecution': '测试执行任务',
75
101
  'pages.workflow.default.userType.creatorAuth': '事项创建人',
76
102
  'pages.workflow.condition.isEmpty': '为空',
77
103
  'pages.workflow.condition.notEmpty': '非空',
@@ -94,6 +120,8 @@ export const zh = {
94
120
  'global.stateless': '无状态',
95
121
  'global.haveDelete': '已删除',
96
122
  'global.columns.forbiddenActive': '已禁用',
123
+ 'global.collapse': '收起',
124
+ 'global.expand': '展开',
97
125
  'message.fields.stateFlowSuccess': '状态流转成功',
98
126
  'message.fields.stateFlowFailure': '状态流转失败{{messageText}}',
99
127
  'libs.workflow.user': '用户',
@@ -107,8 +135,10 @@ export const zh = {
107
135
  'libs.default.flowTextTip.1': '当前事项字段[{{field}}]应该[{{condition}}]',
108
136
  'pages.fields.view.noPriority': '无优先级',
109
137
  'components.priceTag.pro': '高级',
138
+ 'views.common.searchSelect.emptyData.noData': '暂无数据',
139
+ 'workspaceArchived.archived': '已归档',
110
140
  };
111
- export const ru = {
141
+ const ru = {
112
142
  'pages.users.default.delete': '(удалено)',
113
143
  'pages.users.default.forbidden': '(неактивный)',
114
144
  'views.common.emptyField.user': 'Не указан',
@@ -121,12 +151,23 @@ export const ru = {
121
151
  'date.month': 'Месяц',
122
152
  'date.year': 'Год',
123
153
  'pages.fields.default.toWorkspacePage': 'Нажмите, чтобы войти в рабочее пространство',
154
+ 'pages.fields.default.onlyWorkspace': 'Current Workspace',
155
+ 'pages.fields.default.getImageError': 'Не удалось получить изображение',
156
+ 'pages.fields.default.noItemType': 'Тип задачи не указан',
124
157
  'pages.fields.view.noWorkflowOrAuth': `Текущее состояние не допускает рабочий процесс или не имеет разрешения`,
125
158
  'pages.fields.view.viewWorkflow': 'Посмотреть схему рабочего процесса',
126
159
  'pages.fields.view.unrestrictedStatus': 'This transition can only be clicked before approval',
127
160
  'pages.fields.view.approvalStatus': 'Данный перевод требует подтверждения',
128
161
  'pages.fields.view.checkInStatus': 'The transition needs check-in',
129
162
  'pages.fields.view.readonlyStatus': 'Статус только для чтения, пожалуйста, свяжитесь с администратором для настройки.',
163
+ 'pages.fields.workspace.default.currentWorkspace': 'Tекущая рабочая область',
164
+ 'pages.fields.fieldName.undefined': '',
165
+ 'pages.fields.fieldName.CustomVersion': 'CustomVersion',
166
+ 'pages.fields.fieldName.Sprint': 'Sprint',
167
+ 'pages.fields.fieldName.Team': 'Team',
168
+ 'pages.fields.fieldName.Version': 'Version',
169
+ 'pages.fields.fieldName.TestPlan': 'TestPlan',
170
+ 'pages.fields.fieldName.TestExecution': 'TestExecution',
130
171
  'pages.workflow.default.userType.creatorAuth': 'Создатель события',
131
172
  'pages.workflow.condition.isEmpty': 'пусто',
132
173
  'pages.workflow.condition.notEmpty': 'не пусто',
@@ -149,6 +190,8 @@ export const ru = {
149
190
  'global.stateless': 'Stateless',
150
191
  'global.haveDelete': 'deleted',
151
192
  'global.columns.forbiddenActive': 'disabled',
193
+ 'global.collapse': 'Расширить',
194
+ 'global.expand': 'Expand',
152
195
  'message.fields.stateFlowSuccess': 'Перенос статуса выполнен успешно',
153
196
  'message.fields.stateFlowFailure': 'Передача состояния не удалась {{messageText}}',
154
197
  'libs.workflow.user': 'Пользователь',
@@ -162,4 +205,8 @@ export const ru = {
162
205
  'libs.default.flowTextTip.1': `Поле задачи "{{field}}" должно при условии "{{condition}}"`,
163
206
  'pages.fields.view.noPriority': 'Нет приоритета',
164
207
  'components.priceTag.pro': 'Pro',
208
+ 'views.common.searchSelect.emptyData.noData': 'No data',
209
+ 'workspaceArchived.archived': 'В архиве',
165
210
  };
211
+
212
+ export { en, ru, zh };
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M0 0m128 0l768 0q128 0 128 128l0 768q0 128-128 128l-768 0q-128 0-128-128l0-768q0-128 128-128Z" fill="#09B866" /><path d="M666.368 198.506667s-1.024-0.277333 0 0c-114.517333-54.506667-238.165333-17.301333-300.906667 89.216-30.592 52.394667-55.722667 100.842667-14.912 249.173333 8.149333 31.402667-7.658667 78.016-18.048 104.448-6.101333 14.592 59.733333 57.130667 84.629334 71.36L666.368 198.506667z" fill="#FFD20C" /><path d="M784.512 486.570667c44.266667-115.797333-3.626667-233.6-117.12-287.786667l-1.024-0.277333-249.237333 514.197333c26.986667 10.474667 101.056 34.666667 109.226666 20.629333 14.506667-25.344 41.877333-65.621333 70.954667-79.445333 143.04-60.16 165.333333-110.421333 187.2-167.317333z" fill="#FFAA0C" /><path d="M412.629333 721.237333c-7.957333-3.2-11.221333-11.669333-11.392-19.285333l30.826667-283.861333a19.029333 19.029333 0 0 1 9.472-14.762667 19.925333 19.925333 0 0 1 17.813333-0.64l173.333334 82.133333a18.090667 18.090667 0 0 1 10.666666 13.696c0.725333 5.589333-1.173333 12.672-5.610666 16.874667l-202.090667 202.282667a19.456 19.456 0 0 1-23.018667 3.562666z m56.234667-271.637333l-22.336 202.816 145.578667-143.829333-123.242667-58.986667z" fill="#FFFFFF" /><path d="M340.608 590.506667l-67.008 138.922666c-0.810667 3.029333 0.426667 6.613333 5.248 13.312l55.36 77.589334c4.821333 6.698667 14.037333 13.482667 22.762667 17.984l94.314666-195.434667-110.677333-52.373333z" fill="#00238C" /><path d="M451.285333 642.88l-94.293333 195.434667c9.749333 4.778667 19.008 7.253333 28.053333 6.442666l95.36-5.824c7.765333-0.085333 12.693333-2.005333 14.250667-3.754666l67.306667-139.925334-110.677334-52.373333z" fill="#1F2B47" /><path d="M549.653333 757.973333c4.224-7.552 0.213333-17.28-7.765333-20.48l-110.656-52.394666-13.013333 27.904 110.677333 52.373333c6.954667 2.944 16.533333 0.106667 20.757333-7.424z" fill="#B0D6FF" /><path d="M320.554667 632.746667a15.018667 15.018667 0 0 0-20.757334 7.402666c-4.224 7.530667-0.213333 17.28 7.765334 20.48l110.677333 52.373334 12.992-27.904-110.677333-52.373334z m-28.928 58.24a15.018667 15.018667 0 0 0-20.757334 7.424c-4.224 7.509333-0.213333 17.237333 7.765334 20.48l110.656 52.352 13.013333-27.882667-110.677333-52.373333z" fill="#FFFFFF" /><path d="M512.96 795.733333l-110.677333-52.373333-12.992 27.882667 110.677333 52.373333c7.68 4.224 17.557333 0.384 20.757333-7.424 4.224-7.509333 1.237333-16.981333-7.765333-20.48z" fill="#B0D6FF" /></svg>
@@ -0,0 +1 @@
1
+ <svg width="22" height="22" xmlns="http://www.w3.org/2000/svg"><title>云</title><g fill="none" fill-rule="evenodd"><path fill="none" d="M0 0h22v22H0z"/><path d="M14 9.108c0 1.657 1.364 3 3.047 3s3.047-1.343 3.047-3-1.364-3-3.047-3S14 7.45 14 9.108Z" fill="#87BDFF" fill-rule="nonzero"/><path d="M21 14.077C21 16.785 18.75 19 16 19H6c-2.75 0-5-2.19-5-4.923 0-1.772.975-3.397 2.525-4.283-.025-.172-.025-.345-.025-.517C3.5 5.807 6.35 3 9.875 3c3.475 0 6.3 2.732 6.375 6.154 2.65.148 4.75 2.29 4.75 4.923Z" fill="#0C62FF" fill-rule="nonzero"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="18" height="18" xmlns="http://www.w3.org/2000/svg"><title>编组</title><path d="M9 0c3.445 0 6.276 2.795 6.501 6.346l.007.141h.116c1.26 0 2.29 1.024 2.371 2.315l.005.163v2.163c0 1.367-1.063 2.477-2.376 2.477h-.554l-.07.179c-.784 1.931-2.39 3.388-4.321 3.918l-.243.062a8.943 8.943 0 0 1-.861.2 2.036 2.036 0 0 1-2.42-2.035l.082-.096 2.325-.371.425.431c2.144-.486 3.675-2.47 3.675-4.765V6.803c0-2.693-2.088-4.875-4.662-4.875S4.338 4.11 4.338 6.803v6.055c0 .412-.321.747-.72.747H2.376C1.063 13.605 0 12.495 0 11.128V8.965c0-1.367 1.063-2.478 2.376-2.478h.115l.008-.141C2.719 2.874 5.43.125 8.77.004L9 0Zm6.516 8.415v3.262h.108a.537.537 0 0 0 .522-.55V8.966a.537.537 0 0 0-.522-.55h-.108Zm-13.033 0h-.107a.531.531 0 0 0-.515.46l-.007.09v2.163c0 .304.235.55.522.55l.107-.001V8.415Zm9.222.212c.3.453.19 1.072-.25 1.383-1.664 1.182-3.505 1.189-5.339.029a1.015 1.015 0 0 1-.32-1.368.95.95 0 0 1 1.331-.331c1.189.751 2.205.757 3.232.028a.949.949 0 0 1 1.346.259Z" fill="#60D1FF" fill-rule="nonzero"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="22" height="22" xmlns="http://www.w3.org/2000/svg"><title>编组 2</title><g fill="none" fill-rule="evenodd"><path fill="none" d="M0 0h22v22H0z"/><path d="M10.824 1.3c.626 0 1.133.507 1.133 1.133v2.322h6.891c.636 0 1.152.516 1.152 1.152v10.367c0 .636-.516 1.151-1.152 1.151h-4.046l1.274 1.298c.41.417.438 1.067.087 1.516l-.088.1-.02.02a1.124 1.124 0 0 1-1.59-.015l-2.597-2.647a1.152 1.152 0 0 1-.198-.27h-1.578a1.152 1.152 0 0 1-.198.27l-2.597 2.647a1.124 1.124 0 0 1-1.59.014l-.013-.012a1.154 1.154 0 0 1-.008-1.623l1.273-1.298H3.152A1.152 1.152 0 0 1 2 16.274V5.907c0-.636.516-1.152 1.152-1.152H9.69V2.433c0-.584.443-1.065 1.01-1.126Z" fill="#6572A3"/><path d="M13.682 11.795 9.72 14.144a.576.576 0 0 1-.87-.496V8.951a.576.576 0 0 1 .87-.495l3.962 2.349a.576.576 0 0 1 0 .99Z" fill="#FFF"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="177" height="120" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>编组 3</title><defs><filter x="-5.3%" y="-6.2%" width="110.5%" height="125%" filterUnits="objectBoundingBox" id="a"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.122104458 0" in="shadowBlurOuter1"/></filter><rect id="b" x="68" y="60" width="38" height="16" rx="1"/></defs><g fill="none" fill-rule="evenodd"><path d="M4 0h173v120H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4Z" fill="#F5F6F8"/><rect fill="#DADDE3" opacity=".278" x="37" y="26" width="47.863" height="68" rx="2"/><rect fill="#FFF" x="42" y="32" width="38" height="16" rx="1"/><rect fill="#F1F2F4" x="45" y="36" width="8" height="8" rx="1"/><rect fill="#F1F2F4" x="55" y="37" width="16" height="2" rx="1"/><rect fill="#F1F2F4" x="55" y="41" width="22" height="2" rx="1"/><rect fill="#FFF" x="42" y="52" width="38" height="16" rx="1"/><path d="M65 64h19a1 1 0 0 1 1 1v15H65a1 1 0 0 1-1-1V65a1 1 0 0 1 1-1Z" fill="#DADDE3" opacity=".4"/><rect fill="#F1F2F4" x="45" y="56" width="8" height="8" rx="1"/><rect fill="#F1F2F4" x="55" y="57" width="16" height="2" rx="1"/><rect fill="#F1F2F4" x="55" y="61" width="22" height="2" rx="1"/><rect fill="#DADDE3" opacity=".278" x="90" y="26" width="47.863" height="68" rx="2"/><rect fill="#FFF" x="95" y="32" width="38" height="16" rx="1"/><rect fill="#F1F2F4" x="98" y="36" width="8" height="8" rx="1"/><rect fill="#F1F2F4" x="108" y="37" width="16" height="2" rx="1"/><rect fill="#F1F2F4" x="108" y="41" width="22" height="2" rx="1"/><rect fill="#FFF" x="95" y="52" width="38" height="16" rx="1"/><rect fill="#F5F6F8" x="95" y="72" width="38" height="16" rx="1"/><path d="M91 64h10a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H90V65a1 1 0 0 1 1-1Z" fill="#DADDE3" opacity=".404"/><rect fill="#F1F2F4" x="98" y="56" width="8" height="8" rx="1"/><use fill="#000" filter="url(#a)" xlink:href="#b"/><use fill="#FFF" xlink:href="#b"/><rect fill="#F1F2F4" x="71" y="64" width="8" height="8" rx="1"/><path d="M75.234 69.076c0-.196.032-.359.114-.522.081-.146.18-.293.326-.391.375-.326.62-.554.685-.62.195-.26.293-.586.293-.978 0-.489-.163-.864-.473-1.141-.326-.294-.733-.424-1.255-.424-.587 0-1.06.163-1.402.505-.359.327-.522.8-.522 1.386.016.245.13.392.424.408.31.016.489-.261.489-.408 0-.326.065-.603.196-.782.146-.229.391-.326.75-.326.277 0 .489.065.636.228.146.147.228.359.228.62a.888.888 0 0 1-.212.57l-.098.114c-.522.457-.831.8-.93 1.011-.113.212-.162.473-.162.783 0 .293.163.424.456.424.294-.017.44-.163.457-.457ZM74.712 71a.596.596 0 0 0 .408-.147c.114-.098.163-.244.163-.407a.54.54 0 0 0-.163-.392.596.596 0 0 0-.408-.146.596.596 0 0 0-.408.146.483.483 0 0 0-.163.392c0 .163.05.293.163.391a.61.61 0 0 0 .408.163Z" fill="#DADDE3" fill-rule="nonzero" opacity=".9"/><rect fill="#F1F2F4" x="81" y="65" width="16" height="2" rx="1"/><rect fill="#F1F2F4" x="81" y="69" width="22" height="2" rx="1"/><rect fill="#F1F2F4" x="108" y="57" width="16" height="2" rx="1"/><rect fill="#F1F2F4" x="108" y="61" width="22" height="2" rx="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 128 128" style="enable-background:new 0 0 128 128" xml:space="preserve"><style>.st0{fill:#ff4d0d}</style><path class="st0" d="M97.6 30.4c1.8 1.8 1.8 4.8 0 6.6L37 97.6c-1.8 1.8-4.8 1.8-6.6 0-1.8-1.8-1.8-4.8 0-6.6L91 30.4c1.8-1.9 4.8-1.9 6.6 0z"/><path class="st0" d="M30.4 30.4c1.8-1.8 4.8-1.8 6.6 0L97.6 91c1.8 1.8 1.8 4.8 0 6.6-1.8 1.8-4.8 1.8-6.6 0L30.4 37c-1.9-1.8-1.9-4.8 0-6.6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24" xml:space="preserve"><path d="M21 24H3c-1.7 0-3-1.3-3-3V3c0-1.7 1.3-3 3-3h18c1.7 0 3 1.3 3 3v18c0 1.7-1.3 3-3 3z" style="fill:#8080f7"/><path d="M17.2 10.2v-.5l1.3-3.1c.2-.5-.1-.8-.6-.8h-9c0-.5-.3-.8-.8-.8s-.6.3-.6.6v12.5H7c-.5 0-.8.3-.8.8 0 .4.3.8.8.8h2.1c.5 0 .8-.3.8-.8s-.3-.8-.8-.8h-.2v-3.9h9.3c.4 0 .8-.5.6-.8l-1.6-3.2zm-1.3 2.3c-.3.1-.8 0-.9-.3l-.8-1.9c-.1-.3-.1-.4 0-.6L15 8c.2-.3.6-.5.9-.3.3.1.4.6.3.9l-.6 1.4.6 1.6c.1.3 0 .7-.3.9z" style="fill:#fff"/></svg>
@@ -0,0 +1 @@
1
+ <svg height="32" width="32" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle cx="16" cy="16" fill="#c71d23" r="16"/><path d="M24.099 14.223h-9.087a.79.79 0 0 0-.79.79v1.975c0 .436.353.79.79.79h5.531a.79.79 0 0 1 .79.79v.395a2.37 2.37 0 0 1-2.37 2.37h-7.507a.79.79 0 0 1-.79-.79v-7.506a2.37 2.37 0 0 1 2.37-2.37h11.06c.437 0 .79-.354.791-.79l.001-1.975a.79.79 0 0 0-.79-.79H13.038a5.926 5.926 0 0 0-5.926 5.925V24.1c0 .436.354.79.79.79h11.655a5.333 5.333 0 0 0 5.333-5.333v-4.543a.79.79 0 0 0-.79-.79z" fill="#fff"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><title>IntelligenceGradient</title><defs><linearGradient x1="20.343%" y1="11.174%" x2="76.878%" y2="91.439%" id="a"><stop stop-color="#1CFFFF" offset="0%"/><stop stop-color="#1AB2FF" offset="50.287%"/><stop stop-color="#0D65FF" offset="100%"/></linearGradient></defs><path d="M8.018 1c.815 0 1.495.605 2.008 1.614a.6.6 0 1 1-1.07.544c-.33-.65-.676-.958-.938-.958-.34 0-.795.504-1.173 1.489a9.55 9.55 0 0 0-.462 1.733l.11-.063C9.82 3.437 13.159 2.905 14.08 4.5c.355.615.26 1.376-.18 2.188a.6.6 0 0 1-1.066-.55l.01-.021c.262-.482.305-.829.197-1.017-.17-.294-.834-.437-1.876-.27-1.184.188-2.643.742-4.072 1.568-.308.178-.606.363-.891.554a16.045 16.045 0 0 0 0 2.096c.285.191.583.376.89.554 1.43.826 2.89 1.38 4.073 1.569l.098.014c.985.142 1.613 0 1.778-.285.14-.245.02-.748-.445-1.416-.532-.764-1.427-1.609-2.542-2.382a.6.6 0 1 1 .684-.986c2.646 1.835 4.147 3.99 3.342 5.384-.921 1.595-4.259 1.063-7.587-.859a18.28 18.28 0 0 1-.11-.063c.114.644.27 1.23.462 1.733.378.985.834 1.489 1.173 1.489.274 0 .638-.337.978-1.04a.6.6 0 1 1 1.08.524C9.558 14.355 8.861 15 8.018 15c-1.56 0-2.664-2.262-2.967-5.287a14.314 14.314 0 0 1-1.097-.87c-.09.1-.176.199-.256.297l-.062.078c-.615.782-.805 1.398-.641 1.682.114.199.467.338 1.063.34a.6.6 0 1 1-.005 1.2c-.979-.004-1.728-.3-2.098-.94-.537-.93-.036-2.212 1.137-3.5-1.173-1.288-1.674-2.57-1.137-3.5.355-.615 1.061-.912 1.983-.938a.6.6 0 1 1 .033 1.2c-.547.015-.868.15-.976.338-.17.294.038.94.703 1.76.08.098.165.198.256.297.335-.295.702-.586 1.097-.87C5.354 3.262 6.459 1 8.018 1Zm-3.05 7v-.127l-.014.013L4.82 8l.148.127V8Z" fill="url(#a)" fill-rule="nonzero"/></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#FFAA0C" /><path d="M584.512 520.512H716.8c29.888 0 51.2 25.6 55.488 55.488v106.688c0 12.8-8.576 21.312-21.376 21.312H277.312c-21.312 0-25.6-4.288-25.6-25.6V576c0-25.6 25.6-51.2 51.2-55.488H435.2c0-12.8-4.288-25.6-12.8-38.4l-25.6-38.4a146.432 146.432 0 0 1 25.6-196.224c59.712-46.976 149.312-38.4 200.512 25.6 42.688 55.424 38.4 128-8.512 179.2-17.088 17.024-25.6 38.4-29.888 59.712v8.512z m183.488 230.4c-4.288-4.224-12.8-12.8-29.888-12.8H273.088c-17.088 4.288-25.6 17.088-25.6 34.176 0 17.024 12.8 29.824 29.824 29.824H746.688c17.024 0 25.6-12.8 29.824-29.824a32.64 32.64 0 0 0-8.512-21.376z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#FF4D0D" /><path d="M810.688 550.4c0 17.088-21.376 38.4-38.4 38.4h-64v21.312c0 25.6-8.576 51.2-21.376 68.288l68.288 72.512c12.8 12.8 12.8 38.4 0 51.2-12.8 12.8-38.4 12.8-51.2 0l-64-64c-34.112 25.6-64 38.4-110.912 38.4V486.4c0-4.288-8.576-12.8-12.8-12.8h-25.6c-8.576 0-12.8 4.288-12.8 12.8v290.112c-38.4 0-76.8-12.8-110.976-38.4l-64 64c-12.8 12.8-38.4 12.8-51.2 0-12.8-12.8-12.8-38.4 0-51.2L320 682.688c-12.8-17.088-17.088-46.976-17.088-68.288v-21.312h-51.2a38.272 38.272 0 0 1-38.4-38.4C204.8 533.312 221.888 512 243.2 512h64V443.712L256 384c-12.8-12.8-12.8-38.4 0-51.2 12.8-12.8 38.4-12.8 59.712 0l64 64h277.376l64-64c12.8-12.8 38.4-12.8 51.2 0 12.8 12.8 12.8 38.4 0 51.2l-55.488 59.712V512h64c21.312 0 38.4 21.312 29.888 38.4zM512 209.088c-68.288 0-132.288 55.424-132.288 132.224h268.8C648.512 268.8 588.8 209.088 512 209.088z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#FFD20C" /><path d="M469.312 793.6c4.288 8.512 17.088 0 17.088-4.288V294.4c0-25.6-12.8-76.8-89.6-76.8H251.712c-21.312 0-51.2 0-51.2 51.2v426.688c0 34.112 8.576 64 51.2 64H332.8c12.8 0 89.6-4.288 136.512 34.112zM546.112 793.6c-8.512 4.288-21.312 0-21.312-4.288V294.4c0-25.6 12.8-76.8 89.6-76.8H768c21.312 0 51.2 0 51.2 51.2v426.688c0 34.112-8.512 64-51.2 64h-85.312c-29.888 0-85.376 0-136.576 34.112z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M85.312 0h853.376C985.6 0 1024 38.4 1024 85.312v853.376C1024 985.6 985.6 1024 938.688 1024H85.312C38.4 1024 0 985.6 0 938.688V85.312C0 38.4 38.4 0 85.312 0z" fill="#FFD20C" /><path d="M669.888 268.8v-25.6c0-46.912-38.4-81.088-85.376-68.288L302.912 268.8C268.8 277.312 256 302.912 256 337.088v409.6c0 38.4 34.112 72.512 72.512 68.224H665.6c51.2 0 98.112-46.912 98.112-106.624v-332.8C768 320 729.6 277.312 669.888 268.8zM435.2 635.712l110.912-38.4c12.8-8.512 34.176 0 38.4 21.376 8.576 21.312 0 34.112-21.312 38.4l-110.912 38.4h-12.8c-12.8 0-25.6-8.576-34.176-21.376 4.288-12.8 17.088-34.112 29.888-38.4z m277.312 72.576a47.36 47.36 0 0 1-46.912 46.912H507.712l110.976-34.112c25.6-8.576 46.912-34.176 46.912-68.288V320c25.6 0 46.912 21.312 46.912 46.912v341.376z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#846BFF" /><path d="M618.688 857.6H396.8a33.664 33.664 0 0 1-34.112-34.112c0-17.088 12.8-34.176 34.112-34.176h217.6c17.088 0 34.112 12.8 34.112 34.176 0 21.312-17.024 34.112-29.824 34.112zM512 174.912c-149.312-8.512-268.8 115.2-268.8 256 0 89.6 51.2 174.976 119.488 217.6V704c0 25.6 21.312 42.688 46.912 42.688h187.712c25.6 0 42.688-21.376 42.688-42.688v-64c72.512-42.688 115.2-128 115.2-217.6 4.288-128-102.4-243.2-243.2-247.488zM435.2 345.6s-38.4 38.4-46.912 93.888c0 17.024-12.8 34.112-34.176 34.112C332.8 473.6 320 452.288 320 439.488c12.8-81.088 72.512-140.8 72.512-140.8 12.8-12.8 34.176-12.8 46.976 0 12.8 17.024 8.512 34.112-4.288 46.912z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#5EA1FF" /><path d="M268.8 358.4c-38.4 0-64-25.6-64-64s25.6-64 64-64 64 25.6 64 64c0 29.888-25.6 64-64 64zM755.2 358.4h-256c-38.4 0-64-25.6-64-64s25.6-64 64-64h256c38.4 0 64 25.6 64 64 0 29.888-29.888 64-64 64zM268.8 567.488c-38.4 0-64-25.6-64-64s25.6-64 64-64 64 25.6 64 64c0 42.624-25.6 64-64 64zM755.2 567.488h-256c-38.4 0-64-25.6-64-64s25.6-64 64-64h256c38.4 0 64 25.6 64 64 0 42.624-29.888 64-64 64zM268.8 793.6c-38.4 0-64-25.6-64-64s25.6-64 64-64 64 25.6 64 64-25.6 64-64 64zM755.2 793.6h-256c-38.4 0-64-25.6-64-64s25.6-64 64-64h256c38.4 0 64 25.6 64 64s-29.888 64-64 64z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#846BFF" /><path d="M733.888 435.2v-21.312l55.424-132.288c8.576-21.312-4.224-34.112-25.6-34.112h-384c0-21.376-12.8-34.176-34.112-34.176s-25.6 12.8-25.6 25.6v533.376h-21.312c-21.376 0-34.176 12.8-34.176 34.112 0 17.088 12.8 34.112 34.176 34.112h89.6c21.312 0 34.112-12.8 34.112-34.112s-12.8-34.112-34.112-34.112h-8.576v-166.4h396.8c17.088 0 34.176-21.376 25.6-34.176L733.888 435.2zM678.4 533.312c-12.8 4.288-34.112 0-38.4-12.8l-34.112-81.024c-4.288-12.8-4.288-17.088 0-25.6L640 341.312c8.512-12.8 25.6-21.312 38.4-12.8 12.8 4.288 17.088 25.6 12.8 38.4l-25.6 59.776 25.6 68.224c4.288 12.8 0 29.888-12.8 38.4z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#FFAA0C" /><path d="M243.2 439.488l256 119.424c8.512 4.288 12.8 4.288 21.312 4.288 8.576 0 17.088 0 21.376-4.288L789.312 435.2c17.088-8.512 29.888-25.6 29.888-42.688 0-17.024-8.512-38.4-25.6-46.912L546.112 221.888c-12.8-8.576-29.824-8.576-46.912 0l-256 128c-17.088 4.224-25.6 25.6-25.6 42.624 0 21.376 8.512 38.4 25.6 46.976zM789.312 601.6l-268.8 140.8L243.2 605.888c-17.088-8.576-34.112 0-42.688 12.8-8.512 17.024 0 34.112 12.8 42.624l277.376 136.576c8.512 4.224 17.024 4.224 25.6 4.224 8.512 0 21.312-4.224 29.824-8.512l268.8-140.8c17.088-8.512 21.376-25.6 12.8-42.688-4.224-12.8-21.312-17.024-38.4-8.512z" fill="#FFFFFF" /><path d="M217.6 550.4l277.312 136.512c8.576 4.288 17.088 4.288 25.6 4.288 8.576 0 17.088-4.288 29.888-8.512l268.8-140.8c17.088-8.576 21.312-25.6 12.8-42.688s-25.6-21.312-42.688-12.8l-268.8 140.8L243.2 490.688c-17.088-8.576-34.112 0-42.688 17.024-4.224 17.088 0 34.176 17.088 42.688z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#FF4D0D" /><path d="M746.688 281.6c-42.688 0-132.288-8.512-204.8-76.8-12.8-12.8-34.176-12.8-46.976 0-46.912 25.6-128 76.8-221.824 76.8-21.376 0-34.176 17.088-34.176 38.4v230.4c0 46.912 0 145.088 256 294.4 12.8 4.288 25.6 4.288 34.176 0 251.712-128 256-234.688 256-277.312V320c-4.288-21.312-21.376-38.4-38.4-38.4z m-123.776 256l-128 128c-4.224 8.512-12.8 12.8-25.6 12.8-4.224 0-17.024 0-25.6-8.512-12.8-12.8-12.8-34.176 0-42.688l72.576-76.8H418.112c-12.8 0-25.6-8.512-34.112-21.312s0-25.6 4.288-38.4l115.2-119.488c12.8-12.8 34.112-12.8 42.624 0 21.376 12.8 21.376 38.4 8.576 51.2l-64 59.712h106.624c17.088 0 38.4 12.8 38.4 34.176a23.488 23.488 0 0 1-12.8 21.312z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M0 0m128 0l768 0q128 0 128 128l0 768q0 128-128 128l-768 0q-128 0-128-128l0-768q0-128 128-128Z" fill="#29C477" /><path d="M704 192a64 64 0 0 1 64 64v544a32 32 0 0 1-48.96 27.2l-190.08-119.04a32 32 0 0 0-33.92 0l-190.08 119.04A32 32 0 0 1 256 800V256a64 64 0 0 1 64-64h384zM576 320H448a64 64 0 1 0 0 128h128a64 64 0 1 0 0-128z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#0CC0F2" /><path d="M755.2 588.8c-38.4-89.6-115.2-145.088-213.312-162.112v-8.576c42.624-21.312 76.8-59.712 76.8-106.624 0-64-51.2-115.2-115.2-115.2s-115.2 46.912-115.2 110.912c0 51.2 34.112 98.112 81.024 106.688v12.8C375.488 439.488 298.688 499.2 260.288 588.8 221.888 597.312 192 635.712 192 678.4c0 51.2 46.912 98.112 102.4 98.112 55.488 0 102.4-46.912 102.4-98.112 0-38.4-17.088-64-51.2-81.088 17.088-51.2 72.512-85.312 128-93.824v89.6c-38.4 12.8-64 51.2-64 89.6 0 51.2 42.688 93.824 93.888 93.824s93.824-46.912 93.824-93.824c0-38.4-25.6-76.8-55.424-89.6v-89.6c55.424 12.8 106.624 42.624 136.512 93.824-34.112 17.088-51.2 51.2-51.2 81.088 0 51.2 42.688 98.112 102.4 98.112S832 729.6 832 678.4c-8.512-38.4-38.4-76.8-76.8-89.6z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M0 0m128 0l768 0q128 0 128 128l0 768q0 128-128 128l-768 0q-128 0-128-128l0-768q0-128 128-128Z" fill="#5EA1FF" /><path d="M250.304 534.784a55.04 55.04 0 0 1 0-79.68 55.04 55.04 0 0 1 79.68 0l121.344 121.344 242.688-242.688a55.04 55.04 0 0 1 79.68 0 55.04 55.04 0 0 1 0 79.616l-280.64 280.64c-19.008 19.008-53.12 22.784-75.84 3.84l-3.84-3.84-163.072-159.232z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#29C477" /><path d="M657.088 209.088c12.8 0 25.6 12.8 25.6 25.6s-12.8 21.312-25.6 21.312H640v128l145.088 285.888c25.6 46.912 21.312 132.224-85.376 132.224h-384c-46.912 0-89.6-42.624-89.6-89.6 0-12.8 4.288-29.824 12.8-42.624L375.488 384V256H358.4c-12.8 0-21.312-12.8-21.312-25.6s12.8-25.6 25.6-25.6h294.4v4.288zM388.288 588.8c-12.8 0-25.6 8.512-29.888 17.088l-29.888 51.2c-12.8 17.024 0 46.912 17.088 55.424 4.288 4.288 12.8 4.288 17.088 4.288h298.624c25.6 0 42.688-17.088 42.688-42.688 0-4.224 0-8.512-4.288-17.024l-29.824-55.488c-4.288-8.512-12.8-12.8-25.6-12.8h-256z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#5EA1FF" /><path d="M512 211.2a300.8 300.8 0 1 0 0 601.6 300.8 300.8 0 0 0 0-601.6z m118.848 333.696L474.176 635.328a37.952 37.952 0 0 1-56.96-32.896V421.568a37.952 37.952 0 0 1 56.96-32.896l156.672 90.432a38.016 38.016 0 0 1 0 65.792z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#FFAA0C" /><path d="M342.656 222.464v21.376c0 18.56 7.424 36.416 20.736 49.536 13.312 13.12 31.36 20.48 50.112 20.48h197.12c18.816 0 36.8-7.36 50.112-20.48a69.76 69.76 0 0 0 20.736-49.536v-21.376h30.784c16.384 0 32 6.4 43.52 17.92 11.584 11.392 18.112 26.88 18.112 43.072v487.616a60.608 60.608 0 0 1-18.048 43.072 61.952 61.952 0 0 1-43.52 17.856H311.808c-16.384 0-32-6.4-43.584-17.856a60.608 60.608 0 0 1-18.048-43.072v-487.68c0-16.128 6.464-31.616 18.048-43.072a61.952 61.952 0 0 1 43.52-17.856h30.848zM599.04 444.032l-2.624 2.752-117.504 139.904-54.4-63.168-2.624-2.688a31.04 31.04 0 0 0-40.768-0.64 30.272 30.272 0 0 0-5.76 39.808l2.304 3.072 78.08 90.752 2.624 2.688a31.04 31.04 0 0 0 41.984-0.256l2.56-2.752 140.8-167.744 2.304-3.136a30.272 30.272 0 0 0-6.336-39.68 31.04 31.04 0 0 0-40.64 1.088z m26.368-249.792a24.256 24.256 0 0 1 7.232 17.28v27.392c0 6.464-2.624 12.672-7.232 17.28a24.768 24.768 0 0 1-17.472 7.04H416.832a24.256 24.256 0 0 1-24.64-24.384v-27.392c0-6.4 2.56-12.672 7.232-17.216a24.768 24.768 0 0 1 17.408-7.168H608c6.592 0 12.8 2.56 17.472 7.168z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1023.2H128.8c-72.8 0-128-55.2-128-128V128.8c0-72 55.2-128 128-128H896c72.8 0 128 55.2 128 128v766.4c0 72-55.2 128-128 128z" fill="#5EA1FF" /><path d="M512.8 212.8c-165.6 0-300 134.4-300 299.2s134.4 299.2 300 299.2 300-134.4 300-299.2-134.4-299.2-300-299.2z m170.4 313.6c0 20.8-16.8 37.6-37.6 37.6H508c-20.8 0-37.6-16.8-37.6-37.6V339.2c0-20.8 16.8-37.6 37.6-37.6s37.6 16.8 37.6 37.6v149.6h100c20.8 0 37.6 16.8 37.6 37.6z" fill="#FFFFFF" /></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#0CC0F2" /><path d="M520.512 298.688L409.6 704c-4.288 25.6 8.512 51.2 34.112 55.488 25.6 8.512 51.2-4.288 59.776-34.176L614.4 324.288c4.288-25.6-8.512-55.488-34.112-64-29.888-4.288-55.488 17.024-59.776 38.4z" fill="#FFFFFF" /><path d="M349.888 422.4L226.112 546.112c-17.024 21.376-42.624 21.376-64 0-21.312-21.312-21.312-42.624 0-64L285.888 358.4c21.312-17.088 42.624-17.088 64 0 12.8 21.312 12.8 46.912 0 64z" fill="#FFFFFF" /><path d="M166.4 546.112L290.112 665.6c21.376 17.088 42.688 17.088 64 0a40 40 0 0 0 0-64L230.4 482.112c-17.088-21.312-42.688-21.312-64 0-21.312 17.088-21.312 42.688 0 64z" fill="#FFFFFF" /><path d="M674.112 422.4L793.6 546.112c21.312 21.376 46.912 21.376 64 0 21.312-21.312 21.312-42.624 0-64L738.112 358.4c-21.312-17.088-42.624-17.088-64 0-12.8 21.312-12.8 46.912 0 64z" fill="#FFFFFF" /><path d="M857.6 546.112L738.112 665.6c-21.312 17.088-42.624 17.088-64 0a40 40 0 0 1 0-64L793.6 477.888c21.312-17.088 46.912-17.088 64 0 17.088 21.312 17.088 46.912 0 68.224z" fill="#FFFFFF" /></svg>
@@ -0,0 +1,7 @@
1
+ <svg width="122" height="77" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>敏捷</title><defs><filter x="-1.2%" y="-2%" width="102.5%" height="104%" filterUnits="objectBoundingBox" id="a"><feOffset in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.3 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-8.3%" width="113.3%" height="133.3%" filterUnits="objectBoundingBox" id="d"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0997869318 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-8.3%" width="113.3%" height="133.3%" filterUnits="objectBoundingBox" id="f"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0993498689 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-8.3%" width="113.3%" height="133.3%" filterUnits="objectBoundingBox" id="h"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.104430726 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-8.3%" width="113.3%" height="133.3%" filterUnits="objectBoundingBox" id="j"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.102300044 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-8.3%" width="113.3%" height="133.3%" filterUnits="objectBoundingBox" id="l"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.099295236 0" in="shadowBlurOuter1"/></filter><rect id="b" x="0" y="0" width="120" height="75" rx="4"/><rect id="e" x="0" y="0" width="30" height="12" rx="2"/><rect id="g" x="0" y="0" width="30" height="12" rx="2"/><rect id="i" x="0" y="0" width="30" height="12" rx="2"/><rect id="k" x="0" y="0" width="30" height="12" rx="2"/><rect id="m" x="0" y="0" width="30" height="12" rx="2"/><linearGradient x1="92.948%" y1="50%" x2="7.155%" y2="50%" id="c"><stop stop-color="#B0D6FF" offset="0%"/><stop stop-color="#5EA1FF" offset="100%"/></linearGradient><linearGradient x1="77.138%" y1="10.756%" x2="17.264%" y2="94.947%" id="n"><stop stop-color="#0DC7FF" offset="0%"/><stop stop-color="#09B866" offset="100%"/></linearGradient><linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="o"><stop stop-color="#0DC7FF" offset="0%"/><stop stop-color="#0C62FF" offset="100%"/></linearGradient><linearGradient x1="0%" y1="50%" x2="92.508%" y2="50%" id="r"><stop stop-color="#E6F3FF" offset="0%"/><stop stop-color="#0C62FF" offset="100%"/></linearGradient><path id="p" d="M0 0h18v6.273H0z"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(1 1)"><use fill="#000" filter="url(#a)" xlink:href="#b"/><use fill="#FFF" xlink:href="#b"/></g><path d="M1 10h120v62a4 4 0 0 1-4 4H5a4 4 0 0 1-4-4V10Z" fill="#F5FAFF"/><path stroke="#EAF2F8" stroke-linecap="square" d="M1.6 10.3h118.8"/><g transform="translate(8.2 5.2)" stroke-width=".2"><circle stroke="#F26D71" fill="#FF7669" cx="1.2" cy="1.2" r="1.1"/><circle stroke="#EFD279" fill="#FFDD7F" cx="8.4" cy="1.2" r="1.1"/><circle stroke="#27D0A1" fill="#29E9A5" cx="15.6" cy="1.2" r="1.1"/></g><path fill="#EAF2F8" d="M40 10h1v66h-1zM80.8 10h1v66h-1z"/><g transform="translate(5.8 14.8)"><rect fill="url(#c)" width="16.8" height="6" rx="3"/><text font-family="PingFangSC-Medium, PingFang SC" font-size="4" font-weight="400" fill="#FFF">
2
+ <tspan x="3" y="4.6">To Do</tspan>
3
+ </text></g><g transform="translate(5.8 25.6)"><use fill="#000" filter="url(#d)" xlink:href="#e"/><use fill="#FFF" xlink:href="#e"/><rect fill="#DADDE3" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#DADDE3" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(5.8 42.4)"><rect fill="#E6F3FF" width="30" height="12" rx="2"/><rect fill="#0C62FF" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#0C62FF" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#0C62FF" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(5.8 59.2)"><use fill="#000" filter="url(#f)" xlink:href="#g"/><use fill="#FFF" xlink:href="#g"/><rect fill="#DADDE3" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#DADDE3" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(45.4 14.8)"><rect fill="url(#c)" width="16.8" height="6" rx="3"/><text font-family="PingFangSC-Medium, PingFang SC" font-size="4" font-weight="400" fill="#FFF">
4
+ <tspan x="3" y="4.6">Doing</tspan>
5
+ </text></g><g transform="translate(45.4 59.2)"><use fill="#000" filter="url(#h)" xlink:href="#i"/><use fill="#FFF" xlink:href="#i"/><rect fill="#DADDE3" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#DADDE3" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(85.6 14.8)"><rect fill="url(#c)" width="16.8" height="6" rx="3"/><text font-family="PingFangSC-Medium, PingFang SC" font-size="4" font-weight="400" fill="#FFF">
6
+ <tspan x="3" y="4.6">Done</tspan>
7
+ </text></g><g transform="translate(85.6 25.6)"><use fill="#000" filter="url(#j)" xlink:href="#k"/><use fill="#FFF" xlink:href="#k"/><rect fill="#DADDE3" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#DADDE3" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(85.6 42.4)"><rect fill="#DFF7E8" width="30" height="12" rx="2"/><rect fill="#09B866" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#09B866" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#09B866" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(85.6 59.2)"><use fill="#000" filter="url(#l)" xlink:href="#m"/><use fill="#FFF" xlink:href="#m"/><rect fill="#DADDE3" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#DADDE3" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><path d="M24.872 4.94s-3.348-2.112-7.28 0c0 0-3.771 1.56-2.99 7.542 0 0 .064 1.462 1.56 3.114H11.48s-2.86-6.04 1.202-11.5c0 0 1.82-2.885 5.786-3.803 0 0 5.85-1.138 8.483 1.072l-2.08 1.122V4.94Z" fill="url(#n)" transform="translate(39.4 29.8)"/><path d="M16.714 17.585h5.525s3.51-.65 4.713-3.267c0 0 1.203-1.382.834-4.667 0 0-.183-2.467-1.321-3.54l-.975.552s.91-1.885.585-3.477c0 0 .553-.553 3.803-.585l-.423.682s1.755 2.254 2.243 5.011c0 0 1.072 4.61-1.495 8.478 0 0-.78 1.657-3.413 3.445 0 0-2.026 1.398-3.966 1.398h-6.11l1.333-2.016-1.333-2.014Z" fill="url(#o)" transform="translate(39.4 29.8)"/><g transform="translate(64.695 46.247)"><mask id="q" fill="#fff"><use xlink:href="#p"/></mask><path d="M0 5.168s3.348-.748 5.233-3.9h10.155V0l2.275 3.152-2.145 3.121-.032-1.105H0Z" fill="#09B866" mask="url(#q)"/></g><path fill="url(#r)" d="M0 17.552h14.341v-1.235l2.373 3.267-2.21 3.136v-1.105H0z" transform="translate(39.4 29.8)"/></g></svg>