bfg-common 1.5.478 → 1.5.480

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 (1389) hide show
  1. package/.eslintrc.js +21 -21
  2. package/.idea/inspectionProfiles/Project_Default.xml +51 -51
  3. package/.idea/modules.xml +7 -7
  4. package/.idea/prettier.xml +5 -5
  5. package/.idea/uikit.iml +11 -11
  6. package/.idea/vcs.xml +5 -5
  7. package/.prettierrc +4 -4
  8. package/PROJECT_STRUCTURE.md +130 -130
  9. package/README.md +42 -42
  10. package/assets/img/icons/icon-hcs.svg +3 -3
  11. package/assets/img/icons/icon-life-m-dark.svg +3 -3
  12. package/assets/img/icons/icon-life-m-light.svg +3 -3
  13. package/assets/img/icons/icon-ro-dark.svg +1 -1
  14. package/assets/img/icons/icon-ro-light.svg +2 -2
  15. package/assets/img/icons/icons-sprite-dark-1.svg +456 -456
  16. package/assets/img/icons/icons-sprite-dark-2.svg +347 -347
  17. package/assets/img/icons/icons-sprite-dark-4.svg +264 -264
  18. package/assets/img/icons/icons-sprite-dark-6.svg +114 -114
  19. package/assets/img/icons/icons-sprite-light-1.svg +456 -456
  20. package/assets/img/icons/icons-sprite-light-2.svg +347 -347
  21. package/assets/img/icons/icons-sprite-light-4.svg +264 -264
  22. package/assets/img/icons/icons-sprite-light-6.svg +114 -114
  23. package/assets/img/icons/info.svg +8 -8
  24. package/assets/img/icons/vc.svg +52 -52
  25. package/assets/img/logo copy.svg +50 -50
  26. package/assets/img/logo.svg +51 -51
  27. package/assets/localization/local_be.json +3577 -3550
  28. package/assets/localization/local_en.json +3581 -3554
  29. package/assets/localization/local_hy.json +3581 -3554
  30. package/assets/localization/local_kk.json +3580 -3553
  31. package/assets/localization/local_ru.json +3580 -3553
  32. package/assets/localization/local_zh.json +3578 -3551
  33. package/assets/scss/clarity/clr-ui.min.css +8 -8
  34. package/assets/scss/clarity/local_ar.json +2925 -2925
  35. package/assets/scss/common/animations.scss +28 -28
  36. package/assets/scss/common/global.scss +193 -193
  37. package/assets/scss/common/icons/icons-1.scss +286 -286
  38. package/assets/scss/common/icons/icons-2.scss +264 -264
  39. package/assets/scss/common/icons/icons-3.scss +250 -250
  40. package/assets/scss/common/icons/icons-4.scss +279 -279
  41. package/assets/scss/common/icons/icons-5.scss +449 -449
  42. package/assets/scss/common/icons/icons-6.scss +174 -174
  43. package/assets/scss/common/icons/icons.scss +16 -16
  44. package/assets/scss/common/icons/lib-icons.scss +32 -32
  45. package/assets/scss/common/mixins.scss +39 -39
  46. package/assets/scss/common/normalize.scss +352 -352
  47. package/assets/scss/common/theme.scss +812 -812
  48. package/assets/scss/common/utilities.scss +20 -20
  49. package/assets/scss/common/variables.scss +44 -44
  50. package/assets/scss/components/auth.scss +209 -209
  51. package/assets/scss/main.scss +15 -15
  52. package/components/atoms/DiagramIcon.vue +400 -400
  53. package/components/atoms/TheIcon.vue +3338 -3338
  54. package/components/atoms/TheIcon2.vue +1368 -1368
  55. package/components/atoms/TheIconOld.vue +2444 -2444
  56. package/components/atoms/alert/Alert.vue +87 -87
  57. package/components/atoms/alert/Notification.vue +169 -169
  58. package/components/atoms/alert/lib/Alert.spec.ts +38 -38
  59. package/components/atoms/alert/lib/Notification.spec.ts +34 -34
  60. package/components/atoms/alert/lib/models/enums.ts +12 -12
  61. package/components/atoms/alert/lib/models/interfaces.ts +27 -27
  62. package/components/atoms/alert/lib/models/types.ts +11 -11
  63. package/components/atoms/autocomplete/Autocomplete.vue +361 -361
  64. package/components/atoms/collapse/CollapseNavItem.vue +218 -218
  65. package/components/atoms/collapse/lib/models/interfaces.ts +14 -14
  66. package/components/atoms/comboDropdownMenu/ComboDropdownMenu.vue +357 -357
  67. package/components/atoms/comboDropdownMenu/lib/models/interfaces.ts +26 -26
  68. package/components/atoms/combobox/Combobox.vue +162 -162
  69. package/components/atoms/datepicker/Datepicker.vue +639 -639
  70. package/components/atoms/datepicker/lib/config/allShortMonths.ts +103 -103
  71. package/components/atoms/datepicker/lib/config/datepicker.ts +46 -46
  72. package/components/atoms/datepicker/lib/models/interfaces.ts +9 -9
  73. package/components/atoms/dropdown/Portlet.vue +105 -105
  74. package/components/atoms/dropdown/dropdown/Dropdown.vue +168 -168
  75. package/components/atoms/dropdown/dropdown/lib/models/interfaces.ts +9 -9
  76. package/components/atoms/dropdown/lib/Portlet.spec.ts +26 -26
  77. package/components/atoms/dropdown/tree/Tree.vue +137 -137
  78. package/components/atoms/dropdown/tree/lib/models/interfaces.ts +11 -11
  79. package/components/atoms/input/Search.vue +16 -16
  80. package/components/atoms/lib/models/interfaces.ts +14 -14
  81. package/components/atoms/list/SelectList.vue +63 -63
  82. package/components/atoms/list/SimpleList.vue +29 -29
  83. package/components/atoms/list/dragDropList/DragDropList.vue +149 -149
  84. package/components/atoms/list/dragDropList/lib/config/events.ts +4 -4
  85. package/components/atoms/loader/BarLoader.vue +27 -27
  86. package/components/atoms/loader/Loader.vue +30 -30
  87. package/components/atoms/loader/PreLoader.vue +38 -38
  88. package/components/atoms/loader/lib/Preloader.spec.ts +24 -24
  89. package/components/atoms/modal/Modal.vue +247 -247
  90. package/components/atoms/modal/bySteps/BySteps.vue +255 -255
  91. package/components/atoms/modal/bySteps/lib/BySteps.spec.ts +66 -66
  92. package/components/atoms/modal/byStepsSecond/ByStepsSecond.vue +175 -175
  93. package/components/atoms/modal/lib/Modal.spec.ts +55 -55
  94. package/components/atoms/nav/NavBar.vue +164 -164
  95. package/components/atoms/nav/VerticalNavBar.vue +79 -79
  96. package/components/atoms/nav/lib/NavBar.spec.ts +34 -34
  97. package/components/atoms/nav/lib/models/interfaces.ts +6 -6
  98. package/components/atoms/notificationBar/NotificationBar.vue +178 -178
  99. package/components/atoms/notificationBar/lib/models/enums.ts +13 -13
  100. package/components/atoms/notificationBar/lib/models/interfaces.ts +6 -6
  101. package/components/atoms/notificationBar/lib/models/types.ts +1 -1
  102. package/components/atoms/popover/Popover.vue +58 -58
  103. package/components/atoms/popover/lib/models/interfaces.ts +4 -4
  104. package/components/atoms/popup/SimplePopup.vue +86 -86
  105. package/components/atoms/select/TheSelect.vue +187 -187
  106. package/components/atoms/select/lib/models/interfaces.ts +5 -5
  107. package/components/atoms/stack/StackBlock.vue +190 -190
  108. package/components/atoms/stack/StackContent.vue +63 -63
  109. package/components/atoms/step/VerticalStep.vue +105 -105
  110. package/components/atoms/step/lib/VerticalStep.spec.ts +68 -68
  111. package/components/atoms/step/lib/models/verticalStepItem.ts +5 -5
  112. package/components/atoms/switch/Switch.vue +97 -97
  113. package/components/atoms/table/compact/Compact.vue +508 -508
  114. package/components/atoms/table/compact/lib/models/interfaces.ts +10 -10
  115. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +277 -277
  116. package/components/atoms/table/dataGrid/DataGridPage.vue +195 -195
  117. package/components/atoms/table/dataGrid/lib/DataGrid.spec.ts +61 -61
  118. package/components/atoms/table/dataGrid/lib/config/itemsPerPage.ts +20 -20
  119. package/components/atoms/table/dataGrid/lib/models/interfaces.ts +57 -57
  120. package/components/atoms/table/dataGrid/lib/models/types.ts +5 -5
  121. package/components/atoms/table/dataGrid/lib/utils/constructDataTable.ts +36 -36
  122. package/components/atoms/table/info/Info.vue +71 -71
  123. package/components/atoms/table/info/lib/models/interfaces.ts +11 -11
  124. package/components/atoms/table/simpleEvent/SimpleEvent.vue +89 -89
  125. package/components/atoms/table/simpleEvent/lib/models/interfaces.ts +9 -9
  126. package/components/atoms/table/simpleInfo/SimpleInfo.vue +78 -78
  127. package/components/atoms/table/simpleInfo/lib/models/interfaces.ts +5 -5
  128. package/components/atoms/table/simpleTable/SimpleTable.vue +288 -288
  129. package/components/atoms/table/simpleTable/lib/models/interfaces.ts +12 -12
  130. package/components/atoms/tabs/Tabs.vue +220 -220
  131. package/components/atoms/tabs/VerticalTabs.vue +95 -95
  132. package/components/atoms/tabs/lib/models/interfaces.ts +7 -7
  133. package/components/atoms/tabs/lib/models/types.ts +1 -1
  134. package/components/atoms/tooltip/Signpost.vue +215 -215
  135. package/components/atoms/tooltip/Text.vue +37 -37
  136. package/components/atoms/tooltip/Tooltip.vue +57 -57
  137. package/components/atoms/tooltip/TooltipError.vue +119 -119
  138. package/components/atoms/tooltip/lib/models/interfaces.ts +4 -4
  139. package/components/atoms/window/lib/config/config.ts +3 -3
  140. package/components/atoms/window/lib/models/interfaces.ts +6 -6
  141. package/components/atoms/wizard/Wizard.vue +342 -342
  142. package/components/atoms/wizard/step/Step.vue +95 -95
  143. package/components/common/BadBrowser.vue +118 -118
  144. package/components/common/accordion/Accordion.vue +177 -177
  145. package/components/common/accordion/Recursion.vue +225 -225
  146. package/components/common/accordion/lib/models/enums.ts +5 -5
  147. package/components/common/accordion/lib/models/interfaces.ts +18 -18
  148. package/components/common/accordion/lib/models/types.ts +1 -1
  149. package/components/common/accordion/lib/utils/accordion.ts +31 -31
  150. package/components/common/adapterManager/AdapterManager.vue +829 -829
  151. package/components/common/adapterManager/AddAdapterModal.vue +561 -561
  152. package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
  153. package/components/common/adapterManager/NoActiveAdaptersModal.vue +61 -61
  154. package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +61 -61
  155. package/components/common/adapterManager/lib/config/index.ts +19 -19
  156. package/components/common/adapterManager/ui/NoSelectedAdapter.vue +38 -38
  157. package/components/common/adapterManager/ui/SecondTitle.vue +36 -36
  158. package/components/common/adapterManager/ui/actions/ActionsBar.vue +95 -95
  159. package/components/common/adapterManager/ui/actions/AddAdapterButton.vue +34 -34
  160. package/components/common/adapterManager/ui/actions/MoveDownAdapterButton.vue +39 -39
  161. package/components/common/adapterManager/ui/actions/MoveUpAdapterButton.vue +39 -39
  162. package/components/common/adapterManager/ui/actions/RemoveAdapterButton.vue +41 -41
  163. package/components/common/adapterManager/ui/actions/VerticalSeparator.vue +10 -10
  164. package/components/common/adapterManager/ui/table/Adapters.vue +92 -92
  165. package/components/common/adapterManager/ui/table/Header.vue +96 -96
  166. package/components/common/adapterManager/ui/table/Table.vue +162 -162
  167. package/components/common/adapterManager/ui/table/lib/models/types.ts +1 -1
  168. package/components/common/backup/storage/actions/add/Add.vue +248 -248
  169. package/components/common/backup/storage/actions/add/New.vue +298 -298
  170. package/components/common/backup/storage/actions/add/Old.vue +121 -121
  171. package/components/common/backup/storage/actions/add/lib/config/createDatastore.ts +16 -16
  172. package/components/common/backup/storage/actions/add/lib/config/steps.ts +168 -168
  173. package/components/common/backup/storage/actions/add/lib/models/interfaces.ts +23 -23
  174. package/components/common/backup/storage/actions/add/lib/models/types.ts +2 -2
  175. package/components/common/backup/storage/actions/add/lib/utils.ts +30 -30
  176. package/components/common/backup/storage/actions/add/lib/validations.ts +242 -242
  177. package/components/common/backup/storage/actions/add/steps/hostAccessibility/HostAccessibility.vue +57 -57
  178. package/components/common/backup/storage/actions/add/steps/hostAccessibility/HostAccessibilityNew.vue +51 -51
  179. package/components/common/backup/storage/actions/add/steps/hostAccessibility/HostAccessibilityOld.vue +59 -59
  180. package/components/common/backup/storage/actions/add/steps/hostAccessibility/lib/config/tabsPannel.ts +30 -30
  181. package/components/common/backup/storage/actions/add/steps/hostAccessibility/lib/models/types.ts +3 -3
  182. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/Table.vue +39 -39
  183. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/lib/models/interfaces.ts +11 -11
  184. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/new/New.vue +119 -119
  185. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/new/lib/config/compatibleTable.ts +80 -80
  186. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/Old.vue +90 -90
  187. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/lib/config/compatibleTable.ts +58 -58
  188. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/lib/config/incompatibleTable.ts +71 -71
  189. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/lib/config/tableKeys.ts +15 -15
  190. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/lib/models/types.ts +6 -6
  191. package/components/common/backup/storage/actions/add/steps/name/Name.vue +47 -47
  192. package/components/common/backup/storage/actions/add/steps/name/New.vue +112 -112
  193. package/components/common/backup/storage/actions/add/steps/name/Old.vue +119 -119
  194. package/components/common/backup/storage/actions/add/steps/nameAndConfigure/NameAndConfigure.vue +48 -48
  195. package/components/common/backup/storage/actions/add/steps/nameAndConfigure/NameAndConfigureNew.vue +280 -280
  196. package/components/common/backup/storage/actions/add/steps/nameAndConfigure/NameAndConfigureOld.vue +325 -325
  197. package/components/common/backup/storage/actions/add/steps/nameAndConfigure/lib/models/interfaces.ts +7 -7
  198. package/components/common/backup/storage/actions/add/steps/readyComplete/ReadyComplete.vue +45 -45
  199. package/components/common/backup/storage/actions/add/steps/readyComplete/ReadyCompleteNew.vue +164 -164
  200. package/components/common/backup/storage/actions/add/steps/readyComplete/ReadyCompleteOld.vue +92 -92
  201. package/components/common/backup/storage/actions/add/steps/readyComplete/lib/config/propertiesDetails.ts +243 -243
  202. package/components/common/backup/storage/actions/add/steps/typeMode/TypeMode.vue +32 -32
  203. package/components/common/backup/storage/actions/add/steps/typeMode/TypeModeNew.vue +119 -119
  204. package/components/common/backup/storage/actions/add/steps/typeMode/TypeModeOld.vue +66 -66
  205. package/components/common/backup/storage/actions/add/steps/typeMode/lib/config/typeOptions.ts +39 -39
  206. package/components/common/backup/storage/actions/delete/Delete.vue +64 -64
  207. package/components/common/backup/storage/actions/delete/lib/models/interfaces.ts +4 -4
  208. package/components/common/browse/Browse.vue +179 -179
  209. package/components/common/browse/BrowseNew.vue +309 -309
  210. package/components/common/browse/BrowseOld.vue +252 -252
  211. package/components/common/browse/blocks/Container.vue +236 -236
  212. package/components/common/browse/blocks/TitleNew.vue +146 -146
  213. package/components/common/browse/blocks/TitleOld.vue +91 -91
  214. package/components/common/browse/blocks/contents/Files.vue +37 -37
  215. package/components/common/browse/blocks/contents/FilesOld.vue +75 -75
  216. package/components/common/browse/blocks/contents/filesNew/FilesNew.vue +95 -95
  217. package/components/common/browse/blocks/info/Date.vue +37 -37
  218. package/components/common/browse/blocks/info/Size.vue +30 -30
  219. package/components/common/browse/blocks/info/Text.vue +29 -29
  220. package/components/common/browse/blocks/lib/models/types.ts +1 -1
  221. package/components/common/browse/lib/models/interfaces.ts +5 -5
  222. package/components/common/chartOptionsModal/counters/timespan/form/Form.vue +290 -290
  223. package/components/common/chartOptionsModal/counters/timespan/form/FormNew.vue +261 -261
  224. package/components/common/chartOptionsModal/counters/timespan/form/FormOld.vue +372 -372
  225. package/components/common/chartOptionsModal/counters/timespan/form/lib/config/dateForm.ts +116 -116
  226. package/components/common/context/Context.vue +111 -111
  227. package/components/common/context/lib/Context.spec.ts +20 -20
  228. package/components/common/context/lib/ContextRecursion.spec.ts +55 -55
  229. package/components/common/context/recursion/Recursion.vue +92 -92
  230. package/components/common/context/recursion/RecursionNew.vue +283 -283
  231. package/components/common/context/recursion/RecursionOld.vue +221 -221
  232. package/components/common/context/recursion/lib/models/interfaces.ts +2 -2
  233. package/components/common/countdownTimer/CountdownTimer.vue +39 -39
  234. package/components/common/countdownTimer/CountdownTimerNew.vue +53 -53
  235. package/components/common/countdownTimer/CountdownTimerOld.vue +33 -33
  236. package/components/common/details/DetailsItem.vue +109 -109
  237. package/components/common/details/DetailsList.vue +23 -23
  238. package/components/common/details/lib/models/interfaces.ts +12 -12
  239. package/components/common/diagramMain/Diagram.vue +377 -377
  240. package/components/common/diagramMain/DiagramMain.vue +900 -900
  241. package/components/common/diagramMain/Header.vue +219 -219
  242. package/components/common/diagramMain/adapter/Adapter.vue +123 -123
  243. package/components/common/diagramMain/adapter/AdapterItem.vue +438 -438
  244. package/components/common/diagramMain/adapter/AdapterItems.vue +61 -61
  245. package/components/common/diagramMain/adapter/Contents.vue +212 -212
  246. package/components/common/diagramMain/adapter/Lines.vue +81 -81
  247. package/components/common/diagramMain/adapter/block/Block.vue +27 -27
  248. package/components/common/diagramMain/adapter/block/BlockNew.vue +58 -58
  249. package/components/common/diagramMain/adapter/block/BlockOld.vue +50 -50
  250. package/components/common/diagramMain/adapter/secondBlock/SecondBlock.vue +27 -27
  251. package/components/common/diagramMain/adapter/secondBlock/SecondBlockNew.vue +60 -60
  252. package/components/common/diagramMain/adapter/secondBlock/SecondBlockOld.vue +51 -51
  253. package/components/common/diagramMain/highlights/Highlights.vue +151 -151
  254. package/components/common/diagramMain/highlights/HighlightsNew.vue +124 -124
  255. package/components/common/diagramMain/highlights/HighlightsOld.vue +107 -107
  256. package/components/common/diagramMain/lib/config/index.ts +81 -81
  257. package/components/common/diagramMain/lib/config/initial.ts +50 -50
  258. package/components/common/diagramMain/lib/config/positions.ts +194 -194
  259. package/components/common/diagramMain/lib/models/enums.ts +44 -44
  260. package/components/common/diagramMain/lib/models/interfaces.ts +755 -755
  261. package/components/common/diagramMain/lib/models/types.ts +21 -21
  262. package/components/common/diagramMain/lib/utils/utils.ts +331 -331
  263. package/components/common/diagramMain/modals/ManagePhysicalAdaptersModal.vue +330 -330
  264. package/components/common/diagramMain/modals/Modals.vue +452 -452
  265. package/components/common/diagramMain/modals/editSettings/ConfirmTeamingSettingsModal.vue +43 -43
  266. package/components/common/diagramMain/modals/editSettings/EditSettings.vue +497 -497
  267. package/components/common/diagramMain/modals/editSettings/EditSettingsModal.vue +789 -789
  268. package/components/common/diagramMain/modals/editSettings/lib/models/interfaces.ts +21 -21
  269. package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +215 -215
  270. package/components/common/diagramMain/modals/editSettings/tabs/Security.vue +190 -190
  271. package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +164 -164
  272. package/components/common/diagramMain/modals/editSettings/tabs/TeamingFailover.vue +175 -175
  273. package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +399 -399
  274. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +351 -351
  275. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +206 -206
  276. package/components/common/diagramMain/modals/lib/config/adapterModal.ts +144 -144
  277. package/components/common/diagramMain/modals/lib/config/diagramConfig.ts +25 -25
  278. package/components/common/diagramMain/modals/lib/config/index.ts +55 -55
  279. package/components/common/diagramMain/modals/lib/config/initial.ts +180 -180
  280. package/components/common/diagramMain/modals/lib/config/switchModal.ts +242 -242
  281. package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +90 -90
  282. package/components/common/diagramMain/modals/lib/mappers/mappers.ts +87 -87
  283. package/components/common/diagramMain/modals/lib/utils/index.ts +24 -24
  284. package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +541 -541
  285. package/components/common/diagramMain/modals/migrateVmkernelAdapter/lib/config/steps.ts +114 -114
  286. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +169 -169
  287. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/SelectVmkernelAdapter.vue +159 -159
  288. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/VmkernelAdapterReadyComplete.vue +49 -49
  289. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +14 -14
  290. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +137 -137
  291. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/selectVmkernelAdapter.ts +52 -52
  292. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/validations.ts +19 -19
  293. package/components/common/diagramMain/modals/remove/RemoveModal.vue +74 -74
  294. package/components/common/diagramMain/modals/remove/RemoveModalNew.vue +95 -95
  295. package/components/common/diagramMain/modals/remove/RemoveModalOld.vue +230 -230
  296. package/components/common/diagramMain/modals/viewSettings/info/Info.vue +55 -55
  297. package/components/common/diagramMain/modals/viewSettings/info/InfoNew.vue +157 -157
  298. package/components/common/diagramMain/modals/viewSettings/info/InfoOld.vue +125 -125
  299. package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettings.vue +36 -36
  300. package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettingsNew.vue +208 -208
  301. package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettingsOld.vue +203 -203
  302. package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/ViewSettingsModal.vue +60 -60
  303. package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/ViewSettingsModalNew.vue +50 -50
  304. package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/ViewSettingsModalOld.vue +70 -70
  305. package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/lib/models/interfaces.ts +48 -48
  306. package/components/common/diagramMain/network/Contents.vue +497 -497
  307. package/components/common/diagramMain/network/Lines.vue +107 -107
  308. package/components/common/diagramMain/network/Network.vue +141 -141
  309. package/components/common/diagramMain/network/block/Block.vue +37 -37
  310. package/components/common/diagramMain/network/block/BlockNew.vue +68 -68
  311. package/components/common/diagramMain/network/block/BlockOld.vue +64 -64
  312. package/components/common/diagramMain/network/noNetwork/NoNetwork.vue +12 -12
  313. package/components/common/diagramMain/network/noNetwork/NoNetworkNew.vue +89 -89
  314. package/components/common/diagramMain/network/noNetwork/NoNetworkOld.vue +61 -61
  315. package/components/common/diagramMain/network/secondBlock/SecondBlock.vue +41 -41
  316. package/components/common/diagramMain/network/secondBlock/SecondBlockNew.vue +64 -64
  317. package/components/common/diagramMain/network/secondBlock/SecondBlockOld.vue +60 -60
  318. package/components/common/diagramMain/port/Ports.vue +47 -47
  319. package/components/common/diagramMain/switch/Switch.vue +180 -180
  320. package/components/common/diagramMain/switch/SwitchSelected.vue +111 -111
  321. package/components/common/feedback/Buttons.vue +210 -210
  322. package/components/common/feedback/Feedback.vue +279 -279
  323. package/components/common/feedback/Message.vue +511 -511
  324. package/components/common/feedback/VisitPortal.vue +61 -61
  325. package/components/common/feedback/lib/config/drawingPanel.ts +32 -32
  326. package/components/common/feedback/lib/config/feedbackTabs.ts +27 -27
  327. package/components/common/feedback/lib/models/interfaces.ts +20 -20
  328. package/components/common/feedback/lib/models/types.ts +1 -1
  329. package/components/common/graph/Graph.vue +127 -127
  330. package/components/common/graph/GraphOld.vue +61 -61
  331. package/components/common/graph/graphNew/GraphNew.vue +178 -178
  332. package/components/common/graph/graphNew/lib/models/enums.ts +9 -9
  333. package/components/common/graph/lib/utils/renderGraph.ts +388 -388
  334. package/components/common/headline/Headline.vue +32 -32
  335. package/components/common/help/navbar/left/Left.vue +165 -165
  336. package/components/common/help/navbar/left/lib/models/interfaces.ts +6 -6
  337. package/components/common/help/navbar/left/lib/utils/constructAccordion.ts +27 -27
  338. package/components/common/help/navbar/right/Right.vue +149 -149
  339. package/components/common/help/navbar/right/lib/models/interfaces.ts +5 -5
  340. package/components/common/layout/theHeader/TheHeader.vue +169 -169
  341. package/components/common/layout/theHeader/TheHeaderNew.vue +303 -303
  342. package/components/common/layout/theHeader/TheHeaderOld.vue +250 -250
  343. package/components/common/layout/theHeader/ThemeSwitch.vue +66 -66
  344. package/components/common/layout/theHeader/feedback/Feedback.vue +109 -109
  345. package/components/common/layout/theHeader/feedback/FeedbackOld.vue +63 -63
  346. package/components/common/layout/theHeader/feedback/lib/config/sendFeedback.ts +17 -17
  347. package/components/common/layout/theHeader/feedback/new/New.vue +209 -209
  348. package/components/common/layout/theHeader/feedback/new/additionalDetails/AdditionalDetails.vue +595 -595
  349. package/components/common/layout/theHeader/feedback/new/additionalDetails/Headline.vue +38 -38
  350. package/components/common/layout/theHeader/feedback/new/description/Description.vue +59 -59
  351. package/components/common/layout/theHeader/feedback/new/email/Email.vue +43 -43
  352. package/components/common/layout/theHeader/feedback/new/lib/models/interfaces.ts +4 -4
  353. package/components/common/layout/theHeader/feedback/new/subtitle/Subtitle.vue +38 -38
  354. package/components/common/layout/theHeader/feedback/new/tabs/Tabs.vue +80 -80
  355. package/components/common/layout/theHeader/feedback/new/tabs/lib/config/tabs.ts +25 -25
  356. package/components/common/layout/theHeader/feedback/new/tabs/lib/models/enums.ts +6 -6
  357. package/components/common/layout/theHeader/feedback/new/tabs/lib/models/types.ts +1 -1
  358. package/components/common/layout/theHeader/helpMenu/HelpMenu.vue +43 -43
  359. package/components/common/layout/theHeader/helpMenu/helpMenuNew/HelpMenuNew.vue +195 -195
  360. package/components/common/layout/theHeader/helpMenu/helpMenuNew/lib/config/dropMenu.ts +28 -28
  361. package/components/common/layout/theHeader/helpMenu/helpMenuOld/HelpMenuOld.vue +59 -59
  362. package/components/common/layout/theHeader/helpMenu/helpMenuOld/lib/config/dropMenu.ts +22 -22
  363. package/components/common/layout/theHeader/helpMenu/helpMenuOld/lib/models/types.ts +1 -1
  364. package/components/common/layout/theHeader/lib/models/enums.ts +10 -10
  365. package/components/common/layout/theHeader/lib/models/types.ts +5 -5
  366. package/components/common/layout/theHeader/lib/utils/localization.ts +32 -32
  367. package/components/common/layout/theHeader/modals/RedirectLogin.vue +60 -60
  368. package/components/common/layout/theHeader/modals/reconnect/Reconnect.vue +83 -83
  369. package/components/common/layout/theHeader/modals/reconnect/ReconnectNew.vue +73 -73
  370. package/components/common/layout/theHeader/modals/reconnect/ReconnectOld.vue +66 -66
  371. package/components/common/layout/theHeader/userMenu/UserMenu.vue +101 -101
  372. package/components/common/layout/theHeader/userMenu/lib/models/interfaces.ts +32 -32
  373. package/components/common/layout/theHeader/userMenu/modals/changePassword/ChangePassword.vue +90 -90
  374. package/components/common/layout/theHeader/userMenu/modals/changePassword/ChangePasswordNew.vue +189 -189
  375. package/components/common/layout/theHeader/userMenu/modals/changePassword/ChangePasswordOld.vue +179 -179
  376. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/config/form.ts +31 -31
  377. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/models/interfaces.ts +23 -23
  378. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/utils.ts +28 -28
  379. package/components/common/layout/theHeader/userMenu/modals/preferences/Preferences.vue +70 -70
  380. package/components/common/layout/theHeader/userMenu/modals/preferences/PreferencesNew.vue +93 -93
  381. package/components/common/layout/theHeader/userMenu/modals/preferences/PreferencesOld.vue +131 -131
  382. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +115 -115
  383. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguageNew.vue +89 -89
  384. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguageOld.vue +91 -91
  385. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/config/radioOptions.ts +22 -22
  386. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/enums.ts +9 -9
  387. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/interfaces.ts +11 -11
  388. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/types.ts +1 -1
  389. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsole.vue +42 -42
  390. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsoleNew.vue +53 -53
  391. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsoleOld.vue +49 -49
  392. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/config/consoleOptions.ts +30 -30
  393. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/models/interfaces.ts +5 -5
  394. package/components/common/layout/theHeader/userMenu/modals/preferences/inventory/Inventory.vue +32 -32
  395. package/components/common/layout/theHeader/userMenu/modals/preferences/inventory/InventoryNew.vue +35 -35
  396. package/components/common/layout/theHeader/userMenu/modals/preferences/inventory/InventoryOld.vue +31 -31
  397. package/components/common/layout/theHeader/userMenu/modals/preferences/lib/config/preferencesTabs.ts +49 -49
  398. package/components/common/layout/theHeader/userMenu/modals/preferences/lib/models/types.ts +1 -1
  399. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormat.vue +54 -54
  400. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormatNew.vue +52 -52
  401. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormatOld.vue +45 -45
  402. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/config/formatOptions.ts +27 -27
  403. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/models/types.ts +1 -1
  404. package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +45 -45
  405. package/components/common/layout/theHeader/userMenu/modals/preferences/view/ViewNew.vue +33 -33
  406. package/components/common/layout/theHeader/userMenu/modals/preferences/view/ViewOld.vue +112 -112
  407. package/components/common/layout/theHeader/userMenu/userMenuNew/UserMenuNew.vue +170 -170
  408. package/components/common/layout/theHeader/userMenu/userMenuNew/lib/config/dropMenu.ts +28 -28
  409. package/components/common/layout/theHeader/userMenu/userMenuOld/UserMenuOld.vue +36 -36
  410. package/components/common/layout/theHeader/userMenu/userMenuOld/lib/config/dropMenu.ts +36 -36
  411. package/components/common/layout/theHeader/userMenu/userMenuOld/lib/models/types.ts +5 -5
  412. package/components/common/lib/config/states.ts +160 -160
  413. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +151 -151
  414. package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +301 -301
  415. package/components/common/mainNavigationPanel/MainNavigationPanelOld.vue +299 -299
  416. package/components/common/mainNavigationPanel/lib/models/interfaces.ts +9 -9
  417. package/components/common/mainNavigationPanel/lib/models/types.ts +1 -1
  418. package/components/common/modals/Rename.vue +180 -180
  419. package/components/common/modals/confirmByInput/ConfirmByInput.vue +85 -85
  420. package/components/common/modals/confirmByInput/ConfirmByInputNew.vue +103 -103
  421. package/components/common/modals/confirmByInput/ConfirmByInputOld.vue +209 -209
  422. package/components/common/modals/confirmation/Confirmation.vue +79 -79
  423. package/components/common/modals/confirmation/ConfirmationNew.vue +77 -77
  424. package/components/common/modals/confirmation/ConfirmationOld.vue +111 -111
  425. package/components/common/modals/lib/config/defaultForm.ts +18 -18
  426. package/components/common/modals/lib/config/renameLabelWidth.ts +3 -3
  427. package/components/common/modals/lib/models/interfaces.ts +5 -5
  428. package/components/common/modals/unsavedChanges/UnsavedChanges.vue +48 -48
  429. package/components/common/monitor/advanced/Advanced.vue +203 -203
  430. package/components/common/monitor/advanced/AdvancedNew.vue +191 -191
  431. package/components/common/monitor/advanced/AdvancedOld.vue +220 -220
  432. package/components/common/monitor/advanced/graphView/GraphView.vue +145 -145
  433. package/components/common/monitor/advanced/graphView/GraphViewNew.vue +36 -36
  434. package/components/common/monitor/advanced/graphView/GraphViewOld.vue +56 -56
  435. package/components/common/monitor/advanced/lib/models/interfaces.ts +9 -9
  436. package/components/common/monitor/advanced/lib/models/types.ts +1 -1
  437. package/components/common/monitor/advanced/table/Table.vue +31 -31
  438. package/components/common/monitor/advanced/table/lib/models/interfaces.ts +12 -12
  439. package/components/common/monitor/advanced/table/lib/models/types.ts +10 -10
  440. package/components/common/monitor/advanced/table/tableNew/TableNew.vue +92 -92
  441. package/components/common/monitor/advanced/table/tableNew/lib/config/options.ts +139 -139
  442. package/components/common/monitor/advanced/table/tableNew/lib/utils/constructBody.ts +27 -27
  443. package/components/common/monitor/advanced/table/tableOld/TableOld.vue +93 -93
  444. package/components/common/monitor/advanced/table/tableOld/lib/config/performanceDatatable.ts +129 -129
  445. package/components/common/monitor/advanced/tools/Tools.vue +309 -309
  446. package/components/common/monitor/advanced/tools/ToolsNew.vue +222 -222
  447. package/components/common/monitor/advanced/tools/ToolsOld.vue +315 -315
  448. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +549 -549
  449. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalNew.vue +204 -204
  450. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalOld.vue +189 -189
  451. package/components/common/monitor/advanced/tools/chartOptionsModal/Notification.vue +27 -27
  452. package/components/common/monitor/advanced/tools/chartOptionsModal/NotificationNew.vue +22 -22
  453. package/components/common/monitor/advanced/tools/chartOptionsModal/NotificationOld.vue +27 -27
  454. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/Actions.vue +106 -106
  455. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/ActionsNew.vue +165 -165
  456. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/ActionsOld.vue +114 -114
  457. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +32 -32
  458. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/saveOptionsModal/SaveOptionsModal.vue +81 -81
  459. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/Counters.vue +146 -146
  460. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersNew.vue +139 -139
  461. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersOld.vue +114 -114
  462. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +105 -105
  463. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils.ts +1040 -1040
  464. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +30 -30
  465. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/TableNew.vue +48 -48
  466. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/config/options.ts +19 -19
  467. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/config/tableData.ts +71 -71
  468. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/utils/constructTable.ts +29 -29
  469. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableOld/TableOld.vue +85 -85
  470. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableOld/lib/config/tableConfig.ts +89 -89
  471. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableOld/lib/models/types.ts +5 -5
  472. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/Timespan.vue +138 -138
  473. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +188 -188
  474. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanOld.vue +95 -95
  475. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +294 -294
  476. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/lib/config/objectTable.ts +64 -64
  477. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/lib/models/interfaces.ts +4 -4
  478. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/lib/models/types.ts +1 -1
  479. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/objectNew/ObjectNew.vue +62 -62
  480. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/objectNew/lib/config/options.ts +25 -25
  481. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/objectNew/lib/config/tableData.ts +47 -47
  482. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/objectNew/lib/utils/constructTable.ts +22 -22
  483. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/objectOld/ObjectOld.vue +84 -84
  484. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/models/interfaces.ts +19 -19
  485. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/models/types.ts +3 -3
  486. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/utils/checkSubmit.ts +19 -19
  487. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/Metrics.vue +30 -30
  488. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/MetricsNew.vue +121 -121
  489. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/MetricsOld.vue +32 -32
  490. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/lib/config/optionsMetrics.ts +173 -173
  491. package/components/common/monitor/advanced/tools/lib/config/advancedToolbar.ts +146 -146
  492. package/components/common/monitor/advanced/tools/lib/models/interfaces.ts +4 -4
  493. package/components/common/monitor/advanced/tools/lib/utils/countCores.ts +7 -7
  494. package/components/common/monitor/lib/config/getValidDateByOption.ts +76 -76
  495. package/components/common/monitor/lib/models/interfaces.ts +24 -24
  496. package/components/common/monitor/overview/Overview.vue +141 -141
  497. package/components/common/monitor/overview/OverviewNew.vue +120 -120
  498. package/components/common/monitor/overview/OverviewOld.vue +130 -130
  499. package/components/common/monitor/overview/filters/Filters.vue +174 -174
  500. package/components/common/monitor/overview/filters/FiltersNew.vue +171 -171
  501. package/components/common/monitor/overview/filters/FiltersOld.vue +153 -153
  502. package/components/common/monitor/overview/filters/customIntervalModal/CustomIntervalModal.vue +173 -173
  503. package/components/common/monitor/overview/filters/customIntervalModal/CustomIntervalModalOld.vue +161 -161
  504. package/components/common/monitor/overview/filters/customIntervalModal/customIntervalModalNew/CustomIntervalModalNew.vue +230 -230
  505. package/components/common/monitor/overview/filters/customIntervalModal/customIntervalModalNew/lib/utils/date.ts +11 -11
  506. package/components/common/monitor/overview/filters/customIntervalModal/lib/config/dateChecker.ts +62 -62
  507. package/components/common/monitor/overview/filters/lib/config/filterOptions.ts +100 -100
  508. package/components/common/monitor/overview/filters/lib/models/interfaces.ts +10 -10
  509. package/components/common/monitor/overview/filters/lib/models/types.ts +15 -15
  510. package/components/common/monitor/resourceAllocation/lib/models/interfaces.ts +13 -13
  511. package/components/common/monitor/resourceAllocation/resourceAllocation.vue +196 -196
  512. package/components/common/pages/backups/Backups.vue +102 -102
  513. package/components/common/pages/backups/lib/models/types.ts +7 -7
  514. package/components/common/pages/backups/lib/utils/getBackupOrBackupStorageId.ts +25 -25
  515. package/components/common/pages/backups/modals/Modals.vue +243 -243
  516. package/components/common/pages/backups/modals/createBackup/CreateBackup.vue +379 -379
  517. package/components/common/pages/backups/modals/createBackup/configuration/backupWindow/BackupWindow.vue +4 -1
  518. package/components/common/pages/backups/modals/createBackup/configuration/maxBandwidth/MaxBandwidth.vue +4 -1
  519. package/components/common/pages/backups/modals/createBackup/configuration/strategy/Strategy.vue +4 -1
  520. package/components/common/pages/backups/modals/createBackup/datastores/Datastores.vue +59 -59
  521. package/components/common/pages/backups/modals/createBackup/datastores/tableView/lib/config/keys.ts +14 -14
  522. package/components/common/pages/backups/modals/createBackup/datastores/tableView/lib/config/table.ts +127 -119
  523. package/components/common/pages/backups/modals/createBackup/datastores/tableView/lib/models/types.ts +10 -10
  524. package/components/common/pages/backups/modals/createBackup/disks/Disks.vue +28 -28
  525. package/components/common/pages/backups/modals/createBackup/disks/tableView/TableView.vue +108 -108
  526. package/components/common/pages/backups/modals/createBackup/disks/tableView/lib/config/keys.ts +12 -12
  527. package/components/common/pages/backups/modals/createBackup/disks/tableView/lib/config/table.ts +125 -125
  528. package/components/common/pages/backups/modals/createBackup/disks/tableView/lib/models/types.ts +10 -10
  529. package/components/common/pages/backups/modals/createBackup/lib/config/steps.ts +117 -117
  530. package/components/common/pages/backups/modals/createBackup/lib/models/interfaces.ts +8 -8
  531. package/components/common/pages/backups/modals/createBackup/readyToComplete/ReadyToComplete.vue +15 -15
  532. package/components/common/pages/backups/modals/deleteBackup/DeleteBackup.vue +52 -52
  533. package/components/common/pages/backups/modals/lib/config/createBackup.ts +16 -16
  534. package/components/common/pages/backups/modals/restore/Restore.vue +417 -417
  535. package/components/common/pages/backups/modals/restore/disks/tableView/TableView.vue +109 -109
  536. package/components/common/pages/backups/modals/restore/disks/tableView/lib/config/keys.ts +14 -14
  537. package/components/common/pages/backups/modals/restore/disks/tableView/lib/models/types.ts +10 -10
  538. package/components/common/pages/backups/modals/restore/lib/config/restoreCodes.ts +4 -4
  539. package/components/common/pages/backups/modals/restore/lib/config/steps.ts +108 -108
  540. package/components/common/pages/backups/modals/restore/networks/table/adapterType/AdapterType.vue +32 -32
  541. package/components/common/pages/backups/modals/restore/networks/table/adapterType/lib/config/options.ts +8 -8
  542. package/components/common/pages/backups/modals/restore/networks/table/lib/config/networkTable.ts +75 -75
  543. package/components/common/pages/backups/modals/restore/networks/table/lib/config/tableKeys.ts +10 -10
  544. package/components/common/pages/backups/modals/restore/networks/table/lib/models/types.ts +6 -6
  545. package/components/common/pages/backups/modals/restore/types/Types.vue +60 -60
  546. package/components/common/pages/backups/modals/restore/types/lib/config/descriptions.ts +7 -7
  547. package/components/common/pages/hardwareHealth/HardwareHealth.vue +214 -214
  548. package/components/common/pages/hardwareHealth/historyTestimony/Graph.vue +459 -459
  549. package/components/common/pages/hardwareHealth/historyTestimony/lib/config/containerSizes.ts +1 -1
  550. package/components/common/pages/hardwareHealth/historyTestimony/lib/models/interfaces.ts +20 -20
  551. package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +389 -389
  552. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +502 -502
  553. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/Notification.vue +30 -30
  554. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/Actions.vue +157 -157
  555. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/SaveOptionsModal.vue +81 -81
  556. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +25 -25
  557. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/Counters.vue +94 -94
  558. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/Table.vue +174 -174
  559. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/config/tableConfig.ts +89 -89
  560. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/models/types.ts +5 -5
  561. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/Timespan.vue +66 -66
  562. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/config/optionsMetrics.ts +17 -17
  563. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/models/interfaces.ts +15 -15
  564. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/models/types.ts +1 -1
  565. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/Metrics.vue +31 -31
  566. package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/config/toolbar.ts +82 -82
  567. package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/models/interfaces.ts +9 -9
  568. package/components/common/pages/hardwareHealth/lib/config/status.ts +13 -13
  569. package/components/common/pages/hardwareHealth/lib/config/tabsPannel.ts +39 -39
  570. package/components/common/pages/hardwareHealth/lib/models/enums.ts +8 -8
  571. package/components/common/pages/hardwareHealth/lib/models/interfaces.ts +6 -6
  572. package/components/common/pages/hardwareHealth/lib/models/types.ts +5 -5
  573. package/components/common/pages/hardwareHealth/tableView/TableView.vue +194 -194
  574. package/components/common/pages/hardwareHealth/tableView/lib/config/alertWarningTable.ts +109 -109
  575. package/components/common/pages/hardwareHealth/tableView/lib/config/historyTestimonyTable.ts +137 -137
  576. package/components/common/pages/hardwareHealth/tableView/lib/config/sensorTable.ts +153 -153
  577. package/components/common/pages/hardwareHealth/tableView/lib/config/storageSensorTable.ts +93 -93
  578. package/components/common/pages/hardwareHealth/tableView/lib/config/systemLogTable.ts +72 -72
  579. package/components/common/pages/hardwareHealth/tableView/lib/config/tableKeys.ts +22 -22
  580. package/components/common/pages/hardwareHealth/tableView/lib/models/interfaces.ts +29 -29
  581. package/components/common/pages/hardwareHealth/tableView/lib/models/types.ts +26 -26
  582. package/components/common/pages/hardwareHealth/tableView/modal/SensorWarning.vue +63 -63
  583. package/components/common/pages/hardwareHealth/toolsPanel/ToolsPanel.vue +51 -51
  584. package/components/common/pages/hardwareHealth/toolsPanel/lib/config/actionsPanel.ts +34 -34
  585. package/components/common/pages/hardwareHealth/toolsPanel/lib/models/types.ts +4 -4
  586. package/components/common/pages/home/Card.vue +63 -63
  587. package/components/common/pages/home/StatusContent.vue +52 -52
  588. package/components/common/pages/home/headline/Headline.vue +44 -44
  589. package/components/common/pages/home/headline/HeadlineNew.vue +104 -104
  590. package/components/common/pages/home/headline/HeadlineOld.vue +47 -47
  591. package/components/common/pages/home/lib/config/configResourceMeterBlock.ts +35 -35
  592. package/components/common/pages/home/lib/models/types.ts +12 -12
  593. package/components/common/pages/home/resource/Resource.vue +29 -29
  594. package/components/common/pages/home/resource/ResourceNew.vue +63 -63
  595. package/components/common/pages/home/resource/ResourceOld.vue +122 -122
  596. package/components/common/pages/home/resource/lib/models/interfaces.ts +14 -14
  597. package/components/common/pages/home/resource/lib/utils/resourceMeter.ts +52 -52
  598. package/components/common/pages/home/widgets/Widgets.vue +55 -55
  599. package/components/common/pages/home/widgets/WidgetsNew.vue +93 -93
  600. package/components/common/pages/home/widgets/WidgetsOld.vue +47 -47
  601. package/components/common/pages/home/widgets/hosts/HostsNew.vue +100 -100
  602. package/components/common/pages/home/widgets/hosts/HostsOld.vue +25 -25
  603. package/components/common/pages/home/widgets/services/Services.vue +27 -27
  604. package/components/common/pages/home/widgets/services/ServicesNew.vue +145 -145
  605. package/components/common/pages/home/widgets/services/ServicesOld.vue +35 -35
  606. package/components/common/pages/home/widgets/services/lib/config/config.ts +130 -130
  607. package/components/common/pages/home/widgets/services/lib/models/enums.ts +20 -20
  608. package/components/common/pages/home/widgets/services/table/Table.vue +80 -80
  609. package/components/common/pages/home/widgets/services/table/lib/config/config.ts +62 -62
  610. package/components/common/pages/home/widgets/services/table/lib/models/types.ts +6 -6
  611. package/components/common/pages/home/widgets/skeleton/totalQuantitiesItem.vue +82 -82
  612. package/components/common/pages/home/widgets/vms/Vms.vue +35 -35
  613. package/components/common/pages/home/widgets/vms/VmsNew.vue +107 -107
  614. package/components/common/pages/home/widgets/warnings/Warnings.vue +27 -27
  615. package/components/common/pages/home/widgets/warnings/WarningsNew.vue +104 -104
  616. package/components/common/pages/home/widgets/warnings/WarningsOld.vue +39 -39
  617. package/components/common/pages/home/widgets/warnings/lib/config/config.ts +96 -96
  618. package/components/common/pages/home/widgets/warnings/table/Table.vue +114 -114
  619. package/components/common/pages/home/widgets/warnings/table/lib/config/config.ts +73 -73
  620. package/components/common/pages/home/widgets/warnings/table/lib/models/enums.ts +11 -11
  621. package/components/common/pages/home/widgets/warnings/table/lib/models/interfaces.ts +19 -19
  622. package/components/common/pages/home/widgets/warnings/table/lib/models/types.ts +15 -15
  623. package/components/common/pages/licensing/Licensing.vue +128 -128
  624. package/components/common/pages/licensing/lib/models/interfaces.ts +21 -21
  625. package/components/common/pages/licensing/lib/utils/validation.ts +28 -28
  626. package/components/common/pages/licensing/listView/ListView.vue +50 -50
  627. package/components/common/pages/licensing/listView/lib/config/list.ts +57 -57
  628. package/components/common/pages/licensing/listView/lib/models/interfaces.ts +5 -5
  629. package/components/common/pages/licensing/modals/assign/Assign.vue +247 -247
  630. package/components/common/pages/licensing/modals/assign/lib/config/tabsPannel.ts +17 -17
  631. package/components/common/pages/licensing/modals/assign/lib/models/interfaces.ts +4 -4
  632. package/components/common/pages/licensing/modals/assign/lib/utils/error.ts +24 -24
  633. package/components/common/pages/licensing/modals/assign/new/New.vue +216 -216
  634. package/components/common/pages/licensing/modals/assign/tableView/TableView.vue +193 -193
  635. package/components/common/pages/licensing/modals/assign/tableView/lib/config/table.ts +100 -100
  636. package/components/common/pages/licensing/modals/assign/tableView/lib/config/tableKeys.ts +10 -10
  637. package/components/common/pages/licensing/modals/assign/tableView/lib/models/interfaces.ts +9 -9
  638. package/components/common/pages/licensing/modals/assign/tableView/lib/models/types.ts +8 -8
  639. package/components/common/pages/packages/Packages.vue +194 -194
  640. package/components/common/pages/packages/lib/config/actions.ts +59 -59
  641. package/components/common/pages/packages/lib/models/types.ts +8 -8
  642. package/components/common/pages/packages/tableView/TableView.vue +120 -120
  643. package/components/common/pages/packages/tableView/lib/config/configTable.ts +136 -136
  644. package/components/common/pages/packages/tableView/lib/config/tableKey.ts +14 -14
  645. package/components/common/pages/packages/tableView/lib/models/types.ts +12 -12
  646. package/components/common/pages/scheduledTasks/lib/models/interfaces.ts +42 -42
  647. package/components/common/pages/scheduledTasks/lib/models/types.ts +16 -16
  648. package/components/common/pages/scheduledTasks/modals/common/frequency/Frequency.vue +59 -59
  649. package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/AfterStartup.vue +82 -82
  650. package/components/common/pages/scheduledTasks/modals/common/frequency/end/End.vue +115 -115
  651. package/components/common/pages/scheduledTasks/modals/common/frequency/end/lib/config/endOptions.ts +17 -17
  652. package/components/common/pages/scheduledTasks/modals/common/frequency/interval/Interval.vue +102 -102
  653. package/components/common/pages/scheduledTasks/modals/common/frequency/lib/config/frequencyOptions.ts +38 -38
  654. package/components/common/pages/scheduledTasks/modals/common/frequency/lib/models/types.ts +7 -7
  655. package/components/common/pages/scheduledTasks/modals/common/frequency/lib/utils.ts +128 -128
  656. package/components/common/pages/scheduledTasks/modals/common/frequency/on/On.vue +237 -237
  657. package/components/common/pages/scheduledTasks/modals/common/frequency/on/lib/config/options.ts +64 -64
  658. package/components/common/pages/scheduledTasks/modals/common/frequency/on/lib/models/types.ts +12 -12
  659. package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/SelectWeek.vue +68 -68
  660. package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/lib/config/weekOptions.ts +55 -55
  661. package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/lib/models/interfaces.ts +6 -6
  662. package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/StartOn.vue +88 -88
  663. package/components/common/pages/scheduledTasks/modals/common/newTaskForm/NewTaskForm.vue +293 -293
  664. package/components/common/pages/scheduledTasks/modals/common/newTaskForm/lib/models/interfaces.ts +3 -3
  665. package/components/common/pages/scheduledTasks/modals/common/newTaskForm/lib/utils.ts +67 -67
  666. package/components/common/pages/scheduledTasks/modals/lib/config/createScheduledTask.ts +23 -23
  667. package/components/common/pages/scheduledTasks/modals/lib/models/interfaces.ts +21 -21
  668. package/components/common/pages/scheduledTasks/modals/lib/utils.ts +7 -7
  669. package/components/common/pages/scheduledTasks/table/Table.vue +100 -100
  670. package/components/common/pages/scheduledTasks/table/detailsList/DetailsList.vue +78 -78
  671. package/components/common/pages/scheduledTasks/table/detailsList/Table.vue +63 -63
  672. package/components/common/pages/scheduledTasks/table/detailsList/lib/config/historyRunsTable.ts +107 -107
  673. package/components/common/pages/scheduledTasks/table/detailsList/lib/config/tableKeys.ts +8 -8
  674. package/components/common/pages/scheduledTasks/table/detailsList/lib/config/tasksRowDetails.ts +52 -52
  675. package/components/common/pages/scheduledTasks/table/detailsList/lib/models/types.ts +1 -1
  676. package/components/common/pages/scheduledTasks/table/lib/config/scheduledTasksTable.ts +129 -129
  677. package/components/common/pages/scheduledTasks/table/lib/config/schedulerStatus.ts +4 -4
  678. package/components/common/pages/scheduledTasks/table/lib/config/tableKeys.ts +9 -9
  679. package/components/common/pages/scheduledTasks/table/lib/models/interfaces.ts +11 -11
  680. package/components/common/pages/scheduledTasks/table/lib/models/types.ts +7 -7
  681. package/components/common/pages/shortcuts/Shortcuts.vue +67 -67
  682. package/components/common/pages/shortcuts/block/Block.vue +39 -39
  683. package/components/common/pages/shortcuts/block/BlockNew.vue +104 -104
  684. package/components/common/pages/shortcuts/block/BlockOld.vue +73 -73
  685. package/components/common/pages/shortcuts/category/Category.vue +26 -26
  686. package/components/common/pages/shortcuts/category/CategoryNew.vue +41 -41
  687. package/components/common/pages/shortcuts/category/CategoryOld.vue +41 -41
  688. package/components/common/pages/shortcuts/lib/models/interfaces.ts +13 -13
  689. package/components/common/pages/tasks/Tasks.vue +122 -122
  690. package/components/common/pages/tasks/table/Table.vue +352 -352
  691. package/components/common/pages/tasks/table/expandDetails/ExpandDetails.vue +197 -197
  692. package/components/common/pages/tasks/table/lib/config/config.ts +270 -270
  693. package/components/common/pages/tasks/table/lib/models/enums.ts +13 -13
  694. package/components/common/perPage/PerPage.vue +52 -52
  695. package/components/common/portlets/customAttributes/Portlet.vue +658 -658
  696. package/components/common/portlets/customAttributes/lib/config/config.ts +146 -146
  697. package/components/common/portlets/customAttributes/lib/models/interfaces.ts +5 -5
  698. package/components/common/portlets/tag/CreateCategory.vue +265 -265
  699. package/components/common/portlets/tag/Portlet.vue +444 -444
  700. package/components/common/portlets/tag/TagAddNew.vue +605 -605
  701. package/components/common/portlets/tag/lib/config/config.ts +210 -210
  702. package/components/common/portlets/tag/lib/models/interfaces.ts +27 -27
  703. package/components/common/portlets/tag/lib/models/types.ts +15 -15
  704. package/components/common/readyToComplete/New.vue +121 -121
  705. package/components/common/readyToComplete/Old.vue +15 -15
  706. package/components/common/recursionTree/RecursionTree.vue +210 -210
  707. package/components/common/recursionTree/lib/models/interfaces.ts +27 -27
  708. package/components/common/resource/lib/models/interfaces.ts +10 -10
  709. package/components/common/resource/lib/models/types.ts +1 -1
  710. package/components/common/resource/lib/utils.ts +44 -44
  711. package/components/common/resource/progressBlock/ProgressBlock.vue +142 -142
  712. package/components/common/resource/simple/Simple.vue +65 -65
  713. package/components/common/resource/simple/lib/models/enums.ts +6 -6
  714. package/components/common/select/button/ButtonDropdown.vue +112 -112
  715. package/components/common/select/button/lib/models/interfaces.ts +8 -8
  716. package/components/common/select/input/Input.vue +77 -77
  717. package/components/common/select/input/lib/models/interfaces.ts +6 -6
  718. package/components/common/select/radio/lib/models/interfaces.ts +11 -11
  719. package/components/common/selectLanguage/SelectLanguage.vue +200 -200
  720. package/components/common/selectLanguage/lib/config/config.ts +40 -40
  721. package/components/common/selectLanguage/lib/utils/utils.ts +5 -5
  722. package/components/common/spiceConsole/keyboard/Keyboard.vue +403 -403
  723. package/components/common/spiceConsole/keyboard/lib/config/keyboardRows.ts +966 -966
  724. package/components/common/spiceConsole/keyboard/lib/models/interfaces.ts +18 -18
  725. package/components/common/spiceConsole/lib/models/types.ts +1 -1
  726. package/components/common/spiceConsole/lib/utils/getDeviceType.ts +35 -35
  727. package/components/common/split/horizontal/Horizontal.vue +70 -70
  728. package/components/common/split/horizontal/HorizontalNew.vue +387 -387
  729. package/components/common/split/horizontal/HorizontalOld.vue +337 -337
  730. package/components/common/split/vertical/Vertical.vue +162 -162
  731. package/components/common/split/vertical/VerticalNew.vue +126 -126
  732. package/components/common/split/vertical/VerticalOld.vue +113 -113
  733. package/components/common/split/vertical/lib/models/interfaces.ts +3 -3
  734. package/components/common/summary/notification/Notification.vue +28 -28
  735. package/components/common/summary/notification/NotificationNew.vue +135 -135
  736. package/components/common/summary/notification/NotificationOld.vue +47 -47
  737. package/components/common/titleBar/titleBarNew/notification/Notification.vue +372 -372
  738. package/components/common/titleBar/titleBarNew/notification/lib/config/tabsData.ts +47 -47
  739. package/components/common/titleBar/titleBarNew/notification/lib/models/interfaces.ts +10 -10
  740. package/components/common/titleBar/titleBarNew/notification/lib/models/types.ts +3 -3
  741. package/components/common/tools/lib/models/interfaces.ts +10 -10
  742. package/components/common/tools/viewSettings/ViewSettings.vue +86 -86
  743. package/components/common/tools/viewSettings/lib/models/interfaces.ts +9 -9
  744. package/components/common/tooltip/Help.vue +182 -182
  745. package/components/common/vm/actions/add/Add.vue +850 -850
  746. package/components/common/vm/actions/add/New.vue +679 -679
  747. package/components/common/vm/actions/add/Old.vue +398 -398
  748. package/components/common/vm/actions/add/folderTreeView/Old.vue +50 -50
  749. package/components/common/vm/actions/add/lib/config/steps.ts +320 -320
  750. package/components/common/vm/actions/add/lib/utils.ts +103 -103
  751. package/components/common/vm/actions/clone/Clone.vue +841 -841
  752. package/components/common/vm/actions/clone/lib/config/steps.ts +291 -291
  753. package/components/common/vm/actions/clone/lib/models/interfaces.ts +6 -6
  754. package/components/common/vm/actions/clone/lib/utils.ts +43 -43
  755. package/components/common/vm/actions/clone/toTemplate/ToTemplate.vue +644 -644
  756. package/components/common/vm/actions/clone/toTemplate/lib/config/steps.ts +118 -118
  757. package/components/common/vm/actions/clone/toTemplate/lib/models/interfaces.ts +14 -14
  758. package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +308 -308
  759. package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareNew.vue +373 -373
  760. package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareOld.vue +205 -205
  761. package/components/common/vm/actions/common/customizeHardware/lib/config/navItems.ts +36 -36
  762. package/components/common/vm/actions/common/customizeHardware/lib/models/interfaces.ts +7 -7
  763. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +728 -728
  764. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareNew.vue +523 -523
  765. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareOld.vue +339 -339
  766. package/components/common/vm/actions/common/customizeHardware/virtualHardware/browseView/BrowseView.vue +234 -234
  767. package/components/common/vm/actions/common/customizeHardware/virtualHardware/browseView/lib/models/interfaces.ts +8 -8
  768. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/Bus.vue +110 -110
  769. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusNew.vue +70 -70
  770. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusOld.vue +117 -117
  771. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/lib/config/options.ts +20 -20
  772. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +239 -239
  773. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveNew.vue +235 -235
  774. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveOld.vue +175 -175
  775. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/config/fileTypes.ts +9 -9
  776. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/config/options.ts +11 -11
  777. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/models/types.ts +1 -1
  778. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +30 -30
  779. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/MediaNew.vue +84 -84
  780. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/MediaOld.vue +56 -56
  781. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuNew.vue +248 -248
  782. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuOld.vue +189 -189
  783. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Hv.vue +99 -99
  784. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Iommu.vue +55 -55
  785. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Pc.vue +55 -55
  786. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Sa.vue +106 -106
  787. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocket.vue +86 -86
  788. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocketNew.vue +72 -72
  789. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocketOld.vue +66 -66
  790. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/hotPlug/HotPlug.vue +40 -40
  791. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/hotPlug/HotPlugNew.vue +37 -37
  792. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/hotPlug/HotPlugOld.vue +49 -49
  793. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/lib/config/cpuOptions.ts +21 -21
  794. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/maxCpu/MaxCpu.vue +94 -94
  795. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/maxCpu/MaxCpuNew.vue +44 -44
  796. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/maxCpu/MaxCpuOld.vue +54 -54
  797. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/Model.vue +124 -124
  798. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/ModelNew.vue +133 -133
  799. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/ModelOld.vue +171 -171
  800. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/SharesNew.vue +68 -68
  801. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/SharesOld.vue +79 -79
  802. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/Tooltip.vue +25 -25
  803. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/TooltipNew.vue +155 -155
  804. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/TooltipOld.vue +59 -59
  805. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/config/binaryOptions.ts +12 -12
  806. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/config/dropdownItems.ts +156 -156
  807. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces.ts +118 -118
  808. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/types.ts +7 -7
  809. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +221 -221
  810. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/LimitNew.vue +78 -78
  811. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/LimitOld.vue +78 -78
  812. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/lib/config/options.ts +29 -29
  813. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +313 -313
  814. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryNew.vue +158 -158
  815. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryOld.vue +155 -155
  816. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlug.vue +29 -29
  817. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlugNew.vue +38 -38
  818. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlugOld.vue +45 -45
  819. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/lib/config/memoryOptions.ts +35 -35
  820. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +393 -393
  821. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskNew.vue +329 -329
  822. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskOld.vue +274 -274
  823. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/Cache.vue +63 -63
  824. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/CacheNew.vue +50 -50
  825. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/CacheOld.vue +61 -61
  826. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/lib/config/options.ts +12 -12
  827. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/File.vue +25 -25
  828. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/FileNew.vue +45 -45
  829. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/FileOld.vue +28 -28
  830. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIops.vue +103 -103
  831. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIopsNew.vue +69 -69
  832. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIopsOld.vue +92 -92
  833. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/lib/config/options.ts +31 -31
  834. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/LocationNew.vue +82 -82
  835. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/LocationOld.vue +88 -88
  836. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/Old.vue +54 -54
  837. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/StorageModal.vue +61 -61
  838. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/new/New.vue +134 -134
  839. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/new/lib/config/table.ts +15 -15
  840. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSize.vue +26 -26
  841. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSizeNew.vue +51 -51
  842. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSizeOld.vue +28 -28
  843. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/Mode.vue +65 -65
  844. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/ModeNew.vue +51 -51
  845. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/ModeOld.vue +60 -60
  846. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/lib/config/options.ts +18 -18
  847. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/Provisioning.vue +61 -61
  848. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/ProvisioningNew.vue +55 -55
  849. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/ProvisioningOld.vue +61 -61
  850. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/lib/config/options.ts +15 -15
  851. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/Sharing.vue +63 -63
  852. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/SharingNew.vue +55 -55
  853. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/SharingOld.vue +61 -61
  854. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/lib/config/options.ts +12 -12
  855. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +293 -293
  856. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkNew.vue +134 -134
  857. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkOld.vue +131 -131
  858. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterType.vue +60 -60
  859. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterTypeNew.vue +57 -57
  860. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterTypeOld.vue +63 -63
  861. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/lib/config/options.ts +9 -9
  862. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/Location.vue +71 -71
  863. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/LocationOld.vue +134 -134
  864. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/New.vue +106 -106
  865. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/table/lib/config/config.ts +94 -94
  866. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddressNew.vue +66 -66
  867. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddressOld.vue +84 -84
  868. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/lib/config/options.ts +11 -11
  869. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +210 -210
  870. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDeviceNew.vue +94 -94
  871. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDeviceOld.vue +98 -98
  872. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIo.vue +29 -29
  873. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIoNew.vue +69 -69
  874. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIoOld.vue +65 -65
  875. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/DynamicDirectPathIoNew.vue +86 -86
  876. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/DynamicDirectPathIoOld.vue +79 -79
  877. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/lib/config/options.ts +10 -10
  878. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/lib/config/options.ts +14 -14
  879. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/note/Note.vue +22 -22
  880. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/note/NoteNew.vue +49 -49
  881. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/note/NoteOld.vue +37 -37
  882. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGrid.vue +41 -41
  883. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGridNew.vue +83 -83
  884. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGridOld.vue +87 -87
  885. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/typeSelection/TypeSelection.vue +35 -35
  886. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/typeSelection/TypeSelectionNew.vue +49 -49
  887. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/typeSelection/TypeSelectionOld.vue +49 -49
  888. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbController.vue +58 -58
  889. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbControllerNew.vue +65 -65
  890. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbControllerOld.vue +61 -61
  891. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/lib/config/options.ts +6 -6
  892. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/OtherNew.vue +36 -36
  893. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/OtherOld.vue +32 -32
  894. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/inputDevices/InputDevices.vue +15 -15
  895. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/inputDevices/InputDevicesNew.vue +48 -48
  896. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/inputDevices/InputDevicesOld.vue +24 -24
  897. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +197 -197
  898. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/ReservationNew.vue +111 -111
  899. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/ReservationOld.vue +107 -107
  900. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/lib/config/options.ts +33 -33
  901. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/Graphics.vue +53 -53
  902. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCard.vue +162 -162
  903. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCardNew.vue +121 -121
  904. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCardOld.vue +120 -120
  905. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/lib/config/options.ts +14 -14
  906. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/Model.vue +37 -37
  907. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/ModelNew.vue +47 -47
  908. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/ModelOld.vue +47 -47
  909. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/lib/config/options.ts +13 -13
  910. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplaysNew.vue +55 -55
  911. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplaysOld.vue +59 -59
  912. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemory.vue +107 -107
  913. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemoryNew.vue +53 -53
  914. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemoryOld.vue +67 -67
  915. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/lib/config/options.ts +2 -2
  916. package/components/common/vm/actions/common/customizeHardware/vmoptions/Vmoptions.vue +163 -163
  917. package/components/common/vm/actions/common/customizeHardware/vmoptions/VmoptionsNew.vue +138 -138
  918. package/components/common/vm/actions/common/customizeHardware/vmoptions/VmoptionsOld.vue +120 -120
  919. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptions.vue +110 -110
  920. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptionsNew.vue +85 -85
  921. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptionsOld.vue +91 -91
  922. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Secure.vue +55 -52
  923. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/DelayNew.vue +44 -44
  924. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/DelayOld.vue +46 -46
  925. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/lib/config/config.ts +14 -14
  926. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/FirmwareNew.vue +50 -50
  927. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/FirmwareOld.vue +61 -61
  928. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/lib/config/config.ts +11 -11
  929. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/Menu.vue +26 -26
  930. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/MenuNew.vue +34 -34
  931. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/MenuOld.vue +44 -44
  932. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/OrderNew.vue +74 -74
  933. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/OrderOld.vue +66 -66
  934. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/lib/models/interfaces.ts +9 -9
  935. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +101 -101
  936. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptionsNew.vue +173 -173
  937. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptionsOld.vue +170 -170
  938. package/components/common/vm/actions/common/customizeHardware/vmoptions/lib/models/interfaces.ts +34 -34
  939. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/New.vue +148 -148
  940. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/Old.vue +141 -141
  941. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PlaybackCompression.vue +55 -55
  942. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PowerControl.vue +53 -53
  943. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/RemoteConsoleOptions.vue +178 -178
  944. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPaste.vue +26 -26
  945. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPasteNew.vue +34 -34
  946. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPasteOld.vue +44 -44
  947. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransfer.vue +26 -26
  948. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransferNew.vue +34 -34
  949. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransferOld.vue +44 -44
  950. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/folderSharing/FolderSharing.vue +20 -20
  951. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/folderSharing/FolderSharingNew.vue +34 -34
  952. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/folderSharing/FolderSharingOld.vue +40 -40
  953. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/ImgCompression.vue +88 -88
  954. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/lib/config/config.ts +14 -14
  955. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/JpegCompression.vue +88 -88
  956. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/lib/config/config.ts +12 -12
  957. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/KeymapNew.vue +45 -45
  958. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/KeymapOld.vue +47 -47
  959. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/lib/config/config.ts +6 -6
  960. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/MouseMode.vue +60 -60
  961. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/lib/config/config.ts +11 -11
  962. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/PasswordNew.vue +131 -131
  963. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/PasswordOld.vue +97 -97
  964. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/lib/models/interfaces.ts +5 -5
  965. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/lib/utils.ts +24 -24
  966. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/SharePolicy.vue +59 -59
  967. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/lib/config/config.ts +11 -11
  968. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/StreamingMode.vue +88 -88
  969. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/lib/config/config.ts +12 -12
  970. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/type/Type.vue +88 -88
  971. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/type/lib/config/config.ts +7 -7
  972. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirectionNew.vue +45 -45
  973. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirectionOld.vue +47 -47
  974. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/lib/config/config.ts +14 -14
  975. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/ZlibCompression.vue +88 -88
  976. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/lib/config/config.ts +12 -12
  977. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/Tools.vue +49 -49
  978. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/ToolsNew.vue +45 -45
  979. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/ToolsOld.vue +60 -60
  980. package/components/common/vm/actions/common/lib/config/capabilities.ts +361 -361
  981. package/components/common/vm/actions/common/lib/models/enums.ts +123 -123
  982. package/components/common/vm/actions/common/lib/models/interfaces.ts +156 -156
  983. package/components/common/vm/actions/common/lib/models/types.ts +67 -67
  984. package/components/common/vm/actions/common/lib/utils/capabilities.ts +56 -56
  985. package/components/common/vm/actions/common/select/compatibility/Compatibility.vue +107 -107
  986. package/components/common/vm/actions/common/select/compatibility/New.vue +179 -179
  987. package/components/common/vm/actions/common/select/computeResource/Old.vue +99 -99
  988. package/components/common/vm/actions/common/select/computeResource/lib/ComputeResource.spec.ts +479 -479
  989. package/components/common/vm/actions/common/select/computeResource/treeView/New.vue +51 -51
  990. package/components/common/vm/actions/common/select/computeResource/treeView/Old.vue +51 -51
  991. package/components/common/vm/actions/common/select/createType/New.vue +103 -103
  992. package/components/common/vm/actions/common/select/createType/Old.vue +70 -70
  993. package/components/common/vm/actions/common/select/createType/lib/config/items.ts +48 -48
  994. package/components/common/vm/actions/common/select/lib/models/interfaces.ts +34 -34
  995. package/components/common/vm/actions/common/select/lib/models/types.ts +27 -27
  996. package/components/common/vm/actions/common/select/name/New.vue +232 -232
  997. package/components/common/vm/actions/common/select/name/Old.vue +124 -124
  998. package/components/common/vm/actions/common/select/options/New.vue +227 -227
  999. package/components/common/vm/actions/common/select/options/Old.vue +75 -75
  1000. package/components/common/vm/actions/common/select/options/Options.vue +38 -38
  1001. package/components/common/vm/actions/common/select/os/New.vue +129 -129
  1002. package/components/common/vm/actions/common/select/storage/Old.vue +132 -132
  1003. package/components/common/vm/actions/common/select/storage/Storage.vue +164 -164
  1004. package/components/common/vm/actions/common/select/storage/lib/config/config.ts +206 -206
  1005. package/components/common/vm/actions/common/select/storage/lib/models/types.ts +15 -15
  1006. package/components/common/vm/actions/common/select/storage/new/lib/config/table.ts +337 -337
  1007. package/components/common/vm/actions/common/select/template/Template.vue +77 -77
  1008. package/components/common/vm/actions/common/select/template/new/New.vue +59 -59
  1009. package/components/common/vm/actions/common/select/template/treeView/New.vue +115 -115
  1010. package/components/common/vm/actions/common/select/template/treeView/Old.vue +51 -51
  1011. package/components/common/vm/actions/common/select/template/treeView/TreeView.vue +87 -87
  1012. package/components/common/vm/actions/confirm/Confirm.vue +37 -37
  1013. package/components/common/vm/actions/editSettings/EditSettings.vue +252 -252
  1014. package/components/common/vm/actions/editSettings/EditSettingsOld.vue +200 -200
  1015. package/components/common/vm/actions/editSettings/lib/config/modal.ts +12 -12
  1016. package/components/common/vm/actions/editSettings/lib/models/types.ts +23 -23
  1017. package/components/common/vm/actions/editSettings/lib/utils.ts +42 -42
  1018. package/components/common/vm/actions/editSettings/new/New.vue +201 -201
  1019. package/components/common/vm/actions/lib/models/interfaces.ts +40 -40
  1020. package/components/common/vm/actions/lib/models/types.ts +11 -11
  1021. package/components/common/vm/actions/lib/utils.ts +239 -239
  1022. package/components/common/vm/lib/models/interfaces.ts +9 -9
  1023. package/components/common/vm/lib/utils/powerActions.ts +55 -55
  1024. package/components/common/vmt/actions/add/Add.vue +548 -548
  1025. package/components/common/vmt/actions/add/New.vue +346 -346
  1026. package/components/common/vmt/actions/add/Old.vue +305 -305
  1027. package/components/common/vmt/actions/add/lib/config/steps.ts +107 -107
  1028. package/components/common/vmt/actions/add/lib/models/interfaces.ts +23 -23
  1029. package/components/common/weekSelect/WeekSelect.vue +143 -143
  1030. package/components/common/weekSelect/lib/config/options.ts +10 -10
  1031. package/components/common/weekSelect/lib/models/interfaces.ts +6 -6
  1032. package/components/common/wizards/datastore/add/Add.vue +224 -224
  1033. package/components/common/wizards/datastore/add/New.vue +259 -259
  1034. package/components/common/wizards/datastore/add/Old.vue +129 -129
  1035. package/components/common/wizards/datastore/add/lib/config/createDatastore.ts +16 -16
  1036. package/components/common/wizards/datastore/add/lib/config/steps.ts +175 -175
  1037. package/components/common/wizards/datastore/add/lib/models/enums.ts +5 -5
  1038. package/components/common/wizards/datastore/add/lib/models/interfaces.ts +22 -22
  1039. package/components/common/wizards/datastore/add/lib/models/types.ts +7 -7
  1040. package/components/common/wizards/datastore/add/lib/utils.ts +63 -63
  1041. package/components/common/wizards/datastore/add/lib/validations.ts +199 -199
  1042. package/components/common/wizards/datastore/add/steps/_kerberosAuthentication/KerberosAuthentication.vue +56 -56
  1043. package/components/common/wizards/datastore/add/steps/_kerberosAuthentication/lib/config/radioOptions.ts +27 -27
  1044. package/components/common/wizards/datastore/add/steps/_local/Local.vue +46 -46
  1045. package/components/common/wizards/datastore/add/steps/_local/createName/CreateName.vue +116 -116
  1046. package/components/common/wizards/datastore/add/steps/_nfsVersion/NfsVersion.vue +24 -24
  1047. package/components/common/wizards/datastore/add/steps/_nfsVersion/lib/config/versionOptions.ts +23 -23
  1048. package/components/common/wizards/datastore/add/steps/_partitionConfiguration/PartitionConfiguration.vue +245 -245
  1049. package/components/common/wizards/datastore/add/steps/_partitionConfiguration/graphicTooltip/graphicTooltip.vue +64 -64
  1050. package/components/common/wizards/datastore/add/steps/_partitionConfiguration/lib/config/selectOptions.ts +46 -46
  1051. package/components/common/wizards/datastore/add/steps/_partitionConfiguration/sizeGraphic/sizeGraphic.vue +225 -225
  1052. package/components/common/wizards/datastore/add/steps/_vmfsVersion/Version.vue +29 -29
  1053. package/components/common/wizards/datastore/add/steps/_vmfsVersion/lib/config/versionOptions.ts +21 -21
  1054. package/components/common/wizards/datastore/add/steps/hostAccessibility/HostAccessibility.vue +59 -59
  1055. package/components/common/wizards/datastore/add/steps/hostAccessibility/HostAccessibilityNew.vue +54 -54
  1056. package/components/common/wizards/datastore/add/steps/hostAccessibility/HostAccessibilityOld.vue +55 -55
  1057. package/components/common/wizards/datastore/add/steps/hostAccessibility/lib/config/tabsPannel.ts +30 -30
  1058. package/components/common/wizards/datastore/add/steps/hostAccessibility/lib/models/types.ts +3 -3
  1059. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/Table.vue +39 -39
  1060. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/lib/models/interfaces.ts +11 -11
  1061. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/new/New.vue +119 -119
  1062. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/new/lib/config/compatibleTable.ts +83 -83
  1063. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/Old.vue +90 -90
  1064. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/config/compatibleTable.ts +58 -58
  1065. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/config/incompatibleTable.ts +68 -68
  1066. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/config/tableKeys.ts +15 -15
  1067. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/models/types.ts +6 -6
  1068. package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigure.vue +50 -50
  1069. package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureNew.vue +232 -232
  1070. package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureOld.vue +230 -230
  1071. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/DeletePopover.vue +99 -99
  1072. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/ServersList.vue +129 -129
  1073. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/lib/config/serversListConfig.ts +43 -43
  1074. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/lib/config/tableKeys.ts +3 -3
  1075. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/lib/models/interfaces.ts +3 -3
  1076. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/lib/models/types.ts +1 -1
  1077. package/components/common/wizards/datastore/add/steps/nameAndConfigure/lib/models/interfaces.ts +5 -5
  1078. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDevice.vue +148 -148
  1079. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +227 -227
  1080. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceOld.vue +226 -226
  1081. package/components/common/wizards/datastore/add/steps/nameAndDevice/lib/config/selectOptions.ts +13 -13
  1082. package/components/common/wizards/datastore/add/steps/nameAndDevice/lib/models/interfaces.ts +16 -16
  1083. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/Table.vue +73 -73
  1084. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/lib/models/interfaces.ts +15 -15
  1085. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/new/New.vue +166 -166
  1086. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/new/lib/config/lunDiskTable.ts +185 -185
  1087. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/new/lib/models/enums.ts +16 -16
  1088. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/old/Old.vue +99 -99
  1089. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/old/lib/config/lunDiskTable.ts +91 -91
  1090. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/old/lib/config/tableKeys.ts +11 -11
  1091. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/old/lib/models/types.ts +9 -9
  1092. package/components/common/wizards/datastore/add/steps/readyComplete/ReadyComplete.vue +44 -44
  1093. package/components/common/wizards/datastore/add/steps/readyComplete/ReadyCompleteNew.vue +164 -164
  1094. package/components/common/wizards/datastore/add/steps/readyComplete/ReadyCompleteOld.vue +103 -103
  1095. package/components/common/wizards/datastore/add/steps/readyComplete/lib/config/propertiesDetails.ts +160 -160
  1096. package/components/common/wizards/datastore/add/steps/typeMode/TypeMode.vue +35 -35
  1097. package/components/common/wizards/datastore/add/steps/typeMode/TypeModeNew.vue +101 -101
  1098. package/components/common/wizards/datastore/add/steps/typeMode/TypeModeOld.vue +71 -71
  1099. package/components/common/wizards/network/add/Add.vue +864 -864
  1100. package/components/common/wizards/network/add/AddNew.vue +514 -514
  1101. package/components/common/wizards/network/add/AddOld.vue +457 -457
  1102. package/components/common/wizards/network/add/lib/config/config.ts +46 -46
  1103. package/components/common/wizards/network/add/lib/config/initialData.ts +62 -62
  1104. package/components/common/wizards/network/add/lib/config/portPropertiesStep.ts +43 -43
  1105. package/components/common/wizards/network/add/lib/config/selectConnectionTypeStep.ts +31 -31
  1106. package/components/common/wizards/network/add/lib/config/selectSwitch.ts +236 -236
  1107. package/components/common/wizards/network/add/lib/config/sendData.ts +141 -141
  1108. package/components/common/wizards/network/add/lib/config/steps.ts +497 -497
  1109. package/components/common/wizards/network/add/lib/models/enums.ts +17 -17
  1110. package/components/common/wizards/network/add/lib/models/interfaces.ts +258 -258
  1111. package/components/common/wizards/network/add/lib/models/types.ts +14 -14
  1112. package/components/common/wizards/network/add/lib/utils/utils.ts +4 -4
  1113. package/components/common/wizards/network/add/mappers/mappers.ts +192 -192
  1114. package/components/common/wizards/network/add/steps/ConnectionSettings.vue +154 -154
  1115. package/components/common/wizards/network/add/steps/CreateStandardSwitch.vue +91 -91
  1116. package/components/common/wizards/network/add/steps/IpFourSettings.vue +309 -309
  1117. package/components/common/wizards/network/add/steps/PhysicalAdapter.vue +13 -13
  1118. package/components/common/wizards/network/add/steps/PortProperties.vue +411 -411
  1119. package/components/common/wizards/network/add/steps/ReadyComplete.vue +20 -20
  1120. package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionType.vue +35 -35
  1121. package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionTypeNew.vue +104 -104
  1122. package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionTypeOld.vue +79 -79
  1123. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDevice.vue +183 -183
  1124. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue +393 -393
  1125. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue +370 -370
  1126. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/Modals.vue +55 -55
  1127. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectNetwork.vue +64 -64
  1128. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectStandardSwitch.vue +64 -64
  1129. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectSwitch.vue +64 -64
  1130. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectNetwork.vue +163 -163
  1131. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectStandardSwitch.vue +163 -163
  1132. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectSwitch.vue +163 -163
  1133. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/old/SelectNetwork.vue +175 -175
  1134. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/old/SelectStandardSwitch.vue +129 -129
  1135. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/old/SelectSwitch.vue +132 -132
  1136. package/components/common/wizards/network/add/validations/common.ts +26 -26
  1137. package/components/common/wizards/network/add/validations/connectionSettings.ts +70 -70
  1138. package/components/common/wizards/network/add/validations/createStandardSwitch.ts +59 -59
  1139. package/components/common/wizards/network/add/validations/ipFourSettings.ts +182 -182
  1140. package/components/common/wizards/network/add/validations/networkValidation.ts +77 -77
  1141. package/components/common/wizards/network/add/validations/physicalAdapter.ts +70 -70
  1142. package/components/common/wizards/network/add/validations/portProperties.ts +83 -83
  1143. package/components/common/wizards/network/add/validations/targetDevice.ts +110 -110
  1144. package/components/common/wizards/network/add/validations/validations.ts +43 -43
  1145. package/components/common/wizards/vm/common/computeResource/TreeView.vue +58 -58
  1146. package/components/common/wizards/vm/common/tooltip/Tooltip.vue +84 -84
  1147. package/components/common/wizards/vm/common/validation/compatibility/Compatibility.vue +62 -62
  1148. package/components/common/wizards/vm/common/validation/lib/models/enums.ts +5 -5
  1149. package/components/common/wizards/vm/migrate/Migrate.vue +353 -353
  1150. package/components/common/wizards/vm/migrate/lib/config/constructDataReady.ts +221 -221
  1151. package/components/common/wizards/vm/migrate/lib/config/steps.ts +157 -157
  1152. package/components/common/wizards/vm/migrate/lib/models/enums.ts +12 -12
  1153. package/components/common/wizards/vm/migrate/lib/models/interfaces.ts +35 -35
  1154. package/components/common/wizards/vm/migrate/lib/validations.ts +68 -68
  1155. package/components/common/wizards/vm/migrate/select/computeResource/ComputeResource.vue +195 -195
  1156. package/components/common/wizards/vm/migrate/select/computeResource/lib/config/tabsPannel.ts +39 -39
  1157. package/components/common/wizards/vm/migrate/select/computeResource/lib/models/enums.ts +6 -6
  1158. package/components/common/wizards/vm/migrate/select/computeResource/lib/models/interfaces.ts +31 -31
  1159. package/components/common/wizards/vm/migrate/select/computeResource/lib/models/types.ts +12 -12
  1160. package/components/common/wizards/vm/migrate/select/computeResource/tableView/TableView.vue +138 -138
  1161. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/clusterTable.ts +170 -170
  1162. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/hostTable.ts +170 -170
  1163. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/resourcePoolTable.ts +155 -155
  1164. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/tableKeys.ts +65 -65
  1165. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/vappsTable.ts +93 -93
  1166. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/models/interfaces.ts +50 -50
  1167. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/models/types.ts +60 -60
  1168. package/components/common/wizards/vm/migrate/select/network/lib/models/interfaces.ts +4 -4
  1169. package/components/common/wizards/vm/migrate/select/network/table/network/Network.vue +150 -150
  1170. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/advancedTable.ts +91 -91
  1171. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/basicTable.ts +70 -70
  1172. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/tableKeys.ts +13 -13
  1173. package/components/common/wizards/vm/migrate/select/network/table/network/lib/models/interfaces.ts +12 -12
  1174. package/components/common/wizards/vm/migrate/select/network/table/network/lib/models/types.ts +21 -21
  1175. package/components/common/wizards/vm/migrate/select/network/table/useAt/UseAt.vue +54 -54
  1176. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/config/tableKeys.ts +7 -7
  1177. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/config/useAtTable.ts +47 -47
  1178. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/models/interfaces.ts +1 -1
  1179. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/models/types.ts +5 -5
  1180. package/components/common/wizards/vm/migrate/select/priority/Priority.vue +43 -43
  1181. package/components/common/wizards/vm/migrate/select/priority/lib/config/typeOptions.ts +31 -31
  1182. package/components/common/wizards/vm/migrate/select/priority/lib/models/types.ts +1 -1
  1183. package/components/common/wizards/vm/migrate/select/storage/Storage.vue +174 -174
  1184. package/components/common/wizards/vm/migrate/select/storage/configure/batch/Batch.vue +68 -68
  1185. package/components/common/wizards/vm/migrate/select/storage/configure/batch/config/virtualDiskFormat.ts +31 -31
  1186. package/components/common/wizards/vm/migrate/select/storage/configure/batch/table/Table.vue +128 -128
  1187. package/components/common/wizards/vm/migrate/select/storage/configure/batch/table/lib/config/datastoreTable.ts +177 -177
  1188. package/components/common/wizards/vm/migrate/select/storage/configure/batch/table/lib/models/types.ts +15 -15
  1189. package/components/common/wizards/vm/migrate/select/storage/configure/disk/Disk.vue +68 -68
  1190. package/components/common/wizards/vm/migrate/select/storage/configure/disk/table/Table.vue +74 -74
  1191. package/components/common/wizards/vm/migrate/select/storage/configure/disk/table/lib/config/diskTable.ts +136 -136
  1192. package/components/common/wizards/vm/migrate/select/storage/configure/disk/table/lib/config/tableKeys.ts +15 -15
  1193. package/components/common/wizards/vm/migrate/select/storage/configure/disk/table/lib/models/interfaces.ts +29 -29
  1194. package/components/common/wizards/vm/migrate/select/storage/configure/disk/table/lib/models/types.ts +13 -13
  1195. package/components/common/wizards/vm/migrate/select/storage/lib/config/tabsPannel.ts +21 -21
  1196. package/components/common/wizards/vm/migrate/select/storage/lib/models/enums.ts +6 -6
  1197. package/components/common/wizards/vm/migrate/select/storage/lib/models/types.ts +9 -9
  1198. package/components/common/wizards/vm/migrate/select/storage/policy/Policy.vue +84 -84
  1199. package/components/common/wizards/vm/migrate/select/storage/selectedPerDisk/SelectedPerDisk.vue +80 -80
  1200. package/components/common/wizards/vm/migrate/select/targetServer/lib/config/tabsPannel.ts +19 -19
  1201. package/components/common/wizards/vm/migrate/select/targetServer/lib/models/types.ts +1 -1
  1202. package/components/common/wizards/vm/migrate/select/targetServer/new/New.vue +258 -258
  1203. package/components/common/wizards/vm/migrate/select/targetServer/new/lib/models/interfaces.ts +11 -11
  1204. package/components/common/wizards/vm/migrate/select/targetServer/saved/Saved.vue +27 -27
  1205. package/components/common/wizards/vm/migrate/select/targetServer/targetServer.vue +51 -51
  1206. package/components/common/wizards/vm/migrate/select/type/Type.vue +27 -27
  1207. package/components/common/wizards/vm/migrate/select/type/lib/config/typeOptions.ts +49 -49
  1208. package/components/common/wizards/vm/migrate/select/type/lib/models/interfaces.ts +6 -6
  1209. package/components/common/wizards/vm/migrate/select/type/lib/models/types.ts +5 -5
  1210. package/components/common/wizards/vm/migrate/vmOrigin/VmOrigin.vue +96 -95
  1211. package/components/common/wizards/vm/migrate/vmOrigin/lib/models/interfaces.ts +20 -20
  1212. package/components/common/wizards/vm/migrate/vmOrigin/lib/utils/constructItems.ts +74 -74
  1213. package/components/content/Hint.vue +24 -24
  1214. package/components/lib/models/interfaces.ts +14 -14
  1215. package/composables/deepCopy.ts +21 -21
  1216. package/composables/useDiff.ts +15 -15
  1217. package/composables/useEnvLanguage.ts +23 -23
  1218. package/composables/useLocalStorage.ts +45 -45
  1219. package/composables/useThrottle.ts +32 -32
  1220. package/composables/useUniqueId.ts +5 -5
  1221. package/eslint/index.js +15 -15
  1222. package/eslint/no-import-type.js +17 -17
  1223. package/eslint/no-invalid-type-prefix.js +32 -32
  1224. package/layouts/auth.vue +32 -32
  1225. package/lib/config/regExp.ts +18 -18
  1226. package/lib/config/uiTable.ts +20 -20
  1227. package/lib/models/composables/useAppVersion/interfaces.ts +5 -5
  1228. package/lib/models/composables/useMyFetch/interfaces.ts +25 -25
  1229. package/lib/models/composables/useMyFetch/types.ts +1 -1
  1230. package/lib/models/enums.ts +45 -45
  1231. package/lib/models/interfaces.ts +91 -91
  1232. package/lib/models/plugins/date/interfaces.ts +5 -5
  1233. package/lib/models/plugins/date/types.ts +1 -1
  1234. package/lib/models/plugins/panelStates/interfaces.ts +5 -5
  1235. package/lib/models/plugins/validation/interfaces.ts +21 -21
  1236. package/lib/models/plugins/validation/types.ts +1 -1
  1237. package/lib/models/store/host/interfaces.ts +38 -38
  1238. package/lib/models/store/interfaces.ts +45 -45
  1239. package/lib/models/store/network/interfaces.ts +13 -13
  1240. package/lib/models/store/storage/interfaces.ts +32 -32
  1241. package/lib/models/store/tasks/enums.ts +34 -34
  1242. package/lib/models/store/tasks/interfaces.ts +137 -137
  1243. package/lib/models/store/tasks/types.ts +2 -2
  1244. package/lib/models/store/types.ts +43 -43
  1245. package/lib/models/store/vm/interfaces.ts +397 -397
  1246. package/lib/models/table/interfaces.ts +57 -57
  1247. package/lib/models/table/types.ts +1 -1
  1248. package/lib/models/types.ts +58 -58
  1249. package/lib/utils/base64.ts +34 -34
  1250. package/lib/utils/contentBuild.ts +34 -34
  1251. package/lib/utils/date.ts +12 -12
  1252. package/lib/utils/localizationMapper.ts +30 -30
  1253. package/lib/utils/notification.ts +22 -22
  1254. package/lib/utils/sendTask.ts +73 -73
  1255. package/lib/utils/token.ts +34 -34
  1256. package/lib/utils/utils.ts +60 -60
  1257. package/minify.js +146 -146
  1258. package/modules/fixContentBuild/index.ts +91 -91
  1259. package/modules/fixContentBuild/lib/utils/methods.ts +115 -115
  1260. package/modules/fixSpiceConsoleBuild/index.ts +28 -28
  1261. package/modules/replaceEnv/index.ts +40 -40
  1262. package/modules/setLastUpdateTime/index.ts +36 -36
  1263. package/modules/setLastUpdateTime/lib/utils/methods.ts +31 -31
  1264. package/nuxt.config.ts +8 -8
  1265. package/package.json +42 -42
  1266. package/plugins/binary.ts +164 -164
  1267. package/plugins/console.ts +22 -22
  1268. package/plugins/cron.ts +75 -75
  1269. package/plugins/directives.ts +74 -74
  1270. package/plugins/helpers.ts +18 -18
  1271. package/plugins/number.ts +18 -18
  1272. package/plugins/recursion.ts +388 -388
  1273. package/plugins/spice-console/spice.console.ts +147 -147
  1274. package/plugins/time.ts +17 -17
  1275. package/plugins/validation.ts +178 -178
  1276. package/public/spice-console/application/WorkerProcess.js +3350 -3350
  1277. package/public/spice-console/application/WorkerProcess_back.js +3144 -3144
  1278. package/public/spice-console/application/WorkerProcess_meta.js +3103 -3103
  1279. package/public/spice-console/application/WorkerProcess_reverse.js +3214 -3214
  1280. package/public/spice-console/application/agent.js +178 -178
  1281. package/public/spice-console/application/application.js +641 -641
  1282. package/public/spice-console/application/checkActivity.js +50 -50
  1283. package/public/spice-console/application/clientgui.js +849 -849
  1284. package/public/spice-console/application/clipboard/clipboarddataparser.js +92 -92
  1285. package/public/spice-console/application/clipboard/local/localClipboard.js +110 -110
  1286. package/public/spice-console/application/clipboard.js +82 -82
  1287. package/public/spice-console/application/codec.js +264 -264
  1288. package/public/spice-console/application/imagecache.js +81 -81
  1289. package/public/spice-console/application/inputmanager.js +270 -270
  1290. package/public/spice-console/application/packetfactory.js +206 -206
  1291. package/public/spice-console/application/packetfilter.js +103 -103
  1292. package/public/spice-console/application/packetprocess.js +75 -75
  1293. package/public/spice-console/application/rasteroperation.js +118 -118
  1294. package/public/spice-console/application/spiceconnection.js +197 -197
  1295. package/public/spice-console/application/stream.js +67 -67
  1296. package/public/spice-console/application/virtualmouse.js +109 -109
  1297. package/public/spice-console/keymaps/keyevent.js +36 -36
  1298. package/public/spice-console/keymaps/keymap.js +229 -229
  1299. package/public/spice-console/keymaps/keymapes.js +375 -375
  1300. package/public/spice-console/keymaps/keymapesObj.js +317 -317
  1301. package/public/spice-console/keymaps/keymapus.js +317 -317
  1302. package/public/spice-console/keymaps/scanCodeObjModifier.js +65 -65
  1303. package/public/spice-console/keymaps/scanCodeObjProvider.js +60 -60
  1304. package/public/spice-console/lib/AsyncConsumer.js +204 -204
  1305. package/public/spice-console/lib/AsyncWorker.js +60 -60
  1306. package/public/spice-console/lib/CollisionDetector.js +27 -27
  1307. package/public/spice-console/lib/DataLogger.js +197 -197
  1308. package/public/spice-console/lib/GenericObjectPool.js +152 -152
  1309. package/public/spice-console/lib/GlobalPool.js +114 -114
  1310. package/public/spice-console/lib/ImageUncompressor.js +138 -138
  1311. package/public/spice-console/lib/IntegrationBenchmark.js +64 -64
  1312. package/public/spice-console/lib/PacketWorkerIdentifier.js +107 -107
  1313. package/public/spice-console/lib/SyncAsyncHandler.js +46 -46
  1314. package/public/spice-console/lib/base64.js +298 -298
  1315. package/public/spice-console/lib/biginteger.js +1640 -1640
  1316. package/public/spice-console/lib/bowser.js +276 -276
  1317. package/public/spice-console/lib/decoder/dixie.js +7930 -7930
  1318. package/public/spice-console/lib/decoder/jmuxer.js +2815 -2815
  1319. package/public/spice-console/lib/displayRouter.js +83 -83
  1320. package/public/spice-console/lib/encrypt.js +191 -191
  1321. package/public/spice-console/lib/flipper.js +39 -39
  1322. package/public/spice-console/lib/graphic.js +1230 -1230
  1323. package/public/spice-console/lib/graphicdebug.js +223 -223
  1324. package/public/spice-console/lib/images/jsquic_family.js +83 -83
  1325. package/public/spice-console/lib/images/jsquic_rgba.js +342 -342
  1326. package/public/spice-console/lib/images/jsquic_uncompress.js +529 -529
  1327. package/public/spice-console/lib/images/lz.js +717 -717
  1328. package/public/spice-console/lib/images/png.js +275 -275
  1329. package/public/spice-console/lib/jgestures.min.js +43 -43
  1330. package/public/spice-console/lib/jquery-2.0.3.js +8829 -8829
  1331. package/public/spice-console/lib/jquery-mousewheel.js +83 -83
  1332. package/public/spice-console/lib/jquery-visibility.min.js +1 -1
  1333. package/public/spice-console/lib/jsbn.js +578 -578
  1334. package/public/spice-console/lib/jsbn2.js +675 -675
  1335. package/public/spice-console/lib/lodash.4.0.0.min.js +136 -136
  1336. package/public/spice-console/lib/modernizr.js +39 -39
  1337. package/public/spice-console/lib/pixastic.js +3244 -3244
  1338. package/public/spice-console/lib/prettyprint.js +794 -794
  1339. package/public/spice-console/lib/prng4.js +64 -64
  1340. package/public/spice-console/lib/queue.js +259 -259
  1341. package/public/spice-console/lib/rasterEngine.js +1024 -1024
  1342. package/public/spice-console/lib/rng.js +87 -87
  1343. package/public/spice-console/lib/runqueue.js +103 -103
  1344. package/public/spice-console/lib/sha1.js +124 -124
  1345. package/public/spice-console/lib/stuckkeyshandler.js +122 -122
  1346. package/public/spice-console/lib/timelapsedetector.js +62 -62
  1347. package/public/spice-console/lib/utils.js +327 -327
  1348. package/public/spice-console/lib/virtualjoystick.js +370 -370
  1349. package/public/spice-console/network/busconnection.js +195 -195
  1350. package/public/spice-console/network/clusternodechooser.js +49 -49
  1351. package/public/spice-console/network/connectioncontrol.js +60 -60
  1352. package/public/spice-console/network/packetcontroller.js +62 -62
  1353. package/public/spice-console/network/packetextractor.js +73 -73
  1354. package/public/spice-console/network/packetlinkfactory.js +64 -64
  1355. package/public/spice-console/network/packetreassembler.js +77 -77
  1356. package/public/spice-console/network/reassemblerfactory.js +39 -39
  1357. package/public/spice-console/network/sizedefiner.js +86 -86
  1358. package/public/spice-console/network/socket.js +120 -120
  1359. package/public/spice-console/network/socketqueue.js +95 -95
  1360. package/public/spice-console/network/websocketwrapper.js +75 -75
  1361. package/public/spice-console/process/busprocess.js +309 -309
  1362. package/public/spice-console/process/cursorprocess.js +111 -111
  1363. package/public/spice-console/process/displaypreprocess.js +152 -152
  1364. package/public/spice-console/process/displayprocess.js +210 -210
  1365. package/public/spice-console/process/inputprocess.js +203 -203
  1366. package/public/spice-console/process/mainprocess.js +78 -78
  1367. package/public/spice-console/process/playbackprocess.js +233 -233
  1368. package/public/spice-console/run.js +187 -187
  1369. package/public/spice-console/spiceobjects/generated/protocol.js +538 -538
  1370. package/public/spice-console/spiceobjects/spiceobjects.js +3488 -3488
  1371. package/public/spice-console/swcanvas/swcanvas.js +82 -82
  1372. package/public/spice-console/tools/generate.php +269 -269
  1373. package/public/spice-console/tools/generateKeyboardLayout.php +63 -63
  1374. package/public/spice-console/tools/generateSpiceObject.php +81 -81
  1375. package/store/main/actions.ts +8 -8
  1376. package/store/main/getters.ts +7 -7
  1377. package/store/main/lib/interfaces.ts +15 -15
  1378. package/store/main/store.ts +12 -12
  1379. package/store/storage/device/lib/models/interfaces.ts +26 -26
  1380. package/store/tasks/actions.ts +134 -134
  1381. package/store/tasks/getters.ts +25 -25
  1382. package/store/tasks/lib/models/enums.ts +9 -9
  1383. package/store/tasks/lib/models/interfaces.ts +18 -18
  1384. package/store/tasks/mappers/recentTasks.ts +90 -90
  1385. package/store/tasks/mappers/tasks.ts +45 -45
  1386. package/store/tasks/mutations.ts +58 -58
  1387. package/store/tasks/state.ts +16 -16
  1388. package/store/tasks/store.ts +12 -12
  1389. package/tsconfig.json +4 -4
@@ -1,2444 +1,2444 @@
1
- <template>
2
- <template v-if="props.name === 'menu'">
3
- <svg
4
- version="1.1"
5
- viewBox="0 0 36 36"
6
- preserveAspectRatio="xMidYMid meet"
7
- xmlns="http://www.w3.org/2000/svg"
8
- xmlns:xlink="http://www.w3.org/1999/xlink"
9
- focusable="false"
10
- role="img"
11
- >
12
- <path
13
- class="clr-i-outline clr-i-outline-path-1"
14
- d="M32,29H4a1,1,0,0,1,0-2H32a1,1,0,0,1,0,2Z"
15
- />
16
- <path
17
- class="clr-i-outline clr-i-outline-path-2"
18
- d="M32,19H4a1,1,0,0,1,0-2H32a1,1,0,0,1,0,2Z"
19
- />
20
- <path
21
- class="clr-i-outline clr-i-outline-path-3"
22
- d="M32,9H4A1,1,0,0,1,4,7H32a1,1,0,0,1,0,2Z"
23
- />
24
- </svg>
25
- </template>
26
- <template v-else-if="props.name === 'green-play'">
27
- <svg
28
- xmlns="http://www.w3.org/2000/svg"
29
- fill="#565656"
30
- viewBox="-1 -1 38 38"
31
- y="1748"
32
- >
33
- <path fill="none" d="M0 0h36v36H0z" />
34
- <path
35
- fill="#59a011"
36
- d="M7 32.2a1 1 0 01-.49-.13A1 1 0 016 31.2V5a1 1 0 011.51-.86l22 13.1a1 1 0 010 1.72l-22 13.1a.94.94 0 01-.51.14zM8 6.76v22.68L27.05 18.1z"
37
- />
38
- </svg>
39
- </template>
40
- <template v-else-if="props.name === 'reset'">
41
- <svg
42
- version="1.1"
43
- viewBox="0 0 36 36"
44
- preserveAspectRatio="xMidYMid meet"
45
- xmlns="http://www.w3.org/2000/svg"
46
- xmlns:xlink="http://www.w3.org/1999/xlink"
47
- focusable="false"
48
- role="img"
49
- >
50
- <path
51
- class="clr-i-outline clr-i-outline-path-1"
52
- d="M22.4,11.65a1.09,1.09,0,0,0,1.09,1.09H34.43V1.81a1.09,1.09,0,1,0-2.19,0V8.95a16.41,16.41,0,1,0,1.47,15.86,1.12,1.12,0,0,0-2.05-.9,14.18,14.18,0,1,1-1.05-13.36H23.5A1.09,1.09,0,0,0,22.4,11.65Z"
53
- />
54
- </svg>
55
- </template>
56
- <template v-else-if="props.name === 'user'">
57
- <svg
58
- version="1.1"
59
- class="can-badge can-alert has-solid"
60
- viewBox="0 0 36 36"
61
- preserveAspectRatio="xMidYMid meet"
62
- xmlns="http://www.w3.org/2000/svg"
63
- xmlns:xlink="http://www.w3.org/1999/xlink"
64
- focusable="false"
65
- role="img"
66
- >
67
- <path
68
- d="M18,17a7,7,0,1,0-7-7A7,7,0,0,0,18,17ZM18,5a5,5,0,1,1-5,5A5,5,0,0,1,18,5Z"
69
- class="clr-i-outline clr-i-outline-path-1"
70
- />
71
- <path
72
- d="M18,17a7,7,0,1,0-7-7A7,7,0,0,0,18,17ZM18,5a5,5,0,1,1-5,5A5,5,0,0,1,18,5Z"
73
- class="clr-i-outline clr-i-outline-path-1"
74
- />
75
- <path
76
- d="M30.47,24.37a17.16,17.16,0,0,0-24.93,0A2,2,0,0,0,5,25.74V31a2,2,0,0,0,2,2H29a2,2,0,0,0,2-2V25.74A2,2,0,0,0,30.47,24.37ZM29,31H7V25.73a15.17,15.17,0,0,1,22,0h0Z"
77
- class="clr-i-outline clr-i-outline-path-2"
78
- />
79
- </svg>
80
- </template>
81
- <template v-else-if="props.name === 'doubleArrows'">
82
- <svg
83
- version="1.1"
84
- viewBox="0 0 36 36"
85
- preserveAspectRatio="xMidYMid meet"
86
- xmlns="http://www.w3.org/2000/svg"
87
- xmlns:xlink="http://www.w3.org/1999/xlink"
88
- focusable="false"
89
- role="img"
90
- aria-labelledby="_clr_icon_37"
91
- >
92
- <path
93
- class="clr-i-outline clr-i-outline-path-1"
94
- d="M29,19.41a1,1,0,0,1-.71-.29L18,8.83,7.71,19.12a1,1,0,0,1-1.41-1.41L18,6,29.71,17.71A1,1,0,0,1,29,19.41Z"
95
- />
96
- <path
97
- class="clr-i-outline clr-i-outline-path-2"
98
- d="M29,30.41a1,1,0,0,1-.71-.29L18,19.83,7.71,30.12a1,1,0,0,1-1.41-1.41L18,17,29.71,28.71A1,1,0,0,1,29,30.41Z"
99
- />
100
- </svg>
101
- </template>
102
- <template v-else-if="props.name === 'angle'">
103
- <svg
104
- version="1.1"
105
- viewBox="0 0 36 36"
106
- preserveAspectRatio="xMidYMid meet"
107
- xmlns="http://www.w3.org/2000/svg"
108
- xmlns:xlink="http://www.w3.org/1999/xlink"
109
- focusable="false"
110
- role="img"
111
- >
112
- <path
113
- class="clr-i-outline clr-i-outline-path-1"
114
- d="M29.52,22.52,18,10.6,6.48,22.52a1.7,1.7,0,0,0,2.45,2.36L18,15.49l9.08,9.39a1.7,1.7,0,0,0,2.45-2.36Z"
115
- />
116
- </svg>
117
- </template>
118
- <template v-else-if="props.name === 'ellipsis-vertical'">
119
- <svg
120
- version="1.1"
121
- class="can-badge"
122
- viewBox="0 0 36 36"
123
- preserveAspectRatio="xMidYMid meet"
124
- xmlns="http://www.w3.org/2000/svg"
125
- xmlns:xlink="http://www.w3.org/1999/xlink"
126
- focusable="false"
127
- role="img"
128
- >
129
- <circle
130
- cx="18"
131
- cy="4.9"
132
- r="2.9"
133
- class="clr-i-outline clr-i-outline-path-1"
134
- />
135
- <circle
136
- cx="18"
137
- cy="18"
138
- r="2.9"
139
- class="clr-i-outline clr-i-outline-path-2"
140
- />
141
- <circle
142
- cx="18"
143
- cy="31.1"
144
- r="2.9"
145
- class="clr-i-outline clr-i-outline-path-3"
146
- />
147
- </svg>
148
- </template>
149
- <template v-else-if="props.name === 'close'">
150
- <svg
151
- version="1.1"
152
- viewBox="0 0 36 36"
153
- preserveAspectRatio="xMidYMid meet"
154
- xmlns="http://www.w3.org/2000/svg"
155
- xmlns:xlink="http://www.w3.org/1999/xlink"
156
- focusable="false"
157
- role="img"
158
- fill="#8c8c8c"
159
- >
160
- <path
161
- class="clr-i-outline clr-i-outline-path-1"
162
- d="M19.41,18l8.29-8.29a1,1,0,0,0-1.41-1.41L18,16.59,9.71,8.29A1,1,0,0,0,8.29,9.71L16.59,18,8.29,26.29a1,1,0,1,0,1.41,1.41L18,19.41l8.29,8.29a1,1,0,0,0,1.41-1.41Z"
163
- />
164
- </svg>
165
- </template>
166
- <template v-else-if="props.name === 'exclamation-circle'">
167
- <svg
168
- version="1.1"
169
- class="has-solid"
170
- viewBox="0 0 36 36"
171
- preserveAspectRatio="xMidYMid meet"
172
- xmlns="http://www.w3.org/2000/svg"
173
- xmlns:xlink="http://www.w3.org/1999/xlink"
174
- focusable="false"
175
- role="img"
176
- fill="red"
177
- >
178
- <path
179
- class="clr-i-outline clr-i-outline-path-1"
180
- d="M18,6A12,12,0,1,0,30,18,12,12,0,0,0,18,6Zm0,22A10,10,0,1,1,28,18,10,10,0,0,1,18,28Z"
181
- />
182
- <path
183
- class="clr-i-outline clr-i-outline-path-2"
184
- d="M18,20.07a1.3,1.3,0,0,1-1.3-1.3v-6a1.3,1.3,0,1,1,2.6,0v6A1.3,1.3,0,0,1,18,20.07Z"
185
- />
186
- <circle
187
- class="clr-i-outline clr-i-outline-path-3"
188
- cx="17.95"
189
- cy="23.02"
190
- r="1.5"
191
- />
192
- </svg>
193
- </template>
194
- <template v-else-if="props.name === 'exclamation-triangle'">
195
- <svg
196
- version="1.1"
197
- class="has-solid"
198
- viewBox="0 0 36 36"
199
- preserveAspectRatio="xMidYMid meet"
200
- xmlns="http://www.w3.org/2000/svg"
201
- xmlns:xlink="http://www.w3.org/1999/xlink"
202
- focusable="false"
203
- role="img"
204
- >
205
- <path
206
- class="clr-i-outline clr-i-outline-path-1"
207
- d="M18,21.32a1.3,1.3,0,0,0,1.3-1.3V14a1.3,1.3,0,1,0-2.6,0v6A1.3,1.3,0,0,0,18,21.32Z"
208
- />
209
- <circle
210
- class="clr-i-outline clr-i-outline-path-2"
211
- cx="17.95"
212
- cy="24.27"
213
- r="1.5"
214
- />
215
- <path
216
- class="clr-i-outline clr-i-outline-path-3"
217
- d="M30.33,25.54,20.59,7.6a3,3,0,0,0-5.27,0L5.57,25.54A3,3,0,0,0,8.21,30H27.69a3,3,0,0,0,2.64-4.43Zm-1.78,1.94a1,1,0,0,1-.86.49H8.21a1,1,0,0,1-.88-1.48L17.07,8.55a1,1,0,0,1,1.76,0l9.74,17.94A1,1,0,0,1,28.55,27.48Z"
218
- />
219
- </svg>
220
- </template>
221
- <template v-else-if="props.name === 'info-circle'">
222
- <svg
223
- version="1.1"
224
- class="has-solid"
225
- viewBox="0 0 36 36"
226
- preserveAspectRatio="xMidYMid meet"
227
- xmlns="http://www.w3.org/2000/svg"
228
- xmlns:xlink="http://www.w3.org/1999/xlink"
229
- focusable="false"
230
- role="img"
231
- >
232
- <circle
233
- class="clr-i-outline clr-i-outline-path-1"
234
- cx="17.93"
235
- cy="11.9"
236
- r="1.4"
237
- />
238
- <path
239
- class="clr-i-outline clr-i-outline-path-2"
240
- d="M21,23H19V15H16a1,1,0,0,0,0,2h1v6H15a1,1,0,1,0,0,2h6a1,1,0,0,0,0-2Z"
241
- />
242
- <path
243
- class="clr-i-outline clr-i-outline-path-3"
244
- d="M18,6A12,12,0,1,0,30,18,12,12,0,0,0,18,6Zm0,22A10,10,0,1,1,28,18,10,10,0,0,1,18,28Z"
245
- />
246
- </svg>
247
- </template>
248
- <template v-else-if="props.name === 'warning'">
249
- <svg
250
- version="1.1"
251
- class="has-solid"
252
- viewBox="0 0 36 36"
253
- preserveAspectRatio="xMidYMid meet"
254
- xmlns="http://www.w3.org/2000/svg"
255
- xmlns:xlink="http://www.w3.org/1999/xlink"
256
- focusable="false"
257
- role="img"
258
- fill="#c27b00"
259
- >
260
- <path
261
- class="clr-i-outline clr-i-outline-path-1"
262
- d="M18,21.32a1.3,1.3,0,0,0,1.3-1.3V14a1.3,1.3,0,1,0-2.6,0v6A1.3,1.3,0,0,0,18,21.32Z"
263
- />
264
- <circle
265
- class="clr-i-outline clr-i-outline-path-2"
266
- cx="17.95"
267
- cy="24.27"
268
- r="1.5"
269
- />
270
- <path
271
- class="clr-i-outline clr-i-outline-path-3"
272
- d="M30.33,25.54,20.59,7.6a3,3,0,0,0-5.27,0L5.57,25.54A3,3,0,0,0,8.21,30H27.69a3,3,0,0,0,2.64-4.43Zm-1.78,1.94a1,1,0,0,1-.86.49H8.21a1,1,0,0,1-.88-1.48L17.07,8.55a1,1,0,0,1,1.76,0l9.74,17.94A1,1,0,0,1,28.55,27.48Z"
273
- />
274
- </svg>
275
- </template>
276
- <template v-else-if="props.name === 'obj-dc'">
277
- <svg
278
- xmlns="http://www.w3.org/2000/svg"
279
- xmlns:xlink="http://www.w3.org/1999/xlink"
280
- width="96"
281
- height="124"
282
- viewBox="0 0 96 124"
283
- class="icon icon-obj-dc"
284
- >
285
- <defs>
286
- <linearGradient
287
- id="illus_grad"
288
- x1="-1651.89"
289
- y1="62.52"
290
- x2="-1607.13"
291
- y2="112.71"
292
- gradientTransform="matrix(-1, 0, 0, 1, -1597.93, 0)"
293
- gradientUnits="userSpaceOnUse"
294
- >
295
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
296
- <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
297
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
298
- </linearGradient>
299
- <linearGradient
300
- id="illus_grad-2"
301
- x1="-1676.95"
302
- y1="68.78"
303
- x2="-1640.9"
304
- y2="109.2"
305
- xlink:href="#illus_grad"
306
- />
307
- </defs>
308
- <g id="Layer_6" data-name="Layer 6">
309
- <rect class="cls-1" width="96" height="124" />
310
- </g>
311
- <g id="Layer_4" data-name="Layer 4">
312
- <polygon
313
- class="cls-2"
314
- points="3.03 94.67 47.55 94.67 47.55 50.14 3.03 94.67"
315
- />
316
- <polygon
317
- class="cls-3"
318
- points="38 94.67 73.86 94.67 73.86 58.81 38 94.67"
319
- />
320
- </g>
321
- <g id="Layer_2" data-name="Layer 2">
322
- <rect class="cls-4" x="24" y="36.36" width="2" height="6" />
323
- <rect class="cls-4" x="33" y="36.36" width="2" height="6" />
324
- <rect class="cls-4" x="42" y="36.36" width="2" height="6" />
325
- <rect class="cls-4" x="58" y="52.36" width="2" height="4" />
326
- <rect class="cls-4" x="65" y="52.36" width="2" height="4" />
327
- <rect class="cls-4" x="72" y="52.36" width="2" height="4" />
328
- <rect class="cls-4" x="58" y="64.36" width="2" height="4" />
329
- <rect class="cls-4" x="65" y="64.36" width="2" height="4" />
330
- <rect class="cls-4" x="72" y="64.36" width="2" height="4" />
331
- <rect class="cls-4" x="58" y="76.36" width="2" height="4" />
332
- <rect class="cls-4" x="65" y="76.36" width="2" height="4" />
333
- <rect class="cls-4" x="72" y="76.36" width="2" height="4" />
334
- <rect class="cls-4" x="24" y="49.36" width="2" height="6" />
335
- <rect class="cls-4" x="33" y="49.36" width="2" height="6" />
336
- <rect class="cls-4" x="42" y="49.36" width="2" height="6" />
337
- <rect class="cls-4" x="24" y="62.36" width="2" height="6" />
338
- <rect class="cls-4" x="33" y="62.36" width="2" height="6" />
339
- <rect class="cls-4" x="42" y="62.36" width="2" height="6" />
340
- <rect class="cls-4" x="24" y="75.36" width="2" height="6" />
341
- <rect class="cls-4" x="33" y="75.36" width="2" height="6" />
342
- <rect class="cls-4" x="42" y="75.36" width="2" height="6" />
343
- <path
344
- class="cls-4"
345
- d="M89.36,96H7.14a1,1,0,0,1,0-2H89.36a1,1,0,1,1,0,2Z"
346
- />
347
- <path
348
- class="cls-4"
349
- d="M51.87,95a1,1,0,0,1-1-1V26.13A1.19,1.19,0,0,0,49.62,25H18.12a1.19,1.19,0,0,0-1.25,1.12V94a1,1,0,0,1-2,0V26.13A3.19,3.19,0,0,1,18.12,23h31.5a3.19,3.19,0,0,1,3.25,3.12V94A1,1,0,0,1,51.87,95Z"
350
- />
351
- <path
352
- class="cls-4"
353
- d="M80,94H78V45.12A1.19,1.19,0,0,0,76.75,44H55V42H76.75A3.19,3.19,0,0,1,80,45.12Z"
354
- />
355
- </g>
356
- </svg>
357
- </template>
358
- <template v-else-if="props.name === 'obj-zone'">
359
- <svg
360
- id="svg2"
361
- version="1.1"
362
- xml:space="preserve"
363
- width="96"
364
- height="124"
365
- viewBox="0 0 1440 1440"
366
- xmlns="http://www.w3.org/2000/svg"
367
- xmlns:svg="http://www.w3.org/2000/svg"
368
- class="icon icon-obj-zone"
369
- >
370
- <defs id="defs6" />
371
- <g id="g8" transform="matrix(1.3333333,0,0,-1.3333333,0,1150)">
372
- <g id="g10" transform="scale(0.1)">
373
- <path
374
- id="path14"
375
- d="m 5485.82,3974.16 c 99.06,0 179.66,80.57 179.66,179.63 0,99.04 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.29 -129.39,-55.36 -31.03,-32.28 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-91.98 50.24,-124.3 32.7,-34.03 78.58,-55.33 129.39,-55.33 v 0"
376
- style="
377
- fill: #dfac13;
378
- fill-opacity: 1;
379
- fill-rule: nonzero;
380
- stroke: none;
381
- "
382
- />
383
- <path
384
- id="path16"
385
- d="m 4254.43,6033.08 c 2.83,42.92 5.99,85.56 9.36,128 1.15,14.07 2.41,28.01 3.59,42.02 2.41,28.37 4.88,56.71 7.53,84.84 1.53,16.36 3.19,32.62 4.82,48.89 2.59,25.69 5.21,51.32 8.01,76.8 1.84,16.87 3.73,33.7 5.66,50.51 2.86,25 5.87,49.88 8.98,74.67 2.01,16.41 4.06,32.86 6.2,49.18 3.37,25.75 6.9,51.29 10.48,76.8 2.08,14.88 4.1,29.82 6.27,44.64 4.49,30.54 9.18,60.81 13.97,90.99 1.48,9.37 2.86,18.86 4.37,28.16 6.05,37.32 12.35,74.37 18.91,111.08 -500.09,158.22 -883.99,207.79 -1148.77,186.14 237.22,-16.12 534.1,-73.55 889.96,-186.14 -6.54,-36.71 -12.83,-73.76 -18.91,-111.08 -1.51,-9.3 -2.9,-18.79 -4.37,-28.16 -4.79,-30.18 -9.49,-60.45 -13.95,-90.99 -2.17,-14.82 -4.18,-29.76 -6.29,-44.64 -3.59,-25.51 -7.11,-51.05 -10.48,-76.8 -2.14,-16.32 -4.16,-32.77 -6.21,-49.18 -3.07,-24.79 -6.08,-49.67 -8.97,-74.67 -1.93,-16.81 -3.83,-33.64 -5.67,-50.51 -2.8,-25.48 -5.42,-51.11 -7.98,-76.8 -1.65,-16.27 -3.28,-32.53 -4.85,-48.89 -2.65,-28.13 -5.09,-56.47 -7.5,-84.84 -1.2,-14.01 -2.47,-27.95 -3.58,-42.02 -3.4,-42.44 -6.57,-85.08 -9.4,-128 -3.82,-57.98 25.63,-113.1 75.96,-142.17 L 6147.26,4692.5 c -6.05,-79.57 -13.16,-158.27 -21.26,-235.98 -24.31,-233.18 -57.74,-457.45 -99.91,-669.91 -0.03,-0.09 -0.03,-0.15 -0.06,-0.24 -170.44,-856.95 -439.31,-1317.59 -669.58,-1445.27 44.91,-24.93 88.41,-37.4 129.37,-37.4 250.95,0 595.3,458.47 799.03,1482.67 0.03,0.09 0.03,0.15 0.03,0.24 42.19,212.46 75.63,436.73 99.93,669.91 8.1,77.71 15.18,156.41 21.24,235.98 L 4330.39,5890.91 c -50.33,29.07 -79.79,84.19 -75.96,142.17 v 0"
386
- style="
387
- fill: #dfac13;
388
- fill-opacity: 1;
389
- fill-rule: nonzero;
390
- stroke: none;
391
- "
392
- />
393
- <path
394
- id="path18"
395
- d="m 4742.24,6646.03 c 0,-267.34 217.46,-484.83 484.79,-484.83 44.88,0 88.16,6.57 129.4,18.07 -204.61,56.81 -355.41,244.27 -355.41,466.76 0,222.46 150.8,409.92 355.41,466.73 -41.27,11.47 -84.55,18.07 -129.4,18.07 -267.33,0 -484.79,-217.49 -484.79,-484.8 v 0"
396
- style="
397
- fill: #dfac13;
398
- fill-opacity: 1;
399
- fill-rule: nonzero;
400
- stroke: none;
401
- "
402
- />
403
- <path
404
- id="path20"
405
- d="m 5356.43,6770.3 c -31.03,-32.29 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-92.01 50.24,-124.3 32.7,-34.04 78.58,-55.36 129.39,-55.36 99.06,0 179.66,80.6 179.66,179.66 0,99.03 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.32 -129.39,-55.36 v 0"
406
- style="
407
- fill: #dfac13;
408
- fill-opacity: 1;
409
- fill-rule: nonzero;
410
- stroke: none;
411
- "
412
- />
413
- <path
414
- id="path22"
415
- d="m 7908.6,6948.1 c 112.92,-195.6 -58.13,-642.45 -665.9,-1231.79 46.98,-37.68 93.27,-75.48 138.33,-113.46 705.6,645.34 906.41,1137.3 786.38,1345.25 -73.19,126.77 -297.54,202.82 -667.8,177.79 217.7,-17.89 354.81,-83.94 408.99,-177.79 v 0"
416
- style="
417
- fill: #dfac13;
418
- fill-opacity: 1;
419
- fill-rule: nonzero;
420
- stroke: none;
421
- "
422
- />
423
- <path
424
- id="path24"
425
- d="m 6026.09,7013.18 c 8.59,-43.13 35.3,-80.42 73.37,-102.4 38.07,-21.99 83.8,-26.45 125.36,-12.35 35.45,12.05 70.21,23.43 104.57,34.42 -22.46,21.48 -38.31,49.28 -44.48,80.33 -203.73,1024.53 -548.14,1483.12 -799.09,1483.12 -40.96,0 -84.46,-12.47 -129.37,-37.4 230.27,-127.7 499.2,-588.5 669.64,-1445.72 v 0"
426
- style="
427
- fill: #dfac13;
428
- fill-opacity: 1;
429
- fill-rule: nonzero;
430
- stroke: none;
431
- "
432
- />
433
- <path
434
- id="path26"
435
- d="m 7282.81,5284.89 c -0.12,0.09 -0.24,0.21 -0.36,0.3 -41.14,36.08 -83.25,72.1 -126.29,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.66,0.45 -1.26,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.65,1.12 -3.28,2.23 -4.94,3.35 -19.6,13.34 -39.33,26.62 -59.15,39.9 -168.67,112.68 -343.93,221.65 -520.88,323.79 -45.51,26.26 -91.26,52.13 -137.16,77.61 -33.74,-32.56 -72.23,-60.18 -114.19,-82.01 174.43,-100.9 347.13,-208.28 513.42,-319.39 19.84,-13.28 39.57,-26.56 59.18,-39.9 1.66,-1.12 3.25,-2.23 4.91,-3.35 2.59,-1.77 5.21,-3.55 7.8,-5.3 0.63,-0.45 1.27,-0.87 1.9,-1.32 215.71,-147.35 417.48,-299.18 602.17,-453.18 43.04,-35.87 85.18,-71.89 126.32,-107.97 0.12,-0.09 0.21,-0.21 0.33,-0.3 785.21,-688.47 1010.04,-1215.76 884.63,-1432.98 -54.24,-93.91 -191.62,-159.96 -409.65,-177.76 370.62,-25.15 595.21,50.96 668.43,177.76 125.45,217.22 -99.42,744.51 -884.6,1432.98 v 0"
436
- style="
437
- fill: #dfac13;
438
- fill-opacity: 1;
439
- fill-rule: nonzero;
440
- stroke: none;
441
- "
442
- />
443
- <path
444
- id="path28"
445
- d="m 4278.49,3909.47 c -16.5,0 -33.07,-2.68 -49.03,-8.07 -412.21,-139.94 -751.23,-209.36 -1015.86,-227.25 268.45,-22.02 659.64,29.39 1170.04,192.82 -8.71,8.34 -18.19,15.93 -28.83,22.08 -23.46,13.52 -49.81,20.42 -76.32,20.42 v 0"
446
- style="
447
- fill: #dfac13;
448
- fill-opacity: 1;
449
- fill-rule: nonzero;
450
- stroke: none;
451
- "
452
- />
453
- <path
454
- id="path30"
455
- d="m 5005.15,4584.32 c 2.47,-1.42 4.91,-2.9 7.38,-4.34 45.41,-26.2 91.17,-52.08 137.16,-77.62 57.22,55.21 128.03,96.23 206.74,118.19 -41.27,11.44 -84.55,18.04 -129.4,18.04 -80.02,0 -155.38,-19.73 -221.88,-54.27 v 0"
456
- style="
457
- fill: #dfac13;
458
- fill-opacity: 1;
459
- fill-rule: nonzero;
460
- stroke: none;
461
- "
462
- />
463
- <path
464
- id="path32"
465
- d="m 4601.16,4315.71 c 48.97,-28.28 98.37,-56.11 147.97,-83.64 -4.15,-25.54 -6.89,-51.56 -6.89,-78.28 0,-267.33 217.46,-484.79 484.79,-484.79 44.85,0 88.13,6.59 129.4,18.07 -204.61,56.8 -355.41,244.26 -355.41,466.72 0,26.72 2.74,52.74 6.93,78.28 -49.64,27.53 -99.01,55.36 -148.01,83.64 -183.79,106.11 -364.83,218.61 -538.05,334.39 -264.68,177.04 -510.03,360.58 -731.08,546.87 -41.95,-38.4 -82.01,-76.2 -120.44,-113.46 183.72,-147.31 381.97,-292.46 592.71,-433.41 173.25,-115.78 354.26,-228.28 538.08,-334.39 v 0"
466
- style="
467
- fill: #dfac13;
468
- fill-opacity: 1;
469
- fill-rule: nonzero;
470
- stroke: none;
471
- "
472
- />
473
- <path
474
- id="path34"
475
- d="m 7908.63,3851.91 c 125.41,217.22 -99.42,744.51 -884.63,1432.98 -0.12,0.09 -0.21,0.21 -0.33,0.3 -41.14,36.08 -83.28,72.1 -126.32,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.63,0.45 -1.27,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.66,1.12 -3.25,2.23 -4.91,3.35 -19.61,13.34 -39.34,26.62 -59.18,39.9 -166.29,111.11 -338.99,218.49 -513.42,319.39 -66.59,-34.61 -142.04,-54.4 -222.15,-54.4 -44.85,0 -88.13,6.63 -129.39,18.07 -41.24,-11.5 -84.52,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.49 -484.79,484.83 0,267.31 217.46,484.8 484.79,484.8 44.85,0 88.13,-6.6 129.4,-18.07 41.26,11.47 84.54,18.07 129.39,18.07 267.33,0 484.82,-217.49 484.82,-484.8 0,-26.62 -2.74,-52.59 -6.86,-78.04 49.57,-27.47 98.97,-55.33 148.12,-83.7 182.68,-105.48 363.63,-217.97 537.87,-334.35 210.47,-140.72 408.81,-285.92 592.93,-433.63 607.77,589.34 778.82,1036.19 665.9,1231.79 -54.18,93.85 -191.29,159.9 -408.99,177.79 -264.66,-17.92 -603.71,-87.41 -1015.98,-227.46 -41.59,-14.1 -87.28,-9.64 -125.38,12.35 -10.63,6.14 -20.15,13.73 -28.86,22.07 -34.36,-10.99 -69.12,-22.37 -104.57,-34.42 -41.56,-14.1 -87.29,-9.64 -125.36,12.35 -38.07,21.98 -64.78,59.27 -73.37,102.4 -170.44,857.22 -439.37,1318.02 -669.64,1445.72 -230.2,-127.7 -499.01,-588.47 -669.48,-1445.6 0,-0.03 0,-0.06 0,-0.12 -34.1,-171.56 -62.41,-351.16 -84.94,-537.05 -14.58,-120.39 -26.81,-243.36 -36.38,-368.69 L 6641.28,4909.09 c 50.3,-29.06 79.75,-84.15 75.99,-142.1 -2.83,-42.8 -5.97,-85.36 -9.34,-127.71 -1.14,-14.3 -2.44,-28.49 -3.64,-42.77 -2.35,-28.04 -4.76,-56.02 -7.38,-83.85 -1.57,-16.65 -3.26,-33.22 -4.91,-49.81 -2.53,-25.27 -5.09,-50.45 -7.83,-75.54 -1.9,-17.29 -3.83,-34.52 -5.82,-51.72 -2.8,-24.45 -5.72,-48.79 -8.73,-73.04 -2.11,-16.98 -4.22,-33.97 -6.42,-50.84 -3.25,-24.97 -6.68,-49.73 -10.15,-74.48 -2.17,-15.63 -4.3,-31.36 -6.59,-46.93 -4.25,-29.09 -8.74,-57.95 -13.29,-86.71 -1.71,-10.81 -3.28,-21.72 -5.03,-32.47 -6.05,-37.26 -12.34,-74.27 -18.88,-110.96 355.74,-112.52 652.53,-169.93 889.72,-186.01 218.03,17.8 355.41,83.85 409.65,177.76 v 0"
476
- style="
477
- fill: #fbce28;
478
- fill-opacity: 1;
479
- fill-rule: nonzero;
480
- stroke: none;
481
- "
482
- />
483
- <path
484
- id="path36"
485
- d="m 6026.03,3786.37 c 0.03,0.09 0.03,0.15 0.06,0.24 42.17,212.46 75.6,436.73 99.91,669.91 8.1,77.71 15.21,156.41 21.26,235.98 L 4071.57,5890.91 c -50.33,29.07 -79.78,84.19 -75.96,142.17 2.83,42.92 6,85.56 9.4,128 1.11,14.07 2.38,28.01 3.58,42.02 2.41,28.37 4.85,56.71 7.5,84.84 1.57,16.36 3.2,32.62 4.85,48.89 2.56,25.69 5.18,51.32 7.98,76.8 1.84,16.87 3.74,33.7 5.67,50.51 2.89,25 5.9,49.88 8.97,74.67 2.05,16.41 4.07,32.86 6.21,49.18 3.37,25.75 6.89,51.29 10.48,76.8 2.11,14.88 4.12,29.82 6.29,44.64 4.46,30.54 9.16,60.81 13.95,90.99 1.47,9.37 2.86,18.86 4.37,28.16 6.08,37.32 12.37,74.37 18.91,111.08 -355.86,112.59 -652.74,170.02 -889.96,186.14 -217.88,-17.83 -355.19,-83.82 -409.38,-177.7 -125.45,-217.34 99.52,-744.88 884.93,-1433.46 217.16,-190.48 461.97,-378.99 728.73,-561.24 8.11,-5.55 16.24,-11.09 24.37,-16.6 3.88,-2.62 7.8,-5.27 11.66,-7.89 12.43,-8.4 24.88,-16.78 37.37,-25.15 165.33,-110.48 338.15,-217.88 513.66,-319.44 66.5,34.54 141.86,54.27 221.88,54.27 44.85,0 88.13,-6.6 129.4,-18.04 41.23,11.5 84.51,18.04 129.39,18.04 267.33,0 484.82,-217.46 484.82,-484.8 0,-267.33 -217.49,-484.79 -484.82,-484.79 -44.85,0 -88.13,6.59 -129.39,18.07 -41.27,-11.48 -84.55,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.46 -484.79,484.79 0,26.72 2.74,52.74 6.89,78.28 -49.6,27.53 -99,55.36 -147.97,83.64 -183.82,106.11 -364.83,218.61 -538.08,334.39 -210.74,140.95 -408.99,286.1 -592.71,433.41 -607.81,-589.31 -778.86,-1036.1 -665.94,-1231.6 54.19,-93.85 191.35,-159.9 409.17,-177.76 264.63,17.89 603.65,87.31 1015.86,227.25 15.96,5.39 32.53,8.07 49.03,8.07 26.51,0 52.86,-6.9 76.32,-20.42 10.64,-6.15 20.12,-13.74 28.83,-22.08 34.39,11.02 69.15,22.38 104.6,34.43 15.99,5.39 32.56,8.07 49.04,8.07 26.53,0 52.85,-6.9 76.32,-20.42 38.04,-21.99 64.78,-59.31 73.34,-102.41 170.44,-857.1 439.28,-1317.86 669.51,-1445.54 230.27,127.68 499.14,588.32 669.58,1445.27 v 0"
486
- style="
487
- fill: #fbce28;
488
- fill-opacity: 1;
489
- fill-rule: nonzero;
490
- stroke: none;
491
- "
492
- />
493
- </g>
494
- </g>
495
- </svg>
496
- </template>
497
- <template v-else-if="props.name === 'obj-host'">
498
- <svg
499
- xmlns="http://www.w3.org/2000/svg"
500
- xmlns:xlink="http://www.w3.org/1999/xlink"
501
- width="96"
502
- height="124"
503
- viewBox="0 0 96 124"
504
- class="icon-obj-host"
505
- >
506
- <defs>
507
- <linearGradient
508
- id="illus_grad"
509
- x1="-3163.59"
510
- y1="62.51"
511
- x2="-3118.36"
512
- y2="113.24"
513
- gradientTransform="matrix(-1, 0, 0, 1, -3095.12, 0)"
514
- gradientUnits="userSpaceOnUse"
515
- >
516
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
517
- <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
518
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
519
- </linearGradient>
520
- <linearGradient
521
- id="linear-gradient"
522
- x1="89.6"
523
- y1="58.65"
524
- x2="44.2"
525
- y2="104.05"
526
- gradientUnits="userSpaceOnUse"
527
- >
528
- <stop offset="0.33" stop-color="#0091da" stop-opacity="0.6" />
529
- <stop offset="0.58" stop-color="#0091da" stop-opacity="0.32" />
530
- <stop offset="0.89" stop-color="#0091da" stop-opacity="0" />
531
- </linearGradient>
532
- </defs>
533
- <g id="Layer_4" data-name="Layer 4">
534
- <polygon class="cls-1" points="17 95 62 95 62 50 17 95" />
535
- <polygon class="cls-2" points="76 95 30.5 95 76 49.5 76 95" />
536
- </g>
537
- <g id="Layer_2" data-name="Layer 2">
538
- <path
539
- class="cls-3"
540
- d="M68,95H66V22a1,1,0,0,0-1-1H31a1,1,0,0,0-1,1V95H28V22a3,3,0,0,1,3-3H65a3,3,0,0,1,3,3Z"
541
- />
542
- <path class="cls-3" d="M80,96H16a1,1,0,0,1,0-2H80a1,1,0,0,1,0,2Z" />
543
- <path class="cls-3" d="M59,33H37a1,1,0,0,1,0-2H59a1,1,0,0,1,0,2Z" />
544
- <path
545
- class="cls-3"
546
- d="M48.5,82A5.5,5.5,0,1,1,54,76.5,5.51,5.51,0,0,1,48.5,82Zm0-9A3.5,3.5,0,1,0,52,76.5,3.5,3.5,0,0,0,48.5,73Z"
547
- />
548
- </g>
549
- </svg>
550
- </template>
551
- <template v-else-if="props.name === 'obj-datastore'">
552
- <svg
553
- width="96"
554
- height="124"
555
- viewBox="0 0 96 124"
556
- xmlns="http://www.w3.org/2000/svg"
557
- xmlns:xlink="http://www.w3.org/1999/xlink"
558
- >
559
- <defs>
560
- <linearGradient
561
- id="illus_grad"
562
- x1="-1907.36"
563
- y1="63.08"
564
- x2="-1863.1"
565
- y2="112.71"
566
- gradientTransform="matrix(-1, 0, 0, 1, -1840.95, 0)"
567
- gradientUnits="userSpaceOnUse"
568
- >
569
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
570
- <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
571
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
572
- </linearGradient>
573
- <linearGradient
574
- id="illus_grad-2"
575
- x1="-1923.8"
576
- y1="71.55"
577
- x2="-1892.27"
578
- y2="106.92"
579
- xlink:href="#illus_grad"
580
- />
581
- </defs>
582
- <g id="Layer_6" data-name="Layer 6">
583
- <rect class="cls-1" width="96" height="124" />
584
- </g>
585
- <g id="Layer_4" data-name="Layer 4">
586
- <polygon
587
- class="cls-2"
588
- points="16.04 94.86 60.07 94.86 60.07 50.84 16.04 94.86"
589
- />
590
- <polygon
591
- class="cls-3"
592
- points="46.97 94.2 78.34 94.2 78.34 62.83 46.97 94.2"
593
- />
594
- </g>
595
- <g id="Layer_2" data-name="Layer 2">
596
- <path
597
- class="cls-4"
598
- d="M89.91,95.91H5.46a1,1,0,1,1,0-2H89.91a1,1,0,0,1,0,2Z"
599
- />
600
- <path
601
- class="cls-4"
602
- d="M57.38,40H38.62a1,1,0,0,1,0-2H57.38a1,1,0,0,1,0,2Z"
603
- />
604
- <path
605
- class="cls-4"
606
- d="M48.1,80.67A4.72,4.72,0,1,1,52.82,76,4.72,4.72,0,0,1,48.1,80.67Zm0-7.44A2.72,2.72,0,1,0,50.82,76,2.72,2.72,0,0,0,48.1,73.23Z"
607
- />
608
- <path class="cls-4" d="M76.92,47H67v2h9.92a1,1,0,0,0,0-2Z" />
609
- <path class="cls-4" d="M19.08,48H29v2H19.08a1,1,0,0,1,0-2Z" />
610
- <path
611
- class="cls-4"
612
- d="M64,96a1,1,0,0,1-1-1V31a1,1,0,0,0-1-1H34a1,1,0,0,0-1,1V95a1,1,0,0,1-2,0V31a3,3,0,0,1,3-3H62a3,3,0,0,1,3,3V95A1,1,0,0,1,64,96Z"
613
- />
614
- <path
615
- class="cls-4"
616
- d="M83,95H81V41a1,1,0,0,0-1-1H67V38H80a3,3,0,0,1,3,3Z"
617
- />
618
- <path
619
- class="cls-4"
620
- d="M15,95H13V41a3,3,0,0,1,3-3H29v2H16a1,1,0,0,0-1,1Z"
621
- />
622
- </g>
623
- </svg>
624
- </template>
625
- <template v-else-if="props.name === 'obj-ds'">
626
- <svg
627
- xmlns="http://www.w3.org/2000/svg"
628
- xmlns:xlink="http://www.w3.org/1999/xlink"
629
- width="96"
630
- height="124"
631
- viewBox="0 0 96 124"
632
- class="icon icon-obj-ds"
633
- >
634
- <defs>
635
- <linearGradient
636
- id="illus_grad"
637
- x1="54.43"
638
- y1="61.9"
639
- x2="54.43"
640
- y2="109.83"
641
- gradientUnits="userSpaceOnUse"
642
- >
643
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
644
- <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
645
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
646
- </linearGradient>
647
- </defs>
648
- <g id="Layer_6" data-name="Layer 6">
649
- <rect class="cls-1" width="96" height="124" />
650
- </g>
651
- <g id="Layer_4" data-name="Layer 4">
652
- <path
653
- class="cls-2"
654
- d="M46.88,55.31c-1.28,0-2.53,0-3.76-.11V95.83c1.23.07,2.48.11,3.76.11,7.49,0,14.22-1.16,18.87-3V52.29C61.1,54.15,54.37,55.31,46.88,55.31Z"
655
- />
656
- </g>
657
- <g id="Layer_2" data-name="Layer 2">
658
- <path
659
- class="cls-3"
660
- d="M48,98.43c-14.82,0-26-4.3-26-10v-46h2v46c0,3.79,9.86,8,24,8s24-4.22,24-8v-46h2v46C74,94.13,62.82,98.43,48,98.43Z"
661
- />
662
- <path
663
- class="cls-3"
664
- d="M72,72.48c0,3.79-9.86,8-24,8a53.15,53.15,0,0,1-17.3-2.59V80A56.81,56.81,0,0,0,48,82.5c14.82,0,26-4.31,26-10Z"
665
- />
666
- <path
667
- class="cls-3"
668
- d="M72,58c0,3.79-9.86,8-24,8a53.44,53.44,0,0,1-17.3-2.58v2.13A56.83,56.83,0,0,0,48,68c14.82,0,26-4.3,26-10Z"
669
- />
670
- <path
671
- class="cls-3"
672
- d="M48,32.41c-14.82,0-26,4.3-26,10h2c0-3.79,9.86-8,24-8s24,4.22,24,8-9.86,8-24,8a53.44,53.44,0,0,1-17.3-2.58V50A56.83,56.83,0,0,0,48,52.43c14.82,0,26-4.3,26-10S62.82,32.41,48,32.41Z"
673
- />
674
- </g>
675
- </svg>
676
- </template>
677
- <template v-else-if="props.name === 'arrow'">
678
- <svg height="20" viewBox="0 0 32 32" width="20">
679
- <path
680
- d="M16.7 11.3c-0.4-0.4-1-0.4-1.4 0l-9 9c-0.4 0.4-0.4 1 0 1.4 0.4 0.4 1 0.4 1.4 0L16 13.4l8.3 8.3c0.4 0.4 1 0.4 1.4 0 0.4-0.4 0.4-1 0-1.4L16.7 11.3z"
681
- />
682
- </svg>
683
- </template>
684
- <template v-else-if="props.name === 'info'">
685
- <svg viewBox="0 0 36 36" class="icon-container" style="">
686
- <path
687
- id="error-icon-outline"
688
- d="M18,7A11,11,0,1,1,7,18,11,11,0,0,1,18,7"
689
- class="ng-tns-c303-18"
690
- />
691
- <path
692
- id="error-icon-line"
693
- d="M18,12.8v5.9"
694
- class="ng-tns-c303-18 ng-trigger ng-trigger-errorLine"
695
- />
696
- <circle
697
- id="error-icon-dot"
698
- cx="18"
699
- cy="23"
700
- r="1.4"
701
- class="ng-tns-c303-18 ng-trigger ng-trigger-errorDot"
702
- />
703
- </svg>
704
- </template>
705
- <template v-else-if="props.name === 'obj-cluster'">
706
- <svg
707
- xmlns="http://www.w3.org/2000/svg"
708
- xmlns:xlink="http://www.w3.org/1999/xlink"
709
- width="96"
710
- height="124"
711
- viewBox="0 0 96 124"
712
- class="icon icon-obj-cluster"
713
- >
714
- <defs>
715
- <linearGradient
716
- id="illus_grad"
717
- x1="-1907.36"
718
- y1="63.08"
719
- x2="-1863.1"
720
- y2="112.71"
721
- gradientTransform="matrix(-1, 0, 0, 1, -1840.95, 0)"
722
- gradientUnits="userSpaceOnUse"
723
- >
724
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
725
- <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
726
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
727
- </linearGradient>
728
- <linearGradient
729
- id="illus_grad-2"
730
- x1="-1923.8"
731
- y1="71.55"
732
- x2="-1892.27"
733
- y2="106.92"
734
- xlink:href="#illus_grad"
735
- />
736
- </defs>
737
- <g id="Layer_6" data-name="Layer 6">
738
- <rect class="cls-1" width="96" height="124" />
739
- </g>
740
- <g id="Layer_4" data-name="Layer 4">
741
- <polygon
742
- class="cls-2"
743
- points="16.04 94.86 60.07 94.86 60.07 50.84 16.04 94.86"
744
- />
745
- <polygon
746
- class="cls-3"
747
- points="46.97 94.2 78.34 94.2 78.34 62.83 46.97 94.2"
748
- />
749
- </g>
750
- <g id="Layer_2" data-name="Layer 2">
751
- <path
752
- class="cls-4"
753
- d="M89.91,95.91H5.46a1,1,0,1,1,0-2H89.91a1,1,0,0,1,0,2Z"
754
- />
755
- <path
756
- class="cls-4"
757
- d="M57.38,40H38.62a1,1,0,0,1,0-2H57.38a1,1,0,0,1,0,2Z"
758
- />
759
- <path
760
- class="cls-4"
761
- d="M48.1,80.67A4.72,4.72,0,1,1,52.82,76,4.72,4.72,0,0,1,48.1,80.67Zm0-7.44A2.72,2.72,0,1,0,50.82,76,2.72,2.72,0,0,0,48.1,73.23Z"
762
- />
763
- <path class="cls-4" d="M76.92,47H67v2h9.92a1,1,0,0,0,0-2Z" />
764
- <path class="cls-4" d="M19.08,48H29v2H19.08a1,1,0,0,1,0-2Z" />
765
- <path
766
- class="cls-4"
767
- d="M64,96a1,1,0,0,1-1-1V31a1,1,0,0,0-1-1H34a1,1,0,0,0-1,1V95a1,1,0,0,1-2,0V31a3,3,0,0,1,3-3H62a3,3,0,0,1,3,3V95A1,1,0,0,1,64,96Z"
768
- />
769
- <path
770
- class="cls-4"
771
- d="M83,95H81V41a1,1,0,0,0-1-1H67V38H80a3,3,0,0,1,3,3Z"
772
- />
773
- <path
774
- class="cls-4"
775
- d="M15,95H13V41a3,3,0,0,1,3-3H29v2H16a1,1,0,0,0-1,1Z"
776
- />
777
- </g>
778
- </svg>
779
- </template>
780
- <template v-else-if="props.name === 'obj-network'">
781
- <svg
782
- xmlns="http://www.w3.org/2000/svg"
783
- xmlns:xlink="http://www.w3.org/1999/xlink"
784
- width="96"
785
- height="124"
786
- viewBox="0 0 96 124"
787
- class="icon icon__obj-network"
788
- >
789
- <defs>
790
- <linearGradient
791
- id="linear-gradient"
792
- x1="75.11"
793
- y1="22.68"
794
- x2="-1.26"
795
- y2="100.91"
796
- gradientUnits="userSpaceOnUse"
797
- >
798
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
799
- <stop offset="0.46" stop-color="#0091da" stop-opacity="0.32" />
800
- <stop offset="0.83" stop-color="#0091da" stop-opacity="0" />
801
- </linearGradient>
802
- <linearGradient
803
- id="linear-gradient-2"
804
- x1="78.18"
805
- y1="10.58"
806
- x2="25.29"
807
- y2="64.76"
808
- xlink:href="#linear-gradient"
809
- />
810
- </defs>
811
- <g id="Layer_6" data-name="Layer 6">
812
- <rect class="cls-1" width="96" height="124" />
813
- </g>
814
- <g id="Layer_4" data-name="Layer 4">
815
- <polygon
816
- class="cls-2"
817
- points="47.67 64 88.67 23 61.9 23 20.9 64 47.67 64"
818
- />
819
- <polygon
820
- class="cls-3"
821
- points="59.77 39 87.78 11 68.44 11 40.44 39 59.77 39"
822
- />
823
- </g>
824
- <g id="Layer_2" data-name="Layer 2">
825
- <path class="cls-4" d="M76,96H28.5a1,1,0,0,1,0-2H76a1,1,0,0,1,0,2Z" />
826
- <path
827
- class="cls-4"
828
- d="M66,92H53V82.33a1,1,0,1,1,2,0V90H66a1,1,0,0,1,0,2Z"
829
- />
830
- <path
831
- class="cls-4"
832
- d="M65.92,29.18a3,3,0,1,0,3,3A3,3,0,0,0,65.92,29.18Zm0,4.33a1.32,1.32,0,1,1,1.31-1.31A1.32,1.32,0,0,1,65.92,33.51Z"
833
- />
834
- <path
835
- class="cls-4"
836
- d="M77.56,45.86a3,3,0,1,0,3,3A3,3,0,0,0,77.56,45.86Zm0,4.32a1.31,1.31,0,1,1,1.31-1.31A1.31,1.31,0,0,1,77.56,50.18Z"
837
- />
838
- <path
839
- class="cls-4"
840
- d="M61.23,60.76a3.07,3.07,0,1,0,3.08,3.07A3.07,3.07,0,0,0,61.23,60.76Zm0,4.44a1.37,1.37,0,1,1,1.38-1.37A1.37,1.37,0,0,1,61.23,65.2Z"
841
- />
842
- <path
843
- class="cls-4"
844
- d="M63.24,75.6a3.08,3.08,0,1,0,3.08,3.08A3.08,3.08,0,0,0,63.24,75.6Zm0,4.45a1.37,1.37,0,1,1,1.38-1.37A1.38,1.38,0,0,1,63.24,80.05Z"
845
- />
846
- <path
847
- class="cls-4"
848
- d="M41,71.39a3.07,3.07,0,1,0,3.08,3.07A3.08,3.08,0,0,0,41,71.39Zm0,4.44a1.37,1.37,0,1,1,1.38-1.37A1.37,1.37,0,0,1,41,75.83Z"
849
- />
850
- <path
851
- class="cls-4"
852
- d="M37.33,39.24a3,3,0,1,0,3,3A3,3,0,0,0,37.33,39.24Zm0,4.26a1.28,1.28,0,1,1,1.29-1.28A1.28,1.28,0,0,1,37.33,43.5Z"
853
- />
854
- <path
855
- class="cls-4"
856
- d="M24.25,47a3,3,0,1,0,3,3A3,3,0,0,0,24.25,47Zm0,4.26a1.28,1.28,0,1,1,1.28-1.28A1.28,1.28,0,0,1,24.25,51.21Z"
857
- />
858
- <path class="cls-4" d="M28.5,90a1,1,0,0,0,0,2H49V90Z" />
859
- <path
860
- class="cls-4"
861
- d="M59.16,64.48a29,29,0,0,1-9.27,6.72,29.38,29.38,0,0,1-7,2.18,2.32,2.32,0,0,1,.29,1.08,2.22,2.22,0,0,1-.21.93A31.06,31.06,0,0,0,60.5,66,2.26,2.26,0,0,1,59.16,64.48Z"
862
- />
863
- <path
864
- class="cls-4"
865
- d="M67.85,32.9a2.16,2.16,0,0,1-1.47,1.39,26.06,26.06,0,0,1,9.37,13.29,2.15,2.15,0,0,1,1.79-1A28.08,28.08,0,0,0,67.85,32.9Z"
866
- />
867
- <path
868
- class="cls-4"
869
- d="M61.05,79a25.68,25.68,0,0,1-10.13,2.06A26,26,0,0,1,25,55.11a26.58,26.58,0,0,1,.21-3.24,2.12,2.12,0,0,1-1,.25,2.21,2.21,0,0,1-1-.26A29,29,0,0,0,23,55.11,27.93,27.93,0,0,0,62.24,80.65,2.23,2.23,0,0,1,61.05,79Z"
870
- />
871
- <path
872
- class="cls-4"
873
- d="M59.06,63.7a2.07,2.07,0,0,1,.06-.5,48.05,48.05,0,0,1-25.29-6.33,49.33,49.33,0,0,1-7.93-5.61,2.1,2.1,0,0,1-1.65.8,1.85,1.85,0,0,1-.58-.09,51.18,51.18,0,0,0,9.17,6.64,50.18,50.18,0,0,0,24.79,6.62c.66,0,1.33,0,2,0A2.3,2.3,0,0,1,59.06,63.7Z"
874
- />
875
- <path
876
- class="cls-4"
877
- d="M35.06,42.18s0,0,0,0A33.62,33.62,0,0,0,31,44.32a36.11,36.11,0,0,0-5.26,4.11,2.15,2.15,0,0,1,.62,1.5,2,2,0,0,1-.18.85A31.91,31.91,0,0,1,35.92,44,2.28,2.28,0,0,1,35.06,42.18Z"
878
- />
879
- <path
880
- class="cls-4"
881
- d="M41.07,31.13a25.68,25.68,0,0,1,22.6,1.41c0-.11,0-.22,0-.33a2.16,2.16,0,0,1,.7-1.59,27.72,27.72,0,0,0-25.47-.7C39.59,30.29,40.32,30.69,41.07,31.13Z"
882
- />
883
- <path
884
- class="cls-4"
885
- d="M34.77,32.34A28.06,28.06,0,0,0,23.93,47.89a2.3,2.3,0,0,1,.26,0,2.13,2.13,0,0,1,1.61.75,26,26,0,0,1,11-15.27C36.12,33,35.43,32.64,34.77,32.34Z"
886
- />
887
- <path
888
- class="cls-4"
889
- d="M38.33,40.24a35.73,35.73,0,0,1,.93-5.55c-.61-.36-1.21-.7-1.79-1a35.67,35.67,0,0,0-1.14,6.58,2,2,0,0,1,1-.27A2.16,2.16,0,0,1,38.33,40.24Z"
890
- />
891
- <path
892
- class="cls-4"
893
- d="M48.12,40.81c-.8-.63-1.59-1.22-2.36-1.79A36.79,36.79,0,0,0,39,40.56a2.28,2.28,0,0,1,.67,1.62c0,.09,0,.18,0,.28A34.65,34.65,0,0,1,48.12,40.81Z"
894
- />
895
- <path
896
- class="cls-4"
897
- d="M51.93,38.74c.88.71,1.76,1.44,2.65,2.2a42.5,42.5,0,0,1,20.87,8.38,2.3,2.3,0,0,1,0-.45,2.17,2.17,0,0,1,.68-1.57A43.87,43.87,0,0,0,51.93,38.74Z"
898
- />
899
- <path
900
- class="cls-4"
901
- d="M66,51.73c.54.56,1.08,1.12,1.61,1.7A30.94,30.94,0,0,0,67,34.1,2.1,2.1,0,0,1,64.86,34,29,29,0,0,1,66,51.73Z"
902
- />
903
- <path
904
- class="cls-4"
905
- d="M64.57,56a29,29,0,0,1-3.08,5.57,2.3,2.3,0,0,1,1.75,1,32.71,32.71,0,0,0,2.82-5C65.56,57.08,65.07,56.54,64.57,56Z"
906
- />
907
- <path
908
- class="cls-4"
909
- d="M75.73,62.69c.5.61,1,1.23,1.49,1.85a27.83,27.83,0,0,0,1.3-13.84,2.12,2.12,0,0,1-2-.07,25.39,25.39,0,0,1,.4,4.48A26,26,0,0,1,75.73,62.69Z"
910
- />
911
- <path
912
- class="cls-4"
913
- d="M74,66.92a26.08,26.08,0,0,1-9.25,10.13,2.2,2.2,0,0,1,.72,1.63c0,.1,0,.2,0,.3a28.14,28.14,0,0,0,9.91-10.33Z"
914
- />
915
- <path
916
- class="cls-4"
917
- d="M83,71.21A161.59,161.59,0,0,0,69.59,54.46c-16.42-18.07-37.41-33.12-44.1-27C23.74,29,23.25,31.75,24,35.54a1,1,0,0,0,2-.4c-.43-2.1-.64-4.89.84-6.23,4.45-4.05,22.1,5.8,41.28,26.89A162,162,0,0,1,81.43,72.48,3,3,0,0,1,83,71.21Z"
918
- />
919
- <path
920
- class="cls-4"
921
- d="M84.05,78.09a4,4,0,0,1-1.66-.36,4,4,0,0,1-2.06-2.24,4,4,0,0,1,2.36-5.09,4,4,0,0,1,5.09,2.36h0a4,4,0,0,1-2.36,5.09A4,4,0,0,1,84.05,78.09Zm0-6.23a2.38,2.38,0,0,0-.78.14,2.27,2.27,0,0,0-.17,4.18,2.24,2.24,0,0,0,1.74.07,2.26,2.26,0,0,0,1.34-2.9h0A2.26,2.26,0,0,0,84.05,71.86Z"
922
- />
923
- </g>
924
- </svg>
925
- </template>
926
- <template v-else-if="props.name === 'obj-rp'">
927
- <svg
928
- xmlns="http://www.w3.org/2000/svg"
929
- xmlns:xlink="http://www.w3.org/1999/xlink"
930
- width="96"
931
- height="124"
932
- viewBox="0 0 96 124"
933
- class="icon icon-obj-rp"
934
- >
935
- <defs>
936
- <linearGradient
937
- id="linear-gradient"
938
- x1="78.91"
939
- y1="20.07"
940
- x2="17.57"
941
- y2="75.31"
942
- gradientUnits="userSpaceOnUse"
943
- >
944
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
945
- <stop offset="0.46" stop-color="#0091da" stop-opacity="0.32" />
946
- <stop offset="0.83" stop-color="#0091da" stop-opacity="0" />
947
- </linearGradient>
948
- <linearGradient
949
- id="illus_grad"
950
- x1="-3453.04"
951
- y1="20.8"
952
- x2="-3429.13"
953
- y2="44.35"
954
- gradientTransform="matrix(-1, 0, 0, 1, -3394.04, 0)"
955
- gradientUnits="userSpaceOnUse"
956
- >
957
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
958
- <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
959
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
960
- </linearGradient>
961
- </defs>
962
- <g id="Layer_6" data-name="Layer 6">
963
- <rect class="cls-1" width="96" height="124" />
964
- </g>
965
- <g id="Layer_4" data-name="Layer 4">
966
- <polygon
967
- class="cls-2"
968
- points="27.31 56.61 63.42 20.5 89.45 20.5 53.34 56.61 27.31 56.61"
969
- />
970
- <polygon
971
- class="cls-3"
972
- points="34.02 36.86 58.38 12.5 76.11 12.5 51.75 36.86 34.02 36.86"
973
- />
974
- </g>
975
- <g id="Layer_2" data-name="Layer 2">
976
- <path
977
- class="cls-4"
978
- d="M29.68,89.71a1,1,0,0,1-.61-.21,1,1,0,0,1-.18-1.4L47.77,63.39a1,1,0,0,1,.8-.39H72.62a1,1,0,0,1,0,2H49.06L30.48,89.32A1,1,0,0,1,29.68,89.71Z"
979
- />
980
- <path class="cls-5" d="M31,90.94a31.1,31.1,0,0,0,48.1-24.68H50Z" />
981
- <path
982
- class="cls-4"
983
- d="M48,97a32.1,32.1,0,1,1,32.1-32.1A32.14,32.14,0,0,1,48,97Zm0-62.2a30.1,30.1,0,1,0,30.1,30.1A30.13,30.13,0,0,0,48,34.82Z"
984
- />
985
- </g>
986
- </svg>
987
- </template>
988
-
989
- <template v-else-if="props.name === 'sort-arrow'">
990
- <svg
991
- version="1.1"
992
- viewBox="0 0 36 36"
993
- preserveAspectRatio="xMidYMid meet"
994
- xmlns="http://www.w3.org/2000/svg"
995
- xmlns:xlink="http://www.w3.org/1999/xlink"
996
- focusable="false"
997
- role="img"
998
- >
999
- <path
1000
- d="M27.66,15.61,18,6,8.34,15.61A1,1,0,1,0,9.75,17L17,9.81V28.94a1,1,0,1,0,2,0V9.81L26.25,17a1,1,0,0,0,1.41-1.42Z"
1001
- class="clr-i-outline clr-i-outline-path-1"
1002
- />
1003
- </svg>
1004
- </template>
1005
- <template v-else-if="props.name === 'filter'">
1006
- <svg
1007
- version="1.1"
1008
- class="has-solid"
1009
- viewBox="0 0 36 36"
1010
- preserveAspectRatio="xMidYMid meet"
1011
- xmlns="http://www.w3.org/2000/svg"
1012
- xmlns:xlink="http://www.w3.org/1999/xlink"
1013
- focusable="false"
1014
- role="img"
1015
- >
1016
- <path
1017
- class="clr-i-solid clr-i-solid-path-1"
1018
- d="M8,11v1.12a.5.5,0,0,0,.15.35l7.28,7.36a.5.5,0,0,1,.15.35v6.89a.5.5,0,0,0,.28.45l3.95,1.41a.5.5,0,0,0,.72-.45l0-8.39a.54.54,0,0,1,.18-.35l7.12-7.25a.5.5,0,0,0,.15-.35V11Z"
1019
- />
1020
- </svg>
1021
- </template>
1022
- <template v-else-if="props.name === 'filter-solid'">
1023
- <svg
1024
- version="1.1"
1025
- class="has-solid"
1026
- viewBox="0 0 36 36"
1027
- preserveAspectRatio="xMidYMid meet"
1028
- xmlns="http://www.w3.org/2000/svg"
1029
- xmlns:xlink="http://www.w3.org/1999/xlink"
1030
- focusable="false"
1031
- role="img"
1032
- >
1033
- <path
1034
- class="clr-i-outline clr-i-outline-path-1"
1035
- d="M15,25.86l2,1V20.27a1,1,0,0,0-.29-.7L10.23,13H25.79l-6.47,6.57a1,1,0,0,0-.29.7L19,28l2,1V20.68L27.58,14A1.46,1.46,0,0,0,28,13V12a1,1,0,0,0-1-1H9a1,1,0,0,0-1,1v1a1.46,1.46,0,0,0,.42,1L15,20.68Z"
1036
- />
1037
- <path
1038
- class="clr-i-outline clr-i-outline-path-2"
1039
- d="M18,2A16,16,0,1,0,34,18,16,16,0,0,0,18,2Zm0,30A14,14,0,1,1,32,18,14,14,0,0,1,18,32Z"
1040
- />
1041
- <path
1042
- class="clr-i-solid clr-i-solid-path-1"
1043
- d="M18,2A16,16,0,1,0,34,18,16,16,0,0,0,18,2Zm0,30A14,14,0,1,1,32,18,14,14,0,0,1,18,32Z"
1044
- />
1045
- <path
1046
- class="clr-i-solid clr-i-solid-path-2"
1047
- d="M8,11v1.12a.5.5,0,0,0,.15.35l7.28,7.36a.5.5,0,0,1,.15.35v6.89a.5.5,0,0,0,.28.45l3.95,1.41a.5.5,0,0,0,.72-.45l0-8.39a.54.54,0,0,1,.18-.35l7.12-7.25a.5.5,0,0,0,.15-.35V11Z"
1048
- />
1049
- </svg>
1050
- </template>
1051
- <template v-else-if="props.name === 'check'">
1052
- <svg
1053
- id="Capa_1"
1054
- xmlns="http://www.w3.org/2000/svg"
1055
- xmlns:xlink="http://www.w3.org/1999/xlink"
1056
- version="1.1"
1057
- x="0px"
1058
- y="0px"
1059
- viewBox="0 0 17.837 17.837"
1060
- style="enable-background: new 0 0 17.837 17.837"
1061
- xml:space="preserve"
1062
- >
1063
- <g>
1064
- <path
1065
- d="M16.145,2.571c-0.272-0.273-0.718-0.273-0.99,0L6.92,10.804l-4.241-4.27 c-0.272-0.274-0.715-0.274-0.989,0L0.204,8.019c-0.272,0.271-0.272,0.717,0,0.99l6.217,6.258c0.272,0.271,0.715,0.271,0.99,0 L17.63,5.047c0.276-0.273,0.276-0.72,0-0.994L16.145,2.571z"
1066
- />
1067
- </g>
1068
- </svg>
1069
- </template>
1070
- <template v-else-if="props.name === 'help-icon'">
1071
- <svg
1072
- version="1.1"
1073
- class="can-badge has-solid"
1074
- viewBox="-2 -2 38 38"
1075
- preserveAspectRatio="xMidYMid meet"
1076
- xmlns="http://www.w3.org/2000/svg"
1077
- xmlns:xlink="http://www.w3.org/1999/xlink"
1078
- focusable="false"
1079
- role="img"
1080
- aria-labelledby="_clr_icon_6"
1081
- fill="#565656"
1082
- >
1083
- <path
1084
- d="M18,2A16,16,0,1,0,34,18,16,16,0,0,0,18,2Zm0,30A14,14,0,1,1,32,18,14,14,0,0,1,18,32Z"
1085
- class="clr-i-outline clr-i-outline-path-1"
1086
- />
1087
- <path
1088
- d="M18.29,8.92a7.38,7.38,0,0,0-5.72,2.57,1,1,0,0,0-.32.71.92.92,0,0,0,.95.92,1.08,1.08,0,0,0,.71-.29,5.7,5.7,0,0,1,4.33-2c2.36,0,3.83,1.52,3.83,3.41v.05c0,2.21-1.76,3.44-4.54,3.65a.8.8,0,0,0-.76.92s0,2.32,0,2.75a1,1,0,0,0,1,.9h.11a1,1,0,0,0,.9-1V19.45c3-.42,5.43-2,5.43-5.28v-.05C24.18,11.12,21.84,8.92,18.29,8.92Z"
1089
- class="clr-i-outline clr-i-outline-path-2"
1090
- />
1091
- <circle
1092
- cx="17.78"
1093
- cy="26.2"
1094
- r="1.25"
1095
- class="clr-i-outline clr-i-outline-path-3"
1096
- />
1097
- </svg>
1098
- </template>
1099
- <template v-else-if="props.name === 'close-circle'">
1100
- <svg
1101
- version="1.1"
1102
- class="has-solid"
1103
- viewBox="0 0 36 36"
1104
- preserveAspectRatio="xMidYMid meet"
1105
- xmlns="http://www.w3.org/2000/svg"
1106
- xmlns:xlink="http://www.w3.org/1999/xlink"
1107
- focusable="false"
1108
- role="img"
1109
- aria-labelledby="_clr_icon_169"
1110
- >
1111
- <path
1112
- class="clr-i-outline clr-i-outline-path-1"
1113
- d="M19.61,18l4.86-4.86a1,1,0,0,0-1.41-1.41L18.2,16.54l-4.89-4.89a1,1,0,0,0-1.41,1.41L16.78,18,12,22.72a1,1,0,1,0,1.41,1.41l4.77-4.77,4.74,4.74a1,1,0,0,0,1.41-1.41Z"
1114
- />
1115
- <path
1116
- class="clr-i-outline clr-i-outline-path-2"
1117
- d="M18,34A16,16,0,1,1,34,18,16,16,0,0,1,18,34ZM18,4A14,14,0,1,0,32,18,14,14,0,0,0,18,4Z"
1118
- />
1119
- </svg>
1120
- </template>
1121
- <template v-else-if="props.name === 'column-switch'">
1122
- <svg
1123
- version="1.1"
1124
- viewBox="0 0 36 36"
1125
- preserveAspectRatio="xMidYMid meet"
1126
- xmlns="http://www.w3.org/2000/svg"
1127
- xmlns:xlink="http://www.w3.org/1999/xlink"
1128
- focusable="false"
1129
- role="img"
1130
- >
1131
- <path
1132
- class="clr-i-outline clr-i-outline-path-1"
1133
- d="M31,5H5A2,2,0,0,0,3,7V29a2,2,0,0,0,2,2H31a2,2,0,0,0,2-2V7A2,2,0,0,0,31,5ZM13,29H5V7h8Zm10,0H15V7h8Z"
1134
- />
1135
- </svg>
1136
- </template>
1137
- <template v-else-if="props.name === 'lock'">
1138
- <svg
1139
- xmlns="http://www.w3.org/2000/svg"
1140
- fill="none"
1141
- viewBox="0 0 24 24"
1142
- stroke-width="1.5"
1143
- stroke="currentColor"
1144
- class="w-6 h-6"
1145
- >
1146
- <path
1147
- stroke-linecap="round"
1148
- stroke-linejoin="round"
1149
- d="M16.5 10.5V6.75a4.5 4.5 0 10-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 002.25-2.25v-6.75a2.25 2.25 0 00-2.25-2.25H6.75a2.25 2.25 0 00-2.25 2.25v6.75a2.25 2.25 0 002.25 2.25z"
1150
- />
1151
- </svg>
1152
- </template>
1153
- <template v-else-if="props.name === 'ellipsis-horizontal'">
1154
- <svg
1155
- version="1.1"
1156
- class="can-badge"
1157
- viewBox="0 0 36 36"
1158
- preserveAspectRatio="xMidYMid meet"
1159
- xmlns="http://www.w3.org/2000/svg"
1160
- xmlns:xlink="http://www.w3.org/1999/xlink"
1161
- focusable="false"
1162
- role="img"
1163
- >
1164
- <circle
1165
- cx="31.1"
1166
- cy="18"
1167
- r="2.9"
1168
- class="clr-i-outline clr-i-outline-path-1"
1169
- ></circle>
1170
- <circle
1171
- cx="18"
1172
- cy="18"
1173
- r="2.9"
1174
- class="clr-i-outline clr-i-outline-path-2"
1175
- ></circle>
1176
- <circle
1177
- cx="4.9"
1178
- cy="18"
1179
- r="2.9"
1180
- class="clr-i-outline clr-i-outline-path-3"
1181
- ></circle>
1182
- </svg>
1183
- </template>
1184
- <template v-else-if="props.name === 'step-forward'">
1185
- <svg
1186
- version="1.1"
1187
- viewBox="0 0 36 36"
1188
- preserveAspectRatio="xMidYMid meet"
1189
- xmlns="http://www.w3.org/2000/svg"
1190
- xmlns:xlink="http://www.w3.org/1999/xlink"
1191
- focusable="false"
1192
- role="img"
1193
- >
1194
- <path
1195
- d="M7.08,6.52a1.68,1.68,0,0,0,0,2.4L16.51,18,7.12,27.08a1.7,1.7,0,0,0,2.36,2.44h0L21.4,18,9.48,6.47A1.69,1.69,0,0,0,7.08,6.52Z"
1196
- class="clr-i-outline clr-i-outline-path-1"
1197
- ></path>
1198
- <path
1199
- d="M26.49,5a1.7,1.7,0,0,0-1.7,1.7V29.3a1.7,1.7,0,0,0,3.4,0V6.7A1.7,1.7,0,0,0,26.49,5Z"
1200
- class="clr-i-outline clr-i-outline-path-2"
1201
- ></path>
1202
- </svg>
1203
- </template>
1204
- <template v-else-if="props.name === 'search'">
1205
- <svg
1206
- version="1.1"
1207
- viewBox="0 0 36 36"
1208
- preserveAspectRatio="xMidYMid meet"
1209
- xmlns="http://www.w3.org/2000/svg"
1210
- xmlns:xlink="http://www.w3.org/1999/xlink"
1211
- focusable="false"
1212
- role="img"
1213
- >
1214
- <path
1215
- class="clr-i-outline clr-i-outline-path-1"
1216
- d="M16.33,5.05A10.95,10.95,0,1,1,5.39,16,11,11,0,0,1,16.33,5.05m0-2.05a13,13,0,1,0,13,13,13,13,0,0,0-13-13Z"
1217
- ></path>
1218
- <path
1219
- class="clr-i-outline clr-i-outline-path-2"
1220
- d="M35,33.29l-7.37-7.42-1.42,1.41,7.37,7.42A1,1,0,1,0,35,33.29Z"
1221
- ></path>
1222
- </svg>
1223
- </template>
1224
-
1225
- <template v-else-if="props.name === 'success-circle'">
1226
- <svg
1227
- fill="#2e8500"
1228
- version="1.1"
1229
- class="has-solid"
1230
- preserveAspectRatio="xMidYMid meet"
1231
- xmlns="http://www.w3.org/2000/svg"
1232
- xmlns:xlink="http://www.w3.org/1999/xlink"
1233
- focusable="false"
1234
- role="img"
1235
- viewBox="-1 -1 40 40"
1236
- >
1237
- <path
1238
- class="clr-i-outline clr-i-outline-path-1"
1239
- d="M18,2A16,16,0,1,0,34,18,16,16,0,0,0,18,2Zm0,30A14,14,0,1,1,32,18,14,14,0,0,1,18,32Z"
1240
- ></path>
1241
- <path
1242
- class="clr-i-outline clr-i-outline-path-2"
1243
- d="M28,12.1a1,1,0,0,0-1.41,0L15.49,23.15l-6-6A1,1,0,0,0,8,18.53L15.49,26,28,13.52A1,1,0,0,0,28,12.1Z"
1244
- ></path>
1245
- </svg>
1246
- </template>
1247
-
1248
- <template v-else-if="props.name === 'error-outline'">
1249
- <svg
1250
- xmlns="http://www.w3.org/2000/svg"
1251
- xmlns:xlink="http://www.w3.org/1999/xlink"
1252
- fill="#e02200"
1253
- version="1.1"
1254
- class="has-solid"
1255
- preserveAspectRatio="xMidYMid meet"
1256
- focusable="false"
1257
- role="img"
1258
- viewBox="3 3 30 30"
1259
- >
1260
- <path
1261
- class="clr-i-outline clr-i-outline-path-1"
1262
- d="M18,6A12,12,0,1,0,30,18,12,12,0,0,0,18,6Zm0,22A10,10,0,1,1,28,18,10,10,0,0,1,18,28Z"
1263
- />
1264
- <path
1265
- class="clr-i-outline clr-i-outline-path-2"
1266
- d="M18,20.07a1.3,1.3,0,0,1-1.3-1.3v-6a1.3,1.3,0,1,1,2.6,0v6A1.3,1.3,0,0,1,18,20.07Z"
1267
- />
1268
- <circle
1269
- class="clr-i-outline clr-i-outline-path-3"
1270
- cx="17.95"
1271
- cy="23.02"
1272
- r="1.5"
1273
- />
1274
- </svg>
1275
- </template>
1276
-
1277
- <template v-else-if="props.name === 'warning-outline'">
1278
- <svg
1279
- fill="#c27b00"
1280
- version="1.1"
1281
- class="has-solid"
1282
- viewBox="0 0 36 36"
1283
- preserveAspectRatio="xMidYMid meet"
1284
- xmlns="http://www.w3.org/2000/svg"
1285
- xmlns:xlink="http://www.w3.org/1999/xlink"
1286
- focusable="false"
1287
- role="img"
1288
- >
1289
- <path
1290
- class="clr-i-outline clr-i-outline-path-1"
1291
- d="M18,21.32a1.3,1.3,0,0,0,1.3-1.3V14a1.3,1.3,0,1,0-2.6,0v6A1.3,1.3,0,0,0,18,21.32Z"
1292
- ></path>
1293
- <circle
1294
- class="clr-i-outline clr-i-outline-path-2"
1295
- cx="17.95"
1296
- cy="24.27"
1297
- r="1.5"
1298
- ></circle>
1299
- <path
1300
- class="clr-i-outline clr-i-outline-path-3"
1301
- d="M30.33,25.54,20.59,7.6a3,3,0,0,0-5.27,0L5.57,25.54A3,3,0,0,0,8.21,30H27.69a3,3,0,0,0,2.64-4.43Zm-1.78,1.94a1,1,0,0,1-.86.49H8.21a1,1,0,0,1-.88-1.48L17.07,8.55a1,1,0,0,1,1.76,0l9.74,17.94A1,1,0,0,1,28.55,27.48Z"
1302
- ></path>
1303
- </svg>
1304
- </template>
1305
- <template v-else-if="props.name === 'is-error'">
1306
- <svg
1307
- fill="#e02200"
1308
- version="1.1"
1309
- class="has-solid"
1310
- viewBox="0 0 36 36"
1311
- preserveAspectRatio="xMidYMid meet"
1312
- xmlns="http://www.w3.org/2000/svg"
1313
- xmlns:xlink="http://www.w3.org/1999/xlink"
1314
- focusable="false"
1315
- role="img"
1316
- >
1317
- <path
1318
- class="clr-i-outline clr-i-outline-path-3"
1319
- d="M18,34A16,16,0,1,1,34,18,16,16,0,0,1,18,34ZM18,4A14,14,0,1,0,32,18,14,14,0,0,0,18,4Z"
1320
- ></path>
1321
- <path
1322
- class="clr-i-solid clr-i-solid-path-1"
1323
- d="M18,2.1a16,16,0,1,0,16,16A16,16,0,0,0,18,2.1ZM16.6,8.8a1.4,1.4,0,0,1,2.8,0v12a1.4,1.4,0,0,1-2.8,0ZM18,28.6a1.8,1.8,0,1,1,1.8-1.8A1.8,1.8,0,0,1,18,28.6Z"
1324
- ></path>
1325
- </svg>
1326
- </template>
1327
- <template v-else-if="props.name === 'home-objects-datastore'">
1328
- <svg width="38" height="38" viewBox="1 1 38 38">
1329
- <!-- <path d="M18 10c-.8 0-8 .1-8 3v14c0 2.9 7.2 3 8 3s8-.1 8-3V13c0-2.9-7.2-3-8-3zm6 4.9c-.4.4-2.5 1.1-6 1.1a18.1 18.1 0 01-4-.4v2a27.1 27.1 0 004 .4 20.29 20.29 0 006-.9v3.8c-.4.4-2.5 1.1-6 1.1a18.1 18.1 0 01-4-.4v2a27.1 27.1 0 004 .4 20.29 20.29 0 006-.9v3.8c-.4.4-2.5 1.1-6 1.1s-5.6-.7-6-1.1V13.1c.4-.4 2.5-1.1 6-1.1s5.6.7 6 1.1z"/> -->
1330
- <path
1331
- d="M18 34c-1.43 0-14-.11-14-4V6c0-3.89 12.57-4 14-4s14 .11 14 4v24c0 3.89-12.57 4-14 4zM6 29.93c.51.76 4.86 2.07 12 2.07s11.49-1.31 12-2.07V6.07C29.49 5.31 25.14 4 18 4S6.51 5.31 6 6.07z"
1332
- />
1333
- <path
1334
- d="M6 13.9a.19.19 0 010 .1v-.08zM8 9a46.29 46.29 0 0010 1c1.43 0 14-.11 14-4h-2a.19.19 0 010-.1c-.39.75-4.76 2.1-12 2.1A38 38 0 018 6.88zM6 5.9A.19.19 0 016 6v-.08zM30 13.9c-.41.75-4.78 2.1-12 2.1a38 38 0 01-10-1.12V17a46.29 46.29 0 0010 1c1.43 0 14-.11 14-4h-2a.19.19 0 010-.1zM30 21.9c-.41.75-4.78 2.1-12 2.1a38 38 0 01-10-1.12V25a46.29 46.29 0 0010 1c1.43 0 14-.11 14-4h-2a.19.19 0 010-.1zM6 21.9a.19.19 0 010 .1v-.08-.02z"
1335
- />
1336
- </svg>
1337
- </template>
1338
-
1339
- <template v-else-if="props.name === 'upload-icon'">
1340
- <svg
1341
- version="1.1"
1342
- viewBox="0 0 36 36"
1343
- preserveAspectRatio="xMidYMid meet"
1344
- xmlns="http://www.w3.org/2000/svg"
1345
- xmlns:xlink="http://www.w3.org/1999/xlink"
1346
- focusable="false"
1347
- role="img"
1348
- >
1349
- <path
1350
- class="clr-i-outline clr-i-outline-path-1"
1351
- d="M27,33H5a2,2,0,0,1-2-2V9A2,2,0,0,1,5,7H15V9H5V31H27V21h2V31A2,2,0,0,1,27,33Z"
1352
- ></path>
1353
- <path
1354
- class="clr-i-outline clr-i-outline-path-2"
1355
- d="M18,3a1,1,0,0,0,0,2H29.59L15.74,18.85a1,1,0,1,0,1.41,1.41L31,6.41V18a1,1,0,0,0,2,0V3Z"
1356
- ></path>
1357
- </svg>
1358
- </template>
1359
-
1360
- <template v-else-if="props.name === 'home-obj-alerts'">
1361
- <svg
1362
- xmlns="http://www.w3.org/2000/svg"
1363
- xmlns:xlink="http://www.w3.org/1999/xlink"
1364
- viewBox="0 0 60 72"
1365
- version="1.1"
1366
- >
1367
- <defs>
1368
- <ellipse
1369
- id="path-1"
1370
- cx="30"
1371
- cy="61.7666667"
1372
- rx="15.4512904"
1373
- ry="4.73333333"
1374
- />
1375
- <mask
1376
- id="mask-2"
1377
- maskContentUnits="userSpaceOnUse"
1378
- maskUnits="objectBoundingBox"
1379
- x="0"
1380
- y="0"
1381
- width="30.9025808"
1382
- height="9.46666667"
1383
- fill="white"
1384
- >
1385
- <use xlink:href="#path-1" />
1386
- </mask>
1387
- </defs>
1388
- <g
1389
- id="Page-1"
1390
- stroke="none"
1391
- stroke-width="1"
1392
- fill="none"
1393
- fill-rule="evenodd"
1394
- >
1395
- <!-- <g id="Artboard"> -->
1396
- <use
1397
- id="Oval-10"
1398
- stroke="#C1DFEF"
1399
- mask="url(#mask-2)"
1400
- stroke-width="2.8"
1401
- stroke-linecap="square"
1402
- stroke-dasharray="3,6,3,5"
1403
- xlink:href="#path-1"
1404
- />
1405
- <path
1406
- d="M38.4613647,18.1642456 L30.9890137,34.9141846 L31,47 L32.5977783,46.5167236 L32.5977783,34.9141846 L51.0673218,15.7560425 C51.0673218,15.7560425 48.6295166,16.6542969 44.9628906,17.3392334 C41.2962646,18.0241699 38.4613647,18.1642456 38.4613647,18.1642456 Z"
1407
- fill="#C1DFEF"
1408
- />
1409
- <path
1410
- d="M4.74639226,12.5661855 L4.62065726,12.1605348 L5.3515414,11.1625044 L5.77622385,11.159939 L6.20936309,12.5573481 L4.74639226,12.5661855 Z M6.20936309,12.5573481 L6.32542632,12.9317954 L28.4963855,34.8796718 L28.4963855,47.8096691 L32.6,46.4836513 L32.6,34.8992365 L53.973494,12.7035813 L53.973494,12.2688201 L6.20936309,12.5573481 Z M55.373494,10.8603376 L55.373494,13.2680664 L34,35.4637216 L34,47.5025401 L27.0963855,49.7333333 L27.0963855,35.4637219 L5.09179688,13.680542 L4.31325301,11.1687764 L55.373494,10.8603376 Z"
1411
- fill="#7FBDDD"
1412
- />
1413
- <ellipse
1414
- id="Oval-9"
1415
- fill="#FFFFFF"
1416
- cx="30"
1417
- cy="11.785654"
1418
- rx="26"
1419
- ry="6.78565401"
1420
- />
1421
- <path
1422
- d="M30,17.171308 C36.8772177,17.171308 43.3112282,16.4610701 48.0312371,15.2292106 C50.2777611,14.6428977 52.0507619,13.9579677 53.2216231,13.2354973 C54.1938565,12.6355886 54.6,12.1175891 54.6,11.785654 C54.6,11.4537189 54.1938565,10.9357194 53.2216231,10.3358107 C52.0507619,9.61334032 50.2777611,8.92841034 48.0312371,8.34209746 C43.3112282,7.11023795 36.8772177,6.4 30,6.4 C23.1227823,6.4 16.6887718,7.11023795 11.9687629,8.34209746 C9.72223886,8.92841034 7.94923814,9.61334032 6.77837689,10.3358107 C5.8061435,10.9357194 5.4,11.4537189 5.4,11.785654 C5.4,12.1175891 5.8061435,12.6355886 6.77837689,13.2354973 C7.94923814,13.9579677 9.72223886,14.6428977 11.9687629,15.2292106 C16.6887718,16.4610701 23.1227823,17.171308 30,17.171308 Z M30,18.571308 C15.6405965,18.571308 4,15.5332672 4,11.785654 C4,8.03804078 15.6405965,5 30,5 C44.3594035,5 56,8.03804078 56,11.785654 C56,15.5332672 44.3594035,18.571308 30,18.571308 Z"
1423
- fill="#7FBDDD"
1424
- />
1425
- <path
1426
- d="M18.2608643,7.14562988 L22.727356,16.9047241 C22.727356,16.9047241 15.3006592,16.3911743 10.276001,14.7511597 C5.25134277,13.111145 5.38031006,11.8284302 5.38031006,11.6882935 C5.38031006,10.4832831 8.16633152,9.41877716 11.114563,8.57324219 C14.549319,7.58817492 18.2608643,7.14562988 18.2608643,7.14562988 Z"
1427
- fill="#C1DFEF"
1428
- />
1429
- <!-- </g> -->
1430
- </g>
1431
- </svg>
1432
- </template>
1433
-
1434
- <template v-else-if="props.name === 'is-warning'">
1435
- <svg
1436
- version="1.1"
1437
- class="has-solid"
1438
- viewBox="0 0 36 36"
1439
- preserveAspectRatio="xMidYMid meet"
1440
- xmlns="http://www.w3.org/2000/svg"
1441
- xmlns:xlink="http://www.w3.org/1999/xlink"
1442
- focusable="false"
1443
- role="img"
1444
- data-v-a3a271aa=""
1445
- fill="#c27b00"
1446
- >
1447
- <path
1448
- class="clr-i-solid clr-i-solid-path-1"
1449
- d="M34.6,29.21,20.71,3.65a3.22,3.22,0,0,0-5.66,0L1.17,29.21A3.22,3.22,0,0,0,4,34H31.77a3.22,3.22,0,0,0,2.83-4.75ZM16.6,10a1.4,1.4,0,0,1,2.8,0v12a1.4,1.4,0,0,1-2.8,0ZM18,29.85a1.8,1.8,0,1,1,1.8-1.8A1.8,1.8,0,0,1,18,29.85Z"
1450
- data-v-a3a271aa=""
1451
- ></path>
1452
- </svg>
1453
- </template>
1454
-
1455
- <template v-else-if="props.name === 'calendar-current-date'">
1456
- <svg
1457
- class="can-badge can-alert has-solid current-btn"
1458
- width="18"
1459
- height="18"
1460
- viewBox="0 0 36 36"
1461
- stroke="#0095d3"
1462
- preserveAspectRatio="xMidYMid meet"
1463
- xmlns="http://www.w3.org/2000/svg"
1464
- focusable="false"
1465
- role="img"
1466
- aria-labelledby="_clr_icon_210"
1467
- fill="#0095d3"
1468
- stroke-width="0"
1469
- >
1470
- <path
1471
- class="clr-i-outline clr-i-outline-path-1"
1472
- d="M16.17,25.86,10.81,20.5a1,1,0,0,1,1.41-1.41L16.17,23l8.64-8.64a1,1,0,0,1,1.41,1.41Z"
1473
- style=""
1474
- ></path>
1475
- <path
1476
- class="clr-i-outline clr-i-outline-path-2"
1477
- d="M32.25,6H29V8h3V30H4V8H7V6H3.75A1.78,1.78,0,0,0,2,7.81V30.19A1.78,1.78,0,0,0,3.75,32h28.5A1.78,1.78,0,0,0,34,30.19V7.81A1.78,1.78,0,0,0,32.25,6Z"
1478
- style=""
1479
- ></path>
1480
- <path
1481
- class="clr-i-outline clr-i-outline-path-3"
1482
- d="M10,10a1,1,0,0,0,1-1V3A1,1,0,0,0,9,3V9A1,1,0,0,0,10,10Z"
1483
- style=""
1484
- ></path>
1485
- <path
1486
- class="clr-i-outline clr-i-outline-path-4"
1487
- d="M26,10a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V9A1,1,0,0,0,26,10Z"
1488
- style=""
1489
- ></path>
1490
- <rect
1491
- class="clr-i-outline clr-i-outline-path-5"
1492
- x="13"
1493
- y="6"
1494
- width="10"
1495
- height="2"
1496
- style=""
1497
- ></rect>
1498
- </svg>
1499
- </template>
1500
-
1501
- <template v-else-if="props.name === 'calendar'">
1502
- <svg
1503
- width="18"
1504
- height="18"
1505
- class="can-badge can-alert has-solid"
1506
- viewBox="0 0 36 36"
1507
- preserveAspectRatio="xMidYMid meet"
1508
- xmlns="http://www.w3.org/2000/svg"
1509
- xmlns:xlink="http://www.w3.org/1999/xlink"
1510
- focusable="false"
1511
- role="img"
1512
- fill="#0095d3"
1513
- >
1514
- <path
1515
- class="clr-i-outline clr-i-outline-path-1"
1516
- d="M32.25,6H29V8h3V30H4V8H7V6H3.75A1.78,1.78,0,0,0,2,7.81V30.19A1.78,1.78,0,0,0,3.75,32h28.5A1.78,1.78,0,0,0,34,30.19V7.81A1.78,1.78,0,0,0,32.25,6Z"
1517
- ></path>
1518
- <rect
1519
- class="clr-i-outline clr-i-outline-path-2"
1520
- x="8"
1521
- y="14"
1522
- width="2"
1523
- height="2"
1524
- style="fill: blue"
1525
- ></rect>
1526
- <rect
1527
- class="clr-i-outline clr-i-outline-path-3"
1528
- x="14"
1529
- y="14"
1530
- width="2"
1531
- height="2"
1532
- ></rect>
1533
- <rect
1534
- class="clr-i-outline clr-i-outline-path-4"
1535
- x="20"
1536
- y="14"
1537
- width="2"
1538
- height="2"
1539
- ></rect>
1540
- <rect
1541
- class="clr-i-outline clr-i-outline-path-5"
1542
- x="26"
1543
- y="14"
1544
- width="2"
1545
- height="2"
1546
- ></rect>
1547
- <rect
1548
- class="clr-i-outline clr-i-outline-path-6"
1549
- x="8"
1550
- y="19"
1551
- width="2"
1552
- height="2"
1553
- ></rect>
1554
- <rect
1555
- class="clr-i-outline clr-i-outline-path-7"
1556
- x="14"
1557
- y="19"
1558
- width="2"
1559
- height="2"
1560
- ></rect>
1561
- <rect
1562
- class="clr-i-outline clr-i-outline-path-8"
1563
- x="20"
1564
- y="19"
1565
- width="2"
1566
- height="2"
1567
- ></rect>
1568
- <rect
1569
- class="clr-i-outline clr-i-outline-path-9"
1570
- x="26"
1571
- y="19"
1572
- width="2"
1573
- height="2"
1574
- ></rect>
1575
- <rect
1576
- class="clr-i-outline clr-i-outline-path-10"
1577
- x="8"
1578
- y="24"
1579
- width="2"
1580
- height="2"
1581
- ></rect>
1582
- <rect
1583
- class="clr-i-outline clr-i-outline-path-11"
1584
- x="14"
1585
- y="24"
1586
- width="2"
1587
- height="2"
1588
- ></rect>
1589
- <rect
1590
- class="clr-i-outline clr-i-outline-path-12"
1591
- x="20"
1592
- y="24"
1593
- width="2"
1594
- height="2"
1595
- ></rect>
1596
- <rect
1597
- class="clr-i-outline clr-i-outline-path-13"
1598
- x="26"
1599
- y="24"
1600
- width="2"
1601
- height="2"
1602
- ></rect>
1603
- <path
1604
- class="clr-i-outline clr-i-outline-path-14"
1605
- d="M10,10a1,1,0,0,0,1-1V3A1,1,0,0,0,9,3V9A1,1,0,0,0,10,10Z"
1606
- ></path>
1607
- <path
1608
- class="clr-i-outline clr-i-outline-path-15"
1609
- d="M26,10a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V9A1,1,0,0,0,26,10Z"
1610
- ></path>
1611
- <rect
1612
- class="clr-i-outline clr-i-outline-path-16"
1613
- x="13"
1614
- y="6"
1615
- width="10"
1616
- height="2"
1617
- ></rect>
1618
-
1619
- <polygon points="21.29 6 13 6 13 8 20.14 8 21.29 6"></polygon>
1620
- </svg>
1621
- </template>
1622
-
1623
- <template v-else-if="props.name === 'dir-zone'">
1624
- <svg
1625
- xmlns="http://www.w3.org/2000/svg"
1626
- xmlns:xlink="http://www.w3.org/1999/xlink"
1627
- width="96"
1628
- height="124"
1629
- viewBox="0 0 96 124"
1630
- >
1631
- <defs>
1632
- <linearGradient
1633
- id="linear-gradient"
1634
- x1="-1947.81"
1635
- y1="26.92"
1636
- x2="-1927.2"
1637
- y2="47.22"
1638
- gradientTransform="matrix(-1, 0, 0, 1, -1894.04, 0)"
1639
- gradientUnits="userSpaceOnUse"
1640
- >
1641
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.4" />
1642
- <stop offset="0.32" stop-color="#0091da" stop-opacity="0.32" />
1643
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
1644
- </linearGradient>
1645
- <linearGradient
1646
- id="linear-gradient-2"
1647
- x1="75.2"
1648
- y1="17.61"
1649
- x2="4.5"
1650
- y2="88.13"
1651
- gradientUnits="userSpaceOnUse"
1652
- >
1653
- <stop offset="0.27" stop-color="#0091da" />
1654
- <stop offset="0.69" stop-color="#0091da" stop-opacity="0.32" />
1655
- <stop offset="0.9" stop-color="#0091da" stop-opacity="0" />
1656
- </linearGradient>
1657
- <linearGradient
1658
- id="illus_grad"
1659
- x1="-1978.87"
1660
- y1="81.11"
1661
- x2="-1949.93"
1662
- y2="113.57"
1663
- gradientTransform="matrix(-1, 0, 0, 1, -1897.93, 0)"
1664
- gradientUnits="userSpaceOnUse"
1665
- >
1666
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
1667
- <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
1668
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
1669
- </linearGradient>
1670
- </defs>
1671
- <g id="Layer_6" data-name="Layer 6">
1672
- <rect class="cls-1" width="96" height="124" style="fill: none" />
1673
- </g>
1674
- <g id="Layer_4" data-name="Layer 4">
1675
- <polygon
1676
- class="cls-2"
1677
- points="31.3 39.79 50.37 20.72 69.46 20.72 50.39 39.79 31.3 39.79"
1678
- style="opacity: 0.5; fill: url(#linear-gradient)"
1679
- />
1680
- <polygon
1681
- class="cls-3"
1682
- points="5 75.57 52.37 28.2 76.68 28.2 29.31 75.57 5 75.57"
1683
- style="fill: url(#linear-gradient-2); opacity: 0.3"
1684
- />
1685
- </g>
1686
- <g id="Layer_2" data-name="Layer 2">
1687
- <path
1688
- class="cls-4"
1689
- style="fill: #0091da"
1690
- d="M42,93.62H18.25l8-36a1.24,1.24,0,0,1,1.21-1H81.89a1.25,1.25,0,0,1,1,.47,1.27,1.27,0,0,1,.24,1.07L80.5,70h2l2.51-11.33a3.26,3.26,0,0,0-.63-2.76,3.21,3.21,0,0,0-2.54-1.22H27.42a3.22,3.22,0,0,0-3.16,2.52L18,85.48V46.94a1.25,1.25,0,0,1,1.25-1.25H35.31l2.58,5H73.83a1.14,1.14,0,0,1,1.25,1.1v.9h2v-.9a3.11,3.11,0,0,0-3.25-3.1H39.11l-2.59-5H19.25A3.26,3.26,0,0,0,16,46.94V95h.1a1,1,0,0,0,.12.25,1,1,0,0,0,.78.37H42Z"
1691
- />
1692
- <polygon
1693
- class="cls-5"
1694
- points="48 101.89 76.81 101.89 76.81 73.12 48 101.89"
1695
- style="opacity: 0.5; fill: url(#illus_grad)"
1696
- />
1697
- <rect
1698
- class="cls-4"
1699
- x="55.37"
1700
- y="68.7"
1701
- width="2"
1702
- height="3.09"
1703
- style="fill: #0091da"
1704
- />
1705
- <rect
1706
- class="cls-4"
1707
- x="60.43"
1708
- y="68.7"
1709
- width="2"
1710
- height="3.09"
1711
- style="fill: #0091da"
1712
- />
1713
- <rect
1714
- class="cls-4"
1715
- x="65.48"
1716
- y="68.7"
1717
- width="2"
1718
- height="3.09"
1719
- style="fill: #0091da"
1720
- />
1721
- <rect
1722
- class="cls-4"
1723
- x="55.37"
1724
- y="76.56"
1725
- width="2"
1726
- height="3.09"
1727
- style="fill: #0091da"
1728
- />
1729
- <rect
1730
- class="cls-4"
1731
- x="60.43"
1732
- y="76.56"
1733
- width="2"
1734
- height="3.09"
1735
- style="fill: #0091da"
1736
- />
1737
- <rect
1738
- class="cls-4"
1739
- x="65.48"
1740
- y="76.56"
1741
- width="2"
1742
- height="3.09"
1743
- style="fill: #0091da"
1744
- />
1745
- <rect
1746
- class="cls-4"
1747
- x="73.91"
1748
- y="78.24"
1749
- width="2"
1750
- height="1.96"
1751
- style="fill: #0091da"
1752
- />
1753
- <rect
1754
- class="cls-4"
1755
- x="77.84"
1756
- y="78.24"
1757
- width="2"
1758
- height="1.96"
1759
- style="fill: #0091da"
1760
- />
1761
- <rect
1762
- class="cls-4"
1763
- x="81.77"
1764
- y="78.24"
1765
- width="2"
1766
- height="1.96"
1767
- style="fill: #0091da"
1768
- />
1769
- <rect
1770
- class="cls-4"
1771
- x="73.91"
1772
- y="84.97"
1773
- width="2"
1774
- height="1.96"
1775
- style="fill: #0091da"
1776
- />
1777
- <rect
1778
- class="cls-4"
1779
- x="77.84"
1780
- y="84.97"
1781
- width="2"
1782
- height="1.96"
1783
- style="fill: #0091da"
1784
- />
1785
- <rect
1786
- class="cls-4"
1787
- x="81.77"
1788
- y="84.97"
1789
- width="2"
1790
- height="1.96"
1791
- style="fill: #0091da"
1792
- />
1793
- <rect
1794
- class="cls-4"
1795
- x="73.91"
1796
- y="91.71"
1797
- width="2"
1798
- height="1.96"
1799
- style="fill: #0091da"
1800
- />
1801
- <rect
1802
- class="cls-4"
1803
- x="77.84"
1804
- y="91.71"
1805
- width="2"
1806
- height="1.96"
1807
- style="fill: #0091da"
1808
- />
1809
- <rect
1810
- class="cls-4"
1811
- x="81.77"
1812
- y="91.71"
1813
- width="2"
1814
- height="1.96"
1815
- style="fill: #0091da"
1816
- />
1817
- <rect
1818
- class="cls-4"
1819
- x="55.37"
1820
- y="84.41"
1821
- width="2"
1822
- height="3.09"
1823
- style="fill: #0091da"
1824
- />
1825
- <rect
1826
- class="cls-4"
1827
- x="60.43"
1828
- y="84.41"
1829
- width="2"
1830
- height="3.09"
1831
- style="fill: #0091da"
1832
- />
1833
- <rect
1834
- class="cls-4"
1835
- x="65.48"
1836
- y="84.41"
1837
- width="2"
1838
- height="3.09"
1839
- style="fill: #0091da"
1840
- />
1841
- <rect
1842
- class="cls-4"
1843
- x="55.37"
1844
- y="92.27"
1845
- width="2"
1846
- height="3.09"
1847
- style="fill: #0091da"
1848
- />
1849
- <rect
1850
- class="cls-4"
1851
- x="60.43"
1852
- y="92.27"
1853
- width="2"
1854
- height="3.09"
1855
- style="fill: #0091da"
1856
- />
1857
- <rect
1858
- class="cls-4"
1859
- x="65.48"
1860
- y="92.27"
1861
- width="2"
1862
- height="3.09"
1863
- style="fill: #0091da"
1864
- />
1865
- <path
1866
- class="cls-4"
1867
- style="fill: #0091da"
1868
- d="M87,103l-37,0V62.51A1.52,1.52,0,0,1,51.51,61h19A1.52,1.52,0,0,1,72,62.51V101H86V74H74V72H86.49A1.52,1.52,0,0,1,88,73.51V103Zm-35-2H70V63H52Z"
1869
- />
1870
- </g>
1871
- </svg>
1872
- </template>
1873
-
1874
- <template v-else-if="props.name === 'dir-net'">
1875
- <svg
1876
- xmlns="http://www.w3.org/2000/svg"
1877
- xmlns:xlink="http://www.w3.org/1999/xlink"
1878
- width="96"
1879
- height="124"
1880
- viewBox="0 0 96 124"
1881
- >
1882
- <defs>
1883
- <linearGradient
1884
- id="linear-gradient"
1885
- x1="75.2"
1886
- y1="17.61"
1887
- x2="4.5"
1888
- y2="88.13"
1889
- gradientUnits="userSpaceOnUse"
1890
- >
1891
- <stop offset="0.27" stop-color="#0091da" />
1892
- <stop offset="0.69" stop-color="#0091da" stop-opacity="0.32" />
1893
- <stop offset="0.9" stop-color="#0091da" stop-opacity="0" />
1894
- </linearGradient>
1895
- <linearGradient
1896
- id="linear-gradient-2"
1897
- x1="-2547.81"
1898
- y1="26.92"
1899
- x2="-2527.2"
1900
- y2="47.22"
1901
- gradientTransform="matrix(-1, 0, 0, 1, -2494.04, 0)"
1902
- gradientUnits="userSpaceOnUse"
1903
- >
1904
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.4" />
1905
- <stop offset="0.32" stop-color="#0091da" stop-opacity="0.32" />
1906
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
1907
- </linearGradient>
1908
- </defs>
1909
- <g id="Layer_6" data-name="Layer 6">
1910
- <rect class="cls-1" width="96" height="124" style="fill: none" />
1911
- </g>
1912
- <g id="Layer_4" data-name="Layer 4">
1913
- <polygon
1914
- class="cls-2"
1915
- points="5 75.57 52.37 28.2 76.68 28.2 29.31 75.57 5 75.57"
1916
- style="opacity: 0.3; fill: url(#linear-gradient)"
1917
- />
1918
- <polygon
1919
- class="cls-3"
1920
- points="31.3 39.79 50.37 20.72 69.46 20.72 50.39 39.79 31.3 39.79"
1921
- style="opacity: 0.5; fill: url(#linear-gradient-2)"
1922
- />
1923
- </g>
1924
- <g id="Layer_2" data-name="Layer 2">
1925
- <path
1926
- class="cls-4"
1927
- style="fill: #0091da"
1928
- d="M51.55,93.94H18.25l8-36a1.24,1.24,0,0,1,1.21-1H81.89a1.25,1.25,0,0,1,1,.47,1.28,1.28,0,0,1,.24,1.07l-1.54,7a21.93,21.93,0,0,1,1.68,1.66L85.06,59a3.25,3.25,0,0,0-3.17-4H27.42a3.23,3.23,0,0,0-3.16,2.53L18,85.79V47.25A1.25,1.25,0,0,1,19.25,46H35.31l2.58,5H73.83a1.14,1.14,0,0,1,1.25,1.1V53h2v-.9A3.11,3.11,0,0,0,73.83,49H39.11l-2.59-5H19.25A3.26,3.26,0,0,0,16,47.25V95.32h.1a1.08,1.08,0,0,0,.12.24,1,1,0,0,0,.78.38H53.36A21.35,21.35,0,0,1,51.55,93.94Z"
1929
- />
1930
- <path
1931
- class="cls-4"
1932
- style="fill: #0091da"
1933
- d="M67.82,98.88A17.84,17.84,0,1,1,85.65,81.05,17.85,17.85,0,0,1,67.82,98.88Zm0-33.67A15.84,15.84,0,1,0,83.65,81.05,15.85,15.85,0,0,0,67.82,65.21Z"
1934
- />
1935
- <path
1936
- class="cls-4"
1937
- style="fill: #0091da"
1938
- d="M61.93,94.1l-.2-1.69A18,18,0,0,0,75.91,67l1.55-.71a19.73,19.73,0,0,1-9.67,26.13A19.27,19.27,0,0,1,61.93,94.1Z"
1939
- />
1940
- <path
1941
- class="cls-4"
1942
- style="fill: #0091da"
1943
- d="M51.26,79.92l-1.32-1.07a22.3,22.3,0,0,1,5.34-4.73c8.56-5.45,19.92-4.57,28.92,2.26l-1,1.35c-8.43-6.39-19-7.24-27-2.18A20.77,20.77,0,0,0,51.26,79.92Z"
1944
- />
1945
- <path
1946
- class="cls-4"
1947
- style="fill: #0091da"
1948
- d="M74.51,96.35c-10.34-4.54-16.65-14-16.06-24.18a22.49,22.49,0,0,1,1.52-7l1.59.62a21,21,0,0,0-1.42,6.44c-.54,9.43,5.37,18.27,15,22.53Z"
1949
- />
1950
- <path
1951
- class="cls-4"
1952
- style="fill: #0091da"
1953
- d="M69.64,85.75a31.76,31.76,0,0,1-12.32-2.52A32.15,32.15,0,0,1,51,79.71l1-1.38a30.56,30.56,0,0,0,6,3.34,29.63,29.63,0,0,0,17.33,1.82l.33,1.67A31.06,31.06,0,0,1,69.64,85.75Z"
1954
- />
1955
- <circle
1956
- class="cls-4"
1957
- style="fill: #0091da"
1958
- cx="77.18"
1959
- cy="66.73"
1960
- r="1.89"
1961
- />
1962
- <circle
1963
- class="cls-4"
1964
- style="fill: #0091da"
1965
- cx="59.39"
1966
- cy="73.11"
1967
- r="1.89"
1968
- />
1969
- <circle
1970
- class="cls-4"
1971
- style="fill: #0091da"
1972
- cx="84.2"
1973
- cy="76.91"
1974
- r="1.89"
1975
- />
1976
- <circle
1977
- class="cls-4"
1978
- style="fill: #0091da"
1979
- cx="62.62"
1980
- cy="93.09"
1981
- r="1.89"
1982
- />
1983
- <circle
1984
- class="cls-4"
1985
- style="fill: #0091da"
1986
- cx="75.74"
1987
- cy="84.32"
1988
- r="1.89"
1989
- transform="translate(-8.66 159.98) rotate(-89.94)"
1990
- />
1991
- <circle
1992
- class="cls-4"
1993
- style="fill: #0091da"
1994
- cx="75.14"
1995
- cy="95.61"
1996
- r="1.89"
1997
- />
1998
- <circle
1999
- class="cls-4"
2000
- style="fill: #0091da"
2001
- cx="50.97"
2002
- cy="78.64"
2003
- r="1.89"
2004
- />
2005
- <path
2006
- class="cls-4"
2007
- style="fill: #0091da"
2008
- d="M81.5,106H68V98.75a1,1,0,0,1,2,0V104H81.5a1,1,0,0,1,0,2Z"
2009
- />
2010
- <path
2011
- class="cls-4"
2012
- style="fill: #0091da"
2013
- d="M66,104H54.93a1,1,0,0,0,0,2H66Z"
2014
- />
2015
- </g>
2016
- </svg>
2017
- </template>
2018
-
2019
- <template v-else-if="props.name === 'dir-ds'">
2020
- <svg
2021
- xmlns="http://www.w3.org/2000/svg"
2022
- xmlns:xlink="http://www.w3.org/1999/xlink"
2023
- width="96"
2024
- height="124"
2025
- viewBox="0 0 96 124"
2026
- >
2027
- <defs>
2028
- <linearGradient
2029
- id="linear-gradient"
2030
- x1="-1647.81"
2031
- y1="26.92"
2032
- x2="-1627.2"
2033
- y2="47.22"
2034
- gradientTransform="matrix(-1, 0, 0, 1, -1594.04, 0)"
2035
- gradientUnits="userSpaceOnUse"
2036
- >
2037
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.4" />
2038
- <stop offset="0.32" stop-color="#0091da" stop-opacity="0.32" />
2039
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
2040
- </linearGradient>
2041
- <linearGradient
2042
- id="linear-gradient-2"
2043
- x1="75.2"
2044
- y1="17.61"
2045
- x2="4.5"
2046
- y2="88.13"
2047
- gradientUnits="userSpaceOnUse"
2048
- >
2049
- <stop offset="0.27" stop-color="#0091da" />
2050
- <stop offset="0.69" stop-color="#0091da" stop-opacity="0.32" />
2051
- <stop offset="0.9" stop-color="#0091da" stop-opacity="0" />
2052
- </linearGradient>
2053
- <linearGradient
2054
- id="illus_grad"
2055
- x1="74.36"
2056
- y1="81.78"
2057
- x2="74.36"
2058
- y2="112.8"
2059
- gradientUnits="userSpaceOnUse"
2060
- >
2061
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
2062
- <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
2063
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
2064
- </linearGradient>
2065
- </defs>
2066
- <g id="Layer_6" data-name="Layer 6">
2067
- <rect class="cls-1" width="96" height="124" style="fill: none" />
2068
- <rect class="cls-1" width="96" height="124" style="fill: none" />
2069
- </g>
2070
- <g id="Layer_4" data-name="Layer 4">
2071
- <polygon
2072
- class="cls-2"
2073
- style="opacity: 0.5; fill: url(#linear-gradient)"
2074
- points="31.3 39.79 50.37 20.72 69.46 20.72 50.39 39.79 31.3 39.79"
2075
- />
2076
- <polygon
2077
- class="cls-3"
2078
- style="opacity: 0.3; fill: url(#linear-gradient-2)"
2079
- points="5 75.57 52.37 28.2 76.68 28.2 29.31 75.57 5 75.57"
2080
- />
2081
- </g>
2082
- <g id="Layer_2" data-name="Layer 2">
2083
- <path
2084
- class="cls-4"
2085
- style="fill: #0091da"
2086
- d="M44.32,93.62H18.25l8-36a1.24,1.24,0,0,1,1.21-1H81.89a1.25,1.25,0,0,1,1,.47,1.27,1.27,0,0,1,.24,1.07l-.81,3.65a18.77,18.77,0,0,1,1.88.77l.88-4a3.26,3.26,0,0,0-.63-2.76,3.21,3.21,0,0,0-2.54-1.22H27.42a3.22,3.22,0,0,0-3.16,2.52L18,85.48V46.94a1.25,1.25,0,0,1,1.25-1.25H35.31l2.58,5H73.83a1.14,1.14,0,0,1,1.25,1.1v.9h2v-.9a3.11,3.11,0,0,0-3.25-3.1H39.11l-2.59-5H19.25A3.26,3.26,0,0,0,16,46.94V95h.1a1,1,0,0,0,.12.25,1,1,0,0,0,.78.37H44.32Z"
2087
- />
2088
- <path
2089
- class="cls-5"
2090
- style="opacity: 0.5; fill: url(#illus_grad)"
2091
- d="M70.82,77.22c-1.54,0-3-.08-4.45-.22v26.78l3.2,0,12.79-1.2v-27A36.84,36.84,0,0,1,70.82,77.22Z"
2092
- />
2093
- <path
2094
- class="cls-4"
2095
- style="fill: #0091da"
2096
- d="M70,105.08c-8.25,0-17-2.47-17-7V68.75C53,64.39,61.79,62,70,62s17,2.35,17,6.71V98C87,102.61,78.28,105.08,70,105.08Zm0-41c-9.3,0-15,2.74-15,4.71V98c0,2.38,6.41,5,15,5s15-2.66,15-5V68.75C85,66.78,79.33,64,70,64Z"
2097
- />
2098
- <path
2099
- class="cls-4"
2100
- style="fill: #0091da"
2101
- d="M85,88.67c0,2-5.71,4.74-15,4.74a33.1,33.1,0,0,1-11-1.62v2.09a37.36,37.36,0,0,0,11,1.53c8.24,0,17-2.36,17-6.74Z"
2102
- />
2103
- <path
2104
- class="cls-4"
2105
- style="fill: #0091da"
2106
- d="M85,79.19c0,2-5.71,4.75-15,4.75a33.06,33.06,0,0,1-11-1.63v2.1a37.69,37.69,0,0,0,11,1.53c8.24,0,17-2.37,17-6.75Z"
2107
- />
2108
- <path
2109
- class="cls-4"
2110
- style="fill: #0091da"
2111
- d="M85,68.42c0,2-5.71,4.72-15,4.72a33.4,33.4,0,0,1-11-1.61v2.09a37.7,37.7,0,0,0,11,1.52c8.24,0,17-2.35,17-6.72Z"
2112
- />
2113
- </g>
2114
- </svg>
2115
- </template>
2116
-
2117
- <template v-else-if="props.name === 'dir-vm'">
2118
- <svg
2119
- xmlns="http://www.w3.org/2000/svg"
2120
- xmlns:xlink="http://www.w3.org/1999/xlink"
2121
- width="96"
2122
- height="124"
2123
- viewBox="0 0 96 124"
2124
- >
2125
- <defs>
2126
- <linearGradient
2127
- id="linear-gradient"
2128
- x1="-2247.81"
2129
- y1="26.92"
2130
- x2="-2227.2"
2131
- y2="47.22"
2132
- gradientTransform="matrix(-1, 0, 0, 1, -2194.04, 0)"
2133
- gradientUnits="userSpaceOnUse"
2134
- >
2135
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.4" />
2136
- <stop offset="0.32" stop-color="#0091da" stop-opacity="0.32" />
2137
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
2138
- </linearGradient>
2139
- <linearGradient
2140
- id="linear-gradient-2"
2141
- x1="75.2"
2142
- y1="17.61"
2143
- x2="4.5"
2144
- y2="88.13"
2145
- gradientUnits="userSpaceOnUse"
2146
- >
2147
- <stop offset="0.27" stop-color="#0091da" />
2148
- <stop offset="0.69" stop-color="#0091da" stop-opacity="0.32" />
2149
- <stop offset="0.9" stop-color="#0091da" stop-opacity="0" />
2150
- </linearGradient>
2151
- </defs>
2152
- <g id="Layer_6" data-name="Layer 6">
2153
- <rect class="cls-1" width="96" height="124" style="fill: none" />
2154
- </g>
2155
- <g id="Layer_4" data-name="Layer 4">
2156
- <polygon
2157
- class="cls-2"
2158
- style="opacity: 0.5; fill: url(#linear-gradient)"
2159
- points="31.3 39.79 50.37 20.72 69.46 20.72 50.39 39.79 31.3 39.79"
2160
- />
2161
- <polygon
2162
- class="cls-3"
2163
- style="opacity: 0.3; fill: url(#linear-gradient-2)"
2164
- points="5 75.57 52.37 28.2 76.68 28.2 29.31 75.57 5 75.57"
2165
- />
2166
- </g>
2167
- <g id="Layer_2" data-name="Layer 2">
2168
- <path
2169
- class="cls-4"
2170
- style="fill: #0091da"
2171
- d="M86.69,100.84V69.35a2,2,0,0,1,2,2v29.46a2,2,0,0,1-2,2H57.32a2,2,0,0,1-2-2Z"
2172
- />
2173
- <path
2174
- class="cls-4"
2175
- style="fill: #0091da"
2176
- d="M75.21,97.7a1,1,0,0,1-2,0V89.32a2,2,0,0,1,2-2Z"
2177
- />
2178
- <path
2179
- class="cls-4"
2180
- style="fill: #0091da"
2181
- d="M73.79,98.7H53.19a2,2,0,0,1-2-2V67.22a2,2,0,0,1,2-2H82.56a2,2,0,0,1,2,2V87.93A2,2,0,0,1,84,89.36l-8.77,8.75A2,2,0,0,1,73.79,98.7ZM53.19,67.2l0,29.48,20.62,0h0l8.77-8.76V67.22Z"
2182
- />
2183
- <path
2184
- class="cls-4"
2185
- style="fill: #0091da"
2186
- d="M62.39,79.06a1,1,0,0,1-1-1V71.71a1,1,0,0,1,1-1h9.47a1,1,0,0,1,1,1V75.1a1,1,0,0,1-2,0V72.71H63.39v5.35A1,1,0,0,1,62.39,79.06Z"
2187
- />
2188
- <path
2189
- class="cls-4"
2190
- style="fill: #0091da"
2191
- d="M76.77,85.78H69.4a1,1,0,0,1,0-2h6.37V76.29H68.31v2a1,1,0,0,1-2,0v-3a1,1,0,0,1,1-1h9.46a1,1,0,0,1,1,1v9.49A1,1,0,0,1,76.77,85.78Z"
2192
- />
2193
- <path
2194
- class="cls-4"
2195
- style="fill: #0091da"
2196
- d="M69.38,88.72H59.91a1,1,0,0,1-1-1V78.23a1,1,0,0,1,1-1h9.47a1,1,0,0,1,1,1v9.49A1,1,0,0,1,69.38,88.72Zm-8.47-2h7.47V79.23H60.91Z"
2197
- />
2198
- <path
2199
- class="cls-4"
2200
- style="fill: #0091da"
2201
- d="M84.43,55.91a3.21,3.21,0,0,0-2.54-1.22H27.42a3.22,3.22,0,0,0-3.16,2.52L18,85.48V46.94a1.25,1.25,0,0,1,1.25-1.25H35.31l2.58,5H73.83a1.14,1.14,0,0,1,1.25,1.1v.9h2v-.9a3.11,3.11,0,0,0-3.25-3.1H39.11l-2.59-5H19.25A3.26,3.26,0,0,0,16,46.94V95h.1a1,1,0,0,0,.12.25,1,1,0,0,0,.78.37H45.27v-2h-27l8-36a1.24,1.24,0,0,1,1.21-1H81.89a1.25,1.25,0,0,1,1,.47,1.27,1.27,0,0,1,.24,1.07L82,63.16h2l1-4.49A3.26,3.26,0,0,0,84.43,55.91Z"
2202
- />
2203
- </g>
2204
- </svg>
2205
- </template>
2206
-
2207
- <template v-else-if="props.name === 'dir-vm'">
2208
- <svg
2209
- xmlns="http://www.w3.org/2000/svg"
2210
- xmlns:xlink="http://www.w3.org/1999/xlink"
2211
- width="96"
2212
- height="124"
2213
- viewBox="0 0 96 124"
2214
- >
2215
- <defs>
2216
- <linearGradient
2217
- id="linear-gradient"
2218
- x1="-2247.81"
2219
- y1="26.92"
2220
- x2="-2227.2"
2221
- y2="47.22"
2222
- gradientTransform="matrix(-1, 0, 0, 1, -2194.04, 0)"
2223
- gradientUnits="userSpaceOnUse"
2224
- >
2225
- <stop offset="0.15" stop-color="#0091da" stop-opacity="0.4" />
2226
- <stop offset="0.32" stop-color="#0091da" stop-opacity="0.32" />
2227
- <stop offset="1" stop-color="#0091da" stop-opacity="0" />
2228
- </linearGradient>
2229
- <linearGradient
2230
- id="linear-gradient-2"
2231
- x1="75.2"
2232
- y1="17.61"
2233
- x2="4.5"
2234
- y2="88.13"
2235
- gradientUnits="userSpaceOnUse"
2236
- >
2237
- <stop offset="0.27" stop-color="#0091da" />
2238
- <stop offset="0.69" stop-color="#0091da" stop-opacity="0.32" />
2239
- <stop offset="0.9" stop-color="#0091da" stop-opacity="0" />
2240
- </linearGradient>
2241
- </defs>
2242
- <g id="Layer_6" data-name="Layer 6">
2243
- <rect class="cls-1" width="96" height="124" style="fill: none" />
2244
- </g>
2245
- <g id="Layer_4" data-name="Layer 4">
2246
- <polygon
2247
- class="cls-2"
2248
- style="opacity: 0.5; fill: url(#linear-gradient)"
2249
- points="31.3 39.79 50.37 20.72 69.46 20.72 50.39 39.79 31.3 39.79"
2250
- />
2251
- <polygon
2252
- class="cls-3"
2253
- style="opacity: 0.3; fill: url(#linear-gradient-2)"
2254
- points="5 75.57 52.37 28.2 76.68 28.2 29.31 75.57 5 75.57"
2255
- />
2256
- </g>
2257
- <g id="Layer_2" data-name="Layer 2">
2258
- <path
2259
- class="cls-4"
2260
- style="fill: #0091da"
2261
- d="M86.69,100.84V69.35a2,2,0,0,1,2,2v29.46a2,2,0,0,1-2,2H57.32a2,2,0,0,1-2-2Z"
2262
- />
2263
- <path
2264
- class="cls-4"
2265
- style="fill: #0091da"
2266
- d="M75.21,97.7a1,1,0,0,1-2,0V89.32a2,2,0,0,1,2-2Z"
2267
- />
2268
- <path
2269
- class="cls-4"
2270
- style="fill: #0091da"
2271
- d="M73.79,98.7H53.19a2,2,0,0,1-2-2V67.22a2,2,0,0,1,2-2H82.56a2,2,0,0,1,2,2V87.93A2,2,0,0,1,84,89.36l-8.77,8.75A2,2,0,0,1,73.79,98.7ZM53.19,67.2l0,29.48,20.62,0h0l8.77-8.76V67.22Z"
2272
- />
2273
- <path
2274
- class="cls-4"
2275
- style="fill: #0091da"
2276
- d="M62.39,79.06a1,1,0,0,1-1-1V71.71a1,1,0,0,1,1-1h9.47a1,1,0,0,1,1,1V75.1a1,1,0,0,1-2,0V72.71H63.39v5.35A1,1,0,0,1,62.39,79.06Z"
2277
- />
2278
- <path
2279
- class="cls-4"
2280
- style="fill: #0091da"
2281
- d="M76.77,85.78H69.4a1,1,0,0,1,0-2h6.37V76.29H68.31v2a1,1,0,0,1-2,0v-3a1,1,0,0,1,1-1h9.46a1,1,0,0,1,1,1v9.49A1,1,0,0,1,76.77,85.78Z"
2282
- />
2283
- <path
2284
- class="cls-4"
2285
- style="fill: #0091da"
2286
- d="M69.38,88.72H59.91a1,1,0,0,1-1-1V78.23a1,1,0,0,1,1-1h9.47a1,1,0,0,1,1,1v9.49A1,1,0,0,1,69.38,88.72Zm-8.47-2h7.47V79.23H60.91Z"
2287
- />
2288
- <path
2289
- class="cls-4"
2290
- style="fill: #0091da"
2291
- d="M84.43,55.91a3.21,3.21,0,0,0-2.54-1.22H27.42a3.22,3.22,0,0,0-3.16,2.52L18,85.48V46.94a1.25,1.25,0,0,1,1.25-1.25H35.31l2.58,5H73.83a1.14,1.14,0,0,1,1.25,1.1v.9h2v-.9a3.11,3.11,0,0,0-3.25-3.1H39.11l-2.59-5H19.25A3.26,3.26,0,0,0,16,46.94V95h.1a1,1,0,0,0,.12.25,1,1,0,0,0,.78.37H45.27v-2h-27l8-36a1.24,1.24,0,0,1,1.21-1H81.89a1.25,1.25,0,0,1,1,.47,1.27,1.27,0,0,1,.24,1.07L82,63.16h2l1-4.49A3.26,3.26,0,0,0,84.43,55.91Z"
2292
- />
2293
- </g>
2294
- </svg>
2295
- </template>
2296
- </template>
2297
-
2298
- <script setup lang="ts">
2299
- const props = defineProps<{
2300
- name: string | undefined
2301
- }>()
2302
- </script>
2303
-
2304
- <style scoped lang="scss">
2305
- %cls1 {
2306
- opacity: 0.3;
2307
- fill: url(#illus_grad);
2308
- }
2309
-
2310
- .icon {
2311
- .cls-1 {
2312
- fill: none;
2313
- }
2314
-
2315
- &__obj-network {
2316
- .cls-2 {
2317
- opacity: 0.3;
2318
- fill: url(#linear-gradient);
2319
- }
2320
-
2321
- .cls-3 {
2322
- opacity: 0.4;
2323
- fill: url(#linear-gradient-2);
2324
- }
2325
-
2326
- .cls-4 {
2327
- fill: #0091da;
2328
- }
2329
- }
2330
- }
2331
-
2332
- .icon-obj-zone {
2333
- .cls-2 {
2334
- fill: #78be20;
2335
- }
2336
-
2337
- .cls-3 {
2338
- fill: #edb200;
2339
- }
2340
- }
2341
-
2342
- .icon-obj-dc {
2343
- .cls-2 {
2344
- @extend %cls1;
2345
- }
2346
-
2347
- .cls-3 {
2348
- opacity: 0.5;
2349
- fill: url(#illus_grad-2);
2350
- }
2351
-
2352
- .cls-4 {
2353
- fill: #0091da;
2354
- }
2355
- }
2356
-
2357
- .icon-obj-host {
2358
- .cls-1 {
2359
- @extend %cls1;
2360
- }
2361
-
2362
- .cls-2 {
2363
- opacity: 0.5;
2364
- fill: url(#linear-gradient);
2365
- }
2366
-
2367
- .cls-3 {
2368
- fill: #0091da;
2369
- }
2370
- }
2371
-
2372
- .icon-obj-ds {
2373
- .cls-2 {
2374
- opacity: 0.5;
2375
- fill: url(#illus_grad);
2376
- }
2377
-
2378
- .cls-3 {
2379
- fill: #0091da;
2380
- }
2381
- }
2382
-
2383
- #error-icon-outline {
2384
- fill: none;
2385
- stroke: #f54f47;
2386
- stroke-miterlimit: 10;
2387
- stroke-width: 2;
2388
- }
2389
-
2390
- #error-icon-line {
2391
- fill: none;
2392
- stroke: #f54f47;
2393
- animation-fill-mode: forwards;
2394
- stroke-dasharray: 7;
2395
- stroke-dashoffset: 0;
2396
- stroke-linecap: round;
2397
- stroke-width: 2.65;
2398
- stroke-miterlimit: 10;
2399
- }
2400
-
2401
- #error-icon-dot {
2402
- fill: #f54f47;
2403
- transform-origin: 50% 54%;
2404
- }
2405
-
2406
- .icon-obj-cluster {
2407
- .cls-2,
2408
- .cls-3 {
2409
- opacity: 0.5;
2410
- }
2411
-
2412
- .cls-2 {
2413
- fill: url(#illus_grad);
2414
- }
2415
-
2416
- .cls-3 {
2417
- fill: url(#illus_grad-2);
2418
- }
2419
-
2420
- .cls-4 {
2421
- fill: #0091da;
2422
- }
2423
- }
2424
- .icon-obj-rp {
2425
- .cls-1 {
2426
- fill: none;
2427
- }
2428
- .cls-2 {
2429
- opacity: 0.3;
2430
- fill: url(#linear-gradient);
2431
- }
2432
- .cls-3 {
2433
- opacity: 0.5;
2434
- fill: url(#illus_grad);
2435
- }
2436
- .cls-4,
2437
- .cls-5 {
2438
- fill: #0091da;
2439
- }
2440
- .cls-5 {
2441
- opacity: 0.2;
2442
- }
2443
- }
2444
- </style>
1
+ <template>
2
+ <template v-if="props.name === 'menu'">
3
+ <svg
4
+ version="1.1"
5
+ viewBox="0 0 36 36"
6
+ preserveAspectRatio="xMidYMid meet"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:xlink="http://www.w3.org/1999/xlink"
9
+ focusable="false"
10
+ role="img"
11
+ >
12
+ <path
13
+ class="clr-i-outline clr-i-outline-path-1"
14
+ d="M32,29H4a1,1,0,0,1,0-2H32a1,1,0,0,1,0,2Z"
15
+ />
16
+ <path
17
+ class="clr-i-outline clr-i-outline-path-2"
18
+ d="M32,19H4a1,1,0,0,1,0-2H32a1,1,0,0,1,0,2Z"
19
+ />
20
+ <path
21
+ class="clr-i-outline clr-i-outline-path-3"
22
+ d="M32,9H4A1,1,0,0,1,4,7H32a1,1,0,0,1,0,2Z"
23
+ />
24
+ </svg>
25
+ </template>
26
+ <template v-else-if="props.name === 'green-play'">
27
+ <svg
28
+ xmlns="http://www.w3.org/2000/svg"
29
+ fill="#565656"
30
+ viewBox="-1 -1 38 38"
31
+ y="1748"
32
+ >
33
+ <path fill="none" d="M0 0h36v36H0z" />
34
+ <path
35
+ fill="#59a011"
36
+ d="M7 32.2a1 1 0 01-.49-.13A1 1 0 016 31.2V5a1 1 0 011.51-.86l22 13.1a1 1 0 010 1.72l-22 13.1a.94.94 0 01-.51.14zM8 6.76v22.68L27.05 18.1z"
37
+ />
38
+ </svg>
39
+ </template>
40
+ <template v-else-if="props.name === 'reset'">
41
+ <svg
42
+ version="1.1"
43
+ viewBox="0 0 36 36"
44
+ preserveAspectRatio="xMidYMid meet"
45
+ xmlns="http://www.w3.org/2000/svg"
46
+ xmlns:xlink="http://www.w3.org/1999/xlink"
47
+ focusable="false"
48
+ role="img"
49
+ >
50
+ <path
51
+ class="clr-i-outline clr-i-outline-path-1"
52
+ d="M22.4,11.65a1.09,1.09,0,0,0,1.09,1.09H34.43V1.81a1.09,1.09,0,1,0-2.19,0V8.95a16.41,16.41,0,1,0,1.47,15.86,1.12,1.12,0,0,0-2.05-.9,14.18,14.18,0,1,1-1.05-13.36H23.5A1.09,1.09,0,0,0,22.4,11.65Z"
53
+ />
54
+ </svg>
55
+ </template>
56
+ <template v-else-if="props.name === 'user'">
57
+ <svg
58
+ version="1.1"
59
+ class="can-badge can-alert has-solid"
60
+ viewBox="0 0 36 36"
61
+ preserveAspectRatio="xMidYMid meet"
62
+ xmlns="http://www.w3.org/2000/svg"
63
+ xmlns:xlink="http://www.w3.org/1999/xlink"
64
+ focusable="false"
65
+ role="img"
66
+ >
67
+ <path
68
+ d="M18,17a7,7,0,1,0-7-7A7,7,0,0,0,18,17ZM18,5a5,5,0,1,1-5,5A5,5,0,0,1,18,5Z"
69
+ class="clr-i-outline clr-i-outline-path-1"
70
+ />
71
+ <path
72
+ d="M18,17a7,7,0,1,0-7-7A7,7,0,0,0,18,17ZM18,5a5,5,0,1,1-5,5A5,5,0,0,1,18,5Z"
73
+ class="clr-i-outline clr-i-outline-path-1"
74
+ />
75
+ <path
76
+ d="M30.47,24.37a17.16,17.16,0,0,0-24.93,0A2,2,0,0,0,5,25.74V31a2,2,0,0,0,2,2H29a2,2,0,0,0,2-2V25.74A2,2,0,0,0,30.47,24.37ZM29,31H7V25.73a15.17,15.17,0,0,1,22,0h0Z"
77
+ class="clr-i-outline clr-i-outline-path-2"
78
+ />
79
+ </svg>
80
+ </template>
81
+ <template v-else-if="props.name === 'doubleArrows'">
82
+ <svg
83
+ version="1.1"
84
+ viewBox="0 0 36 36"
85
+ preserveAspectRatio="xMidYMid meet"
86
+ xmlns="http://www.w3.org/2000/svg"
87
+ xmlns:xlink="http://www.w3.org/1999/xlink"
88
+ focusable="false"
89
+ role="img"
90
+ aria-labelledby="_clr_icon_37"
91
+ >
92
+ <path
93
+ class="clr-i-outline clr-i-outline-path-1"
94
+ d="M29,19.41a1,1,0,0,1-.71-.29L18,8.83,7.71,19.12a1,1,0,0,1-1.41-1.41L18,6,29.71,17.71A1,1,0,0,1,29,19.41Z"
95
+ />
96
+ <path
97
+ class="clr-i-outline clr-i-outline-path-2"
98
+ d="M29,30.41a1,1,0,0,1-.71-.29L18,19.83,7.71,30.12a1,1,0,0,1-1.41-1.41L18,17,29.71,28.71A1,1,0,0,1,29,30.41Z"
99
+ />
100
+ </svg>
101
+ </template>
102
+ <template v-else-if="props.name === 'angle'">
103
+ <svg
104
+ version="1.1"
105
+ viewBox="0 0 36 36"
106
+ preserveAspectRatio="xMidYMid meet"
107
+ xmlns="http://www.w3.org/2000/svg"
108
+ xmlns:xlink="http://www.w3.org/1999/xlink"
109
+ focusable="false"
110
+ role="img"
111
+ >
112
+ <path
113
+ class="clr-i-outline clr-i-outline-path-1"
114
+ d="M29.52,22.52,18,10.6,6.48,22.52a1.7,1.7,0,0,0,2.45,2.36L18,15.49l9.08,9.39a1.7,1.7,0,0,0,2.45-2.36Z"
115
+ />
116
+ </svg>
117
+ </template>
118
+ <template v-else-if="props.name === 'ellipsis-vertical'">
119
+ <svg
120
+ version="1.1"
121
+ class="can-badge"
122
+ viewBox="0 0 36 36"
123
+ preserveAspectRatio="xMidYMid meet"
124
+ xmlns="http://www.w3.org/2000/svg"
125
+ xmlns:xlink="http://www.w3.org/1999/xlink"
126
+ focusable="false"
127
+ role="img"
128
+ >
129
+ <circle
130
+ cx="18"
131
+ cy="4.9"
132
+ r="2.9"
133
+ class="clr-i-outline clr-i-outline-path-1"
134
+ />
135
+ <circle
136
+ cx="18"
137
+ cy="18"
138
+ r="2.9"
139
+ class="clr-i-outline clr-i-outline-path-2"
140
+ />
141
+ <circle
142
+ cx="18"
143
+ cy="31.1"
144
+ r="2.9"
145
+ class="clr-i-outline clr-i-outline-path-3"
146
+ />
147
+ </svg>
148
+ </template>
149
+ <template v-else-if="props.name === 'close'">
150
+ <svg
151
+ version="1.1"
152
+ viewBox="0 0 36 36"
153
+ preserveAspectRatio="xMidYMid meet"
154
+ xmlns="http://www.w3.org/2000/svg"
155
+ xmlns:xlink="http://www.w3.org/1999/xlink"
156
+ focusable="false"
157
+ role="img"
158
+ fill="#8c8c8c"
159
+ >
160
+ <path
161
+ class="clr-i-outline clr-i-outline-path-1"
162
+ d="M19.41,18l8.29-8.29a1,1,0,0,0-1.41-1.41L18,16.59,9.71,8.29A1,1,0,0,0,8.29,9.71L16.59,18,8.29,26.29a1,1,0,1,0,1.41,1.41L18,19.41l8.29,8.29a1,1,0,0,0,1.41-1.41Z"
163
+ />
164
+ </svg>
165
+ </template>
166
+ <template v-else-if="props.name === 'exclamation-circle'">
167
+ <svg
168
+ version="1.1"
169
+ class="has-solid"
170
+ viewBox="0 0 36 36"
171
+ preserveAspectRatio="xMidYMid meet"
172
+ xmlns="http://www.w3.org/2000/svg"
173
+ xmlns:xlink="http://www.w3.org/1999/xlink"
174
+ focusable="false"
175
+ role="img"
176
+ fill="red"
177
+ >
178
+ <path
179
+ class="clr-i-outline clr-i-outline-path-1"
180
+ d="M18,6A12,12,0,1,0,30,18,12,12,0,0,0,18,6Zm0,22A10,10,0,1,1,28,18,10,10,0,0,1,18,28Z"
181
+ />
182
+ <path
183
+ class="clr-i-outline clr-i-outline-path-2"
184
+ d="M18,20.07a1.3,1.3,0,0,1-1.3-1.3v-6a1.3,1.3,0,1,1,2.6,0v6A1.3,1.3,0,0,1,18,20.07Z"
185
+ />
186
+ <circle
187
+ class="clr-i-outline clr-i-outline-path-3"
188
+ cx="17.95"
189
+ cy="23.02"
190
+ r="1.5"
191
+ />
192
+ </svg>
193
+ </template>
194
+ <template v-else-if="props.name === 'exclamation-triangle'">
195
+ <svg
196
+ version="1.1"
197
+ class="has-solid"
198
+ viewBox="0 0 36 36"
199
+ preserveAspectRatio="xMidYMid meet"
200
+ xmlns="http://www.w3.org/2000/svg"
201
+ xmlns:xlink="http://www.w3.org/1999/xlink"
202
+ focusable="false"
203
+ role="img"
204
+ >
205
+ <path
206
+ class="clr-i-outline clr-i-outline-path-1"
207
+ d="M18,21.32a1.3,1.3,0,0,0,1.3-1.3V14a1.3,1.3,0,1,0-2.6,0v6A1.3,1.3,0,0,0,18,21.32Z"
208
+ />
209
+ <circle
210
+ class="clr-i-outline clr-i-outline-path-2"
211
+ cx="17.95"
212
+ cy="24.27"
213
+ r="1.5"
214
+ />
215
+ <path
216
+ class="clr-i-outline clr-i-outline-path-3"
217
+ d="M30.33,25.54,20.59,7.6a3,3,0,0,0-5.27,0L5.57,25.54A3,3,0,0,0,8.21,30H27.69a3,3,0,0,0,2.64-4.43Zm-1.78,1.94a1,1,0,0,1-.86.49H8.21a1,1,0,0,1-.88-1.48L17.07,8.55a1,1,0,0,1,1.76,0l9.74,17.94A1,1,0,0,1,28.55,27.48Z"
218
+ />
219
+ </svg>
220
+ </template>
221
+ <template v-else-if="props.name === 'info-circle'">
222
+ <svg
223
+ version="1.1"
224
+ class="has-solid"
225
+ viewBox="0 0 36 36"
226
+ preserveAspectRatio="xMidYMid meet"
227
+ xmlns="http://www.w3.org/2000/svg"
228
+ xmlns:xlink="http://www.w3.org/1999/xlink"
229
+ focusable="false"
230
+ role="img"
231
+ >
232
+ <circle
233
+ class="clr-i-outline clr-i-outline-path-1"
234
+ cx="17.93"
235
+ cy="11.9"
236
+ r="1.4"
237
+ />
238
+ <path
239
+ class="clr-i-outline clr-i-outline-path-2"
240
+ d="M21,23H19V15H16a1,1,0,0,0,0,2h1v6H15a1,1,0,1,0,0,2h6a1,1,0,0,0,0-2Z"
241
+ />
242
+ <path
243
+ class="clr-i-outline clr-i-outline-path-3"
244
+ d="M18,6A12,12,0,1,0,30,18,12,12,0,0,0,18,6Zm0,22A10,10,0,1,1,28,18,10,10,0,0,1,18,28Z"
245
+ />
246
+ </svg>
247
+ </template>
248
+ <template v-else-if="props.name === 'warning'">
249
+ <svg
250
+ version="1.1"
251
+ class="has-solid"
252
+ viewBox="0 0 36 36"
253
+ preserveAspectRatio="xMidYMid meet"
254
+ xmlns="http://www.w3.org/2000/svg"
255
+ xmlns:xlink="http://www.w3.org/1999/xlink"
256
+ focusable="false"
257
+ role="img"
258
+ fill="#c27b00"
259
+ >
260
+ <path
261
+ class="clr-i-outline clr-i-outline-path-1"
262
+ d="M18,21.32a1.3,1.3,0,0,0,1.3-1.3V14a1.3,1.3,0,1,0-2.6,0v6A1.3,1.3,0,0,0,18,21.32Z"
263
+ />
264
+ <circle
265
+ class="clr-i-outline clr-i-outline-path-2"
266
+ cx="17.95"
267
+ cy="24.27"
268
+ r="1.5"
269
+ />
270
+ <path
271
+ class="clr-i-outline clr-i-outline-path-3"
272
+ d="M30.33,25.54,20.59,7.6a3,3,0,0,0-5.27,0L5.57,25.54A3,3,0,0,0,8.21,30H27.69a3,3,0,0,0,2.64-4.43Zm-1.78,1.94a1,1,0,0,1-.86.49H8.21a1,1,0,0,1-.88-1.48L17.07,8.55a1,1,0,0,1,1.76,0l9.74,17.94A1,1,0,0,1,28.55,27.48Z"
273
+ />
274
+ </svg>
275
+ </template>
276
+ <template v-else-if="props.name === 'obj-dc'">
277
+ <svg
278
+ xmlns="http://www.w3.org/2000/svg"
279
+ xmlns:xlink="http://www.w3.org/1999/xlink"
280
+ width="96"
281
+ height="124"
282
+ viewBox="0 0 96 124"
283
+ class="icon icon-obj-dc"
284
+ >
285
+ <defs>
286
+ <linearGradient
287
+ id="illus_grad"
288
+ x1="-1651.89"
289
+ y1="62.52"
290
+ x2="-1607.13"
291
+ y2="112.71"
292
+ gradientTransform="matrix(-1, 0, 0, 1, -1597.93, 0)"
293
+ gradientUnits="userSpaceOnUse"
294
+ >
295
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
296
+ <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
297
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
298
+ </linearGradient>
299
+ <linearGradient
300
+ id="illus_grad-2"
301
+ x1="-1676.95"
302
+ y1="68.78"
303
+ x2="-1640.9"
304
+ y2="109.2"
305
+ xlink:href="#illus_grad"
306
+ />
307
+ </defs>
308
+ <g id="Layer_6" data-name="Layer 6">
309
+ <rect class="cls-1" width="96" height="124" />
310
+ </g>
311
+ <g id="Layer_4" data-name="Layer 4">
312
+ <polygon
313
+ class="cls-2"
314
+ points="3.03 94.67 47.55 94.67 47.55 50.14 3.03 94.67"
315
+ />
316
+ <polygon
317
+ class="cls-3"
318
+ points="38 94.67 73.86 94.67 73.86 58.81 38 94.67"
319
+ />
320
+ </g>
321
+ <g id="Layer_2" data-name="Layer 2">
322
+ <rect class="cls-4" x="24" y="36.36" width="2" height="6" />
323
+ <rect class="cls-4" x="33" y="36.36" width="2" height="6" />
324
+ <rect class="cls-4" x="42" y="36.36" width="2" height="6" />
325
+ <rect class="cls-4" x="58" y="52.36" width="2" height="4" />
326
+ <rect class="cls-4" x="65" y="52.36" width="2" height="4" />
327
+ <rect class="cls-4" x="72" y="52.36" width="2" height="4" />
328
+ <rect class="cls-4" x="58" y="64.36" width="2" height="4" />
329
+ <rect class="cls-4" x="65" y="64.36" width="2" height="4" />
330
+ <rect class="cls-4" x="72" y="64.36" width="2" height="4" />
331
+ <rect class="cls-4" x="58" y="76.36" width="2" height="4" />
332
+ <rect class="cls-4" x="65" y="76.36" width="2" height="4" />
333
+ <rect class="cls-4" x="72" y="76.36" width="2" height="4" />
334
+ <rect class="cls-4" x="24" y="49.36" width="2" height="6" />
335
+ <rect class="cls-4" x="33" y="49.36" width="2" height="6" />
336
+ <rect class="cls-4" x="42" y="49.36" width="2" height="6" />
337
+ <rect class="cls-4" x="24" y="62.36" width="2" height="6" />
338
+ <rect class="cls-4" x="33" y="62.36" width="2" height="6" />
339
+ <rect class="cls-4" x="42" y="62.36" width="2" height="6" />
340
+ <rect class="cls-4" x="24" y="75.36" width="2" height="6" />
341
+ <rect class="cls-4" x="33" y="75.36" width="2" height="6" />
342
+ <rect class="cls-4" x="42" y="75.36" width="2" height="6" />
343
+ <path
344
+ class="cls-4"
345
+ d="M89.36,96H7.14a1,1,0,0,1,0-2H89.36a1,1,0,1,1,0,2Z"
346
+ />
347
+ <path
348
+ class="cls-4"
349
+ d="M51.87,95a1,1,0,0,1-1-1V26.13A1.19,1.19,0,0,0,49.62,25H18.12a1.19,1.19,0,0,0-1.25,1.12V94a1,1,0,0,1-2,0V26.13A3.19,3.19,0,0,1,18.12,23h31.5a3.19,3.19,0,0,1,3.25,3.12V94A1,1,0,0,1,51.87,95Z"
350
+ />
351
+ <path
352
+ class="cls-4"
353
+ d="M80,94H78V45.12A1.19,1.19,0,0,0,76.75,44H55V42H76.75A3.19,3.19,0,0,1,80,45.12Z"
354
+ />
355
+ </g>
356
+ </svg>
357
+ </template>
358
+ <template v-else-if="props.name === 'obj-zone'">
359
+ <svg
360
+ id="svg2"
361
+ version="1.1"
362
+ xml:space="preserve"
363
+ width="96"
364
+ height="124"
365
+ viewBox="0 0 1440 1440"
366
+ xmlns="http://www.w3.org/2000/svg"
367
+ xmlns:svg="http://www.w3.org/2000/svg"
368
+ class="icon icon-obj-zone"
369
+ >
370
+ <defs id="defs6" />
371
+ <g id="g8" transform="matrix(1.3333333,0,0,-1.3333333,0,1150)">
372
+ <g id="g10" transform="scale(0.1)">
373
+ <path
374
+ id="path14"
375
+ d="m 5485.82,3974.16 c 99.06,0 179.66,80.57 179.66,179.63 0,99.04 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.29 -129.39,-55.36 -31.03,-32.28 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-91.98 50.24,-124.3 32.7,-34.03 78.58,-55.33 129.39,-55.33 v 0"
376
+ style="
377
+ fill: #dfac13;
378
+ fill-opacity: 1;
379
+ fill-rule: nonzero;
380
+ stroke: none;
381
+ "
382
+ />
383
+ <path
384
+ id="path16"
385
+ d="m 4254.43,6033.08 c 2.83,42.92 5.99,85.56 9.36,128 1.15,14.07 2.41,28.01 3.59,42.02 2.41,28.37 4.88,56.71 7.53,84.84 1.53,16.36 3.19,32.62 4.82,48.89 2.59,25.69 5.21,51.32 8.01,76.8 1.84,16.87 3.73,33.7 5.66,50.51 2.86,25 5.87,49.88 8.98,74.67 2.01,16.41 4.06,32.86 6.2,49.18 3.37,25.75 6.9,51.29 10.48,76.8 2.08,14.88 4.1,29.82 6.27,44.64 4.49,30.54 9.18,60.81 13.97,90.99 1.48,9.37 2.86,18.86 4.37,28.16 6.05,37.32 12.35,74.37 18.91,111.08 -500.09,158.22 -883.99,207.79 -1148.77,186.14 237.22,-16.12 534.1,-73.55 889.96,-186.14 -6.54,-36.71 -12.83,-73.76 -18.91,-111.08 -1.51,-9.3 -2.9,-18.79 -4.37,-28.16 -4.79,-30.18 -9.49,-60.45 -13.95,-90.99 -2.17,-14.82 -4.18,-29.76 -6.29,-44.64 -3.59,-25.51 -7.11,-51.05 -10.48,-76.8 -2.14,-16.32 -4.16,-32.77 -6.21,-49.18 -3.07,-24.79 -6.08,-49.67 -8.97,-74.67 -1.93,-16.81 -3.83,-33.64 -5.67,-50.51 -2.8,-25.48 -5.42,-51.11 -7.98,-76.8 -1.65,-16.27 -3.28,-32.53 -4.85,-48.89 -2.65,-28.13 -5.09,-56.47 -7.5,-84.84 -1.2,-14.01 -2.47,-27.95 -3.58,-42.02 -3.4,-42.44 -6.57,-85.08 -9.4,-128 -3.82,-57.98 25.63,-113.1 75.96,-142.17 L 6147.26,4692.5 c -6.05,-79.57 -13.16,-158.27 -21.26,-235.98 -24.31,-233.18 -57.74,-457.45 -99.91,-669.91 -0.03,-0.09 -0.03,-0.15 -0.06,-0.24 -170.44,-856.95 -439.31,-1317.59 -669.58,-1445.27 44.91,-24.93 88.41,-37.4 129.37,-37.4 250.95,0 595.3,458.47 799.03,1482.67 0.03,0.09 0.03,0.15 0.03,0.24 42.19,212.46 75.63,436.73 99.93,669.91 8.1,77.71 15.18,156.41 21.24,235.98 L 4330.39,5890.91 c -50.33,29.07 -79.79,84.19 -75.96,142.17 v 0"
386
+ style="
387
+ fill: #dfac13;
388
+ fill-opacity: 1;
389
+ fill-rule: nonzero;
390
+ stroke: none;
391
+ "
392
+ />
393
+ <path
394
+ id="path18"
395
+ d="m 4742.24,6646.03 c 0,-267.34 217.46,-484.83 484.79,-484.83 44.88,0 88.16,6.57 129.4,18.07 -204.61,56.81 -355.41,244.27 -355.41,466.76 0,222.46 150.8,409.92 355.41,466.73 -41.27,11.47 -84.55,18.07 -129.4,18.07 -267.33,0 -484.79,-217.49 -484.79,-484.8 v 0"
396
+ style="
397
+ fill: #dfac13;
398
+ fill-opacity: 1;
399
+ fill-rule: nonzero;
400
+ stroke: none;
401
+ "
402
+ />
403
+ <path
404
+ id="path20"
405
+ d="m 5356.43,6770.3 c -31.03,-32.29 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-92.01 50.24,-124.3 32.7,-34.04 78.58,-55.36 129.39,-55.36 99.06,0 179.66,80.6 179.66,179.66 0,99.03 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.32 -129.39,-55.36 v 0"
406
+ style="
407
+ fill: #dfac13;
408
+ fill-opacity: 1;
409
+ fill-rule: nonzero;
410
+ stroke: none;
411
+ "
412
+ />
413
+ <path
414
+ id="path22"
415
+ d="m 7908.6,6948.1 c 112.92,-195.6 -58.13,-642.45 -665.9,-1231.79 46.98,-37.68 93.27,-75.48 138.33,-113.46 705.6,645.34 906.41,1137.3 786.38,1345.25 -73.19,126.77 -297.54,202.82 -667.8,177.79 217.7,-17.89 354.81,-83.94 408.99,-177.79 v 0"
416
+ style="
417
+ fill: #dfac13;
418
+ fill-opacity: 1;
419
+ fill-rule: nonzero;
420
+ stroke: none;
421
+ "
422
+ />
423
+ <path
424
+ id="path24"
425
+ d="m 6026.09,7013.18 c 8.59,-43.13 35.3,-80.42 73.37,-102.4 38.07,-21.99 83.8,-26.45 125.36,-12.35 35.45,12.05 70.21,23.43 104.57,34.42 -22.46,21.48 -38.31,49.28 -44.48,80.33 -203.73,1024.53 -548.14,1483.12 -799.09,1483.12 -40.96,0 -84.46,-12.47 -129.37,-37.4 230.27,-127.7 499.2,-588.5 669.64,-1445.72 v 0"
426
+ style="
427
+ fill: #dfac13;
428
+ fill-opacity: 1;
429
+ fill-rule: nonzero;
430
+ stroke: none;
431
+ "
432
+ />
433
+ <path
434
+ id="path26"
435
+ d="m 7282.81,5284.89 c -0.12,0.09 -0.24,0.21 -0.36,0.3 -41.14,36.08 -83.25,72.1 -126.29,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.66,0.45 -1.26,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.65,1.12 -3.28,2.23 -4.94,3.35 -19.6,13.34 -39.33,26.62 -59.15,39.9 -168.67,112.68 -343.93,221.65 -520.88,323.79 -45.51,26.26 -91.26,52.13 -137.16,77.61 -33.74,-32.56 -72.23,-60.18 -114.19,-82.01 174.43,-100.9 347.13,-208.28 513.42,-319.39 19.84,-13.28 39.57,-26.56 59.18,-39.9 1.66,-1.12 3.25,-2.23 4.91,-3.35 2.59,-1.77 5.21,-3.55 7.8,-5.3 0.63,-0.45 1.27,-0.87 1.9,-1.32 215.71,-147.35 417.48,-299.18 602.17,-453.18 43.04,-35.87 85.18,-71.89 126.32,-107.97 0.12,-0.09 0.21,-0.21 0.33,-0.3 785.21,-688.47 1010.04,-1215.76 884.63,-1432.98 -54.24,-93.91 -191.62,-159.96 -409.65,-177.76 370.62,-25.15 595.21,50.96 668.43,177.76 125.45,217.22 -99.42,744.51 -884.6,1432.98 v 0"
436
+ style="
437
+ fill: #dfac13;
438
+ fill-opacity: 1;
439
+ fill-rule: nonzero;
440
+ stroke: none;
441
+ "
442
+ />
443
+ <path
444
+ id="path28"
445
+ d="m 4278.49,3909.47 c -16.5,0 -33.07,-2.68 -49.03,-8.07 -412.21,-139.94 -751.23,-209.36 -1015.86,-227.25 268.45,-22.02 659.64,29.39 1170.04,192.82 -8.71,8.34 -18.19,15.93 -28.83,22.08 -23.46,13.52 -49.81,20.42 -76.32,20.42 v 0"
446
+ style="
447
+ fill: #dfac13;
448
+ fill-opacity: 1;
449
+ fill-rule: nonzero;
450
+ stroke: none;
451
+ "
452
+ />
453
+ <path
454
+ id="path30"
455
+ d="m 5005.15,4584.32 c 2.47,-1.42 4.91,-2.9 7.38,-4.34 45.41,-26.2 91.17,-52.08 137.16,-77.62 57.22,55.21 128.03,96.23 206.74,118.19 -41.27,11.44 -84.55,18.04 -129.4,18.04 -80.02,0 -155.38,-19.73 -221.88,-54.27 v 0"
456
+ style="
457
+ fill: #dfac13;
458
+ fill-opacity: 1;
459
+ fill-rule: nonzero;
460
+ stroke: none;
461
+ "
462
+ />
463
+ <path
464
+ id="path32"
465
+ d="m 4601.16,4315.71 c 48.97,-28.28 98.37,-56.11 147.97,-83.64 -4.15,-25.54 -6.89,-51.56 -6.89,-78.28 0,-267.33 217.46,-484.79 484.79,-484.79 44.85,0 88.13,6.59 129.4,18.07 -204.61,56.8 -355.41,244.26 -355.41,466.72 0,26.72 2.74,52.74 6.93,78.28 -49.64,27.53 -99.01,55.36 -148.01,83.64 -183.79,106.11 -364.83,218.61 -538.05,334.39 -264.68,177.04 -510.03,360.58 -731.08,546.87 -41.95,-38.4 -82.01,-76.2 -120.44,-113.46 183.72,-147.31 381.97,-292.46 592.71,-433.41 173.25,-115.78 354.26,-228.28 538.08,-334.39 v 0"
466
+ style="
467
+ fill: #dfac13;
468
+ fill-opacity: 1;
469
+ fill-rule: nonzero;
470
+ stroke: none;
471
+ "
472
+ />
473
+ <path
474
+ id="path34"
475
+ d="m 7908.63,3851.91 c 125.41,217.22 -99.42,744.51 -884.63,1432.98 -0.12,0.09 -0.21,0.21 -0.33,0.3 -41.14,36.08 -83.28,72.1 -126.32,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.63,0.45 -1.27,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.66,1.12 -3.25,2.23 -4.91,3.35 -19.61,13.34 -39.34,26.62 -59.18,39.9 -166.29,111.11 -338.99,218.49 -513.42,319.39 -66.59,-34.61 -142.04,-54.4 -222.15,-54.4 -44.85,0 -88.13,6.63 -129.39,18.07 -41.24,-11.5 -84.52,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.49 -484.79,484.83 0,267.31 217.46,484.8 484.79,484.8 44.85,0 88.13,-6.6 129.4,-18.07 41.26,11.47 84.54,18.07 129.39,18.07 267.33,0 484.82,-217.49 484.82,-484.8 0,-26.62 -2.74,-52.59 -6.86,-78.04 49.57,-27.47 98.97,-55.33 148.12,-83.7 182.68,-105.48 363.63,-217.97 537.87,-334.35 210.47,-140.72 408.81,-285.92 592.93,-433.63 607.77,589.34 778.82,1036.19 665.9,1231.79 -54.18,93.85 -191.29,159.9 -408.99,177.79 -264.66,-17.92 -603.71,-87.41 -1015.98,-227.46 -41.59,-14.1 -87.28,-9.64 -125.38,12.35 -10.63,6.14 -20.15,13.73 -28.86,22.07 -34.36,-10.99 -69.12,-22.37 -104.57,-34.42 -41.56,-14.1 -87.29,-9.64 -125.36,12.35 -38.07,21.98 -64.78,59.27 -73.37,102.4 -170.44,857.22 -439.37,1318.02 -669.64,1445.72 -230.2,-127.7 -499.01,-588.47 -669.48,-1445.6 0,-0.03 0,-0.06 0,-0.12 -34.1,-171.56 -62.41,-351.16 -84.94,-537.05 -14.58,-120.39 -26.81,-243.36 -36.38,-368.69 L 6641.28,4909.09 c 50.3,-29.06 79.75,-84.15 75.99,-142.1 -2.83,-42.8 -5.97,-85.36 -9.34,-127.71 -1.14,-14.3 -2.44,-28.49 -3.64,-42.77 -2.35,-28.04 -4.76,-56.02 -7.38,-83.85 -1.57,-16.65 -3.26,-33.22 -4.91,-49.81 -2.53,-25.27 -5.09,-50.45 -7.83,-75.54 -1.9,-17.29 -3.83,-34.52 -5.82,-51.72 -2.8,-24.45 -5.72,-48.79 -8.73,-73.04 -2.11,-16.98 -4.22,-33.97 -6.42,-50.84 -3.25,-24.97 -6.68,-49.73 -10.15,-74.48 -2.17,-15.63 -4.3,-31.36 -6.59,-46.93 -4.25,-29.09 -8.74,-57.95 -13.29,-86.71 -1.71,-10.81 -3.28,-21.72 -5.03,-32.47 -6.05,-37.26 -12.34,-74.27 -18.88,-110.96 355.74,-112.52 652.53,-169.93 889.72,-186.01 218.03,17.8 355.41,83.85 409.65,177.76 v 0"
476
+ style="
477
+ fill: #fbce28;
478
+ fill-opacity: 1;
479
+ fill-rule: nonzero;
480
+ stroke: none;
481
+ "
482
+ />
483
+ <path
484
+ id="path36"
485
+ d="m 6026.03,3786.37 c 0.03,0.09 0.03,0.15 0.06,0.24 42.17,212.46 75.6,436.73 99.91,669.91 8.1,77.71 15.21,156.41 21.26,235.98 L 4071.57,5890.91 c -50.33,29.07 -79.78,84.19 -75.96,142.17 2.83,42.92 6,85.56 9.4,128 1.11,14.07 2.38,28.01 3.58,42.02 2.41,28.37 4.85,56.71 7.5,84.84 1.57,16.36 3.2,32.62 4.85,48.89 2.56,25.69 5.18,51.32 7.98,76.8 1.84,16.87 3.74,33.7 5.67,50.51 2.89,25 5.9,49.88 8.97,74.67 2.05,16.41 4.07,32.86 6.21,49.18 3.37,25.75 6.89,51.29 10.48,76.8 2.11,14.88 4.12,29.82 6.29,44.64 4.46,30.54 9.16,60.81 13.95,90.99 1.47,9.37 2.86,18.86 4.37,28.16 6.08,37.32 12.37,74.37 18.91,111.08 -355.86,112.59 -652.74,170.02 -889.96,186.14 -217.88,-17.83 -355.19,-83.82 -409.38,-177.7 -125.45,-217.34 99.52,-744.88 884.93,-1433.46 217.16,-190.48 461.97,-378.99 728.73,-561.24 8.11,-5.55 16.24,-11.09 24.37,-16.6 3.88,-2.62 7.8,-5.27 11.66,-7.89 12.43,-8.4 24.88,-16.78 37.37,-25.15 165.33,-110.48 338.15,-217.88 513.66,-319.44 66.5,34.54 141.86,54.27 221.88,54.27 44.85,0 88.13,-6.6 129.4,-18.04 41.23,11.5 84.51,18.04 129.39,18.04 267.33,0 484.82,-217.46 484.82,-484.8 0,-267.33 -217.49,-484.79 -484.82,-484.79 -44.85,0 -88.13,6.59 -129.39,18.07 -41.27,-11.48 -84.55,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.46 -484.79,484.79 0,26.72 2.74,52.74 6.89,78.28 -49.6,27.53 -99,55.36 -147.97,83.64 -183.82,106.11 -364.83,218.61 -538.08,334.39 -210.74,140.95 -408.99,286.1 -592.71,433.41 -607.81,-589.31 -778.86,-1036.1 -665.94,-1231.6 54.19,-93.85 191.35,-159.9 409.17,-177.76 264.63,17.89 603.65,87.31 1015.86,227.25 15.96,5.39 32.53,8.07 49.03,8.07 26.51,0 52.86,-6.9 76.32,-20.42 10.64,-6.15 20.12,-13.74 28.83,-22.08 34.39,11.02 69.15,22.38 104.6,34.43 15.99,5.39 32.56,8.07 49.04,8.07 26.53,0 52.85,-6.9 76.32,-20.42 38.04,-21.99 64.78,-59.31 73.34,-102.41 170.44,-857.1 439.28,-1317.86 669.51,-1445.54 230.27,127.68 499.14,588.32 669.58,1445.27 v 0"
486
+ style="
487
+ fill: #fbce28;
488
+ fill-opacity: 1;
489
+ fill-rule: nonzero;
490
+ stroke: none;
491
+ "
492
+ />
493
+ </g>
494
+ </g>
495
+ </svg>
496
+ </template>
497
+ <template v-else-if="props.name === 'obj-host'">
498
+ <svg
499
+ xmlns="http://www.w3.org/2000/svg"
500
+ xmlns:xlink="http://www.w3.org/1999/xlink"
501
+ width="96"
502
+ height="124"
503
+ viewBox="0 0 96 124"
504
+ class="icon-obj-host"
505
+ >
506
+ <defs>
507
+ <linearGradient
508
+ id="illus_grad"
509
+ x1="-3163.59"
510
+ y1="62.51"
511
+ x2="-3118.36"
512
+ y2="113.24"
513
+ gradientTransform="matrix(-1, 0, 0, 1, -3095.12, 0)"
514
+ gradientUnits="userSpaceOnUse"
515
+ >
516
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
517
+ <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
518
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
519
+ </linearGradient>
520
+ <linearGradient
521
+ id="linear-gradient"
522
+ x1="89.6"
523
+ y1="58.65"
524
+ x2="44.2"
525
+ y2="104.05"
526
+ gradientUnits="userSpaceOnUse"
527
+ >
528
+ <stop offset="0.33" stop-color="#0091da" stop-opacity="0.6" />
529
+ <stop offset="0.58" stop-color="#0091da" stop-opacity="0.32" />
530
+ <stop offset="0.89" stop-color="#0091da" stop-opacity="0" />
531
+ </linearGradient>
532
+ </defs>
533
+ <g id="Layer_4" data-name="Layer 4">
534
+ <polygon class="cls-1" points="17 95 62 95 62 50 17 95" />
535
+ <polygon class="cls-2" points="76 95 30.5 95 76 49.5 76 95" />
536
+ </g>
537
+ <g id="Layer_2" data-name="Layer 2">
538
+ <path
539
+ class="cls-3"
540
+ d="M68,95H66V22a1,1,0,0,0-1-1H31a1,1,0,0,0-1,1V95H28V22a3,3,0,0,1,3-3H65a3,3,0,0,1,3,3Z"
541
+ />
542
+ <path class="cls-3" d="M80,96H16a1,1,0,0,1,0-2H80a1,1,0,0,1,0,2Z" />
543
+ <path class="cls-3" d="M59,33H37a1,1,0,0,1,0-2H59a1,1,0,0,1,0,2Z" />
544
+ <path
545
+ class="cls-3"
546
+ d="M48.5,82A5.5,5.5,0,1,1,54,76.5,5.51,5.51,0,0,1,48.5,82Zm0-9A3.5,3.5,0,1,0,52,76.5,3.5,3.5,0,0,0,48.5,73Z"
547
+ />
548
+ </g>
549
+ </svg>
550
+ </template>
551
+ <template v-else-if="props.name === 'obj-datastore'">
552
+ <svg
553
+ width="96"
554
+ height="124"
555
+ viewBox="0 0 96 124"
556
+ xmlns="http://www.w3.org/2000/svg"
557
+ xmlns:xlink="http://www.w3.org/1999/xlink"
558
+ >
559
+ <defs>
560
+ <linearGradient
561
+ id="illus_grad"
562
+ x1="-1907.36"
563
+ y1="63.08"
564
+ x2="-1863.1"
565
+ y2="112.71"
566
+ gradientTransform="matrix(-1, 0, 0, 1, -1840.95, 0)"
567
+ gradientUnits="userSpaceOnUse"
568
+ >
569
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
570
+ <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
571
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
572
+ </linearGradient>
573
+ <linearGradient
574
+ id="illus_grad-2"
575
+ x1="-1923.8"
576
+ y1="71.55"
577
+ x2="-1892.27"
578
+ y2="106.92"
579
+ xlink:href="#illus_grad"
580
+ />
581
+ </defs>
582
+ <g id="Layer_6" data-name="Layer 6">
583
+ <rect class="cls-1" width="96" height="124" />
584
+ </g>
585
+ <g id="Layer_4" data-name="Layer 4">
586
+ <polygon
587
+ class="cls-2"
588
+ points="16.04 94.86 60.07 94.86 60.07 50.84 16.04 94.86"
589
+ />
590
+ <polygon
591
+ class="cls-3"
592
+ points="46.97 94.2 78.34 94.2 78.34 62.83 46.97 94.2"
593
+ />
594
+ </g>
595
+ <g id="Layer_2" data-name="Layer 2">
596
+ <path
597
+ class="cls-4"
598
+ d="M89.91,95.91H5.46a1,1,0,1,1,0-2H89.91a1,1,0,0,1,0,2Z"
599
+ />
600
+ <path
601
+ class="cls-4"
602
+ d="M57.38,40H38.62a1,1,0,0,1,0-2H57.38a1,1,0,0,1,0,2Z"
603
+ />
604
+ <path
605
+ class="cls-4"
606
+ d="M48.1,80.67A4.72,4.72,0,1,1,52.82,76,4.72,4.72,0,0,1,48.1,80.67Zm0-7.44A2.72,2.72,0,1,0,50.82,76,2.72,2.72,0,0,0,48.1,73.23Z"
607
+ />
608
+ <path class="cls-4" d="M76.92,47H67v2h9.92a1,1,0,0,0,0-2Z" />
609
+ <path class="cls-4" d="M19.08,48H29v2H19.08a1,1,0,0,1,0-2Z" />
610
+ <path
611
+ class="cls-4"
612
+ d="M64,96a1,1,0,0,1-1-1V31a1,1,0,0,0-1-1H34a1,1,0,0,0-1,1V95a1,1,0,0,1-2,0V31a3,3,0,0,1,3-3H62a3,3,0,0,1,3,3V95A1,1,0,0,1,64,96Z"
613
+ />
614
+ <path
615
+ class="cls-4"
616
+ d="M83,95H81V41a1,1,0,0,0-1-1H67V38H80a3,3,0,0,1,3,3Z"
617
+ />
618
+ <path
619
+ class="cls-4"
620
+ d="M15,95H13V41a3,3,0,0,1,3-3H29v2H16a1,1,0,0,0-1,1Z"
621
+ />
622
+ </g>
623
+ </svg>
624
+ </template>
625
+ <template v-else-if="props.name === 'obj-ds'">
626
+ <svg
627
+ xmlns="http://www.w3.org/2000/svg"
628
+ xmlns:xlink="http://www.w3.org/1999/xlink"
629
+ width="96"
630
+ height="124"
631
+ viewBox="0 0 96 124"
632
+ class="icon icon-obj-ds"
633
+ >
634
+ <defs>
635
+ <linearGradient
636
+ id="illus_grad"
637
+ x1="54.43"
638
+ y1="61.9"
639
+ x2="54.43"
640
+ y2="109.83"
641
+ gradientUnits="userSpaceOnUse"
642
+ >
643
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
644
+ <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
645
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
646
+ </linearGradient>
647
+ </defs>
648
+ <g id="Layer_6" data-name="Layer 6">
649
+ <rect class="cls-1" width="96" height="124" />
650
+ </g>
651
+ <g id="Layer_4" data-name="Layer 4">
652
+ <path
653
+ class="cls-2"
654
+ d="M46.88,55.31c-1.28,0-2.53,0-3.76-.11V95.83c1.23.07,2.48.11,3.76.11,7.49,0,14.22-1.16,18.87-3V52.29C61.1,54.15,54.37,55.31,46.88,55.31Z"
655
+ />
656
+ </g>
657
+ <g id="Layer_2" data-name="Layer 2">
658
+ <path
659
+ class="cls-3"
660
+ d="M48,98.43c-14.82,0-26-4.3-26-10v-46h2v46c0,3.79,9.86,8,24,8s24-4.22,24-8v-46h2v46C74,94.13,62.82,98.43,48,98.43Z"
661
+ />
662
+ <path
663
+ class="cls-3"
664
+ d="M72,72.48c0,3.79-9.86,8-24,8a53.15,53.15,0,0,1-17.3-2.59V80A56.81,56.81,0,0,0,48,82.5c14.82,0,26-4.31,26-10Z"
665
+ />
666
+ <path
667
+ class="cls-3"
668
+ d="M72,58c0,3.79-9.86,8-24,8a53.44,53.44,0,0,1-17.3-2.58v2.13A56.83,56.83,0,0,0,48,68c14.82,0,26-4.3,26-10Z"
669
+ />
670
+ <path
671
+ class="cls-3"
672
+ d="M48,32.41c-14.82,0-26,4.3-26,10h2c0-3.79,9.86-8,24-8s24,4.22,24,8-9.86,8-24,8a53.44,53.44,0,0,1-17.3-2.58V50A56.83,56.83,0,0,0,48,52.43c14.82,0,26-4.3,26-10S62.82,32.41,48,32.41Z"
673
+ />
674
+ </g>
675
+ </svg>
676
+ </template>
677
+ <template v-else-if="props.name === 'arrow'">
678
+ <svg height="20" viewBox="0 0 32 32" width="20">
679
+ <path
680
+ d="M16.7 11.3c-0.4-0.4-1-0.4-1.4 0l-9 9c-0.4 0.4-0.4 1 0 1.4 0.4 0.4 1 0.4 1.4 0L16 13.4l8.3 8.3c0.4 0.4 1 0.4 1.4 0 0.4-0.4 0.4-1 0-1.4L16.7 11.3z"
681
+ />
682
+ </svg>
683
+ </template>
684
+ <template v-else-if="props.name === 'info'">
685
+ <svg viewBox="0 0 36 36" class="icon-container" style="">
686
+ <path
687
+ id="error-icon-outline"
688
+ d="M18,7A11,11,0,1,1,7,18,11,11,0,0,1,18,7"
689
+ class="ng-tns-c303-18"
690
+ />
691
+ <path
692
+ id="error-icon-line"
693
+ d="M18,12.8v5.9"
694
+ class="ng-tns-c303-18 ng-trigger ng-trigger-errorLine"
695
+ />
696
+ <circle
697
+ id="error-icon-dot"
698
+ cx="18"
699
+ cy="23"
700
+ r="1.4"
701
+ class="ng-tns-c303-18 ng-trigger ng-trigger-errorDot"
702
+ />
703
+ </svg>
704
+ </template>
705
+ <template v-else-if="props.name === 'obj-cluster'">
706
+ <svg
707
+ xmlns="http://www.w3.org/2000/svg"
708
+ xmlns:xlink="http://www.w3.org/1999/xlink"
709
+ width="96"
710
+ height="124"
711
+ viewBox="0 0 96 124"
712
+ class="icon icon-obj-cluster"
713
+ >
714
+ <defs>
715
+ <linearGradient
716
+ id="illus_grad"
717
+ x1="-1907.36"
718
+ y1="63.08"
719
+ x2="-1863.1"
720
+ y2="112.71"
721
+ gradientTransform="matrix(-1, 0, 0, 1, -1840.95, 0)"
722
+ gradientUnits="userSpaceOnUse"
723
+ >
724
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
725
+ <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
726
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
727
+ </linearGradient>
728
+ <linearGradient
729
+ id="illus_grad-2"
730
+ x1="-1923.8"
731
+ y1="71.55"
732
+ x2="-1892.27"
733
+ y2="106.92"
734
+ xlink:href="#illus_grad"
735
+ />
736
+ </defs>
737
+ <g id="Layer_6" data-name="Layer 6">
738
+ <rect class="cls-1" width="96" height="124" />
739
+ </g>
740
+ <g id="Layer_4" data-name="Layer 4">
741
+ <polygon
742
+ class="cls-2"
743
+ points="16.04 94.86 60.07 94.86 60.07 50.84 16.04 94.86"
744
+ />
745
+ <polygon
746
+ class="cls-3"
747
+ points="46.97 94.2 78.34 94.2 78.34 62.83 46.97 94.2"
748
+ />
749
+ </g>
750
+ <g id="Layer_2" data-name="Layer 2">
751
+ <path
752
+ class="cls-4"
753
+ d="M89.91,95.91H5.46a1,1,0,1,1,0-2H89.91a1,1,0,0,1,0,2Z"
754
+ />
755
+ <path
756
+ class="cls-4"
757
+ d="M57.38,40H38.62a1,1,0,0,1,0-2H57.38a1,1,0,0,1,0,2Z"
758
+ />
759
+ <path
760
+ class="cls-4"
761
+ d="M48.1,80.67A4.72,4.72,0,1,1,52.82,76,4.72,4.72,0,0,1,48.1,80.67Zm0-7.44A2.72,2.72,0,1,0,50.82,76,2.72,2.72,0,0,0,48.1,73.23Z"
762
+ />
763
+ <path class="cls-4" d="M76.92,47H67v2h9.92a1,1,0,0,0,0-2Z" />
764
+ <path class="cls-4" d="M19.08,48H29v2H19.08a1,1,0,0,1,0-2Z" />
765
+ <path
766
+ class="cls-4"
767
+ d="M64,96a1,1,0,0,1-1-1V31a1,1,0,0,0-1-1H34a1,1,0,0,0-1,1V95a1,1,0,0,1-2,0V31a3,3,0,0,1,3-3H62a3,3,0,0,1,3,3V95A1,1,0,0,1,64,96Z"
768
+ />
769
+ <path
770
+ class="cls-4"
771
+ d="M83,95H81V41a1,1,0,0,0-1-1H67V38H80a3,3,0,0,1,3,3Z"
772
+ />
773
+ <path
774
+ class="cls-4"
775
+ d="M15,95H13V41a3,3,0,0,1,3-3H29v2H16a1,1,0,0,0-1,1Z"
776
+ />
777
+ </g>
778
+ </svg>
779
+ </template>
780
+ <template v-else-if="props.name === 'obj-network'">
781
+ <svg
782
+ xmlns="http://www.w3.org/2000/svg"
783
+ xmlns:xlink="http://www.w3.org/1999/xlink"
784
+ width="96"
785
+ height="124"
786
+ viewBox="0 0 96 124"
787
+ class="icon icon__obj-network"
788
+ >
789
+ <defs>
790
+ <linearGradient
791
+ id="linear-gradient"
792
+ x1="75.11"
793
+ y1="22.68"
794
+ x2="-1.26"
795
+ y2="100.91"
796
+ gradientUnits="userSpaceOnUse"
797
+ >
798
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
799
+ <stop offset="0.46" stop-color="#0091da" stop-opacity="0.32" />
800
+ <stop offset="0.83" stop-color="#0091da" stop-opacity="0" />
801
+ </linearGradient>
802
+ <linearGradient
803
+ id="linear-gradient-2"
804
+ x1="78.18"
805
+ y1="10.58"
806
+ x2="25.29"
807
+ y2="64.76"
808
+ xlink:href="#linear-gradient"
809
+ />
810
+ </defs>
811
+ <g id="Layer_6" data-name="Layer 6">
812
+ <rect class="cls-1" width="96" height="124" />
813
+ </g>
814
+ <g id="Layer_4" data-name="Layer 4">
815
+ <polygon
816
+ class="cls-2"
817
+ points="47.67 64 88.67 23 61.9 23 20.9 64 47.67 64"
818
+ />
819
+ <polygon
820
+ class="cls-3"
821
+ points="59.77 39 87.78 11 68.44 11 40.44 39 59.77 39"
822
+ />
823
+ </g>
824
+ <g id="Layer_2" data-name="Layer 2">
825
+ <path class="cls-4" d="M76,96H28.5a1,1,0,0,1,0-2H76a1,1,0,0,1,0,2Z" />
826
+ <path
827
+ class="cls-4"
828
+ d="M66,92H53V82.33a1,1,0,1,1,2,0V90H66a1,1,0,0,1,0,2Z"
829
+ />
830
+ <path
831
+ class="cls-4"
832
+ d="M65.92,29.18a3,3,0,1,0,3,3A3,3,0,0,0,65.92,29.18Zm0,4.33a1.32,1.32,0,1,1,1.31-1.31A1.32,1.32,0,0,1,65.92,33.51Z"
833
+ />
834
+ <path
835
+ class="cls-4"
836
+ d="M77.56,45.86a3,3,0,1,0,3,3A3,3,0,0,0,77.56,45.86Zm0,4.32a1.31,1.31,0,1,1,1.31-1.31A1.31,1.31,0,0,1,77.56,50.18Z"
837
+ />
838
+ <path
839
+ class="cls-4"
840
+ d="M61.23,60.76a3.07,3.07,0,1,0,3.08,3.07A3.07,3.07,0,0,0,61.23,60.76Zm0,4.44a1.37,1.37,0,1,1,1.38-1.37A1.37,1.37,0,0,1,61.23,65.2Z"
841
+ />
842
+ <path
843
+ class="cls-4"
844
+ d="M63.24,75.6a3.08,3.08,0,1,0,3.08,3.08A3.08,3.08,0,0,0,63.24,75.6Zm0,4.45a1.37,1.37,0,1,1,1.38-1.37A1.38,1.38,0,0,1,63.24,80.05Z"
845
+ />
846
+ <path
847
+ class="cls-4"
848
+ d="M41,71.39a3.07,3.07,0,1,0,3.08,3.07A3.08,3.08,0,0,0,41,71.39Zm0,4.44a1.37,1.37,0,1,1,1.38-1.37A1.37,1.37,0,0,1,41,75.83Z"
849
+ />
850
+ <path
851
+ class="cls-4"
852
+ d="M37.33,39.24a3,3,0,1,0,3,3A3,3,0,0,0,37.33,39.24Zm0,4.26a1.28,1.28,0,1,1,1.29-1.28A1.28,1.28,0,0,1,37.33,43.5Z"
853
+ />
854
+ <path
855
+ class="cls-4"
856
+ d="M24.25,47a3,3,0,1,0,3,3A3,3,0,0,0,24.25,47Zm0,4.26a1.28,1.28,0,1,1,1.28-1.28A1.28,1.28,0,0,1,24.25,51.21Z"
857
+ />
858
+ <path class="cls-4" d="M28.5,90a1,1,0,0,0,0,2H49V90Z" />
859
+ <path
860
+ class="cls-4"
861
+ d="M59.16,64.48a29,29,0,0,1-9.27,6.72,29.38,29.38,0,0,1-7,2.18,2.32,2.32,0,0,1,.29,1.08,2.22,2.22,0,0,1-.21.93A31.06,31.06,0,0,0,60.5,66,2.26,2.26,0,0,1,59.16,64.48Z"
862
+ />
863
+ <path
864
+ class="cls-4"
865
+ d="M67.85,32.9a2.16,2.16,0,0,1-1.47,1.39,26.06,26.06,0,0,1,9.37,13.29,2.15,2.15,0,0,1,1.79-1A28.08,28.08,0,0,0,67.85,32.9Z"
866
+ />
867
+ <path
868
+ class="cls-4"
869
+ d="M61.05,79a25.68,25.68,0,0,1-10.13,2.06A26,26,0,0,1,25,55.11a26.58,26.58,0,0,1,.21-3.24,2.12,2.12,0,0,1-1,.25,2.21,2.21,0,0,1-1-.26A29,29,0,0,0,23,55.11,27.93,27.93,0,0,0,62.24,80.65,2.23,2.23,0,0,1,61.05,79Z"
870
+ />
871
+ <path
872
+ class="cls-4"
873
+ d="M59.06,63.7a2.07,2.07,0,0,1,.06-.5,48.05,48.05,0,0,1-25.29-6.33,49.33,49.33,0,0,1-7.93-5.61,2.1,2.1,0,0,1-1.65.8,1.85,1.85,0,0,1-.58-.09,51.18,51.18,0,0,0,9.17,6.64,50.18,50.18,0,0,0,24.79,6.62c.66,0,1.33,0,2,0A2.3,2.3,0,0,1,59.06,63.7Z"
874
+ />
875
+ <path
876
+ class="cls-4"
877
+ d="M35.06,42.18s0,0,0,0A33.62,33.62,0,0,0,31,44.32a36.11,36.11,0,0,0-5.26,4.11,2.15,2.15,0,0,1,.62,1.5,2,2,0,0,1-.18.85A31.91,31.91,0,0,1,35.92,44,2.28,2.28,0,0,1,35.06,42.18Z"
878
+ />
879
+ <path
880
+ class="cls-4"
881
+ d="M41.07,31.13a25.68,25.68,0,0,1,22.6,1.41c0-.11,0-.22,0-.33a2.16,2.16,0,0,1,.7-1.59,27.72,27.72,0,0,0-25.47-.7C39.59,30.29,40.32,30.69,41.07,31.13Z"
882
+ />
883
+ <path
884
+ class="cls-4"
885
+ d="M34.77,32.34A28.06,28.06,0,0,0,23.93,47.89a2.3,2.3,0,0,1,.26,0,2.13,2.13,0,0,1,1.61.75,26,26,0,0,1,11-15.27C36.12,33,35.43,32.64,34.77,32.34Z"
886
+ />
887
+ <path
888
+ class="cls-4"
889
+ d="M38.33,40.24a35.73,35.73,0,0,1,.93-5.55c-.61-.36-1.21-.7-1.79-1a35.67,35.67,0,0,0-1.14,6.58,2,2,0,0,1,1-.27A2.16,2.16,0,0,1,38.33,40.24Z"
890
+ />
891
+ <path
892
+ class="cls-4"
893
+ d="M48.12,40.81c-.8-.63-1.59-1.22-2.36-1.79A36.79,36.79,0,0,0,39,40.56a2.28,2.28,0,0,1,.67,1.62c0,.09,0,.18,0,.28A34.65,34.65,0,0,1,48.12,40.81Z"
894
+ />
895
+ <path
896
+ class="cls-4"
897
+ d="M51.93,38.74c.88.71,1.76,1.44,2.65,2.2a42.5,42.5,0,0,1,20.87,8.38,2.3,2.3,0,0,1,0-.45,2.17,2.17,0,0,1,.68-1.57A43.87,43.87,0,0,0,51.93,38.74Z"
898
+ />
899
+ <path
900
+ class="cls-4"
901
+ d="M66,51.73c.54.56,1.08,1.12,1.61,1.7A30.94,30.94,0,0,0,67,34.1,2.1,2.1,0,0,1,64.86,34,29,29,0,0,1,66,51.73Z"
902
+ />
903
+ <path
904
+ class="cls-4"
905
+ d="M64.57,56a29,29,0,0,1-3.08,5.57,2.3,2.3,0,0,1,1.75,1,32.71,32.71,0,0,0,2.82-5C65.56,57.08,65.07,56.54,64.57,56Z"
906
+ />
907
+ <path
908
+ class="cls-4"
909
+ d="M75.73,62.69c.5.61,1,1.23,1.49,1.85a27.83,27.83,0,0,0,1.3-13.84,2.12,2.12,0,0,1-2-.07,25.39,25.39,0,0,1,.4,4.48A26,26,0,0,1,75.73,62.69Z"
910
+ />
911
+ <path
912
+ class="cls-4"
913
+ d="M74,66.92a26.08,26.08,0,0,1-9.25,10.13,2.2,2.2,0,0,1,.72,1.63c0,.1,0,.2,0,.3a28.14,28.14,0,0,0,9.91-10.33Z"
914
+ />
915
+ <path
916
+ class="cls-4"
917
+ d="M83,71.21A161.59,161.59,0,0,0,69.59,54.46c-16.42-18.07-37.41-33.12-44.1-27C23.74,29,23.25,31.75,24,35.54a1,1,0,0,0,2-.4c-.43-2.1-.64-4.89.84-6.23,4.45-4.05,22.1,5.8,41.28,26.89A162,162,0,0,1,81.43,72.48,3,3,0,0,1,83,71.21Z"
918
+ />
919
+ <path
920
+ class="cls-4"
921
+ d="M84.05,78.09a4,4,0,0,1-1.66-.36,4,4,0,0,1-2.06-2.24,4,4,0,0,1,2.36-5.09,4,4,0,0,1,5.09,2.36h0a4,4,0,0,1-2.36,5.09A4,4,0,0,1,84.05,78.09Zm0-6.23a2.38,2.38,0,0,0-.78.14,2.27,2.27,0,0,0-.17,4.18,2.24,2.24,0,0,0,1.74.07,2.26,2.26,0,0,0,1.34-2.9h0A2.26,2.26,0,0,0,84.05,71.86Z"
922
+ />
923
+ </g>
924
+ </svg>
925
+ </template>
926
+ <template v-else-if="props.name === 'obj-rp'">
927
+ <svg
928
+ xmlns="http://www.w3.org/2000/svg"
929
+ xmlns:xlink="http://www.w3.org/1999/xlink"
930
+ width="96"
931
+ height="124"
932
+ viewBox="0 0 96 124"
933
+ class="icon icon-obj-rp"
934
+ >
935
+ <defs>
936
+ <linearGradient
937
+ id="linear-gradient"
938
+ x1="78.91"
939
+ y1="20.07"
940
+ x2="17.57"
941
+ y2="75.31"
942
+ gradientUnits="userSpaceOnUse"
943
+ >
944
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
945
+ <stop offset="0.46" stop-color="#0091da" stop-opacity="0.32" />
946
+ <stop offset="0.83" stop-color="#0091da" stop-opacity="0" />
947
+ </linearGradient>
948
+ <linearGradient
949
+ id="illus_grad"
950
+ x1="-3453.04"
951
+ y1="20.8"
952
+ x2="-3429.13"
953
+ y2="44.35"
954
+ gradientTransform="matrix(-1, 0, 0, 1, -3394.04, 0)"
955
+ gradientUnits="userSpaceOnUse"
956
+ >
957
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
958
+ <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
959
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
960
+ </linearGradient>
961
+ </defs>
962
+ <g id="Layer_6" data-name="Layer 6">
963
+ <rect class="cls-1" width="96" height="124" />
964
+ </g>
965
+ <g id="Layer_4" data-name="Layer 4">
966
+ <polygon
967
+ class="cls-2"
968
+ points="27.31 56.61 63.42 20.5 89.45 20.5 53.34 56.61 27.31 56.61"
969
+ />
970
+ <polygon
971
+ class="cls-3"
972
+ points="34.02 36.86 58.38 12.5 76.11 12.5 51.75 36.86 34.02 36.86"
973
+ />
974
+ </g>
975
+ <g id="Layer_2" data-name="Layer 2">
976
+ <path
977
+ class="cls-4"
978
+ d="M29.68,89.71a1,1,0,0,1-.61-.21,1,1,0,0,1-.18-1.4L47.77,63.39a1,1,0,0,1,.8-.39H72.62a1,1,0,0,1,0,2H49.06L30.48,89.32A1,1,0,0,1,29.68,89.71Z"
979
+ />
980
+ <path class="cls-5" d="M31,90.94a31.1,31.1,0,0,0,48.1-24.68H50Z" />
981
+ <path
982
+ class="cls-4"
983
+ d="M48,97a32.1,32.1,0,1,1,32.1-32.1A32.14,32.14,0,0,1,48,97Zm0-62.2a30.1,30.1,0,1,0,30.1,30.1A30.13,30.13,0,0,0,48,34.82Z"
984
+ />
985
+ </g>
986
+ </svg>
987
+ </template>
988
+
989
+ <template v-else-if="props.name === 'sort-arrow'">
990
+ <svg
991
+ version="1.1"
992
+ viewBox="0 0 36 36"
993
+ preserveAspectRatio="xMidYMid meet"
994
+ xmlns="http://www.w3.org/2000/svg"
995
+ xmlns:xlink="http://www.w3.org/1999/xlink"
996
+ focusable="false"
997
+ role="img"
998
+ >
999
+ <path
1000
+ d="M27.66,15.61,18,6,8.34,15.61A1,1,0,1,0,9.75,17L17,9.81V28.94a1,1,0,1,0,2,0V9.81L26.25,17a1,1,0,0,0,1.41-1.42Z"
1001
+ class="clr-i-outline clr-i-outline-path-1"
1002
+ />
1003
+ </svg>
1004
+ </template>
1005
+ <template v-else-if="props.name === 'filter'">
1006
+ <svg
1007
+ version="1.1"
1008
+ class="has-solid"
1009
+ viewBox="0 0 36 36"
1010
+ preserveAspectRatio="xMidYMid meet"
1011
+ xmlns="http://www.w3.org/2000/svg"
1012
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1013
+ focusable="false"
1014
+ role="img"
1015
+ >
1016
+ <path
1017
+ class="clr-i-solid clr-i-solid-path-1"
1018
+ d="M8,11v1.12a.5.5,0,0,0,.15.35l7.28,7.36a.5.5,0,0,1,.15.35v6.89a.5.5,0,0,0,.28.45l3.95,1.41a.5.5,0,0,0,.72-.45l0-8.39a.54.54,0,0,1,.18-.35l7.12-7.25a.5.5,0,0,0,.15-.35V11Z"
1019
+ />
1020
+ </svg>
1021
+ </template>
1022
+ <template v-else-if="props.name === 'filter-solid'">
1023
+ <svg
1024
+ version="1.1"
1025
+ class="has-solid"
1026
+ viewBox="0 0 36 36"
1027
+ preserveAspectRatio="xMidYMid meet"
1028
+ xmlns="http://www.w3.org/2000/svg"
1029
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1030
+ focusable="false"
1031
+ role="img"
1032
+ >
1033
+ <path
1034
+ class="clr-i-outline clr-i-outline-path-1"
1035
+ d="M15,25.86l2,1V20.27a1,1,0,0,0-.29-.7L10.23,13H25.79l-6.47,6.57a1,1,0,0,0-.29.7L19,28l2,1V20.68L27.58,14A1.46,1.46,0,0,0,28,13V12a1,1,0,0,0-1-1H9a1,1,0,0,0-1,1v1a1.46,1.46,0,0,0,.42,1L15,20.68Z"
1036
+ />
1037
+ <path
1038
+ class="clr-i-outline clr-i-outline-path-2"
1039
+ d="M18,2A16,16,0,1,0,34,18,16,16,0,0,0,18,2Zm0,30A14,14,0,1,1,32,18,14,14,0,0,1,18,32Z"
1040
+ />
1041
+ <path
1042
+ class="clr-i-solid clr-i-solid-path-1"
1043
+ d="M18,2A16,16,0,1,0,34,18,16,16,0,0,0,18,2Zm0,30A14,14,0,1,1,32,18,14,14,0,0,1,18,32Z"
1044
+ />
1045
+ <path
1046
+ class="clr-i-solid clr-i-solid-path-2"
1047
+ d="M8,11v1.12a.5.5,0,0,0,.15.35l7.28,7.36a.5.5,0,0,1,.15.35v6.89a.5.5,0,0,0,.28.45l3.95,1.41a.5.5,0,0,0,.72-.45l0-8.39a.54.54,0,0,1,.18-.35l7.12-7.25a.5.5,0,0,0,.15-.35V11Z"
1048
+ />
1049
+ </svg>
1050
+ </template>
1051
+ <template v-else-if="props.name === 'check'">
1052
+ <svg
1053
+ id="Capa_1"
1054
+ xmlns="http://www.w3.org/2000/svg"
1055
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1056
+ version="1.1"
1057
+ x="0px"
1058
+ y="0px"
1059
+ viewBox="0 0 17.837 17.837"
1060
+ style="enable-background: new 0 0 17.837 17.837"
1061
+ xml:space="preserve"
1062
+ >
1063
+ <g>
1064
+ <path
1065
+ d="M16.145,2.571c-0.272-0.273-0.718-0.273-0.99,0L6.92,10.804l-4.241-4.27 c-0.272-0.274-0.715-0.274-0.989,0L0.204,8.019c-0.272,0.271-0.272,0.717,0,0.99l6.217,6.258c0.272,0.271,0.715,0.271,0.99,0 L17.63,5.047c0.276-0.273,0.276-0.72,0-0.994L16.145,2.571z"
1066
+ />
1067
+ </g>
1068
+ </svg>
1069
+ </template>
1070
+ <template v-else-if="props.name === 'help-icon'">
1071
+ <svg
1072
+ version="1.1"
1073
+ class="can-badge has-solid"
1074
+ viewBox="-2 -2 38 38"
1075
+ preserveAspectRatio="xMidYMid meet"
1076
+ xmlns="http://www.w3.org/2000/svg"
1077
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1078
+ focusable="false"
1079
+ role="img"
1080
+ aria-labelledby="_clr_icon_6"
1081
+ fill="#565656"
1082
+ >
1083
+ <path
1084
+ d="M18,2A16,16,0,1,0,34,18,16,16,0,0,0,18,2Zm0,30A14,14,0,1,1,32,18,14,14,0,0,1,18,32Z"
1085
+ class="clr-i-outline clr-i-outline-path-1"
1086
+ />
1087
+ <path
1088
+ d="M18.29,8.92a7.38,7.38,0,0,0-5.72,2.57,1,1,0,0,0-.32.71.92.92,0,0,0,.95.92,1.08,1.08,0,0,0,.71-.29,5.7,5.7,0,0,1,4.33-2c2.36,0,3.83,1.52,3.83,3.41v.05c0,2.21-1.76,3.44-4.54,3.65a.8.8,0,0,0-.76.92s0,2.32,0,2.75a1,1,0,0,0,1,.9h.11a1,1,0,0,0,.9-1V19.45c3-.42,5.43-2,5.43-5.28v-.05C24.18,11.12,21.84,8.92,18.29,8.92Z"
1089
+ class="clr-i-outline clr-i-outline-path-2"
1090
+ />
1091
+ <circle
1092
+ cx="17.78"
1093
+ cy="26.2"
1094
+ r="1.25"
1095
+ class="clr-i-outline clr-i-outline-path-3"
1096
+ />
1097
+ </svg>
1098
+ </template>
1099
+ <template v-else-if="props.name === 'close-circle'">
1100
+ <svg
1101
+ version="1.1"
1102
+ class="has-solid"
1103
+ viewBox="0 0 36 36"
1104
+ preserveAspectRatio="xMidYMid meet"
1105
+ xmlns="http://www.w3.org/2000/svg"
1106
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1107
+ focusable="false"
1108
+ role="img"
1109
+ aria-labelledby="_clr_icon_169"
1110
+ >
1111
+ <path
1112
+ class="clr-i-outline clr-i-outline-path-1"
1113
+ d="M19.61,18l4.86-4.86a1,1,0,0,0-1.41-1.41L18.2,16.54l-4.89-4.89a1,1,0,0,0-1.41,1.41L16.78,18,12,22.72a1,1,0,1,0,1.41,1.41l4.77-4.77,4.74,4.74a1,1,0,0,0,1.41-1.41Z"
1114
+ />
1115
+ <path
1116
+ class="clr-i-outline clr-i-outline-path-2"
1117
+ d="M18,34A16,16,0,1,1,34,18,16,16,0,0,1,18,34ZM18,4A14,14,0,1,0,32,18,14,14,0,0,0,18,4Z"
1118
+ />
1119
+ </svg>
1120
+ </template>
1121
+ <template v-else-if="props.name === 'column-switch'">
1122
+ <svg
1123
+ version="1.1"
1124
+ viewBox="0 0 36 36"
1125
+ preserveAspectRatio="xMidYMid meet"
1126
+ xmlns="http://www.w3.org/2000/svg"
1127
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1128
+ focusable="false"
1129
+ role="img"
1130
+ >
1131
+ <path
1132
+ class="clr-i-outline clr-i-outline-path-1"
1133
+ d="M31,5H5A2,2,0,0,0,3,7V29a2,2,0,0,0,2,2H31a2,2,0,0,0,2-2V7A2,2,0,0,0,31,5ZM13,29H5V7h8Zm10,0H15V7h8Z"
1134
+ />
1135
+ </svg>
1136
+ </template>
1137
+ <template v-else-if="props.name === 'lock'">
1138
+ <svg
1139
+ xmlns="http://www.w3.org/2000/svg"
1140
+ fill="none"
1141
+ viewBox="0 0 24 24"
1142
+ stroke-width="1.5"
1143
+ stroke="currentColor"
1144
+ class="w-6 h-6"
1145
+ >
1146
+ <path
1147
+ stroke-linecap="round"
1148
+ stroke-linejoin="round"
1149
+ d="M16.5 10.5V6.75a4.5 4.5 0 10-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 002.25-2.25v-6.75a2.25 2.25 0 00-2.25-2.25H6.75a2.25 2.25 0 00-2.25 2.25v6.75a2.25 2.25 0 002.25 2.25z"
1150
+ />
1151
+ </svg>
1152
+ </template>
1153
+ <template v-else-if="props.name === 'ellipsis-horizontal'">
1154
+ <svg
1155
+ version="1.1"
1156
+ class="can-badge"
1157
+ viewBox="0 0 36 36"
1158
+ preserveAspectRatio="xMidYMid meet"
1159
+ xmlns="http://www.w3.org/2000/svg"
1160
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1161
+ focusable="false"
1162
+ role="img"
1163
+ >
1164
+ <circle
1165
+ cx="31.1"
1166
+ cy="18"
1167
+ r="2.9"
1168
+ class="clr-i-outline clr-i-outline-path-1"
1169
+ ></circle>
1170
+ <circle
1171
+ cx="18"
1172
+ cy="18"
1173
+ r="2.9"
1174
+ class="clr-i-outline clr-i-outline-path-2"
1175
+ ></circle>
1176
+ <circle
1177
+ cx="4.9"
1178
+ cy="18"
1179
+ r="2.9"
1180
+ class="clr-i-outline clr-i-outline-path-3"
1181
+ ></circle>
1182
+ </svg>
1183
+ </template>
1184
+ <template v-else-if="props.name === 'step-forward'">
1185
+ <svg
1186
+ version="1.1"
1187
+ viewBox="0 0 36 36"
1188
+ preserveAspectRatio="xMidYMid meet"
1189
+ xmlns="http://www.w3.org/2000/svg"
1190
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1191
+ focusable="false"
1192
+ role="img"
1193
+ >
1194
+ <path
1195
+ d="M7.08,6.52a1.68,1.68,0,0,0,0,2.4L16.51,18,7.12,27.08a1.7,1.7,0,0,0,2.36,2.44h0L21.4,18,9.48,6.47A1.69,1.69,0,0,0,7.08,6.52Z"
1196
+ class="clr-i-outline clr-i-outline-path-1"
1197
+ ></path>
1198
+ <path
1199
+ d="M26.49,5a1.7,1.7,0,0,0-1.7,1.7V29.3a1.7,1.7,0,0,0,3.4,0V6.7A1.7,1.7,0,0,0,26.49,5Z"
1200
+ class="clr-i-outline clr-i-outline-path-2"
1201
+ ></path>
1202
+ </svg>
1203
+ </template>
1204
+ <template v-else-if="props.name === 'search'">
1205
+ <svg
1206
+ version="1.1"
1207
+ viewBox="0 0 36 36"
1208
+ preserveAspectRatio="xMidYMid meet"
1209
+ xmlns="http://www.w3.org/2000/svg"
1210
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1211
+ focusable="false"
1212
+ role="img"
1213
+ >
1214
+ <path
1215
+ class="clr-i-outline clr-i-outline-path-1"
1216
+ d="M16.33,5.05A10.95,10.95,0,1,1,5.39,16,11,11,0,0,1,16.33,5.05m0-2.05a13,13,0,1,0,13,13,13,13,0,0,0-13-13Z"
1217
+ ></path>
1218
+ <path
1219
+ class="clr-i-outline clr-i-outline-path-2"
1220
+ d="M35,33.29l-7.37-7.42-1.42,1.41,7.37,7.42A1,1,0,1,0,35,33.29Z"
1221
+ ></path>
1222
+ </svg>
1223
+ </template>
1224
+
1225
+ <template v-else-if="props.name === 'success-circle'">
1226
+ <svg
1227
+ fill="#2e8500"
1228
+ version="1.1"
1229
+ class="has-solid"
1230
+ preserveAspectRatio="xMidYMid meet"
1231
+ xmlns="http://www.w3.org/2000/svg"
1232
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1233
+ focusable="false"
1234
+ role="img"
1235
+ viewBox="-1 -1 40 40"
1236
+ >
1237
+ <path
1238
+ class="clr-i-outline clr-i-outline-path-1"
1239
+ d="M18,2A16,16,0,1,0,34,18,16,16,0,0,0,18,2Zm0,30A14,14,0,1,1,32,18,14,14,0,0,1,18,32Z"
1240
+ ></path>
1241
+ <path
1242
+ class="clr-i-outline clr-i-outline-path-2"
1243
+ d="M28,12.1a1,1,0,0,0-1.41,0L15.49,23.15l-6-6A1,1,0,0,0,8,18.53L15.49,26,28,13.52A1,1,0,0,0,28,12.1Z"
1244
+ ></path>
1245
+ </svg>
1246
+ </template>
1247
+
1248
+ <template v-else-if="props.name === 'error-outline'">
1249
+ <svg
1250
+ xmlns="http://www.w3.org/2000/svg"
1251
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1252
+ fill="#e02200"
1253
+ version="1.1"
1254
+ class="has-solid"
1255
+ preserveAspectRatio="xMidYMid meet"
1256
+ focusable="false"
1257
+ role="img"
1258
+ viewBox="3 3 30 30"
1259
+ >
1260
+ <path
1261
+ class="clr-i-outline clr-i-outline-path-1"
1262
+ d="M18,6A12,12,0,1,0,30,18,12,12,0,0,0,18,6Zm0,22A10,10,0,1,1,28,18,10,10,0,0,1,18,28Z"
1263
+ />
1264
+ <path
1265
+ class="clr-i-outline clr-i-outline-path-2"
1266
+ d="M18,20.07a1.3,1.3,0,0,1-1.3-1.3v-6a1.3,1.3,0,1,1,2.6,0v6A1.3,1.3,0,0,1,18,20.07Z"
1267
+ />
1268
+ <circle
1269
+ class="clr-i-outline clr-i-outline-path-3"
1270
+ cx="17.95"
1271
+ cy="23.02"
1272
+ r="1.5"
1273
+ />
1274
+ </svg>
1275
+ </template>
1276
+
1277
+ <template v-else-if="props.name === 'warning-outline'">
1278
+ <svg
1279
+ fill="#c27b00"
1280
+ version="1.1"
1281
+ class="has-solid"
1282
+ viewBox="0 0 36 36"
1283
+ preserveAspectRatio="xMidYMid meet"
1284
+ xmlns="http://www.w3.org/2000/svg"
1285
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1286
+ focusable="false"
1287
+ role="img"
1288
+ >
1289
+ <path
1290
+ class="clr-i-outline clr-i-outline-path-1"
1291
+ d="M18,21.32a1.3,1.3,0,0,0,1.3-1.3V14a1.3,1.3,0,1,0-2.6,0v6A1.3,1.3,0,0,0,18,21.32Z"
1292
+ ></path>
1293
+ <circle
1294
+ class="clr-i-outline clr-i-outline-path-2"
1295
+ cx="17.95"
1296
+ cy="24.27"
1297
+ r="1.5"
1298
+ ></circle>
1299
+ <path
1300
+ class="clr-i-outline clr-i-outline-path-3"
1301
+ d="M30.33,25.54,20.59,7.6a3,3,0,0,0-5.27,0L5.57,25.54A3,3,0,0,0,8.21,30H27.69a3,3,0,0,0,2.64-4.43Zm-1.78,1.94a1,1,0,0,1-.86.49H8.21a1,1,0,0,1-.88-1.48L17.07,8.55a1,1,0,0,1,1.76,0l9.74,17.94A1,1,0,0,1,28.55,27.48Z"
1302
+ ></path>
1303
+ </svg>
1304
+ </template>
1305
+ <template v-else-if="props.name === 'is-error'">
1306
+ <svg
1307
+ fill="#e02200"
1308
+ version="1.1"
1309
+ class="has-solid"
1310
+ viewBox="0 0 36 36"
1311
+ preserveAspectRatio="xMidYMid meet"
1312
+ xmlns="http://www.w3.org/2000/svg"
1313
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1314
+ focusable="false"
1315
+ role="img"
1316
+ >
1317
+ <path
1318
+ class="clr-i-outline clr-i-outline-path-3"
1319
+ d="M18,34A16,16,0,1,1,34,18,16,16,0,0,1,18,34ZM18,4A14,14,0,1,0,32,18,14,14,0,0,0,18,4Z"
1320
+ ></path>
1321
+ <path
1322
+ class="clr-i-solid clr-i-solid-path-1"
1323
+ d="M18,2.1a16,16,0,1,0,16,16A16,16,0,0,0,18,2.1ZM16.6,8.8a1.4,1.4,0,0,1,2.8,0v12a1.4,1.4,0,0,1-2.8,0ZM18,28.6a1.8,1.8,0,1,1,1.8-1.8A1.8,1.8,0,0,1,18,28.6Z"
1324
+ ></path>
1325
+ </svg>
1326
+ </template>
1327
+ <template v-else-if="props.name === 'home-objects-datastore'">
1328
+ <svg width="38" height="38" viewBox="1 1 38 38">
1329
+ <!-- <path d="M18 10c-.8 0-8 .1-8 3v14c0 2.9 7.2 3 8 3s8-.1 8-3V13c0-2.9-7.2-3-8-3zm6 4.9c-.4.4-2.5 1.1-6 1.1a18.1 18.1 0 01-4-.4v2a27.1 27.1 0 004 .4 20.29 20.29 0 006-.9v3.8c-.4.4-2.5 1.1-6 1.1a18.1 18.1 0 01-4-.4v2a27.1 27.1 0 004 .4 20.29 20.29 0 006-.9v3.8c-.4.4-2.5 1.1-6 1.1s-5.6-.7-6-1.1V13.1c.4-.4 2.5-1.1 6-1.1s5.6.7 6 1.1z"/> -->
1330
+ <path
1331
+ d="M18 34c-1.43 0-14-.11-14-4V6c0-3.89 12.57-4 14-4s14 .11 14 4v24c0 3.89-12.57 4-14 4zM6 29.93c.51.76 4.86 2.07 12 2.07s11.49-1.31 12-2.07V6.07C29.49 5.31 25.14 4 18 4S6.51 5.31 6 6.07z"
1332
+ />
1333
+ <path
1334
+ d="M6 13.9a.19.19 0 010 .1v-.08zM8 9a46.29 46.29 0 0010 1c1.43 0 14-.11 14-4h-2a.19.19 0 010-.1c-.39.75-4.76 2.1-12 2.1A38 38 0 018 6.88zM6 5.9A.19.19 0 016 6v-.08zM30 13.9c-.41.75-4.78 2.1-12 2.1a38 38 0 01-10-1.12V17a46.29 46.29 0 0010 1c1.43 0 14-.11 14-4h-2a.19.19 0 010-.1zM30 21.9c-.41.75-4.78 2.1-12 2.1a38 38 0 01-10-1.12V25a46.29 46.29 0 0010 1c1.43 0 14-.11 14-4h-2a.19.19 0 010-.1zM6 21.9a.19.19 0 010 .1v-.08-.02z"
1335
+ />
1336
+ </svg>
1337
+ </template>
1338
+
1339
+ <template v-else-if="props.name === 'upload-icon'">
1340
+ <svg
1341
+ version="1.1"
1342
+ viewBox="0 0 36 36"
1343
+ preserveAspectRatio="xMidYMid meet"
1344
+ xmlns="http://www.w3.org/2000/svg"
1345
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1346
+ focusable="false"
1347
+ role="img"
1348
+ >
1349
+ <path
1350
+ class="clr-i-outline clr-i-outline-path-1"
1351
+ d="M27,33H5a2,2,0,0,1-2-2V9A2,2,0,0,1,5,7H15V9H5V31H27V21h2V31A2,2,0,0,1,27,33Z"
1352
+ ></path>
1353
+ <path
1354
+ class="clr-i-outline clr-i-outline-path-2"
1355
+ d="M18,3a1,1,0,0,0,0,2H29.59L15.74,18.85a1,1,0,1,0,1.41,1.41L31,6.41V18a1,1,0,0,0,2,0V3Z"
1356
+ ></path>
1357
+ </svg>
1358
+ </template>
1359
+
1360
+ <template v-else-if="props.name === 'home-obj-alerts'">
1361
+ <svg
1362
+ xmlns="http://www.w3.org/2000/svg"
1363
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1364
+ viewBox="0 0 60 72"
1365
+ version="1.1"
1366
+ >
1367
+ <defs>
1368
+ <ellipse
1369
+ id="path-1"
1370
+ cx="30"
1371
+ cy="61.7666667"
1372
+ rx="15.4512904"
1373
+ ry="4.73333333"
1374
+ />
1375
+ <mask
1376
+ id="mask-2"
1377
+ maskContentUnits="userSpaceOnUse"
1378
+ maskUnits="objectBoundingBox"
1379
+ x="0"
1380
+ y="0"
1381
+ width="30.9025808"
1382
+ height="9.46666667"
1383
+ fill="white"
1384
+ >
1385
+ <use xlink:href="#path-1" />
1386
+ </mask>
1387
+ </defs>
1388
+ <g
1389
+ id="Page-1"
1390
+ stroke="none"
1391
+ stroke-width="1"
1392
+ fill="none"
1393
+ fill-rule="evenodd"
1394
+ >
1395
+ <!-- <g id="Artboard"> -->
1396
+ <use
1397
+ id="Oval-10"
1398
+ stroke="#C1DFEF"
1399
+ mask="url(#mask-2)"
1400
+ stroke-width="2.8"
1401
+ stroke-linecap="square"
1402
+ stroke-dasharray="3,6,3,5"
1403
+ xlink:href="#path-1"
1404
+ />
1405
+ <path
1406
+ d="M38.4613647,18.1642456 L30.9890137,34.9141846 L31,47 L32.5977783,46.5167236 L32.5977783,34.9141846 L51.0673218,15.7560425 C51.0673218,15.7560425 48.6295166,16.6542969 44.9628906,17.3392334 C41.2962646,18.0241699 38.4613647,18.1642456 38.4613647,18.1642456 Z"
1407
+ fill="#C1DFEF"
1408
+ />
1409
+ <path
1410
+ d="M4.74639226,12.5661855 L4.62065726,12.1605348 L5.3515414,11.1625044 L5.77622385,11.159939 L6.20936309,12.5573481 L4.74639226,12.5661855 Z M6.20936309,12.5573481 L6.32542632,12.9317954 L28.4963855,34.8796718 L28.4963855,47.8096691 L32.6,46.4836513 L32.6,34.8992365 L53.973494,12.7035813 L53.973494,12.2688201 L6.20936309,12.5573481 Z M55.373494,10.8603376 L55.373494,13.2680664 L34,35.4637216 L34,47.5025401 L27.0963855,49.7333333 L27.0963855,35.4637219 L5.09179688,13.680542 L4.31325301,11.1687764 L55.373494,10.8603376 Z"
1411
+ fill="#7FBDDD"
1412
+ />
1413
+ <ellipse
1414
+ id="Oval-9"
1415
+ fill="#FFFFFF"
1416
+ cx="30"
1417
+ cy="11.785654"
1418
+ rx="26"
1419
+ ry="6.78565401"
1420
+ />
1421
+ <path
1422
+ d="M30,17.171308 C36.8772177,17.171308 43.3112282,16.4610701 48.0312371,15.2292106 C50.2777611,14.6428977 52.0507619,13.9579677 53.2216231,13.2354973 C54.1938565,12.6355886 54.6,12.1175891 54.6,11.785654 C54.6,11.4537189 54.1938565,10.9357194 53.2216231,10.3358107 C52.0507619,9.61334032 50.2777611,8.92841034 48.0312371,8.34209746 C43.3112282,7.11023795 36.8772177,6.4 30,6.4 C23.1227823,6.4 16.6887718,7.11023795 11.9687629,8.34209746 C9.72223886,8.92841034 7.94923814,9.61334032 6.77837689,10.3358107 C5.8061435,10.9357194 5.4,11.4537189 5.4,11.785654 C5.4,12.1175891 5.8061435,12.6355886 6.77837689,13.2354973 C7.94923814,13.9579677 9.72223886,14.6428977 11.9687629,15.2292106 C16.6887718,16.4610701 23.1227823,17.171308 30,17.171308 Z M30,18.571308 C15.6405965,18.571308 4,15.5332672 4,11.785654 C4,8.03804078 15.6405965,5 30,5 C44.3594035,5 56,8.03804078 56,11.785654 C56,15.5332672 44.3594035,18.571308 30,18.571308 Z"
1423
+ fill="#7FBDDD"
1424
+ />
1425
+ <path
1426
+ d="M18.2608643,7.14562988 L22.727356,16.9047241 C22.727356,16.9047241 15.3006592,16.3911743 10.276001,14.7511597 C5.25134277,13.111145 5.38031006,11.8284302 5.38031006,11.6882935 C5.38031006,10.4832831 8.16633152,9.41877716 11.114563,8.57324219 C14.549319,7.58817492 18.2608643,7.14562988 18.2608643,7.14562988 Z"
1427
+ fill="#C1DFEF"
1428
+ />
1429
+ <!-- </g> -->
1430
+ </g>
1431
+ </svg>
1432
+ </template>
1433
+
1434
+ <template v-else-if="props.name === 'is-warning'">
1435
+ <svg
1436
+ version="1.1"
1437
+ class="has-solid"
1438
+ viewBox="0 0 36 36"
1439
+ preserveAspectRatio="xMidYMid meet"
1440
+ xmlns="http://www.w3.org/2000/svg"
1441
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1442
+ focusable="false"
1443
+ role="img"
1444
+ data-v-a3a271aa=""
1445
+ fill="#c27b00"
1446
+ >
1447
+ <path
1448
+ class="clr-i-solid clr-i-solid-path-1"
1449
+ d="M34.6,29.21,20.71,3.65a3.22,3.22,0,0,0-5.66,0L1.17,29.21A3.22,3.22,0,0,0,4,34H31.77a3.22,3.22,0,0,0,2.83-4.75ZM16.6,10a1.4,1.4,0,0,1,2.8,0v12a1.4,1.4,0,0,1-2.8,0ZM18,29.85a1.8,1.8,0,1,1,1.8-1.8A1.8,1.8,0,0,1,18,29.85Z"
1450
+ data-v-a3a271aa=""
1451
+ ></path>
1452
+ </svg>
1453
+ </template>
1454
+
1455
+ <template v-else-if="props.name === 'calendar-current-date'">
1456
+ <svg
1457
+ class="can-badge can-alert has-solid current-btn"
1458
+ width="18"
1459
+ height="18"
1460
+ viewBox="0 0 36 36"
1461
+ stroke="#0095d3"
1462
+ preserveAspectRatio="xMidYMid meet"
1463
+ xmlns="http://www.w3.org/2000/svg"
1464
+ focusable="false"
1465
+ role="img"
1466
+ aria-labelledby="_clr_icon_210"
1467
+ fill="#0095d3"
1468
+ stroke-width="0"
1469
+ >
1470
+ <path
1471
+ class="clr-i-outline clr-i-outline-path-1"
1472
+ d="M16.17,25.86,10.81,20.5a1,1,0,0,1,1.41-1.41L16.17,23l8.64-8.64a1,1,0,0,1,1.41,1.41Z"
1473
+ style=""
1474
+ ></path>
1475
+ <path
1476
+ class="clr-i-outline clr-i-outline-path-2"
1477
+ d="M32.25,6H29V8h3V30H4V8H7V6H3.75A1.78,1.78,0,0,0,2,7.81V30.19A1.78,1.78,0,0,0,3.75,32h28.5A1.78,1.78,0,0,0,34,30.19V7.81A1.78,1.78,0,0,0,32.25,6Z"
1478
+ style=""
1479
+ ></path>
1480
+ <path
1481
+ class="clr-i-outline clr-i-outline-path-3"
1482
+ d="M10,10a1,1,0,0,0,1-1V3A1,1,0,0,0,9,3V9A1,1,0,0,0,10,10Z"
1483
+ style=""
1484
+ ></path>
1485
+ <path
1486
+ class="clr-i-outline clr-i-outline-path-4"
1487
+ d="M26,10a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V9A1,1,0,0,0,26,10Z"
1488
+ style=""
1489
+ ></path>
1490
+ <rect
1491
+ class="clr-i-outline clr-i-outline-path-5"
1492
+ x="13"
1493
+ y="6"
1494
+ width="10"
1495
+ height="2"
1496
+ style=""
1497
+ ></rect>
1498
+ </svg>
1499
+ </template>
1500
+
1501
+ <template v-else-if="props.name === 'calendar'">
1502
+ <svg
1503
+ width="18"
1504
+ height="18"
1505
+ class="can-badge can-alert has-solid"
1506
+ viewBox="0 0 36 36"
1507
+ preserveAspectRatio="xMidYMid meet"
1508
+ xmlns="http://www.w3.org/2000/svg"
1509
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1510
+ focusable="false"
1511
+ role="img"
1512
+ fill="#0095d3"
1513
+ >
1514
+ <path
1515
+ class="clr-i-outline clr-i-outline-path-1"
1516
+ d="M32.25,6H29V8h3V30H4V8H7V6H3.75A1.78,1.78,0,0,0,2,7.81V30.19A1.78,1.78,0,0,0,3.75,32h28.5A1.78,1.78,0,0,0,34,30.19V7.81A1.78,1.78,0,0,0,32.25,6Z"
1517
+ ></path>
1518
+ <rect
1519
+ class="clr-i-outline clr-i-outline-path-2"
1520
+ x="8"
1521
+ y="14"
1522
+ width="2"
1523
+ height="2"
1524
+ style="fill: blue"
1525
+ ></rect>
1526
+ <rect
1527
+ class="clr-i-outline clr-i-outline-path-3"
1528
+ x="14"
1529
+ y="14"
1530
+ width="2"
1531
+ height="2"
1532
+ ></rect>
1533
+ <rect
1534
+ class="clr-i-outline clr-i-outline-path-4"
1535
+ x="20"
1536
+ y="14"
1537
+ width="2"
1538
+ height="2"
1539
+ ></rect>
1540
+ <rect
1541
+ class="clr-i-outline clr-i-outline-path-5"
1542
+ x="26"
1543
+ y="14"
1544
+ width="2"
1545
+ height="2"
1546
+ ></rect>
1547
+ <rect
1548
+ class="clr-i-outline clr-i-outline-path-6"
1549
+ x="8"
1550
+ y="19"
1551
+ width="2"
1552
+ height="2"
1553
+ ></rect>
1554
+ <rect
1555
+ class="clr-i-outline clr-i-outline-path-7"
1556
+ x="14"
1557
+ y="19"
1558
+ width="2"
1559
+ height="2"
1560
+ ></rect>
1561
+ <rect
1562
+ class="clr-i-outline clr-i-outline-path-8"
1563
+ x="20"
1564
+ y="19"
1565
+ width="2"
1566
+ height="2"
1567
+ ></rect>
1568
+ <rect
1569
+ class="clr-i-outline clr-i-outline-path-9"
1570
+ x="26"
1571
+ y="19"
1572
+ width="2"
1573
+ height="2"
1574
+ ></rect>
1575
+ <rect
1576
+ class="clr-i-outline clr-i-outline-path-10"
1577
+ x="8"
1578
+ y="24"
1579
+ width="2"
1580
+ height="2"
1581
+ ></rect>
1582
+ <rect
1583
+ class="clr-i-outline clr-i-outline-path-11"
1584
+ x="14"
1585
+ y="24"
1586
+ width="2"
1587
+ height="2"
1588
+ ></rect>
1589
+ <rect
1590
+ class="clr-i-outline clr-i-outline-path-12"
1591
+ x="20"
1592
+ y="24"
1593
+ width="2"
1594
+ height="2"
1595
+ ></rect>
1596
+ <rect
1597
+ class="clr-i-outline clr-i-outline-path-13"
1598
+ x="26"
1599
+ y="24"
1600
+ width="2"
1601
+ height="2"
1602
+ ></rect>
1603
+ <path
1604
+ class="clr-i-outline clr-i-outline-path-14"
1605
+ d="M10,10a1,1,0,0,0,1-1V3A1,1,0,0,0,9,3V9A1,1,0,0,0,10,10Z"
1606
+ ></path>
1607
+ <path
1608
+ class="clr-i-outline clr-i-outline-path-15"
1609
+ d="M26,10a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V9A1,1,0,0,0,26,10Z"
1610
+ ></path>
1611
+ <rect
1612
+ class="clr-i-outline clr-i-outline-path-16"
1613
+ x="13"
1614
+ y="6"
1615
+ width="10"
1616
+ height="2"
1617
+ ></rect>
1618
+
1619
+ <polygon points="21.29 6 13 6 13 8 20.14 8 21.29 6"></polygon>
1620
+ </svg>
1621
+ </template>
1622
+
1623
+ <template v-else-if="props.name === 'dir-zone'">
1624
+ <svg
1625
+ xmlns="http://www.w3.org/2000/svg"
1626
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1627
+ width="96"
1628
+ height="124"
1629
+ viewBox="0 0 96 124"
1630
+ >
1631
+ <defs>
1632
+ <linearGradient
1633
+ id="linear-gradient"
1634
+ x1="-1947.81"
1635
+ y1="26.92"
1636
+ x2="-1927.2"
1637
+ y2="47.22"
1638
+ gradientTransform="matrix(-1, 0, 0, 1, -1894.04, 0)"
1639
+ gradientUnits="userSpaceOnUse"
1640
+ >
1641
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.4" />
1642
+ <stop offset="0.32" stop-color="#0091da" stop-opacity="0.32" />
1643
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
1644
+ </linearGradient>
1645
+ <linearGradient
1646
+ id="linear-gradient-2"
1647
+ x1="75.2"
1648
+ y1="17.61"
1649
+ x2="4.5"
1650
+ y2="88.13"
1651
+ gradientUnits="userSpaceOnUse"
1652
+ >
1653
+ <stop offset="0.27" stop-color="#0091da" />
1654
+ <stop offset="0.69" stop-color="#0091da" stop-opacity="0.32" />
1655
+ <stop offset="0.9" stop-color="#0091da" stop-opacity="0" />
1656
+ </linearGradient>
1657
+ <linearGradient
1658
+ id="illus_grad"
1659
+ x1="-1978.87"
1660
+ y1="81.11"
1661
+ x2="-1949.93"
1662
+ y2="113.57"
1663
+ gradientTransform="matrix(-1, 0, 0, 1, -1897.93, 0)"
1664
+ gradientUnits="userSpaceOnUse"
1665
+ >
1666
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
1667
+ <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
1668
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
1669
+ </linearGradient>
1670
+ </defs>
1671
+ <g id="Layer_6" data-name="Layer 6">
1672
+ <rect class="cls-1" width="96" height="124" style="fill: none" />
1673
+ </g>
1674
+ <g id="Layer_4" data-name="Layer 4">
1675
+ <polygon
1676
+ class="cls-2"
1677
+ points="31.3 39.79 50.37 20.72 69.46 20.72 50.39 39.79 31.3 39.79"
1678
+ style="opacity: 0.5; fill: url(#linear-gradient)"
1679
+ />
1680
+ <polygon
1681
+ class="cls-3"
1682
+ points="5 75.57 52.37 28.2 76.68 28.2 29.31 75.57 5 75.57"
1683
+ style="fill: url(#linear-gradient-2); opacity: 0.3"
1684
+ />
1685
+ </g>
1686
+ <g id="Layer_2" data-name="Layer 2">
1687
+ <path
1688
+ class="cls-4"
1689
+ style="fill: #0091da"
1690
+ d="M42,93.62H18.25l8-36a1.24,1.24,0,0,1,1.21-1H81.89a1.25,1.25,0,0,1,1,.47,1.27,1.27,0,0,1,.24,1.07L80.5,70h2l2.51-11.33a3.26,3.26,0,0,0-.63-2.76,3.21,3.21,0,0,0-2.54-1.22H27.42a3.22,3.22,0,0,0-3.16,2.52L18,85.48V46.94a1.25,1.25,0,0,1,1.25-1.25H35.31l2.58,5H73.83a1.14,1.14,0,0,1,1.25,1.1v.9h2v-.9a3.11,3.11,0,0,0-3.25-3.1H39.11l-2.59-5H19.25A3.26,3.26,0,0,0,16,46.94V95h.1a1,1,0,0,0,.12.25,1,1,0,0,0,.78.37H42Z"
1691
+ />
1692
+ <polygon
1693
+ class="cls-5"
1694
+ points="48 101.89 76.81 101.89 76.81 73.12 48 101.89"
1695
+ style="opacity: 0.5; fill: url(#illus_grad)"
1696
+ />
1697
+ <rect
1698
+ class="cls-4"
1699
+ x="55.37"
1700
+ y="68.7"
1701
+ width="2"
1702
+ height="3.09"
1703
+ style="fill: #0091da"
1704
+ />
1705
+ <rect
1706
+ class="cls-4"
1707
+ x="60.43"
1708
+ y="68.7"
1709
+ width="2"
1710
+ height="3.09"
1711
+ style="fill: #0091da"
1712
+ />
1713
+ <rect
1714
+ class="cls-4"
1715
+ x="65.48"
1716
+ y="68.7"
1717
+ width="2"
1718
+ height="3.09"
1719
+ style="fill: #0091da"
1720
+ />
1721
+ <rect
1722
+ class="cls-4"
1723
+ x="55.37"
1724
+ y="76.56"
1725
+ width="2"
1726
+ height="3.09"
1727
+ style="fill: #0091da"
1728
+ />
1729
+ <rect
1730
+ class="cls-4"
1731
+ x="60.43"
1732
+ y="76.56"
1733
+ width="2"
1734
+ height="3.09"
1735
+ style="fill: #0091da"
1736
+ />
1737
+ <rect
1738
+ class="cls-4"
1739
+ x="65.48"
1740
+ y="76.56"
1741
+ width="2"
1742
+ height="3.09"
1743
+ style="fill: #0091da"
1744
+ />
1745
+ <rect
1746
+ class="cls-4"
1747
+ x="73.91"
1748
+ y="78.24"
1749
+ width="2"
1750
+ height="1.96"
1751
+ style="fill: #0091da"
1752
+ />
1753
+ <rect
1754
+ class="cls-4"
1755
+ x="77.84"
1756
+ y="78.24"
1757
+ width="2"
1758
+ height="1.96"
1759
+ style="fill: #0091da"
1760
+ />
1761
+ <rect
1762
+ class="cls-4"
1763
+ x="81.77"
1764
+ y="78.24"
1765
+ width="2"
1766
+ height="1.96"
1767
+ style="fill: #0091da"
1768
+ />
1769
+ <rect
1770
+ class="cls-4"
1771
+ x="73.91"
1772
+ y="84.97"
1773
+ width="2"
1774
+ height="1.96"
1775
+ style="fill: #0091da"
1776
+ />
1777
+ <rect
1778
+ class="cls-4"
1779
+ x="77.84"
1780
+ y="84.97"
1781
+ width="2"
1782
+ height="1.96"
1783
+ style="fill: #0091da"
1784
+ />
1785
+ <rect
1786
+ class="cls-4"
1787
+ x="81.77"
1788
+ y="84.97"
1789
+ width="2"
1790
+ height="1.96"
1791
+ style="fill: #0091da"
1792
+ />
1793
+ <rect
1794
+ class="cls-4"
1795
+ x="73.91"
1796
+ y="91.71"
1797
+ width="2"
1798
+ height="1.96"
1799
+ style="fill: #0091da"
1800
+ />
1801
+ <rect
1802
+ class="cls-4"
1803
+ x="77.84"
1804
+ y="91.71"
1805
+ width="2"
1806
+ height="1.96"
1807
+ style="fill: #0091da"
1808
+ />
1809
+ <rect
1810
+ class="cls-4"
1811
+ x="81.77"
1812
+ y="91.71"
1813
+ width="2"
1814
+ height="1.96"
1815
+ style="fill: #0091da"
1816
+ />
1817
+ <rect
1818
+ class="cls-4"
1819
+ x="55.37"
1820
+ y="84.41"
1821
+ width="2"
1822
+ height="3.09"
1823
+ style="fill: #0091da"
1824
+ />
1825
+ <rect
1826
+ class="cls-4"
1827
+ x="60.43"
1828
+ y="84.41"
1829
+ width="2"
1830
+ height="3.09"
1831
+ style="fill: #0091da"
1832
+ />
1833
+ <rect
1834
+ class="cls-4"
1835
+ x="65.48"
1836
+ y="84.41"
1837
+ width="2"
1838
+ height="3.09"
1839
+ style="fill: #0091da"
1840
+ />
1841
+ <rect
1842
+ class="cls-4"
1843
+ x="55.37"
1844
+ y="92.27"
1845
+ width="2"
1846
+ height="3.09"
1847
+ style="fill: #0091da"
1848
+ />
1849
+ <rect
1850
+ class="cls-4"
1851
+ x="60.43"
1852
+ y="92.27"
1853
+ width="2"
1854
+ height="3.09"
1855
+ style="fill: #0091da"
1856
+ />
1857
+ <rect
1858
+ class="cls-4"
1859
+ x="65.48"
1860
+ y="92.27"
1861
+ width="2"
1862
+ height="3.09"
1863
+ style="fill: #0091da"
1864
+ />
1865
+ <path
1866
+ class="cls-4"
1867
+ style="fill: #0091da"
1868
+ d="M87,103l-37,0V62.51A1.52,1.52,0,0,1,51.51,61h19A1.52,1.52,0,0,1,72,62.51V101H86V74H74V72H86.49A1.52,1.52,0,0,1,88,73.51V103Zm-35-2H70V63H52Z"
1869
+ />
1870
+ </g>
1871
+ </svg>
1872
+ </template>
1873
+
1874
+ <template v-else-if="props.name === 'dir-net'">
1875
+ <svg
1876
+ xmlns="http://www.w3.org/2000/svg"
1877
+ xmlns:xlink="http://www.w3.org/1999/xlink"
1878
+ width="96"
1879
+ height="124"
1880
+ viewBox="0 0 96 124"
1881
+ >
1882
+ <defs>
1883
+ <linearGradient
1884
+ id="linear-gradient"
1885
+ x1="75.2"
1886
+ y1="17.61"
1887
+ x2="4.5"
1888
+ y2="88.13"
1889
+ gradientUnits="userSpaceOnUse"
1890
+ >
1891
+ <stop offset="0.27" stop-color="#0091da" />
1892
+ <stop offset="0.69" stop-color="#0091da" stop-opacity="0.32" />
1893
+ <stop offset="0.9" stop-color="#0091da" stop-opacity="0" />
1894
+ </linearGradient>
1895
+ <linearGradient
1896
+ id="linear-gradient-2"
1897
+ x1="-2547.81"
1898
+ y1="26.92"
1899
+ x2="-2527.2"
1900
+ y2="47.22"
1901
+ gradientTransform="matrix(-1, 0, 0, 1, -2494.04, 0)"
1902
+ gradientUnits="userSpaceOnUse"
1903
+ >
1904
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.4" />
1905
+ <stop offset="0.32" stop-color="#0091da" stop-opacity="0.32" />
1906
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
1907
+ </linearGradient>
1908
+ </defs>
1909
+ <g id="Layer_6" data-name="Layer 6">
1910
+ <rect class="cls-1" width="96" height="124" style="fill: none" />
1911
+ </g>
1912
+ <g id="Layer_4" data-name="Layer 4">
1913
+ <polygon
1914
+ class="cls-2"
1915
+ points="5 75.57 52.37 28.2 76.68 28.2 29.31 75.57 5 75.57"
1916
+ style="opacity: 0.3; fill: url(#linear-gradient)"
1917
+ />
1918
+ <polygon
1919
+ class="cls-3"
1920
+ points="31.3 39.79 50.37 20.72 69.46 20.72 50.39 39.79 31.3 39.79"
1921
+ style="opacity: 0.5; fill: url(#linear-gradient-2)"
1922
+ />
1923
+ </g>
1924
+ <g id="Layer_2" data-name="Layer 2">
1925
+ <path
1926
+ class="cls-4"
1927
+ style="fill: #0091da"
1928
+ d="M51.55,93.94H18.25l8-36a1.24,1.24,0,0,1,1.21-1H81.89a1.25,1.25,0,0,1,1,.47,1.28,1.28,0,0,1,.24,1.07l-1.54,7a21.93,21.93,0,0,1,1.68,1.66L85.06,59a3.25,3.25,0,0,0-3.17-4H27.42a3.23,3.23,0,0,0-3.16,2.53L18,85.79V47.25A1.25,1.25,0,0,1,19.25,46H35.31l2.58,5H73.83a1.14,1.14,0,0,1,1.25,1.1V53h2v-.9A3.11,3.11,0,0,0,73.83,49H39.11l-2.59-5H19.25A3.26,3.26,0,0,0,16,47.25V95.32h.1a1.08,1.08,0,0,0,.12.24,1,1,0,0,0,.78.38H53.36A21.35,21.35,0,0,1,51.55,93.94Z"
1929
+ />
1930
+ <path
1931
+ class="cls-4"
1932
+ style="fill: #0091da"
1933
+ d="M67.82,98.88A17.84,17.84,0,1,1,85.65,81.05,17.85,17.85,0,0,1,67.82,98.88Zm0-33.67A15.84,15.84,0,1,0,83.65,81.05,15.85,15.85,0,0,0,67.82,65.21Z"
1934
+ />
1935
+ <path
1936
+ class="cls-4"
1937
+ style="fill: #0091da"
1938
+ d="M61.93,94.1l-.2-1.69A18,18,0,0,0,75.91,67l1.55-.71a19.73,19.73,0,0,1-9.67,26.13A19.27,19.27,0,0,1,61.93,94.1Z"
1939
+ />
1940
+ <path
1941
+ class="cls-4"
1942
+ style="fill: #0091da"
1943
+ d="M51.26,79.92l-1.32-1.07a22.3,22.3,0,0,1,5.34-4.73c8.56-5.45,19.92-4.57,28.92,2.26l-1,1.35c-8.43-6.39-19-7.24-27-2.18A20.77,20.77,0,0,0,51.26,79.92Z"
1944
+ />
1945
+ <path
1946
+ class="cls-4"
1947
+ style="fill: #0091da"
1948
+ d="M74.51,96.35c-10.34-4.54-16.65-14-16.06-24.18a22.49,22.49,0,0,1,1.52-7l1.59.62a21,21,0,0,0-1.42,6.44c-.54,9.43,5.37,18.27,15,22.53Z"
1949
+ />
1950
+ <path
1951
+ class="cls-4"
1952
+ style="fill: #0091da"
1953
+ d="M69.64,85.75a31.76,31.76,0,0,1-12.32-2.52A32.15,32.15,0,0,1,51,79.71l1-1.38a30.56,30.56,0,0,0,6,3.34,29.63,29.63,0,0,0,17.33,1.82l.33,1.67A31.06,31.06,0,0,1,69.64,85.75Z"
1954
+ />
1955
+ <circle
1956
+ class="cls-4"
1957
+ style="fill: #0091da"
1958
+ cx="77.18"
1959
+ cy="66.73"
1960
+ r="1.89"
1961
+ />
1962
+ <circle
1963
+ class="cls-4"
1964
+ style="fill: #0091da"
1965
+ cx="59.39"
1966
+ cy="73.11"
1967
+ r="1.89"
1968
+ />
1969
+ <circle
1970
+ class="cls-4"
1971
+ style="fill: #0091da"
1972
+ cx="84.2"
1973
+ cy="76.91"
1974
+ r="1.89"
1975
+ />
1976
+ <circle
1977
+ class="cls-4"
1978
+ style="fill: #0091da"
1979
+ cx="62.62"
1980
+ cy="93.09"
1981
+ r="1.89"
1982
+ />
1983
+ <circle
1984
+ class="cls-4"
1985
+ style="fill: #0091da"
1986
+ cx="75.74"
1987
+ cy="84.32"
1988
+ r="1.89"
1989
+ transform="translate(-8.66 159.98) rotate(-89.94)"
1990
+ />
1991
+ <circle
1992
+ class="cls-4"
1993
+ style="fill: #0091da"
1994
+ cx="75.14"
1995
+ cy="95.61"
1996
+ r="1.89"
1997
+ />
1998
+ <circle
1999
+ class="cls-4"
2000
+ style="fill: #0091da"
2001
+ cx="50.97"
2002
+ cy="78.64"
2003
+ r="1.89"
2004
+ />
2005
+ <path
2006
+ class="cls-4"
2007
+ style="fill: #0091da"
2008
+ d="M81.5,106H68V98.75a1,1,0,0,1,2,0V104H81.5a1,1,0,0,1,0,2Z"
2009
+ />
2010
+ <path
2011
+ class="cls-4"
2012
+ style="fill: #0091da"
2013
+ d="M66,104H54.93a1,1,0,0,0,0,2H66Z"
2014
+ />
2015
+ </g>
2016
+ </svg>
2017
+ </template>
2018
+
2019
+ <template v-else-if="props.name === 'dir-ds'">
2020
+ <svg
2021
+ xmlns="http://www.w3.org/2000/svg"
2022
+ xmlns:xlink="http://www.w3.org/1999/xlink"
2023
+ width="96"
2024
+ height="124"
2025
+ viewBox="0 0 96 124"
2026
+ >
2027
+ <defs>
2028
+ <linearGradient
2029
+ id="linear-gradient"
2030
+ x1="-1647.81"
2031
+ y1="26.92"
2032
+ x2="-1627.2"
2033
+ y2="47.22"
2034
+ gradientTransform="matrix(-1, 0, 0, 1, -1594.04, 0)"
2035
+ gradientUnits="userSpaceOnUse"
2036
+ >
2037
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.4" />
2038
+ <stop offset="0.32" stop-color="#0091da" stop-opacity="0.32" />
2039
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
2040
+ </linearGradient>
2041
+ <linearGradient
2042
+ id="linear-gradient-2"
2043
+ x1="75.2"
2044
+ y1="17.61"
2045
+ x2="4.5"
2046
+ y2="88.13"
2047
+ gradientUnits="userSpaceOnUse"
2048
+ >
2049
+ <stop offset="0.27" stop-color="#0091da" />
2050
+ <stop offset="0.69" stop-color="#0091da" stop-opacity="0.32" />
2051
+ <stop offset="0.9" stop-color="#0091da" stop-opacity="0" />
2052
+ </linearGradient>
2053
+ <linearGradient
2054
+ id="illus_grad"
2055
+ x1="74.36"
2056
+ y1="81.78"
2057
+ x2="74.36"
2058
+ y2="112.8"
2059
+ gradientUnits="userSpaceOnUse"
2060
+ >
2061
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.6" />
2062
+ <stop offset="0.54" stop-color="#0091da" stop-opacity="0.32" />
2063
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
2064
+ </linearGradient>
2065
+ </defs>
2066
+ <g id="Layer_6" data-name="Layer 6">
2067
+ <rect class="cls-1" width="96" height="124" style="fill: none" />
2068
+ <rect class="cls-1" width="96" height="124" style="fill: none" />
2069
+ </g>
2070
+ <g id="Layer_4" data-name="Layer 4">
2071
+ <polygon
2072
+ class="cls-2"
2073
+ style="opacity: 0.5; fill: url(#linear-gradient)"
2074
+ points="31.3 39.79 50.37 20.72 69.46 20.72 50.39 39.79 31.3 39.79"
2075
+ />
2076
+ <polygon
2077
+ class="cls-3"
2078
+ style="opacity: 0.3; fill: url(#linear-gradient-2)"
2079
+ points="5 75.57 52.37 28.2 76.68 28.2 29.31 75.57 5 75.57"
2080
+ />
2081
+ </g>
2082
+ <g id="Layer_2" data-name="Layer 2">
2083
+ <path
2084
+ class="cls-4"
2085
+ style="fill: #0091da"
2086
+ d="M44.32,93.62H18.25l8-36a1.24,1.24,0,0,1,1.21-1H81.89a1.25,1.25,0,0,1,1,.47,1.27,1.27,0,0,1,.24,1.07l-.81,3.65a18.77,18.77,0,0,1,1.88.77l.88-4a3.26,3.26,0,0,0-.63-2.76,3.21,3.21,0,0,0-2.54-1.22H27.42a3.22,3.22,0,0,0-3.16,2.52L18,85.48V46.94a1.25,1.25,0,0,1,1.25-1.25H35.31l2.58,5H73.83a1.14,1.14,0,0,1,1.25,1.1v.9h2v-.9a3.11,3.11,0,0,0-3.25-3.1H39.11l-2.59-5H19.25A3.26,3.26,0,0,0,16,46.94V95h.1a1,1,0,0,0,.12.25,1,1,0,0,0,.78.37H44.32Z"
2087
+ />
2088
+ <path
2089
+ class="cls-5"
2090
+ style="opacity: 0.5; fill: url(#illus_grad)"
2091
+ d="M70.82,77.22c-1.54,0-3-.08-4.45-.22v26.78l3.2,0,12.79-1.2v-27A36.84,36.84,0,0,1,70.82,77.22Z"
2092
+ />
2093
+ <path
2094
+ class="cls-4"
2095
+ style="fill: #0091da"
2096
+ d="M70,105.08c-8.25,0-17-2.47-17-7V68.75C53,64.39,61.79,62,70,62s17,2.35,17,6.71V98C87,102.61,78.28,105.08,70,105.08Zm0-41c-9.3,0-15,2.74-15,4.71V98c0,2.38,6.41,5,15,5s15-2.66,15-5V68.75C85,66.78,79.33,64,70,64Z"
2097
+ />
2098
+ <path
2099
+ class="cls-4"
2100
+ style="fill: #0091da"
2101
+ d="M85,88.67c0,2-5.71,4.74-15,4.74a33.1,33.1,0,0,1-11-1.62v2.09a37.36,37.36,0,0,0,11,1.53c8.24,0,17-2.36,17-6.74Z"
2102
+ />
2103
+ <path
2104
+ class="cls-4"
2105
+ style="fill: #0091da"
2106
+ d="M85,79.19c0,2-5.71,4.75-15,4.75a33.06,33.06,0,0,1-11-1.63v2.1a37.69,37.69,0,0,0,11,1.53c8.24,0,17-2.37,17-6.75Z"
2107
+ />
2108
+ <path
2109
+ class="cls-4"
2110
+ style="fill: #0091da"
2111
+ d="M85,68.42c0,2-5.71,4.72-15,4.72a33.4,33.4,0,0,1-11-1.61v2.09a37.7,37.7,0,0,0,11,1.52c8.24,0,17-2.35,17-6.72Z"
2112
+ />
2113
+ </g>
2114
+ </svg>
2115
+ </template>
2116
+
2117
+ <template v-else-if="props.name === 'dir-vm'">
2118
+ <svg
2119
+ xmlns="http://www.w3.org/2000/svg"
2120
+ xmlns:xlink="http://www.w3.org/1999/xlink"
2121
+ width="96"
2122
+ height="124"
2123
+ viewBox="0 0 96 124"
2124
+ >
2125
+ <defs>
2126
+ <linearGradient
2127
+ id="linear-gradient"
2128
+ x1="-2247.81"
2129
+ y1="26.92"
2130
+ x2="-2227.2"
2131
+ y2="47.22"
2132
+ gradientTransform="matrix(-1, 0, 0, 1, -2194.04, 0)"
2133
+ gradientUnits="userSpaceOnUse"
2134
+ >
2135
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.4" />
2136
+ <stop offset="0.32" stop-color="#0091da" stop-opacity="0.32" />
2137
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
2138
+ </linearGradient>
2139
+ <linearGradient
2140
+ id="linear-gradient-2"
2141
+ x1="75.2"
2142
+ y1="17.61"
2143
+ x2="4.5"
2144
+ y2="88.13"
2145
+ gradientUnits="userSpaceOnUse"
2146
+ >
2147
+ <stop offset="0.27" stop-color="#0091da" />
2148
+ <stop offset="0.69" stop-color="#0091da" stop-opacity="0.32" />
2149
+ <stop offset="0.9" stop-color="#0091da" stop-opacity="0" />
2150
+ </linearGradient>
2151
+ </defs>
2152
+ <g id="Layer_6" data-name="Layer 6">
2153
+ <rect class="cls-1" width="96" height="124" style="fill: none" />
2154
+ </g>
2155
+ <g id="Layer_4" data-name="Layer 4">
2156
+ <polygon
2157
+ class="cls-2"
2158
+ style="opacity: 0.5; fill: url(#linear-gradient)"
2159
+ points="31.3 39.79 50.37 20.72 69.46 20.72 50.39 39.79 31.3 39.79"
2160
+ />
2161
+ <polygon
2162
+ class="cls-3"
2163
+ style="opacity: 0.3; fill: url(#linear-gradient-2)"
2164
+ points="5 75.57 52.37 28.2 76.68 28.2 29.31 75.57 5 75.57"
2165
+ />
2166
+ </g>
2167
+ <g id="Layer_2" data-name="Layer 2">
2168
+ <path
2169
+ class="cls-4"
2170
+ style="fill: #0091da"
2171
+ d="M86.69,100.84V69.35a2,2,0,0,1,2,2v29.46a2,2,0,0,1-2,2H57.32a2,2,0,0,1-2-2Z"
2172
+ />
2173
+ <path
2174
+ class="cls-4"
2175
+ style="fill: #0091da"
2176
+ d="M75.21,97.7a1,1,0,0,1-2,0V89.32a2,2,0,0,1,2-2Z"
2177
+ />
2178
+ <path
2179
+ class="cls-4"
2180
+ style="fill: #0091da"
2181
+ d="M73.79,98.7H53.19a2,2,0,0,1-2-2V67.22a2,2,0,0,1,2-2H82.56a2,2,0,0,1,2,2V87.93A2,2,0,0,1,84,89.36l-8.77,8.75A2,2,0,0,1,73.79,98.7ZM53.19,67.2l0,29.48,20.62,0h0l8.77-8.76V67.22Z"
2182
+ />
2183
+ <path
2184
+ class="cls-4"
2185
+ style="fill: #0091da"
2186
+ d="M62.39,79.06a1,1,0,0,1-1-1V71.71a1,1,0,0,1,1-1h9.47a1,1,0,0,1,1,1V75.1a1,1,0,0,1-2,0V72.71H63.39v5.35A1,1,0,0,1,62.39,79.06Z"
2187
+ />
2188
+ <path
2189
+ class="cls-4"
2190
+ style="fill: #0091da"
2191
+ d="M76.77,85.78H69.4a1,1,0,0,1,0-2h6.37V76.29H68.31v2a1,1,0,0,1-2,0v-3a1,1,0,0,1,1-1h9.46a1,1,0,0,1,1,1v9.49A1,1,0,0,1,76.77,85.78Z"
2192
+ />
2193
+ <path
2194
+ class="cls-4"
2195
+ style="fill: #0091da"
2196
+ d="M69.38,88.72H59.91a1,1,0,0,1-1-1V78.23a1,1,0,0,1,1-1h9.47a1,1,0,0,1,1,1v9.49A1,1,0,0,1,69.38,88.72Zm-8.47-2h7.47V79.23H60.91Z"
2197
+ />
2198
+ <path
2199
+ class="cls-4"
2200
+ style="fill: #0091da"
2201
+ d="M84.43,55.91a3.21,3.21,0,0,0-2.54-1.22H27.42a3.22,3.22,0,0,0-3.16,2.52L18,85.48V46.94a1.25,1.25,0,0,1,1.25-1.25H35.31l2.58,5H73.83a1.14,1.14,0,0,1,1.25,1.1v.9h2v-.9a3.11,3.11,0,0,0-3.25-3.1H39.11l-2.59-5H19.25A3.26,3.26,0,0,0,16,46.94V95h.1a1,1,0,0,0,.12.25,1,1,0,0,0,.78.37H45.27v-2h-27l8-36a1.24,1.24,0,0,1,1.21-1H81.89a1.25,1.25,0,0,1,1,.47,1.27,1.27,0,0,1,.24,1.07L82,63.16h2l1-4.49A3.26,3.26,0,0,0,84.43,55.91Z"
2202
+ />
2203
+ </g>
2204
+ </svg>
2205
+ </template>
2206
+
2207
+ <template v-else-if="props.name === 'dir-vm'">
2208
+ <svg
2209
+ xmlns="http://www.w3.org/2000/svg"
2210
+ xmlns:xlink="http://www.w3.org/1999/xlink"
2211
+ width="96"
2212
+ height="124"
2213
+ viewBox="0 0 96 124"
2214
+ >
2215
+ <defs>
2216
+ <linearGradient
2217
+ id="linear-gradient"
2218
+ x1="-2247.81"
2219
+ y1="26.92"
2220
+ x2="-2227.2"
2221
+ y2="47.22"
2222
+ gradientTransform="matrix(-1, 0, 0, 1, -2194.04, 0)"
2223
+ gradientUnits="userSpaceOnUse"
2224
+ >
2225
+ <stop offset="0.15" stop-color="#0091da" stop-opacity="0.4" />
2226
+ <stop offset="0.32" stop-color="#0091da" stop-opacity="0.32" />
2227
+ <stop offset="1" stop-color="#0091da" stop-opacity="0" />
2228
+ </linearGradient>
2229
+ <linearGradient
2230
+ id="linear-gradient-2"
2231
+ x1="75.2"
2232
+ y1="17.61"
2233
+ x2="4.5"
2234
+ y2="88.13"
2235
+ gradientUnits="userSpaceOnUse"
2236
+ >
2237
+ <stop offset="0.27" stop-color="#0091da" />
2238
+ <stop offset="0.69" stop-color="#0091da" stop-opacity="0.32" />
2239
+ <stop offset="0.9" stop-color="#0091da" stop-opacity="0" />
2240
+ </linearGradient>
2241
+ </defs>
2242
+ <g id="Layer_6" data-name="Layer 6">
2243
+ <rect class="cls-1" width="96" height="124" style="fill: none" />
2244
+ </g>
2245
+ <g id="Layer_4" data-name="Layer 4">
2246
+ <polygon
2247
+ class="cls-2"
2248
+ style="opacity: 0.5; fill: url(#linear-gradient)"
2249
+ points="31.3 39.79 50.37 20.72 69.46 20.72 50.39 39.79 31.3 39.79"
2250
+ />
2251
+ <polygon
2252
+ class="cls-3"
2253
+ style="opacity: 0.3; fill: url(#linear-gradient-2)"
2254
+ points="5 75.57 52.37 28.2 76.68 28.2 29.31 75.57 5 75.57"
2255
+ />
2256
+ </g>
2257
+ <g id="Layer_2" data-name="Layer 2">
2258
+ <path
2259
+ class="cls-4"
2260
+ style="fill: #0091da"
2261
+ d="M86.69,100.84V69.35a2,2,0,0,1,2,2v29.46a2,2,0,0,1-2,2H57.32a2,2,0,0,1-2-2Z"
2262
+ />
2263
+ <path
2264
+ class="cls-4"
2265
+ style="fill: #0091da"
2266
+ d="M75.21,97.7a1,1,0,0,1-2,0V89.32a2,2,0,0,1,2-2Z"
2267
+ />
2268
+ <path
2269
+ class="cls-4"
2270
+ style="fill: #0091da"
2271
+ d="M73.79,98.7H53.19a2,2,0,0,1-2-2V67.22a2,2,0,0,1,2-2H82.56a2,2,0,0,1,2,2V87.93A2,2,0,0,1,84,89.36l-8.77,8.75A2,2,0,0,1,73.79,98.7ZM53.19,67.2l0,29.48,20.62,0h0l8.77-8.76V67.22Z"
2272
+ />
2273
+ <path
2274
+ class="cls-4"
2275
+ style="fill: #0091da"
2276
+ d="M62.39,79.06a1,1,0,0,1-1-1V71.71a1,1,0,0,1,1-1h9.47a1,1,0,0,1,1,1V75.1a1,1,0,0,1-2,0V72.71H63.39v5.35A1,1,0,0,1,62.39,79.06Z"
2277
+ />
2278
+ <path
2279
+ class="cls-4"
2280
+ style="fill: #0091da"
2281
+ d="M76.77,85.78H69.4a1,1,0,0,1,0-2h6.37V76.29H68.31v2a1,1,0,0,1-2,0v-3a1,1,0,0,1,1-1h9.46a1,1,0,0,1,1,1v9.49A1,1,0,0,1,76.77,85.78Z"
2282
+ />
2283
+ <path
2284
+ class="cls-4"
2285
+ style="fill: #0091da"
2286
+ d="M69.38,88.72H59.91a1,1,0,0,1-1-1V78.23a1,1,0,0,1,1-1h9.47a1,1,0,0,1,1,1v9.49A1,1,0,0,1,69.38,88.72Zm-8.47-2h7.47V79.23H60.91Z"
2287
+ />
2288
+ <path
2289
+ class="cls-4"
2290
+ style="fill: #0091da"
2291
+ d="M84.43,55.91a3.21,3.21,0,0,0-2.54-1.22H27.42a3.22,3.22,0,0,0-3.16,2.52L18,85.48V46.94a1.25,1.25,0,0,1,1.25-1.25H35.31l2.58,5H73.83a1.14,1.14,0,0,1,1.25,1.1v.9h2v-.9a3.11,3.11,0,0,0-3.25-3.1H39.11l-2.59-5H19.25A3.26,3.26,0,0,0,16,46.94V95h.1a1,1,0,0,0,.12.25,1,1,0,0,0,.78.37H45.27v-2h-27l8-36a1.24,1.24,0,0,1,1.21-1H81.89a1.25,1.25,0,0,1,1,.47,1.27,1.27,0,0,1,.24,1.07L82,63.16h2l1-4.49A3.26,3.26,0,0,0,84.43,55.91Z"
2292
+ />
2293
+ </g>
2294
+ </svg>
2295
+ </template>
2296
+ </template>
2297
+
2298
+ <script setup lang="ts">
2299
+ const props = defineProps<{
2300
+ name: string | undefined
2301
+ }>()
2302
+ </script>
2303
+
2304
+ <style scoped lang="scss">
2305
+ %cls1 {
2306
+ opacity: 0.3;
2307
+ fill: url(#illus_grad);
2308
+ }
2309
+
2310
+ .icon {
2311
+ .cls-1 {
2312
+ fill: none;
2313
+ }
2314
+
2315
+ &__obj-network {
2316
+ .cls-2 {
2317
+ opacity: 0.3;
2318
+ fill: url(#linear-gradient);
2319
+ }
2320
+
2321
+ .cls-3 {
2322
+ opacity: 0.4;
2323
+ fill: url(#linear-gradient-2);
2324
+ }
2325
+
2326
+ .cls-4 {
2327
+ fill: #0091da;
2328
+ }
2329
+ }
2330
+ }
2331
+
2332
+ .icon-obj-zone {
2333
+ .cls-2 {
2334
+ fill: #78be20;
2335
+ }
2336
+
2337
+ .cls-3 {
2338
+ fill: #edb200;
2339
+ }
2340
+ }
2341
+
2342
+ .icon-obj-dc {
2343
+ .cls-2 {
2344
+ @extend %cls1;
2345
+ }
2346
+
2347
+ .cls-3 {
2348
+ opacity: 0.5;
2349
+ fill: url(#illus_grad-2);
2350
+ }
2351
+
2352
+ .cls-4 {
2353
+ fill: #0091da;
2354
+ }
2355
+ }
2356
+
2357
+ .icon-obj-host {
2358
+ .cls-1 {
2359
+ @extend %cls1;
2360
+ }
2361
+
2362
+ .cls-2 {
2363
+ opacity: 0.5;
2364
+ fill: url(#linear-gradient);
2365
+ }
2366
+
2367
+ .cls-3 {
2368
+ fill: #0091da;
2369
+ }
2370
+ }
2371
+
2372
+ .icon-obj-ds {
2373
+ .cls-2 {
2374
+ opacity: 0.5;
2375
+ fill: url(#illus_grad);
2376
+ }
2377
+
2378
+ .cls-3 {
2379
+ fill: #0091da;
2380
+ }
2381
+ }
2382
+
2383
+ #error-icon-outline {
2384
+ fill: none;
2385
+ stroke: #f54f47;
2386
+ stroke-miterlimit: 10;
2387
+ stroke-width: 2;
2388
+ }
2389
+
2390
+ #error-icon-line {
2391
+ fill: none;
2392
+ stroke: #f54f47;
2393
+ animation-fill-mode: forwards;
2394
+ stroke-dasharray: 7;
2395
+ stroke-dashoffset: 0;
2396
+ stroke-linecap: round;
2397
+ stroke-width: 2.65;
2398
+ stroke-miterlimit: 10;
2399
+ }
2400
+
2401
+ #error-icon-dot {
2402
+ fill: #f54f47;
2403
+ transform-origin: 50% 54%;
2404
+ }
2405
+
2406
+ .icon-obj-cluster {
2407
+ .cls-2,
2408
+ .cls-3 {
2409
+ opacity: 0.5;
2410
+ }
2411
+
2412
+ .cls-2 {
2413
+ fill: url(#illus_grad);
2414
+ }
2415
+
2416
+ .cls-3 {
2417
+ fill: url(#illus_grad-2);
2418
+ }
2419
+
2420
+ .cls-4 {
2421
+ fill: #0091da;
2422
+ }
2423
+ }
2424
+ .icon-obj-rp {
2425
+ .cls-1 {
2426
+ fill: none;
2427
+ }
2428
+ .cls-2 {
2429
+ opacity: 0.3;
2430
+ fill: url(#linear-gradient);
2431
+ }
2432
+ .cls-3 {
2433
+ opacity: 0.5;
2434
+ fill: url(#illus_grad);
2435
+ }
2436
+ .cls-4,
2437
+ .cls-5 {
2438
+ fill: #0091da;
2439
+ }
2440
+ .cls-5 {
2441
+ opacity: 0.2;
2442
+ }
2443
+ }
2444
+ </style>