bfg-common 1.5.239 → 1.5.241

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 (32) hide show
  1. package/assets/scss/common/theme.scss +6 -0
  2. package/components/atoms/table/dataGrid/DataGrid.vue +1 -1
  3. package/components/common/browse/BrowseNew.vue +8 -2
  4. package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareNew.vue +5 -2
  5. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareNew.vue +7 -7
  6. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusNew.vue +2 -2
  7. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveNew.vue +4 -0
  8. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuNew.vue +194 -190
  9. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/ModelNew.vue +246 -237
  10. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/SharesNew.vue +6 -1
  11. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryNew.vue +158 -154
  12. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlugNew.vue +8 -2
  13. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskNew.vue +4 -0
  14. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/FileNew.vue +8 -3
  15. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSizeNew.vue +8 -4
  16. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/ProvisioningNew.vue +6 -1
  17. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/SharingNew.vue +6 -1
  18. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkNew.vue +1 -1
  19. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/New.vue +4 -3
  20. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/table/Table.vue +1 -0
  21. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbControllerNew.vue +1 -0
  22. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/OtherNew.vue +36 -30
  23. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/ReservationNew.vue +5 -2
  24. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCardNew.vue +5 -2
  25. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptionsNew.vue +85 -81
  26. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/OrderNew.vue +71 -67
  27. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptionsNew.vue +150 -149
  28. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/New.vue +146 -140
  29. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/ToolsNew.vue +5 -1
  30. package/components/common/vm/actions/common/select/storage/new/New.vue +5 -1
  31. package/components/common/vm/actions/common/select/storage/new/lib/config/table.ts +2 -1
  32. package/package.json +2 -2
@@ -1,154 +1,158 @@
1
- <template>
2
- <ui-stack-block :has-children="true" test-id="memory-stack-block">
3
- <template #stackBlockKey>
4
- <div
5
- id="vm-wizard-toggle-block-memory"
6
- data-id="vm-wizard-toggle-block-memory"
7
- class="flex-align-center"
8
- >
9
- <span class="title">{{ localization.common.memory }}</span>
10
- <ui-icon
11
- v-show="props.memoryInvalid"
12
- width="18px"
13
- height="18px"
14
- name="error-outline"
15
- class="ml-2"
16
- />
17
- </div>
18
- </template>
19
- <template #stackBlockContent>
20
- <div class="memory-content flex-align-center">
21
- <ui-combobox
22
- v-model="selectedMemory"
23
- :items="props.memoryOptions"
24
- :disabled="props.isMemoryDisabled"
25
- :error-text="props.errorText"
26
- test-id="vm-wizard-memory-field"
27
- size="sm"
28
- width="auto"
29
- @change="emits('select-memory', $event)"
30
- />
31
-
32
- <ui-select
33
- id="vm-wizard-memory-type-select"
34
- v-model="memoryType"
35
- :items="props.memoryTypeOptions"
36
- :disabled="props.isMemoryDisabled"
37
- width="auto"
38
- test-id="vm-wizard-memory-type-select"
39
- class="unit"
40
- size="sm"
41
- />
42
- </div>
43
- </template>
44
- <template #stackChildren>
45
- <common-vm-actions-common-customize-hardware-virtual-hardware-reservation
46
- v-model:reservation="reservation"
47
- v-model:reservation-type="reservationType"
48
- :reserve-guest-memory="reserveGuestMemory"
49
- :error-validation-fields="props.errorValidationFields"
50
- :multiply="2"
51
- :disabled="props.isDisabled"
52
- component-type="memory"
53
- type="mb"
54
- class="memory-reservation"
55
- @remove-error-by-title="emits('remove-error-by-title', $event)"
56
- @invalid="reservationInvalid = $event"
57
- />
58
- <common-vm-actions-common-customize-hardware-virtual-hardware-limit
59
- v-model:limit="limit"
60
- v-model:limit-type="limitType"
61
- :error-validation-fields="props.errorValidationFields"
62
- :limit-options="props.limitOptions"
63
- :multiply="2"
64
- :disabled="isDisabled"
65
- type="mb"
66
- component-type="memory"
67
- class="memory-limit"
68
- @invalid="limitInvalid = $event"
69
- @remove-error-by-title="emits('remove-error-by-title', $event)"
70
- />
71
- <common-vm-actions-common-customize-hardware-virtual-hardware-memory-hot-plug
72
- v-model:memory-hot-plug="memoryHotPlug"
73
- :disabled="props.isDisabledMemoryHotPlug"
74
- />
75
- </template>
76
- </ui-stack-block>
77
- </template>
78
-
79
- <script setup lang="ts">
80
- import type { UI_I_Localization } from '~/lib/models/interfaces'
81
- import type { UI_I_ErrorValidationField } from '~/lib/models/store/interfaces'
82
- import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
83
-
84
- const selectedMemory = defineModel<number>('selectedMemory', {
85
- required: true,
86
- })
87
- const memoryType = defineModel<string>('memoryType', {
88
- required: true,
89
- })
90
- const reservation = defineModel<string>('reservation', {
91
- required: true,
92
- })
93
- const reservationType = defineModel<string>('reservationType', {
94
- required: true,
95
- })
96
- const reserveGuestMemory = defineModel<boolean>('reserveGuestMemory', {
97
- required: true,
98
- })
99
- const reservationInvalid = defineModel<boolean>('reservationInvalid', {
100
- required: true,
101
- })
102
- const limit = defineModel<string>('limit', {
103
- required: true,
104
- })
105
- const limitType = defineModel<string>('limitType', {
106
- required: true,
107
- })
108
- const limitInvalid = defineModel<boolean>('limitInvalid', {
109
- required: true,
110
- })
111
- const memoryHotPlug = defineModel<boolean>('memoryHotPlug', {
112
- required: true,
113
- })
114
-
115
- const props = defineProps<{
116
- errorValidationFields: UI_I_ErrorValidationField[]
117
- memoryInvalid: boolean
118
- errorText: string
119
- memoryOptions: UI_I_OptionItem[]
120
- isMemoryDisabled: boolean
121
- memoryTypeOptions: UI_I_OptionItem[]
122
- isDisabled: boolean
123
- limitOptions: UI_I_OptionItem[]
124
- isDisabledMemoryHotPlug: boolean
125
- }>()
126
- const emits = defineEmits<{
127
- (event: 'remove-error-by-title', value: string): void
128
- (event: 'select-memory', value: any): void
129
- (event: 'remove-error'): void
130
- }>()
131
-
132
- const localization = computed<UI_I_Localization>(() => useLocal())
133
- </script>
134
-
135
- <style scoped lang="scss">
136
- .memory-content {
137
- gap: 8px;
138
- }
139
-
140
- :deep(.ui-main-select-toggle) {
141
- display: flex;
142
- justify-content: space-between;
143
- width: 108px;
144
- }
145
- .light-theme {
146
- :deep(.ui-main-select-toggle) {
147
- background-color: #ffffff;
148
- }
149
- }
150
-
151
- :deep(.unit .ui-main-select-toggle) {
152
- width: 80px;
153
- }
154
- </style>
1
+ <template>
2
+ <ui-stack-block
3
+ :has-children="true"
4
+ test-id="memory-stack-block"
5
+ is-toggle-on-stack-view-key
6
+ >
7
+ <template #stackBlockKey>
8
+ <div
9
+ id="vm-wizard-toggle-block-memory"
10
+ data-id="vm-wizard-toggle-block-memory"
11
+ class="flex-align-center"
12
+ >
13
+ <span class="title">{{ localization.common.memory }}</span>
14
+ <ui-icon
15
+ v-show="props.memoryInvalid"
16
+ width="18px"
17
+ height="18px"
18
+ name="error-outline"
19
+ class="ml-2"
20
+ />
21
+ </div>
22
+ </template>
23
+ <template #stackBlockContent>
24
+ <div class="memory-content flex-align-center">
25
+ <ui-combobox
26
+ v-model="selectedMemory"
27
+ :items="props.memoryOptions"
28
+ :disabled="props.isMemoryDisabled"
29
+ :error-text="props.errorText"
30
+ test-id="vm-wizard-memory-field"
31
+ size="sm"
32
+ width="auto"
33
+ @change="emits('select-memory', $event)"
34
+ />
35
+
36
+ <ui-select
37
+ id="vm-wizard-memory-type-select"
38
+ v-model="memoryType"
39
+ :items="props.memoryTypeOptions"
40
+ :disabled="props.isMemoryDisabled"
41
+ width="auto"
42
+ test-id="vm-wizard-memory-type-select"
43
+ class="unit"
44
+ size="sm"
45
+ />
46
+ </div>
47
+ </template>
48
+ <template #stackChildren>
49
+ <common-vm-actions-common-customize-hardware-virtual-hardware-reservation
50
+ v-model:reservation="reservation"
51
+ v-model:reservation-type="reservationType"
52
+ :reserve-guest-memory="reserveGuestMemory"
53
+ :error-validation-fields="props.errorValidationFields"
54
+ :multiply="2"
55
+ :disabled="props.isDisabled"
56
+ component-type="memory"
57
+ type="mb"
58
+ class="memory-reservation"
59
+ @remove-error-by-title="emits('remove-error-by-title', $event)"
60
+ @invalid="reservationInvalid = $event"
61
+ />
62
+ <common-vm-actions-common-customize-hardware-virtual-hardware-limit
63
+ v-model:limit="limit"
64
+ v-model:limit-type="limitType"
65
+ :error-validation-fields="props.errorValidationFields"
66
+ :limit-options="props.limitOptions"
67
+ :multiply="2"
68
+ :disabled="isDisabled"
69
+ type="mb"
70
+ component-type="memory"
71
+ class="memory-limit"
72
+ @invalid="limitInvalid = $event"
73
+ @remove-error-by-title="emits('remove-error-by-title', $event)"
74
+ />
75
+ <common-vm-actions-common-customize-hardware-virtual-hardware-memory-hot-plug
76
+ v-model:memory-hot-plug="memoryHotPlug"
77
+ :disabled="props.isDisabledMemoryHotPlug"
78
+ />
79
+ </template>
80
+ </ui-stack-block>
81
+ </template>
82
+
83
+ <script setup lang="ts">
84
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
85
+ import type { UI_I_ErrorValidationField } from '~/lib/models/store/interfaces'
86
+ import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
87
+
88
+ const selectedMemory = defineModel<number>('selectedMemory', {
89
+ required: true,
90
+ })
91
+ const memoryType = defineModel<string>('memoryType', {
92
+ required: true,
93
+ })
94
+ const reservation = defineModel<string>('reservation', {
95
+ required: true,
96
+ })
97
+ const reservationType = defineModel<string>('reservationType', {
98
+ required: true,
99
+ })
100
+ const reserveGuestMemory = defineModel<boolean>('reserveGuestMemory', {
101
+ required: true,
102
+ })
103
+ const reservationInvalid = defineModel<boolean>('reservationInvalid', {
104
+ required: true,
105
+ })
106
+ const limit = defineModel<string>('limit', {
107
+ required: true,
108
+ })
109
+ const limitType = defineModel<string>('limitType', {
110
+ required: true,
111
+ })
112
+ const limitInvalid = defineModel<boolean>('limitInvalid', {
113
+ required: true,
114
+ })
115
+ const memoryHotPlug = defineModel<boolean>('memoryHotPlug', {
116
+ required: true,
117
+ })
118
+
119
+ const props = defineProps<{
120
+ errorValidationFields: UI_I_ErrorValidationField[]
121
+ memoryInvalid: boolean
122
+ errorText: string
123
+ memoryOptions: UI_I_OptionItem[]
124
+ isMemoryDisabled: boolean
125
+ memoryTypeOptions: UI_I_OptionItem[]
126
+ isDisabled: boolean
127
+ limitOptions: UI_I_OptionItem[]
128
+ isDisabledMemoryHotPlug: boolean
129
+ }>()
130
+ const emits = defineEmits<{
131
+ (event: 'remove-error-by-title', value: string): void
132
+ (event: 'select-memory', value: any): void
133
+ (event: 'remove-error'): void
134
+ }>()
135
+
136
+ const localization = computed<UI_I_Localization>(() => useLocal())
137
+ </script>
138
+
139
+ <style scoped lang="scss">
140
+ .memory-content {
141
+ gap: 8px;
142
+ }
143
+
144
+ :deep(.ui-main-select-toggle) {
145
+ display: flex;
146
+ justify-content: space-between;
147
+ width: 108px;
148
+ }
149
+ .light-theme {
150
+ :deep(.ui-main-select-toggle) {
151
+ background-color: #ffffff;
152
+ }
153
+ }
154
+
155
+ :deep(.unit .ui-main-select-toggle) {
156
+ width: 80px;
157
+ }
158
+ </style>
@@ -1,7 +1,9 @@
1
1
  <template>
2
2
  <ui-stack-block :has-children="false">
3
3
  <template #stackBlockKey>
4
- {{ localization.common.memoryHotPlug }}
4
+ <span class="limit-title">
5
+ {{ localization.common.memoryHotPlug }}
6
+ </span>
5
7
  </template>
6
8
  <template #stackBlockContent>
7
9
  <ui-checkbox
@@ -26,4 +28,8 @@ const props = defineProps<{
26
28
  }>()
27
29
  </script>
28
30
 
29
- <style scoped></style>
31
+ <style scoped>
32
+ .limit-title {
33
+ margin-right: 12px;
34
+ }
35
+ </style>
@@ -4,6 +4,7 @@
4
4
  :is-roll-back="props.type === 'removed'"
5
5
  :removable="props.isRemovable"
6
6
  :test-id="`hard-disk-stack-block-${props.index}`"
7
+ is-toggle-on-stack-view-key
7
8
  @remove="emits('remove')"
8
9
  @roll-back="emits('roll-back')"
9
10
  >
@@ -260,6 +261,9 @@ const localization = computed<UI_I_Localization>(() => useLocal())
260
261
  gap: 0;
261
262
  }
262
263
 
264
+ #device-will-removed-text-main {
265
+ color: var(--device-will-removed-color);
266
+ }
263
267
  .device-will-removed-text {
264
268
  font-size: 13px;
265
269
  color: var(--device-will-removed-color);
@@ -1,7 +1,9 @@
1
1
  <template>
2
2
  <ui-stack-block :has-children="false">
3
3
  <template #stackBlockKey>
4
- {{ localization.common.diskFile }}
4
+ <span class="limit-title">
5
+ {{ localization.common.diskFile }}
6
+ </span>
5
7
  </template>
6
8
  <template #stackBlockContent>
7
9
  <span class="file-path"> {{ props.path }} </span>
@@ -21,13 +23,16 @@ const props = defineProps<{
21
23
 
22
24
  <style>
23
25
  :root {
24
- --vm-wizard-file-path-color: #182531
26
+ --vm-wizard-file-path-color: #182531;
25
27
  }
26
28
  :root.dark-theme {
27
- --vm-wizard-file-path-color: #e9eaec
29
+ --vm-wizard-file-path-color: #e9eaec;
28
30
  }
29
31
  </style>
30
32
  <style scoped>
33
+ .limit-title {
34
+ margin-right: 12px;
35
+ }
31
36
  .file-path {
32
37
  font-size: 13px;
33
38
  color: var(--vm-wizard-file-path-color);
@@ -1,7 +1,9 @@
1
1
  <template>
2
2
  <ui-stack-block :has-children="false">
3
3
  <template #stackBlockKey>
4
- {{ localization.common.maximumSize }}
4
+ <span class="limit-title">
5
+ {{ localization.common.maximumSize }}
6
+ </span>
5
7
  </template>
6
8
  <template #stackBlockContent>
7
9
  <span class="maximum-size"> {{ props.freeGb }} </span>
@@ -19,16 +21,18 @@ const props = defineProps<{
19
21
  }>()
20
22
  </script>
21
23
 
22
-
23
24
  <style>
24
25
  :root {
25
- --vm-wizard-maximum-size-color: #182531
26
+ --vm-wizard-maximum-size-color: #182531;
26
27
  }
27
28
  :root.dark-theme {
28
- --vm-wizard-maximum-size-color: #e9eaec
29
+ --vm-wizard-maximum-size-color: #e9eaec;
29
30
  }
30
31
  </style>
31
32
  <style scoped>
33
+ .limit-title {
34
+ margin-right: 12px;
35
+ }
32
36
  .maximum-size {
33
37
  font-size: 13px;
34
38
  line-height: 15.73px;
@@ -1,7 +1,9 @@
1
1
  <template>
2
2
  <ui-stack-block :has-children="false">
3
3
  <template #stackBlockKey>
4
- {{ localization.common.diskProvisioning }}
4
+ <span class="limit-title">
5
+ {{ localization.common.diskProvisioning }}
6
+ </span>
5
7
  </template>
6
8
  <template #stackBlockContent>
7
9
  <ui-select
@@ -38,6 +40,9 @@ const localization = computed<UI_I_Localization>(() => useLocal())
38
40
  </script>
39
41
 
40
42
  <style scoped>
43
+ .limit-title {
44
+ margin-right: 12px;
45
+ }
41
46
  :deep(.provisioning-field .ui-main-select-toggle) {
42
47
  width: auto;
43
48
  }
@@ -1,7 +1,9 @@
1
1
  <template>
2
2
  <ui-stack-block :has-children="false">
3
3
  <template #stackBlockKey>
4
- {{ localization.common.sharing }}
4
+ <span class="limit-title">
5
+ {{ localization.common.sharing }}
6
+ </span>
5
7
  </template>
6
8
  <template #stackBlockContent>
7
9
  <ui-select
@@ -38,6 +40,9 @@ const localization = computed<UI_I_Localization>(() => useLocal())
38
40
  </script>
39
41
 
40
42
  <style scoped>
43
+ .limit-title {
44
+ margin-right: 12px;
45
+ }
41
46
  :deep(.sharing .ui-main-select-toggle) {
42
47
  width: 144px;
43
48
  }
@@ -3,6 +3,7 @@
3
3
  :has-children="true"
4
4
  :removable="props.isRemovable"
5
5
  :test-id="`network-stack-block-${props.index}`"
6
+ is-toggle-on-stack-view-key
6
7
  @remove="emits('remove')"
7
8
  >
8
9
  <template #stackBlockKey>
@@ -111,7 +112,6 @@ const onChangeLocation = (data: UI_T_SelectedValue): void => {
111
112
  </script>
112
113
 
113
114
  <style scoped lang="scss">
114
-
115
115
  :deep(.network-select .ui-main-select-toggle) {
116
116
  display: flex;
117
117
  justify-content: space-between;
@@ -73,14 +73,15 @@ const modalTexts = ref<UI_I_ModalTexts>({
73
73
  </script>
74
74
 
75
75
  <style scoped lang="scss">
76
+ .network-select-dialog-content {
77
+ margin: 0 32px;
78
+ }
76
79
  .count-text {
77
80
  text-align: right;
78
81
  font-size: 12px;
79
82
  font-weight: 400;
80
83
  color: #9da6ad;
81
- margin-bottom: 8px;
82
- margin-top: 8px;
84
+ margin: 8px 32px;
83
85
  text-transform: lowercase;
84
- margin-right: 8px;
85
86
  }
86
87
  </style>
@@ -3,6 +3,7 @@
3
3
  :data="data"
4
4
  :options="options"
5
5
  :texts="tableTexts"
6
+ :default-layout="false"
6
7
  size="sm"
7
8
  test-id="data-table-main"
8
9
  class="network-table"
@@ -3,6 +3,7 @@
3
3
  :has-children="true"
4
4
  is-disabled
5
5
  test-id="usb-controller-stack-block"
6
+ is-toggle-on-stack-view-key
6
7
  >
7
8
  <template #stackBlockKey>
8
9
  <div
@@ -1,30 +1,36 @@
1
- <template>
2
- <ui-stack-block :has-children="true" test-id="other-stack-block">
3
- <template #stackBlockKey>
4
- <div
5
- id="vm-wizard-toggle-block-other"
6
- data-id="vm-wizard-toggle-block-other"
7
- >
8
- <span>{{ localization.common.other }}</span>
9
- </div>
10
- </template>
11
- <template #stackBlockContent>
12
- <div class="additional-hardware">{{ localization.common.additionalHardware }} (2)</div>
13
- </template>
14
- <template #stackChildren>
15
- <common-vm-actions-common-customize-hardware-virtual-hardware-other-input-devices />
16
- </template>
17
- </ui-stack-block>
18
- </template>
19
-
20
- <script setup lang="ts">
21
- import type { UI_I_Localization } from '~/lib/models/interfaces'
22
-
23
- const localization = computed<UI_I_Localization>(() => useLocal())
24
- </script>
25
-
26
- <style scoped lang="scss">
27
- .additional-hardware {
28
- line-height: 32px;
29
- }
30
- </style>
1
+ <template>
2
+ <ui-stack-block
3
+ :has-children="true"
4
+ test-id="other-stack-block"
5
+ is-toggle-on-stack-view-key
6
+ >
7
+ <template #stackBlockKey>
8
+ <div
9
+ id="vm-wizard-toggle-block-other"
10
+ data-id="vm-wizard-toggle-block-other"
11
+ >
12
+ <span>{{ localization.common.other }}</span>
13
+ </div>
14
+ </template>
15
+ <template #stackBlockContent>
16
+ <div class="additional-hardware">
17
+ {{ localization.common.additionalHardware }} (2)
18
+ </div>
19
+ </template>
20
+ <template #stackChildren>
21
+ <common-vm-actions-common-customize-hardware-virtual-hardware-other-input-devices />
22
+ </template>
23
+ </ui-stack-block>
24
+ </template>
25
+
26
+ <script setup lang="ts">
27
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
28
+
29
+ const localization = computed<UI_I_Localization>(() => useLocal())
30
+ </script>
31
+
32
+ <style scoped lang="scss">
33
+ .additional-hardware {
34
+ line-height: 32px;
35
+ }
36
+ </style>
@@ -23,7 +23,7 @@
23
23
  v-model="reservationType"
24
24
  :items="props.reservationTypeOptions"
25
25
  :disabled="props.disabled"
26
- test-id="reserve-type-select"
26
+ :test-id="`reserve-type-select-${props.componentType}`"
27
27
  class="unit"
28
28
  size="sm"
29
29
  />
@@ -93,12 +93,15 @@ const onSelectReservation = (value: number): void => {
93
93
  </script>
94
94
 
95
95
  <style scoped>
96
-
97
96
  .reservation-content {
98
97
  gap: 8px;
99
98
  }
100
99
 
101
100
  .reserve-guest-memory-wrap {
102
101
  margin-top: 12px;
102
+
103
+ .ui-checkbox-label {
104
+ min-height: unset !important;
105
+ }
103
106
  }
104
107
  </style>
@@ -1,5 +1,9 @@
1
1
  <template>
2
- <ui-stack-block :has-children="true" test-id="video-card-stack-block">
2
+ <ui-stack-block
3
+ :has-children="true"
4
+ test-id="video-card-stack-block"
5
+ is-toggle-on-stack-view-key
6
+ >
3
7
  <template #stackBlockKey>
4
8
  <div
5
9
  id="vm-wizard-toggle-block-video-card"
@@ -88,7 +92,6 @@ const localization = computed<UI_I_Localization>(() => useLocal())
88
92
  </script>
89
93
 
90
94
  <style scoped lang="scss">
91
-
92
95
  :deep(.video-card-select .ui-main-select-toggle) {
93
96
  display: flex;
94
97
  justify-content: space-between;