bfg-common 1.4.498 → 1.4.500

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 (124) hide show
  1. package/assets/img/icons/icons-sprite-dark-1.svg +407 -407
  2. package/assets/img/icons/icons-sprite-dark-2.svg +343 -343
  3. package/assets/img/icons/icons-sprite-dark-3.svg +227 -227
  4. package/assets/img/icons/icons-sprite-dark-4.svg +255 -255
  5. package/assets/img/icons/icons-sprite-dark-5.svg +488 -488
  6. package/assets/img/icons/icons-sprite-dark-6.svg +94 -94
  7. package/assets/img/icons/icons-sprite-light-1.svg +407 -407
  8. package/assets/img/icons/icons-sprite-light-2.svg +343 -343
  9. package/assets/img/icons/icons-sprite-light-3.svg +227 -227
  10. package/assets/img/icons/icons-sprite-light-4.svg +255 -255
  11. package/assets/img/icons/icons-sprite-light-5.svg +488 -488
  12. package/assets/img/icons/icons-sprite-light-6.svg +94 -94
  13. package/components/atoms/TheIcon3.vue +50 -50
  14. package/components/atoms/modal/bySteps/BySteps.vue +253 -253
  15. package/components/atoms/stack/StackBlock.vue +185 -185
  16. package/components/atoms/table/dataGrid/DataGrid.vue +1633 -1633
  17. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +222 -222
  18. package/components/common/browse/blocks/lib/models/types.ts +1 -1
  19. package/components/common/browse/lib/models/interfaces.ts +5 -5
  20. package/components/common/context/lib/models/interfaces.ts +30 -30
  21. package/components/common/context/recursion/Recursion.vue +86 -86
  22. package/components/common/context/recursion/RecursionNew.vue +199 -199
  23. package/components/common/context/recursion/RecursionOld.vue +213 -213
  24. package/components/common/diagramMain/Diagram.vue +364 -364
  25. package/components/common/diagramMain/Header.vue +211 -211
  26. package/components/common/diagramMain/adapter/Adapter.vue +123 -123
  27. package/components/common/diagramMain/adapter/AdapterItems.vue +61 -61
  28. package/components/common/diagramMain/adapter/block/Block.vue +27 -27
  29. package/components/common/diagramMain/adapter/secondBlock/SecondBlock.vue +27 -27
  30. package/components/common/diagramMain/adapter/secondBlock/SecondBlockOld.vue +51 -51
  31. package/components/common/diagramMain/lib/config/initial.ts +50 -50
  32. package/components/common/diagramMain/lib/models/enums.ts +44 -44
  33. package/components/common/diagramMain/lib/models/types.ts +21 -21
  34. package/components/common/diagramMain/lib/utils/utils.ts +331 -331
  35. package/components/common/diagramMain/modals/ManagePhysicalAdaptersModal.vue +330 -330
  36. package/components/common/diagramMain/modals/editSettings/ConfirmTeamingSettingsModal.vue +40 -40
  37. package/components/common/diagramMain/modals/editSettings/EditSettings.vue +497 -497
  38. package/components/common/diagramMain/modals/editSettings/EditSettingsModal.vue +812 -812
  39. package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +214 -214
  40. package/components/common/diagramMain/modals/editSettings/tabs/Security.vue +189 -189
  41. package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +163 -163
  42. package/components/common/diagramMain/modals/editSettings/tabs/TeamingFailover.vue +175 -175
  43. package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +398 -398
  44. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +346 -346
  45. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +205 -205
  46. package/components/common/diagramMain/modals/lib/config/diagramConfig.ts +23 -23
  47. package/components/common/diagramMain/modals/lib/config/initial.ts +180 -180
  48. package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +90 -90
  49. package/components/common/diagramMain/modals/lib/mappers/mappers.ts +87 -87
  50. package/components/common/diagramMain/modals/lib/utils/index.ts +24 -24
  51. package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +537 -537
  52. package/components/common/diagramMain/modals/migrateVmkernelAdapter/lib/config/steps.ts +114 -114
  53. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +169 -169
  54. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/SelectVmkernelAdapter.vue +159 -159
  55. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +14 -14
  56. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +137 -137
  57. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/selectVmkernelAdapter.ts +52 -52
  58. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/validations.ts +19 -19
  59. package/components/common/diagramMain/network/Network.vue +1 -1
  60. package/components/common/diagramMain/network/block/BlockOld.vue +64 -64
  61. package/components/common/diagramMain/network/noNetwork/NoNetwork.vue +12 -12
  62. package/components/common/diagramMain/network/noNetwork/NoNetworkOld.vue +61 -61
  63. package/components/common/diagramMain/network/secondBlock/SecondBlockOld.vue +60 -60
  64. package/components/common/diagramMain/port/Ports.vue +47 -47
  65. package/components/common/modals/confirmation/Confirmation.vue +70 -70
  66. package/components/common/vm/actions/add/Add.vue +617 -617
  67. package/components/common/vm/actions/clone/lib/config/steps.ts +129 -129
  68. package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +267 -267
  69. package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareNew.vue +254 -204
  70. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusNew.vue +118 -118
  71. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveNew.vue +163 -164
  72. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +25 -25
  73. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/MediaNew.vue +55 -55
  74. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuNew.vue +0 -1
  75. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/config/dropdownItems.ts +147 -147
  76. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryNew.vue +0 -1
  77. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskNew.vue +0 -1
  78. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/SharingNew.vue +44 -44
  79. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkNew.vue +124 -125
  80. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkOld.vue +2 -2
  81. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/Location.vue +71 -0
  82. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/{Location.vue → location/LocationOld.vue} +134 -145
  83. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/New.vue +63 -0
  84. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/table/Table.vue +74 -0
  85. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/table/lib/config/config.ts +95 -0
  86. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddress.vue +119 -119
  87. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddressNew.vue +69 -69
  88. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddressOld.vue +83 -84
  89. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbControllerNew.vue +56 -53
  90. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/Other.vue +16 -16
  91. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/OtherNew.vue +27 -27
  92. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCardNew.vue +0 -1
  93. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemoryNew.vue +54 -54
  94. package/components/common/vm/actions/common/customizeHardware/vmoptions/Vmoptions.vue +145 -145
  95. package/components/common/vm/actions/common/customizeHardware/vmoptions/VmoptionsNew.vue +102 -102
  96. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptionsNew.vue +75 -75
  97. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/Delay.vue +26 -26
  98. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/Firmware.vue +57 -57
  99. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/FirmwareNew.vue +42 -42
  100. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/MenuNew.vue +25 -25
  101. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +171 -171
  102. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/OrderNew.vue +50 -50
  103. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptionsNew.vue +141 -141
  104. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/New.vue +140 -140
  105. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPasteNew.vue +30 -30
  106. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransferNew.vue +30 -30
  107. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/folderSharing/FolderSharingNew.vue +30 -30
  108. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/Keymap.vue +32 -32
  109. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/KeymapNew.vue +39 -39
  110. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/PasswordNew.vue +100 -100
  111. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirectionNew.vue +38 -38
  112. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirectionOld.vue +44 -44
  113. package/components/common/vm/actions/common/select/storage/Storage.vue +130 -130
  114. package/components/common/vm/actions/common/select/storage/StorageOld.vue +129 -129
  115. package/components/common/vm/actions/common/select/storage/new/New.vue +159 -159
  116. package/components/common/vm/actions/editSettings/EditSettings.vue +214 -214
  117. package/components/common/vm/actions/editSettings/EditSettingsOld.vue +182 -182
  118. package/components/common/wizards/network/add/lib/config/steps.ts +464 -464
  119. package/composables/productNameLocal.ts +30 -30
  120. package/package.json +1 -1
  121. package/plugins/date.ts +233 -233
  122. package/plugins/recursion.ts +311 -311
  123. package/public/spice-console/lib/images/bitmap.js +203 -203
  124. package/public/spice-console/network/spicechannel.js +383 -383
@@ -1,70 +1,70 @@
1
- <template>
2
- <common-modals-confirmation-new
3
- v-if="isNewViewLocal"
4
- :headline="props.headline"
5
- :description="props.description"
6
- :modal-texts="props.modalTexts"
7
- :test-id="props.testId"
8
- @hide-modal="emits('hide-modal')"
9
- @confirm="emits('confirm')"
10
- />
11
- <common-modals-confirmation-old
12
- v-else
13
- :description="props.description"
14
- :headline="props.headline"
15
- :sub-title="props.subTitle"
16
- :test-id="props.testId"
17
- :type="props.type"
18
- :loading="props.loading"
19
- :variant-text-button="props.variantTextButton"
20
- :width="props.width"
21
- @hide-modal="emits('hide-modal')"
22
- @confirm="emits('confirm')"
23
- />
24
- </template>
25
-
26
- <script setup lang="ts">
27
- import type { UI_I_ModalTexts } from 'bfg-uikit/components/ui/modal/models/interfaces'
28
-
29
- const props = withDefaults(
30
- defineProps<{
31
- isNewView?: boolean
32
- description?: string
33
- headline?: string
34
- subTitle?: string
35
- testId?: string
36
- type?: 'confirm' | 'remove'
37
- loading?: boolean
38
- variantTextButton?: 'ok' | 'confirm' | 'remove'
39
- width?: string
40
- modalTexts?: UI_I_ModalTexts
41
- }>(),
42
- {
43
- isNewView: undefined,
44
- testId: 'common-confirmation',
45
- headline: '',
46
- subTitle: '',
47
- type: 'confirm',
48
- description: '',
49
- variantTextButton: 'ok',
50
- width: '580px',
51
- loading: false,
52
- modalTexts: {
53
- resetToDefault: 'Reset To Default',
54
- button1: 'Cancel',
55
- button2: 'Confirm',
56
- },
57
- }
58
- )
59
- const emits = defineEmits<{
60
- (event: 'hide-modal'): void
61
- (event: 'confirm'): void
62
- }>()
63
-
64
- const { $store }: any = useNuxtApp()
65
- const isNewViewLocal = computed<boolean>(
66
- () => props.isNewView ?? $store.getters['main/getIsNewView']
67
- )
68
- </script>
69
-
70
- <style scoped lang="scss"></style>
1
+ <template>
2
+ <common-modals-confirmation-new
3
+ v-if="isNewViewLocal"
4
+ :headline="props.headline"
5
+ :description="props.description"
6
+ :modal-texts="props.modalTexts"
7
+ :test-id="props.testId"
8
+ @hide-modal="emits('hide-modal')"
9
+ @confirm="emits('confirm')"
10
+ />
11
+ <common-modals-confirmation-old
12
+ v-else
13
+ :description="props.description"
14
+ :headline="props.headline"
15
+ :sub-title="props.subTitle"
16
+ :test-id="props.testId"
17
+ :type="props.type"
18
+ :loading="props.loading"
19
+ :variant-text-button="props.variantTextButton"
20
+ :width="props.width"
21
+ @hide-modal="emits('hide-modal')"
22
+ @confirm="emits('confirm')"
23
+ />
24
+ </template>
25
+
26
+ <script setup lang="ts">
27
+ import type { UI_I_ModalTexts } from 'bfg-uikit/components/ui/modal/models/interfaces'
28
+
29
+ const props = withDefaults(
30
+ defineProps<{
31
+ isNewView?: boolean
32
+ description?: string
33
+ headline?: string
34
+ subTitle?: string
35
+ testId?: string
36
+ type?: 'confirm' | 'remove'
37
+ loading?: boolean
38
+ variantTextButton?: 'ok' | 'confirm' | 'remove'
39
+ width?: string
40
+ modalTexts?: UI_I_ModalTexts
41
+ }>(),
42
+ {
43
+ isNewView: undefined,
44
+ testId: 'common-confirmation',
45
+ headline: '',
46
+ subTitle: '',
47
+ type: 'confirm',
48
+ description: '',
49
+ variantTextButton: 'ok',
50
+ width: '580px',
51
+ loading: false,
52
+ modalTexts: {
53
+ resetToDefault: 'Reset To Default',
54
+ button1: 'Cancel',
55
+ button2: 'Confirm',
56
+ },
57
+ }
58
+ )
59
+ const emits = defineEmits<{
60
+ (event: 'hide-modal'): void
61
+ (event: 'confirm'): void
62
+ }>()
63
+
64
+ const { $store }: any = useNuxtApp()
65
+ const isNewViewLocal = computed<boolean>(
66
+ () => props.isNewView ?? $store.getters['main/getIsNewView']
67
+ )
68
+ </script>
69
+
70
+ <style scoped lang="scss"></style>