bfg-common 1.5.420 → 1.5.421

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 (300) hide show
  1. package/CODE_STYLE.md +109 -109
  2. package/assets/img/icons/icons-sprite-dark-3.svg +227 -227
  3. package/assets/img/icons/icons-sprite-dark-5.svg +488 -488
  4. package/assets/img/icons/icons-sprite-light-3.svg +227 -227
  5. package/assets/img/icons/icons-sprite-light-5.svg +488 -488
  6. package/assets/scss/common/theme.scss +214 -0
  7. package/components/atoms/TheIcon3.vue +50 -50
  8. package/components/atoms/collapse/CollapseNav.vue +170 -170
  9. package/components/atoms/perPage/PerPage.vue +58 -58
  10. package/components/atoms/table/dataGrid/lib/config/settingsTable.ts +94 -94
  11. package/components/atoms/table/dataGrid/lib/utils/export.ts +16 -16
  12. package/components/common/backup/storage/actions/add/lib/config/steps.ts +168 -168
  13. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/lib/config/incompatibleTable.ts +3 -3
  14. package/components/common/backup/storage/actions/add/steps/readyComplete/ReadyComplete.vue +45 -45
  15. package/components/common/browse/blocks/contents/filesNew/Skeleton.vue +18 -18
  16. package/components/common/context/lib/models/interfaces.ts +33 -33
  17. package/components/common/diagramMain/modals/lib/config/networkModal.ts +398 -398
  18. package/components/common/layout/theHeader/helpMenu/About.vue +82 -82
  19. package/components/common/pages/backups/Backups.vue +102 -102
  20. package/components/common/pages/backups/DetailView.vue +52 -52
  21. package/components/common/pages/backups/lib/models/interfaces.ts +36 -36
  22. package/components/common/pages/backups/modals/Modals.vue +226 -226
  23. package/components/common/pages/backups/modals/createBackup/CreateBackup.vue +353 -353
  24. package/components/common/pages/backups/modals/createBackup/configuration/Configuration.vue +29 -29
  25. package/components/common/pages/backups/modals/createBackup/configuration/backupWindow/BackupWindow.vue +26 -26
  26. package/components/common/pages/backups/modals/createBackup/configuration/maxBandwidth/MaxBandwidth.vue +66 -66
  27. package/components/common/pages/backups/modals/createBackup/configuration/maxBandwidth/lib/config/options.ts +6 -6
  28. package/components/common/pages/backups/modals/createBackup/configuration/strategy/Strategy.vue +35 -35
  29. package/components/common/pages/backups/modals/createBackup/datastores/Datastores.vue +59 -59
  30. package/components/common/pages/backups/modals/createBackup/datastores/tableView/TableView.vue +95 -95
  31. package/components/common/pages/backups/modals/createBackup/datastores/tableView/lib/config/table.ts +119 -119
  32. package/components/common/pages/backups/modals/createBackup/disks/tableView/lib/config/table.ts +117 -117
  33. package/components/common/pages/backups/modals/createBackup/general/General.vue +48 -48
  34. package/components/common/pages/backups/modals/createBackup/lib/config/steps.ts +117 -117
  35. package/components/common/pages/backups/modals/createBackup/lib/config/strategyOptions.ts +12 -12
  36. package/components/common/pages/backups/modals/lib/config/restore.ts +115 -115
  37. package/components/common/pages/backups/modals/lib/models/interfaces.ts +185 -185
  38. package/components/common/pages/backups/modals/restore/Restore.vue +417 -417
  39. package/components/common/pages/backups/modals/restore/disks/Disks.vue +27 -27
  40. package/components/common/pages/backups/modals/restore/disks/tableView/TableView.vue +102 -102
  41. package/components/common/pages/backups/modals/restore/disks/tableView/lib/config/table.ts +117 -117
  42. package/components/common/pages/backups/modals/restore/lib/config/steps.ts +108 -108
  43. package/components/common/pages/backups/modals/restore/name/Name.vue +160 -160
  44. package/components/common/pages/backups/modals/restore/name/lib/models/interfaces.ts +6 -6
  45. package/components/common/pages/backups/modals/restore/networks/Networks.vue +67 -67
  46. package/components/common/pages/backups/modals/restore/networks/table/Table.vue +214 -214
  47. package/components/common/pages/backups/modals/restore/types/lib/config/typeOptions.ts +25 -25
  48. package/components/common/pages/backups/tools/Tools.vue +75 -75
  49. package/components/common/pages/backups/tools/lib/config/tabs.ts +36 -36
  50. package/components/common/pages/home/headline/HeadlineOld.vue +42 -42
  51. package/components/common/pages/home/lib/models/interfaces.ts +48 -48
  52. package/components/common/pages/home/widgets/hosts/Hosts.vue +27 -27
  53. package/components/common/pages/home/widgets/hosts/lib/config/items.ts +23 -23
  54. package/components/common/pages/home/widgets/vms/VmsOld.vue +35 -35
  55. package/components/common/pages/home/widgets/vms/lib/config/items.ts +19 -19
  56. package/components/common/pages/home/widgets/warnings/lib/config/config.ts +2 -2
  57. package/components/common/pages/scheduledTasks/lib/utils/utils.ts +84 -84
  58. package/components/common/readyToComplete/ReadyToComplete.vue +17 -17
  59. package/components/common/resource/simple/Simple.vue +10 -3
  60. package/components/common/select/button/ButtonDropdown.vue +112 -112
  61. package/components/common/select/radio/RadioGroup.vue +137 -137
  62. package/components/common/selectLanguage/SelectLanguage.vue +1 -1
  63. package/components/common/spiceConsole/Drawer.vue +381 -381
  64. package/components/common/spiceConsole/SpiceConsole.vue +127 -127
  65. package/components/common/spiceConsole/keyboard/Keyboard.vue +1 -1
  66. package/components/common/spiceConsole/lib/models/interfaces.ts +5 -5
  67. package/components/common/split/horizontal/HorizontalNew.vue +5 -22
  68. package/components/common/split/horizontal/HorizontalOld.vue +3 -10
  69. package/components/common/split/vertical/VerticalNew.vue +2 -13
  70. package/components/common/split/vertical/VerticalOld.vue +1 -1
  71. package/components/common/summary/notification/NotificationNew.vue +4 -20
  72. package/components/common/titleBar/titleBarNew/notification/Notification.vue +0 -31
  73. package/components/common/tools/Actions.vue +207 -207
  74. package/components/common/tooltip/Help.vue +5 -18
  75. package/components/common/tooltip/lib/models/types.ts +1 -1
  76. package/components/common/treeView/TreeView.vue +52 -52
  77. package/components/common/vm/actions/add/Add.vue +35 -26
  78. package/components/common/vm/actions/add/New.vue +54 -55
  79. package/components/common/vm/actions/add/Old.vue +398 -388
  80. package/components/common/vm/actions/add/folderTreeView/FolderTreeView.vue +72 -72
  81. package/components/common/vm/actions/add/folderTreeView/New.vue +40 -40
  82. package/components/common/vm/actions/add/folderTreeView/Old.vue +50 -50
  83. package/components/common/vm/actions/clone/Clone.vue +823 -823
  84. package/components/common/vm/actions/clone/lib/config/steps.ts +291 -291
  85. package/components/common/vm/actions/clone/toTemplate/ToTemplate.vue +32 -36
  86. package/components/common/vm/actions/clone/toTemplate/lib/config/steps.ts +116 -116
  87. package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +61 -37
  88. package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareNew.vue +61 -46
  89. package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareOld.vue +59 -36
  90. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +50 -31
  91. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareNew.vue +64 -68
  92. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareOld.vue +339 -321
  93. package/components/common/vm/actions/common/customizeHardware/virtualHardware/browseView/BrowseView.vue +232 -227
  94. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/Bus.vue +110 -100
  95. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusNew.vue +16 -10
  96. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusOld.vue +16 -10
  97. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +239 -232
  98. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveNew.vue +24 -18
  99. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveOld.vue +174 -168
  100. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +25 -25
  101. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/MediaNew.vue +70 -78
  102. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/MediaOld.vue +50 -50
  103. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Cpu.vue +16 -11
  104. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuNew.vue +48 -51
  105. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuOld.vue +20 -15
  106. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/ModelNew.vue +4 -4
  107. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/Shares.vue +140 -140
  108. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/lib/config/options.ts +28 -28
  109. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/TooltipNew.vue +153 -154
  110. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +221 -220
  111. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +313 -307
  112. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlugNew.vue +2 -2
  113. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +392 -385
  114. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskNew.vue +34 -42
  115. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskOld.vue +50 -40
  116. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/Cache.vue +6 -6
  117. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/FileNew.vue +0 -8
  118. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/FileOld.vue +2 -2
  119. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIops.vue +2 -2
  120. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/lib/config/options.ts +4 -0
  121. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/Location.vue +154 -154
  122. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/LocationOld.vue +85 -85
  123. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/StorageModal.vue +13 -8
  124. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/new/New.vue +15 -12
  125. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSize.vue +23 -23
  126. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSizeNew.vue +2 -10
  127. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSizeOld.vue +1 -2
  128. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +293 -288
  129. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkNew.vue +20 -15
  130. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkOld.vue +1 -1
  131. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/New.vue +1 -1
  132. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/table/lib/config/config.ts +94 -94
  133. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddress.vue +119 -119
  134. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +210 -205
  135. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDeviceNew.vue +5 -2
  136. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDeviceOld.vue +1 -1
  137. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIoNew.vue +66 -66
  138. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIoOld.vue +62 -62
  139. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/DynamicDirectPathIo.vue +31 -31
  140. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/DynamicDirectPathIoOld.vue +76 -76
  141. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/note/Note.vue +15 -15
  142. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/note/NoteNew.vue +42 -42
  143. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/note/NoteOld.vue +30 -30
  144. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGridOld.vue +84 -84
  145. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbController.vue +3 -3
  146. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbControllerNew.vue +2 -2
  147. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/Other.vue +16 -16
  148. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/OtherNew.vue +1 -1
  149. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/OtherOld.vue +1 -1
  150. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/inputDevices/InputDevicesNew.vue +0 -10
  151. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +1 -0
  152. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/ReservationNew.vue +1 -0
  153. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/ReservationOld.vue +1 -0
  154. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCard.vue +162 -154
  155. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCardNew.vue +17 -12
  156. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCardOld.vue +17 -12
  157. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/Model.vue +3 -5
  158. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplays.vue +53 -53
  159. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemory.vue +6 -4
  160. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/lib/config/options.ts +3 -0
  161. package/components/common/vm/actions/common/customizeHardware/vmoptions/Vmoptions.vue +163 -155
  162. package/components/common/vm/actions/common/customizeHardware/vmoptions/VmoptionsNew.vue +138 -130
  163. package/components/common/vm/actions/common/customizeHardware/vmoptions/VmoptionsOld.vue +120 -113
  164. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptions.vue +15 -9
  165. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptionsNew.vue +1 -1
  166. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptionsOld.vue +19 -14
  167. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Secure.vue +1 -1
  168. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/Delay.vue +32 -32
  169. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/DelayNew.vue +1 -1
  170. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/DelayOld.vue +2 -2
  171. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/Firmware.vue +60 -60
  172. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/FirmwareNew.vue +1 -1
  173. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/FirmwareOld.vue +1 -1
  174. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/MenuNew.vue +1 -1
  175. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/MenuOld.vue +1 -1
  176. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +174 -174
  177. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/OrderNew.vue +2 -2
  178. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/OrderOld.vue +1 -1
  179. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +101 -95
  180. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptionsNew.vue +1 -1
  181. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptionsOld.vue +158 -155
  182. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/New.vue +1 -1
  183. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/Old.vue +7 -7
  184. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PowerControl.vue +2 -2
  185. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/RemoteConsoleOptions.vue +15 -9
  186. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPasteNew.vue +1 -1
  187. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransferNew.vue +1 -1
  188. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/Keymap.vue +32 -32
  189. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/KeymapOld.vue +44 -44
  190. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/Password.vue +103 -103
  191. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/SharePolicy.vue +2 -2
  192. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirection.vue +28 -28
  193. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirectionOld.vue +44 -44
  194. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/ZlibCompression.vue +2 -2
  195. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/ToolsNew.vue +3 -3
  196. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/ToolsOld.vue +17 -12
  197. package/components/common/vm/actions/common/select/compatibility/New.vue +0 -18
  198. package/components/common/vm/actions/common/select/compatibility/Old.vue +107 -107
  199. package/components/common/vm/actions/common/select/computeResource/ComputeResource.vue +143 -143
  200. package/components/common/vm/actions/common/select/computeResource/New.vue +168 -184
  201. package/components/common/vm/actions/common/select/computeResource/treeView/Old.vue +1 -1
  202. package/components/common/vm/actions/common/select/computeResource/treeView/TreeView.vue +131 -131
  203. package/components/common/vm/actions/common/select/createType/CreateType.vue +38 -38
  204. package/components/common/vm/actions/common/select/createType/New.vue +0 -16
  205. package/components/common/vm/actions/common/select/createType/Old.vue +0 -9
  206. package/components/common/vm/actions/common/select/createType/lib/config/items.ts +48 -48
  207. package/components/common/vm/actions/common/select/createType/lib/models/interfaces.ts +5 -5
  208. package/components/common/vm/actions/common/select/name/Name.vue +13 -7
  209. package/components/common/vm/actions/common/select/name/New.vue +15 -30
  210. package/components/common/vm/actions/common/select/name/Old.vue +11 -8
  211. package/components/common/vm/actions/common/select/options/New.vue +8 -3
  212. package/components/common/vm/actions/common/select/options/Old.vue +10 -5
  213. package/components/common/vm/actions/common/select/options/Options.vue +8 -3
  214. package/components/common/vm/actions/common/select/os/New.vue +0 -10
  215. package/components/common/vm/actions/common/select/os/Old.vue +152 -152
  216. package/components/common/vm/actions/common/select/os/Os.vue +139 -139
  217. package/components/common/vm/actions/common/select/storage/Old.vue +13 -10
  218. package/components/common/vm/actions/common/select/storage/Storage.vue +164 -155
  219. package/components/common/vm/actions/common/select/storage/new/New.vue +278 -300
  220. package/components/common/vm/actions/common/select/storage/new/lib/models/interfaces.ts +5 -5
  221. package/components/common/vm/actions/common/select/storage/new/lib/utils/utils.ts +21 -21
  222. package/components/common/vm/actions/common/select/template/old/Old.vue +50 -50
  223. package/components/common/vm/actions/common/select/template/treeView/New.vue +0 -10
  224. package/components/common/vm/actions/common/select/template/treeView/Old.vue +1 -1
  225. package/components/common/vm/actions/confirm/Confirm.vue +11 -6
  226. package/components/common/vm/actions/editSettings/EditSettings.vue +252 -242
  227. package/components/common/vm/actions/editSettings/EditSettingsOld.vue +35 -24
  228. package/components/common/vm/actions/editSettings/new/New.vue +34 -23
  229. package/components/common/vm/actions/editSettings/new/Skeleton.vue +88 -88
  230. package/components/common/vmt/actions/add/Add.vue +25 -19
  231. package/components/common/vmt/actions/add/New.vue +1 -0
  232. package/components/common/vmt/actions/add/Old.vue +0 -10
  233. package/components/common/vmt/actions/add/lib/models/interfaces.ts +23 -23
  234. package/components/common/wizards/datastore/add/Add.vue +14 -7
  235. package/components/common/wizards/datastore/add/New.vue +24 -17
  236. package/components/common/wizards/datastore/add/Old.vue +18 -14
  237. package/components/common/wizards/datastore/add/lib/config/steps.ts +2 -1
  238. package/components/common/wizards/datastore/add/lib/models/enums.ts +1 -1
  239. package/components/common/wizards/datastore/add/steps/hostAccessibility/HostAccessibility.vue +9 -4
  240. package/components/common/wizards/datastore/add/steps/hostAccessibility/HostAccessibilityNew.vue +10 -5
  241. package/components/common/wizards/datastore/add/steps/hostAccessibility/HostAccessibilityOld.vue +12 -7
  242. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/Table.vue +0 -2
  243. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/new/New.vue +3 -3
  244. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/Old.vue +5 -5
  245. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/config/incompatibleTable.ts +3 -3
  246. package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigure.vue +0 -2
  247. package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureNew.vue +27 -26
  248. package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureOld.vue +5 -11
  249. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/DeletePopover.vue +0 -9
  250. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/ServersList.vue +9 -4
  251. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDevice.vue +18 -14
  252. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +20 -15
  253. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceOld.vue +26 -17
  254. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/Table.vue +12 -17
  255. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/new/New.vue +2 -13
  256. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/new/lib/config/lunDiskTable.ts +14 -14
  257. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/new/lib/models/enums.ts +3 -3
  258. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/old/Old.vue +18 -13
  259. package/components/common/wizards/datastore/add/steps/readyComplete/ReadyCompleteNew.vue +1 -1
  260. package/components/common/wizards/datastore/add/steps/typeMode/lib/config/typeOptions.ts +43 -43
  261. package/components/common/wizards/network/add/Add.vue +2 -2
  262. package/components/common/wizards/network/add/lib/models/interfaces.ts +2 -2
  263. package/components/common/wizards/network/add/modals/SelectNetwork.vue +7 -5
  264. package/components/common/wizards/network/add/modals/SelectStandardSwitch.vue +7 -15
  265. package/components/common/wizards/network/add/modals/SelectSwitch.vue +7 -15
  266. package/components/common/wizards/network/add/modals/lib/models/interfaces.ts +21 -0
  267. package/components/common/wizards/network/add/steps/ConnectionSettings.vue +3 -3
  268. package/components/common/wizards/network/add/steps/CreateStandardSwitch.vue +3 -3
  269. package/components/common/wizards/network/add/steps/IpFourSettings.vue +6 -6
  270. package/components/common/wizards/network/add/steps/PhysicalAdapter.vue +2 -2
  271. package/components/common/wizards/network/add/steps/PortProperties.vue +12 -12
  272. package/components/common/wizards/network/add/steps/SelectConnectionType.vue +112 -104
  273. package/components/common/wizards/network/add/steps/SelectedTargetDevice.vue +467 -467
  274. package/components/common/wizards/vm/common/computeResource/TreeView.vue +1 -1
  275. package/components/common/wizards/vm/common/validation/compatibility/Compatibility.vue +1 -1
  276. package/components/common/wizards/vm/migrate/Migrate.vue +353 -349
  277. package/components/common/wizards/vm/migrate/lib/config/constructDataReady.ts +221 -220
  278. package/components/common/wizards/vm/migrate/lib/config/steps.ts +157 -157
  279. package/components/common/wizards/vm/migrate/lib/validations.ts +68 -68
  280. package/components/common/wizards/vm/migrate/select/computeResource/ComputeResource.vue +13 -8
  281. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/tableKeys.ts +8 -8
  282. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/models/types.ts +4 -4
  283. package/components/common/wizards/vm/migrate/select/network/Network.vue +103 -103
  284. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/advancedTable.ts +91 -91
  285. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/basicTable.ts +1 -1
  286. package/components/common/wizards/vm/migrate/select/targetServer/new/New.vue +4 -7
  287. package/components/common/wizards/vm/migrate/select/type/lib/config/typeOptions.ts +45 -45
  288. package/composables/productNameLocal.ts +30 -30
  289. package/composables/useAppVersion.ts +21 -21
  290. package/lib/models/enums.ts +1 -1
  291. package/package.json +1 -1
  292. package/plugins/date.ts +233 -233
  293. package/plugins/panelStates.ts +70 -70
  294. package/plugins/text.ts +59 -59
  295. package/public/spice-console/lib/images/bitmap.js +203 -203
  296. package/public/spice-console/network/spicechannel.js +390 -390
  297. package/store/main/mutations.ts +7 -7
  298. package/store/main/state.ts +7 -7
  299. package/store/tasks/lib/models/enums.ts +4 -4
  300. package/store/tasks/mappers/recentTasks.ts +79 -79
@@ -66,6 +66,13 @@
66
66
  --create-row-icon: #008fd6;
67
67
  --create-row-icon-hover: #0081c1;
68
68
  --ready-to-complete-border-color: #e9ebeda3;
69
+ --type-list-border-color: #ccc;
70
+ --select-name-border-color: #e9ebeda3;
71
+ --select-name-location-bg-color: #ffffff;
72
+ --select-os-color: #4d5d69;
73
+ --select-os-border-color: #e9ebeda3;
74
+ --select-storage-border-color: #e9ebed;
75
+ --select-storage-bg-color: #ffffff;
69
76
 
70
77
  /* Alert */
71
78
  --alert-warning-icon-color: #d28f00;
@@ -243,6 +250,46 @@
243
250
  /* Unsaved Changes Modal */
244
251
  --unsaved-changes-modal-bg-color: var(--modal-bg);
245
252
 
253
+ /* Split Horizontal */
254
+ --new-split-horizontal-border-color: #e9ebed;
255
+ --new-horizontal-panel-bg-color: #fff;
256
+ --new-trigger-bg-color: #e9ebeda3;
257
+ --new-trigger-color: #213444;
258
+ --new-gutter-bg-color: #e9ebed;
259
+ --new-gutter-hover-bg-color: #008fd6;
260
+ --new-gutter-before-bg-color: rgba(255, 255, 255, 0.8);
261
+ --old-horizontal-panel-bg-color: #fff;
262
+
263
+ /* Split Vertical */
264
+ --new-gutter-handler-active-bg-color: #ffffffcc;
265
+ --new-second-panel-box-shadow: 0 4px 20px 0 #0000001f;
266
+
267
+ /* Notification */
268
+ --new-summary-notification-item-text: #4d5d69;
269
+ --new-summary-notification-action-toggle: #4d5d69;
270
+ --new-summary-notification-action-toggle-border: #e9ebed;
271
+ --new-summary-notification-action-active-toggle: #008fd6;
272
+
273
+ /* Summary Notification */
274
+ --summary-action-btn-color: #213444;
275
+ --summary-action-btn-hover-color: #1b2a37;
276
+ --summary-action-btn-active-border-color: #008fd6;
277
+ --summary-dropdown-notifications-bg-color: #ffffff;
278
+ --summary-dropdown-notifications-title-color: #4d5d69;
279
+ --summary-dropdown-notifications-mark-all-color: #008fd6;
280
+ --summary-dropdown-tabs-content-border-color: #e9ebed;
281
+ --summary-dropdown-notification-item-new-bg-color: #008fd60f;
282
+ --summary-dropdown-notification-item-hover-bg-color: #e9ebed66;
283
+ --summary-dropdown-notification-item-hover-action-color: #008fd6;
284
+ --summary-dropdown-notification-item-text-color: #4d5d69;
285
+ --summary-dropdown-notification-item-action-color: #4d5d69;
286
+
287
+ /* Tooltip Help */
288
+ --help-color: #4d5d69;
289
+ --help-icon-hover-color: #4d5d69;
290
+ --help-icon-active-color: #008fd6;
291
+ --help-close-icon-color: #182531;
292
+
246
293
  /* Inventory Tabs */
247
294
  --inventory-tabs-left-opacity-block-bg-color: linear-gradient(
248
295
  270deg,
@@ -380,6 +427,61 @@
380
427
  --select-file-type-label: #4d5d69;
381
428
  --remote-console-options-password-content-copy-icon: #9da6ad;
382
429
  --cpu-model-info-tooltip-icon-disabled: #bdc3c7;
430
+ --ready-to-complate-run-bg-color: #e9ebed66;
431
+ --ready-to-complate-run-border-color: #e9ebeda3;
432
+ --vm-context-title: #333;
433
+ --vm-context-sub-title: #000;
434
+ --media-content-border-color: #e9ebeda3;
435
+ --cpu-help-more-info-color: #008fd6;
436
+ --vm-wizard-file-path-color: #182531;
437
+ --vm-wizard-maximum-size-color: #182531;
438
+ --device-will-removed-color: #9da6ad;
439
+ --input-devices-content-color: #182531;
440
+ --input-devices-dot-color: #d3d6da;
441
+ --vm-wizard-block-view-bg-color: #fafafa;
442
+ --add-device-dropdown-bg-color: #fff;
443
+ --add-device-dropdown-bg-color-hover: #f6f7f8;
444
+ --add-device-dropdown-active-bg-color-hover: #f0f8fd;
445
+ --add-device-dropdown-border-color: #e9ebed;
446
+ --add-device-dropdown-border-color-hover: #e9ebed;
447
+ --add-device-dropdown-color: #4d5d69;
448
+ --add-device-dropdown-color-hover: #4d5d69;
449
+ --add-device-dropdown-item-title-color: #182531;
450
+ --divider-color: #e9ebed;
451
+ --select-compatibility-bg-color: #ffffff;
452
+ --select-compatibility-border-color: #e9ebed;
453
+ --select-compatibility-border-hover-color: #d3d6da;
454
+ --select-compatibility-selected-bg-color: #f0f8fd;
455
+ --select-compatibility-selected-border-color: #008fd6;
456
+ --select-compatibility-description-color: #4d5d69;
457
+ --select-compute-resource-border-color: #e9ebed;
458
+ --select-compute-resource-location-bg-color: #ffffff;
459
+ --select-compute-resource-compatibility-title-color: #4d5d69;
460
+ --select-compute-resource-compatibilityd-empty-escription-color: #9da6ad;
461
+ --select-compute-resource-compatibility-description-color: #4d5d69;
462
+ --select-create-type-block-bg-color: #ffffff;
463
+ --select-create-type-block-border-color: #e9ebed;
464
+ --select-create-type-block-border-hover-color: #d3d6da;
465
+ --select-create-type-block-selected-bg-color: #f0f8fd;
466
+ --select-create-type-block-selected-border-color: #008fd6;
467
+ --select-name-text-color: #4d5d69;
468
+ --select-name-help-icon-hover-color: #4d5d69;
469
+ --select-name-help-icon-active-color: #008fd6;
470
+ --select-name-help-hide-icon-color: #213444;
471
+ --select-name-location-node-color: #182531;
472
+ --select-storage-title-color: #4d5d69;
473
+ --select-storage-compatibility-bg-color: #ffffff;
474
+ --select-storage-compatibility-description-color: #4d5d69;
475
+ --select-storage-compatibility-empty-description-color: #9da6ad;
476
+ --select-storage-compatibility-table-column-button-hover-bg: #f6f7f8;
477
+ --select-storage-compatibility-table-column-button-active-hover-bg: #f0f8fd;
478
+
479
+ /* VMT Add Edit */
480
+ --vmt-context-title: #333;
481
+ --vmt-context-sub-title: #000;
482
+
483
+ /* Admin */
484
+ --popover-hover-bg-color: #e8e8e8;
383
485
 
384
486
  // Add Hosts new view
385
487
  --add-hosts-hosts-row-between-line: #e9ebeda3;
@@ -467,6 +569,13 @@
467
569
  --create-row-icon: #2ba2de;
468
570
  --create-row-icon-hover: #008fd6;
469
571
  --ready-to-complete-border-color: #e9ebed1f;
572
+ --type-list-border-color: #000;
573
+ --select-name-border-color: #e9ebed1f;
574
+ --select-name-location-bg-color: #1b2a371f;
575
+ --select-os-color: #e9eaec;
576
+ --select-os-border-color: #e9ebed1f;
577
+ --select-storage-border-color: #e9ebed1f;
578
+ --select-storage-bg-color: var(--wizard-right-bg);
470
579
 
471
580
  /* Alert */
472
581
  --alert-warning-icon-color: currentColor;
@@ -649,6 +758,46 @@
649
758
  /* Unsaved Changes Modal */
650
759
  --unsaved-changes-modal-bg-color: #334453;
651
760
 
761
+ /* Split Horizontal */
762
+ --new-split-horizontal-border-color: #e9ebed1f;
763
+ --new-horizontal-panel-bg-color: #213444;
764
+ --new-trigger-bg-color: #314352;
765
+ --new-trigger-color: #e9ebed;
766
+ --new-gutter-bg-color: #394a58;
767
+ --new-gutter-hover-bg-color: #2ba2de;
768
+ --new-gutter-before-bg-color: rgba(33, 52, 68, 0.8);
769
+ --old-horizontal-panel-bg-color: #1b2a32;
770
+
771
+ /* Split Vertical */
772
+ --new-gutter-handler-active-bg-color: #213444cc;
773
+ --new-second-panel-box-shadow: 0 4px 20px 0 #0000001f, 0 -1px 12px 0 #00000014;
774
+
775
+ /* Notification */
776
+ --new-summary-notification-item-text: #e9eaec;
777
+ --new-summary-notification-action-toggle: #e9eaec;
778
+ --new-summary-notification-action-toggle-border: rgba(233, 235, 237, 0.12);
779
+ --new-summary-notification-action-active-toggle: #2ba2de;
780
+
781
+ /* Summary Notification */
782
+ --summary-action-btn-color: #e9eaec;
783
+ --summary-action-btn-hover-color: #ffffff;
784
+ --summary-action-btn-active-border-color: #2ba2de;
785
+ --summary-dropdown-notifications-bg-color: #334453;
786
+ --summary-dropdown-notifications-title-color: #e9eaec;
787
+ --summary-dropdown-notifications-mark-all-color: #2ba2de;
788
+ --summary-dropdown-tabs-content-border-color: #e9ebed1f;
789
+ --summary-dropdown-notification-item-new-bg-color: #2ba2de0f;
790
+ --summary-dropdown-notification-item-hover-bg-color: #e9ebed0f;
791
+ --summary-dropdown-notification-item-hover-action-color: #2ba2de;
792
+ --summary-dropdown-notification-item-text-color: #e9eaec;
793
+ --summary-dropdown-notification-item-action-color: #e9eaec;
794
+
795
+ /* Tooltip Help */
796
+ --help-color: #e9eaec;
797
+ --help-icon-hover-color: #e9eaec;
798
+ --help-icon-active-color: #2ba2de;
799
+ --help-close-icon-color: #e9eaec;
800
+
652
801
  /* Inventory Tabs */
653
802
  --inventory-tabs-left-opacity-block-bg-color: linear-gradient(
654
803
  270deg,
@@ -783,6 +932,71 @@
783
932
  --select-file-type-label: #e9eaec;
784
933
  --remote-console-options-password-content-copy-icon: #e9eaec;
785
934
  --cpu-model-info-tooltip-icon-disabled: #bdc3c770;
935
+ --ready-to-complate-run-bg-color: #e9ebed0f;
936
+ --ready-to-complate-run-border-color: #e9ebed1f;
937
+ --vm-context-title: #adbbc4;
938
+ --vm-context-sub-title: #adbbc4;
939
+ --media-content-border-color: #e9ebed1f;
940
+ --cpu-help-more-info-color: #2ba2de;
941
+ --vm-wizard-file-path-color: #e9eaec;
942
+ --vm-wizard-maximum-size-color: #e9eaec;
943
+ --device-will-removed-color: #9da6ad;
944
+ --input-devices-content-color: #e9eaec;
945
+ --input-devices-dot-color: #4d5d69;
946
+ --vm-wizard-block-view-bg-color: transparent;
947
+ --add-device-dropdown-bg-color: #1b2a373d;
948
+ --add-device-dropdown-bg-color-hover: #b8bcc10a;
949
+ --add-device-dropdown-active-bg-color-hover: #2785b614;
950
+ --add-device-dropdown-border-color: #e9ebed1f;
951
+ --add-device-dropdown-border-color-hover: #2ba2de;
952
+ --add-device-dropdown-color: #e9eaec;
953
+ --add-device-dropdown-color-hover: #2ba2de;
954
+ --add-device-dropdown-item-title-color: #e9eaec;
955
+ --divider-color: #e9ebed1f;
956
+ --select-compatibility-bg-color: #1b2a371f;
957
+ --select-compatibility-border-color: #e9ebed1f;
958
+ --select-compatibility-border-hover-color: #e9ebed3d;
959
+ --select-compatibility-selected-bg-color: #2ba2de14;
960
+ --select-compatibility-selected-border-color: #2ba2de;
961
+ --select-compatibility-description-color: #e9eaec;
962
+ --select-compute-resource-border-color: #e9ebed1f;
963
+ --select-compute-resource-location-bg-color: #1b2a371f;
964
+ --select-compute-resource-compatibility-title-color: #e9eaec;
965
+ --select-compute-resource-compatibilityd-empty-escription-color: #9da6ad;
966
+ --select-compute-resource-compatibility-description-color: #e9eaec;
967
+ --select-create-type-block-bg-color: #1b2a371f;
968
+ --select-create-type-block-border-color: #e9ebed1f;
969
+ --select-create-type-block-border-hover-color: #e9ebed3d;
970
+ --select-create-type-block-selected-bg-color: #2ba2de14;
971
+ --select-create-type-block-selected-border-color: #2ba2de;
972
+ --select-name-text-color: #e9eaec;
973
+ --select-name-help-icon-hover-color: #e9eaec;
974
+ --select-name-help-icon-active-color: #2ba2de;
975
+ --select-name-help-hide-icon-color: #e9eaec;
976
+ --select-name-location-node-color: #e9eaec;
977
+ --select-storage-title-color: #e9eaec;
978
+ --select-storage-compatibility-bg-color: #1b2a371f;
979
+ --select-storage-compatibility-description-color: #e9eaec;
980
+ --select-storage-compatibility-empty-description-color: #9da6ad;
981
+ --select-storage-compatibility-table-column-button-hover-bg: linear-gradient(
982
+ 0deg,
983
+ rgba(233, 234, 236, 0.04) 0%,
984
+ rgba(233, 234, 236, 0.04) 100%
985
+ ),
986
+ rgba(27, 42, 55, 0.24);
987
+ --select-storage-compatibility-table-column-button-active-hover-bg: linear-gradient(
988
+ 0deg,
989
+ rgba(43, 162, 222, 0.08) 0%,
990
+ rgba(43, 162, 222, 0.08) 100%
991
+ ),
992
+ rgba(27, 42, 55, 0.24);
993
+
994
+ /* VMT Add Edit */
995
+ --vmt-context-title: #adbbc4;
996
+ --vmt-context-sub-title: #adbbc4;
997
+
998
+ /* Admin */
999
+ --popover-hover-bg-color: #28404d;
786
1000
 
787
1001
  // Add Hosts new view
788
1002
  --add-hosts-hosts-row-between-line: #e9ebed1f;
@@ -1,50 +1,50 @@
1
- <template>
2
- <template v-if="props.name === 'zabbix'">
3
- <svg
4
- xmlns="http://www.w3.org/2000/svg"
5
- width="80"
6
- height="22"
7
- viewBox="0 0 80 22"
8
- fill="none"
9
- >
10
- <g clip-path="url(#clip0_2691_29714)">
11
- <path d="M0 0.522461H80V21.477H0V0.522461Z" fill="#D40000" />
12
- <path
13
- d="M3.42089 3.71582H14.9889V5.2187L5.6782 16.625H15.2164V18.2836H3.19336V16.7807L12.504 5.37438H3.42089V3.71582ZM23.0402 5.65779L20.3378 12.9087H25.7526L23.0402 5.65779ZM21.9145 3.71582H24.1738L29.7862 18.2836H27.7145L26.3753 14.5473H19.735L18.3938 18.2836H16.2922L21.9145 3.71582ZM33.9176 11.326V16.663H37.113C38.1848 16.663 38.9791 16.4434 39.496 16.0043C40.013 15.5652 40.2704 14.8926 40.2704 13.9905C40.2704 13.0804 40.013 12.4078 39.496 11.9747C38.9791 11.5436 38.1848 11.326 37.113 11.326H33.9176ZM33.9176 5.33446V9.72535H36.8675C37.8415 9.72535 38.566 9.54373 39.043 9.18447C39.52 8.82322 39.7575 8.27237 39.7575 7.5319C39.7575 6.79743 39.518 6.24657 39.043 5.88332C38.566 5.52008 37.8415 5.33646 36.8675 5.33646H33.9176V5.33446ZM31.9257 3.71582H37.0152C38.534 3.71582 39.7056 4.02717 40.5259 4.65188C41.3482 5.27658 41.7573 6.16474 41.7573 7.31635C41.7573 8.2065 41.5478 8.91703 41.1266 9.44393C40.7055 9.97084 40.0868 10.3002 39.2725 10.4299C40.2525 10.6375 41.0129 11.0706 41.5558 11.7312C42.0986 12.3918 42.3701 13.2161 42.3701 14.2041C42.3701 15.5054 41.923 16.5093 41.0289 17.2198C40.1347 17.9283 38.8614 18.2836 37.2128 18.2836H31.9257V3.71582ZM47.5573 11.326V16.663H50.7547C51.8265 16.663 52.6208 16.4434 53.1357 16.0043C53.6527 15.5652 53.9101 14.8926 53.9101 13.9905C53.9101 13.0804 53.6527 12.4078 53.1357 11.9747C52.6188 11.5436 51.8245 11.326 50.7547 11.326H47.5573ZM47.5573 5.33446V9.72535H50.5072C51.4812 9.72535 52.2057 9.54373 52.6827 9.18447C53.1597 8.82322 53.3972 8.27237 53.3972 7.5319C53.3972 6.79743 53.1597 6.24657 52.6827 5.88332C52.2057 5.52008 51.4812 5.33646 50.5072 5.33646H47.5573V5.33446ZM45.5654 3.71582H50.6549C52.1737 3.71582 53.3453 4.02717 54.1656 4.65188C54.9879 5.27658 55.399 6.16474 55.399 7.31635C55.399 8.2065 55.1895 8.91703 54.7683 9.44393C54.3472 9.97084 53.7285 10.3002 52.9142 10.4299C53.8942 10.6375 54.6546 11.0706 55.1975 11.7312C55.7403 12.3918 56.0118 13.2161 56.0118 14.2041C56.0118 15.5054 55.5647 16.5093 54.6706 17.2198C53.7764 17.9283 52.503 18.2836 50.8545 18.2836H45.5654V3.71582ZM64.9732 3.71582H67.1646L70.6274 8.94697L74.1242 3.71582H76.2418L71.6833 10.5397L76.8086 18.2836H74.6172L70.5835 12.1882L66.51 18.2836H64.3924L69.5297 10.5955L64.9732 3.71582ZM59.2031 3.71582H61.195V18.2836H59.2031V3.71582Z"
14
- fill="white"
15
- />
16
- </g>
17
- <defs>
18
- <clipPath id="clip0_2691_29714">
19
- <rect
20
- width="80"
21
- height="20.96"
22
- fill="white"
23
- transform="translate(0 0.519531)"
24
- />
25
- </clipPath>
26
- </defs>
27
- </svg>
28
- </template>
29
- <template v-else><span></span></template>
30
- </template>
31
-
32
- <script setup lang="ts">
33
- const props = withDefaults(
34
- defineProps<{
35
- name: string
36
- type?: string
37
- color?: string
38
- width?: string
39
- height?: string
40
- }>(),
41
- {
42
- type: '',
43
- color: 'currentColor',
44
- width: '24',
45
- height: '24',
46
- }
47
- )
48
- </script>
49
-
50
- <style scoped lang="scss"></style>
1
+ <template>
2
+ <template v-if="props.name === 'zabbix'">
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="80"
6
+ height="22"
7
+ viewBox="0 0 80 22"
8
+ fill="none"
9
+ >
10
+ <g clip-path="url(#clip0_2691_29714)">
11
+ <path d="M0 0.522461H80V21.477H0V0.522461Z" fill="#D40000" />
12
+ <path
13
+ d="M3.42089 3.71582H14.9889V5.2187L5.6782 16.625H15.2164V18.2836H3.19336V16.7807L12.504 5.37438H3.42089V3.71582ZM23.0402 5.65779L20.3378 12.9087H25.7526L23.0402 5.65779ZM21.9145 3.71582H24.1738L29.7862 18.2836H27.7145L26.3753 14.5473H19.735L18.3938 18.2836H16.2922L21.9145 3.71582ZM33.9176 11.326V16.663H37.113C38.1848 16.663 38.9791 16.4434 39.496 16.0043C40.013 15.5652 40.2704 14.8926 40.2704 13.9905C40.2704 13.0804 40.013 12.4078 39.496 11.9747C38.9791 11.5436 38.1848 11.326 37.113 11.326H33.9176ZM33.9176 5.33446V9.72535H36.8675C37.8415 9.72535 38.566 9.54373 39.043 9.18447C39.52 8.82322 39.7575 8.27237 39.7575 7.5319C39.7575 6.79743 39.518 6.24657 39.043 5.88332C38.566 5.52008 37.8415 5.33646 36.8675 5.33646H33.9176V5.33446ZM31.9257 3.71582H37.0152C38.534 3.71582 39.7056 4.02717 40.5259 4.65188C41.3482 5.27658 41.7573 6.16474 41.7573 7.31635C41.7573 8.2065 41.5478 8.91703 41.1266 9.44393C40.7055 9.97084 40.0868 10.3002 39.2725 10.4299C40.2525 10.6375 41.0129 11.0706 41.5558 11.7312C42.0986 12.3918 42.3701 13.2161 42.3701 14.2041C42.3701 15.5054 41.923 16.5093 41.0289 17.2198C40.1347 17.9283 38.8614 18.2836 37.2128 18.2836H31.9257V3.71582ZM47.5573 11.326V16.663H50.7547C51.8265 16.663 52.6208 16.4434 53.1357 16.0043C53.6527 15.5652 53.9101 14.8926 53.9101 13.9905C53.9101 13.0804 53.6527 12.4078 53.1357 11.9747C52.6188 11.5436 51.8245 11.326 50.7547 11.326H47.5573ZM47.5573 5.33446V9.72535H50.5072C51.4812 9.72535 52.2057 9.54373 52.6827 9.18447C53.1597 8.82322 53.3972 8.27237 53.3972 7.5319C53.3972 6.79743 53.1597 6.24657 52.6827 5.88332C52.2057 5.52008 51.4812 5.33646 50.5072 5.33646H47.5573V5.33446ZM45.5654 3.71582H50.6549C52.1737 3.71582 53.3453 4.02717 54.1656 4.65188C54.9879 5.27658 55.399 6.16474 55.399 7.31635C55.399 8.2065 55.1895 8.91703 54.7683 9.44393C54.3472 9.97084 53.7285 10.3002 52.9142 10.4299C53.8942 10.6375 54.6546 11.0706 55.1975 11.7312C55.7403 12.3918 56.0118 13.2161 56.0118 14.2041C56.0118 15.5054 55.5647 16.5093 54.6706 17.2198C53.7764 17.9283 52.503 18.2836 50.8545 18.2836H45.5654V3.71582ZM64.9732 3.71582H67.1646L70.6274 8.94697L74.1242 3.71582H76.2418L71.6833 10.5397L76.8086 18.2836H74.6172L70.5835 12.1882L66.51 18.2836H64.3924L69.5297 10.5955L64.9732 3.71582ZM59.2031 3.71582H61.195V18.2836H59.2031V3.71582Z"
14
+ fill="white"
15
+ />
16
+ </g>
17
+ <defs>
18
+ <clipPath id="clip0_2691_29714">
19
+ <rect
20
+ width="80"
21
+ height="20.96"
22
+ fill="white"
23
+ transform="translate(0 0.519531)"
24
+ />
25
+ </clipPath>
26
+ </defs>
27
+ </svg>
28
+ </template>
29
+ <template v-else><span></span></template>
30
+ </template>
31
+
32
+ <script setup lang="ts">
33
+ const props = withDefaults(
34
+ defineProps<{
35
+ name: string
36
+ type?: string
37
+ color?: string
38
+ width?: string
39
+ height?: string
40
+ }>(),
41
+ {
42
+ type: '',
43
+ color: 'currentColor',
44
+ width: '24',
45
+ height: '24',
46
+ }
47
+ )
48
+ </script>
49
+
50
+ <style scoped lang="scss"></style>