bfg-common 1.3.258 → 1.3.259

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.
@@ -54,6 +54,7 @@
54
54
  <atoms-combobox
55
55
  v-model="fieldsValues.vlanId"
56
56
  :items="vlanIdSelectData"
57
+ test-id="vlan-id-select-combobox"
57
58
  @click.stop
58
59
  @select="selectVlanId"
59
60
  />
@@ -58,6 +58,7 @@
58
58
  :class="{
59
59
  'danger-not-valid': props.messagesFields.vlan.field,
60
60
  }"
61
+ test-id="vlan-combobox"
61
62
  @click.stop
62
63
  />
63
64
  <div
@@ -17,6 +17,7 @@
17
17
  v-model.number="selectedMaxCpuLocal"
18
18
  :items="cpuOptions"
19
19
  :disabled="props.disabled"
20
+ test-id="max-cpu-combobox"
20
21
  @click.stop
21
22
  />
22
23
  </template>
@@ -10,10 +10,12 @@ export const cpuOptionsFunc = (
10
10
  {
11
11
  text: `${localization.minimum}: ${min}`,
12
12
  value: min,
13
+ testId: 'option-minimum-cpu',
13
14
  },
14
15
  {
15
16
  text: `${localization.maximum}: ${max}`,
16
17
  value: max,
18
+ testId: 'option-minimum-cpu',
17
19
  },
18
20
  ]
19
21
  }
@@ -26,7 +26,7 @@
26
26
  v-model="selectedMemory"
27
27
  :items="memoryOptions"
28
28
  :disabled="isMemoryDisabled"
29
- data-id="vm-wizard-memory-field"
29
+ test-id="vm-wizard-memory-field"
30
30
  class="input-text-color"
31
31
  @click.stop
32
32
  @select="onSelectMemory"
@@ -15,12 +15,12 @@ export const memoryOptionsFunc = (
15
15
  {
16
16
  text: `${localization.minimum}: ${minValueText}`,
17
17
  value: { value: +value, type: type.toLowerCase() },
18
+ testId: 'option-minimum-memory',
18
19
  },
19
20
  {
20
- text: `${localization.maximum}: ${maxValue} ${
21
- localization.gb
22
- }`,
21
+ text: `${localization.maximum}: ${maxValue} ${localization.gb}`,
23
22
  value: { value: maxValue, type: 'gb' },
23
+ testId: 'option-minimum-memory',
24
24
  },
25
25
  ]
26
26
  }
@@ -37,6 +37,7 @@
37
37
  v-show="limitIopsType !== 'unlimited'"
38
38
  v-model.number="limitIopsLocal"
39
39
  :items="limitIopsOptions"
40
+ test-id="limit-iops-combobox"
40
41
  @click.stop
41
42
  />
42
43
  <div v-show="limitIopsErrorText" class="flex-align-center">
@@ -58,6 +58,7 @@
58
58
  :class="{
59
59
  'danger-not-valid': props.messagesFields.vlan.field,
60
60
  }"
61
+ test-id="vlan-id-combobox"
61
62
  @click.stop
62
63
  />
63
64
  <div
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.258",
4
+ "version": "1.3.259",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",