bfg-common 1.5.19 → 1.5.20
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.
- package/assets/img/icons/icons-sprite-dark-3.svg +227 -227
- package/assets/img/icons/icons-sprite-dark-5.svg +488 -488
- package/assets/img/icons/icons-sprite-light-3.svg +227 -227
- package/assets/img/icons/icons-sprite-light-5.svg +488 -488
- package/components/common/browse/blocks/lib/models/types.ts +1 -1
- package/components/common/browse/lib/models/interfaces.ts +5 -5
- package/components/common/chartOptionsModal/counters/timespan/form/Form.vue +97 -97
- package/components/common/chartOptionsModal/counters/timespan/form/Form.vue~ +281 -0
- package/components/common/diagramMain/adapter/AdapterItems.vue +61 -61
- package/components/common/diagramMain/lib/config/initial.ts +50 -50
- package/components/common/diagramMain/lib/models/types.ts +21 -21
- package/components/common/diagramMain/lib/utils/utils.ts +331 -331
- package/components/common/diagramMain/modals/ManagePhysicalAdaptersModal.vue +330 -330
- package/components/common/diagramMain/modals/editSettings/ConfirmTeamingSettingsModal.vue +40 -40
- package/components/common/diagramMain/modals/editSettings/EditSettings.vue +497 -497
- package/components/common/diagramMain/modals/editSettings/EditSettingsModal.vue +812 -812
- package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +214 -214
- package/components/common/diagramMain/modals/editSettings/tabs/Security.vue +189 -189
- package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +163 -163
- package/components/common/diagramMain/modals/editSettings/tabs/TeamingFailover.vue +175 -175
- package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +346 -346
- package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +205 -205
- package/components/common/diagramMain/modals/lib/config/initial.ts +180 -180
- package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +90 -90
- package/components/common/diagramMain/modals/lib/mappers/mappers.ts +87 -87
- package/components/common/diagramMain/modals/lib/utils/index.ts +24 -24
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/lib/config/steps.ts +114 -114
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +169 -169
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/SelectVmkernelAdapter.vue +159 -159
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +14 -14
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +137 -137
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/selectVmkernelAdapter.ts +52 -52
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/validations.ts +19 -19
- package/components/common/diagramMain/port/Ports.vue +47 -47
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils.ts +1040 -1040
- package/package.json +1 -1
- package/package.json~ +42 -0
|
@@ -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>
|