bfg-common 1.4.776 → 1.4.778

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 (35) hide show
  1. package/components/common/browse/blocks/lib/models/types.ts +1 -1
  2. package/components/common/browse/lib/models/interfaces.ts +5 -5
  3. package/components/common/diagramMain/Header.vue +211 -211
  4. package/components/common/diagramMain/adapter/AdapterItems.vue +61 -61
  5. package/components/common/diagramMain/lib/config/initial.ts +50 -50
  6. package/components/common/diagramMain/lib/models/types.ts +21 -21
  7. package/components/common/diagramMain/lib/utils/utils.ts +331 -331
  8. package/components/common/diagramMain/modals/ManagePhysicalAdaptersModal.vue +330 -330
  9. package/components/common/diagramMain/modals/editSettings/ConfirmTeamingSettingsModal.vue +40 -40
  10. package/components/common/diagramMain/modals/editSettings/EditSettings.vue +497 -497
  11. package/components/common/diagramMain/modals/editSettings/EditSettingsModal.vue +812 -812
  12. package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +214 -214
  13. package/components/common/diagramMain/modals/editSettings/tabs/Security.vue +189 -189
  14. package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +163 -163
  15. package/components/common/diagramMain/modals/editSettings/tabs/TeamingFailover.vue +175 -175
  16. package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +398 -398
  17. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +346 -346
  18. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +205 -205
  19. package/components/common/diagramMain/modals/lib/config/diagramConfig.ts +23 -23
  20. package/components/common/diagramMain/modals/lib/config/initial.ts +180 -180
  21. package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +90 -90
  22. package/components/common/diagramMain/modals/lib/mappers/mappers.ts +87 -87
  23. package/components/common/diagramMain/modals/lib/utils/index.ts +24 -24
  24. package/components/common/diagramMain/modals/migrateVmkernelAdapter/lib/config/steps.ts +114 -114
  25. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +169 -169
  26. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/SelectVmkernelAdapter.vue +159 -159
  27. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +14 -14
  28. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +137 -137
  29. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/selectVmkernelAdapter.ts +52 -52
  30. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/validations.ts +19 -19
  31. package/components/common/diagramMain/port/Ports.vue +47 -47
  32. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +2 -2
  33. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +27 -14
  34. package/package.json +1 -1
  35. package/public/spice-console-minify/run.min.js +4 -4
@@ -1,40 +1,40 @@
1
- <template>
2
- <atoms-modal
3
- class="alert-modal"
4
- width="576px"
5
- :show="props.isShow"
6
- :title="localization.common.confirmTeamingAndFailoverSettings"
7
- @hide="onHide"
8
- @submit="onSubmit"
9
- >
10
- <template #modalBody>
11
- <atoms-alert
12
- status="alert-warning"
13
- :hide-close-icon="true"
14
- :items="[`${localization.common.thereAreNoActiveAdapters}`]"
15
- test-id="teaming-settings-alert"
16
- />
17
- <p class="warning-text">
18
- {{ localization.common.clickOkDiscardTheIssuesAndProceedCancelReviewChanges }}
19
- </p>
20
- </template>
21
- </atoms-modal>
22
- </template>
23
-
24
- <script setup lang="ts">
25
- import type { UI_I_Localization } from '~/lib/models/interfaces'
26
-
27
- const props = defineProps<{
28
- isShow: boolean
29
- }>()
30
-
31
- const emits = defineEmits<{
32
- (event: 'hide'): void
33
- (event: 'submit'): void
34
- }>()
35
-
36
- const onHide = () => emits('hide')
37
- const onSubmit = () => emits('submit')
38
-
39
- const localization = computed<UI_I_Localization>(() => useLocal())
40
- </script>
1
+ <template>
2
+ <atoms-modal
3
+ class="alert-modal"
4
+ width="576px"
5
+ :show="props.isShow"
6
+ :title="localization.common.confirmTeamingAndFailoverSettings"
7
+ @hide="onHide"
8
+ @submit="onSubmit"
9
+ >
10
+ <template #modalBody>
11
+ <atoms-alert
12
+ status="alert-warning"
13
+ :hide-close-icon="true"
14
+ :items="[`${localization.common.thereAreNoActiveAdapters}`]"
15
+ test-id="teaming-settings-alert"
16
+ />
17
+ <p class="warning-text">
18
+ {{ localization.common.clickOkDiscardTheIssuesAndProceedCancelReviewChanges }}
19
+ </p>
20
+ </template>
21
+ </atoms-modal>
22
+ </template>
23
+
24
+ <script setup lang="ts">
25
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
26
+
27
+ const props = defineProps<{
28
+ isShow: boolean
29
+ }>()
30
+
31
+ const emits = defineEmits<{
32
+ (event: 'hide'): void
33
+ (event: 'submit'): void
34
+ }>()
35
+
36
+ const onHide = () => emits('hide')
37
+ const onSubmit = () => emits('submit')
38
+
39
+ const localization = computed<UI_I_Localization>(() => useLocal())
40
+ </script>