bfg-common 1.3.265 → 1.3.267

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.
@@ -0,0 +1,39 @@
1
+ <template>
2
+ <common-modals-confirmation
3
+ :headline="props.title"
4
+ :sub-title="props.subTitle"
5
+ @hide-modal="emits('hide')"
6
+ @confirm="emits('confirm')"
7
+ >
8
+ <template #content>
9
+ <div class="flex-align-center">
10
+ <atoms-the-icon
11
+ name="exclamation-triangle"
12
+ class="confirm-modal__icon"
13
+ />
14
+ <slot />
15
+ </div>
16
+ </template>
17
+ </common-modals-confirmation>
18
+ </template>
19
+
20
+ <script lang="ts" setup>
21
+ const props = defineProps<{
22
+ title: string
23
+ subTitle: string
24
+ }>()
25
+
26
+ const emits = defineEmits<{
27
+ (event: 'hide'): void
28
+ (event: 'confirm'): void
29
+ }>()
30
+ </script>
31
+
32
+ <style lang="scss" scoped>
33
+ .confirm-modal__icon {
34
+ min-width: 40px;
35
+ height: 40px;
36
+ margin-right: 20px;
37
+ fill: #c27b00;
38
+ }
39
+ </style>
@@ -6,12 +6,11 @@
6
6
  <input
7
7
  id="vmkernel-adapter"
8
8
  v-model="connectionTypeLocal"
9
- data-id="vmkernel-adapter-radio"
10
9
  type="radio"
11
10
  value="0"
12
11
  name="connection-type"
13
12
  />
14
- <label for="vmkernel-adapter">
13
+ <label for="vmkernel-adapter" data-id="vmkernel-adapter-radio">
15
14
  {{ localization.vmKernelNetworkAdapter }}
16
15
  </label>
17
16
  </div>
@@ -22,12 +21,11 @@
22
21
  <input
23
22
  id="virtual"
24
23
  v-model="connectionTypeLocal"
25
- data-id="virtual-radio"
26
24
  type="radio"
27
25
  value="1"
28
26
  name="connection-type"
29
27
  />
30
- <label for="virtual">
28
+ <label for="virtual" data-id="virtual-radio">
31
29
  {{ localization.virtualMachinePortGroupStandardSwitch }}
32
30
  </label>
33
31
  </div>
@@ -38,12 +36,11 @@
38
36
  <input
39
37
  id="physical-adapter"
40
38
  v-model="connectionTypeLocal"
41
- data-id="physical-adapter-radio"
42
39
  type="radio"
43
40
  value="2"
44
41
  name="connection-type"
45
42
  />
46
- <label for="physical-adapter">
43
+ <label for="physical-adapter" data-id="physical-adapter-radio">
47
44
  {{ localization.physicalNetworkAdapter }}
48
45
  </label>
49
46
  </div>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.265",
4
+ "version": "1.3.267",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",