bfg-common 1.0.74 → 1.0.76

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 (62) hide show
  1. package/components/atoms/alert/Notification.vue +167 -167
  2. package/components/atoms/autocomplete/Autocomplete.vue +236 -236
  3. package/components/atoms/datepicker/Datepicker.vue +612 -612
  4. package/components/atoms/list/SelectList.vue +62 -62
  5. package/components/atoms/modal/bySteps/BySteps.vue +234 -234
  6. package/components/atoms/nav/NavBar.vue +116 -116
  7. package/components/atoms/nav/VerticalNavBar.vue +89 -89
  8. package/components/atoms/notificationBar/NotificationBar.vue +174 -174
  9. package/components/atoms/perPage/PerPage.vue +52 -52
  10. package/components/atoms/popup/SimplePopup.vue +90 -90
  11. package/components/atoms/step/VerticalStep.vue +104 -104
  12. package/components/atoms/switch/Switch.vue +107 -107
  13. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +204 -204
  14. package/components/atoms/table/dataGrid/DataGridPage.vue +189 -189
  15. package/components/atoms/table/dataGrid/DataGridPagination.vue +83 -83
  16. package/components/atoms/tabs/Tabs.vue +189 -189
  17. package/components/atoms/tooltip/Signpost.vue +224 -224
  18. package/components/common/accordion/Recursion.vue +216 -216
  19. package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
  20. package/components/common/adapterManager/NoActiveAdaptersModal.vue +62 -62
  21. package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +62 -62
  22. package/components/common/browse/Browse.vue +182 -182
  23. package/components/common/browse/blocks/Title.vue +66 -66
  24. package/components/common/diagramMain/adapter/AdapterItem.vue +227 -227
  25. package/components/common/diagramMain/adapter/AdapterItems.vue +57 -57
  26. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +339 -339
  27. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +202 -202
  28. package/components/common/diagramMain/modals/remove/RemoveModal.vue +226 -226
  29. package/components/common/diagramMain/modals/viewSettings/Info.vue +94 -94
  30. package/components/common/diagramMain/network/Contents.vue +238 -238
  31. package/components/common/feedback/Buttons.vue +232 -232
  32. package/components/common/feedback/Message.vue +468 -468
  33. package/components/common/feedback/VisitPortal.vue +54 -54
  34. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +359 -359
  35. package/components/common/modals/Rename.vue +165 -165
  36. package/components/common/perPage/PerPage.vue +51 -51
  37. package/components/common/recursionTree/RecursionTree.vue +201 -201
  38. package/components/common/select/radio/RadioGroup.vue +50 -13
  39. package/components/common/select/radio/models/interfaces.ts +2 -6
  40. package/components/common/vm/actions/add/select/name/Name.vue +1 -1
  41. package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +373 -373
  42. package/components/common/wizards/datastore/add/nfs/configuration/serversList/ServersList.vue +123 -123
  43. package/components/common/wizards/datastore/add/nfs/kerberosAuthentication/KerberosAuthentication.vue +54 -54
  44. package/components/common/wizards/datastore/add/nfs/version/Version.vue +9 -37
  45. package/components/common/wizards/datastore/add/nfs/version/config/versionOptions.ts +4 -4
  46. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/HostTable.vue +131 -131
  47. package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/PartitionConfiguration.vue +230 -230
  48. package/components/common/wizards/datastore/add/sharedStorm/version/Version.vue +6 -37
  49. package/components/common/wizards/datastore/add/sharedStorm/version/config/versionOptions.ts +6 -4
  50. package/components/common/wizards/datastore/add/types/Types.vue +6 -66
  51. package/components/common/wizards/datastore/add/types/config/typeOptions.ts +11 -11
  52. package/models/store/storage/interfaces.ts +32 -32
  53. package/package.json +1 -1
  54. package/public/spice-console/application/codec.js +257 -257
  55. package/public/spice-console/lib/rasterEngine.js +907 -907
  56. package/public/spice-console/network/spicechannel.js +369 -369
  57. package/public/spice-console-minify/lib/decoder/dixie.min.js +4 -4
  58. package/public/spice-console-minify/lib/jgestures.min.js +24 -24
  59. package/public/spice-console-minify/lib/jquery-2.0.3.min.js +24 -24
  60. package/public/spice-console-minify/lib/jquery-mousewheel.min.js +11 -11
  61. package/public/spice-console-minify/lib/jquery-visibility.min.js +1 -1
  62. package/public/spice-console-minify/lib/lodash.4.0.0.min.js +5 -5
@@ -1,230 +1,230 @@
1
- <template>
2
- <div class="partition">
3
- <div class="clr-form-control clr-row">
4
- <label class="clr-col-md-4 clr-control-label">
5
- {{ localization.partitionConfiguration }}
6
- </label>
7
-
8
- <div class="clr-col-md-8 p-0">
9
- <div class="clr-select-wrapper">
10
- <select
11
- id="host-select"
12
- v-model="selectedHost"
13
- class="dropdown-toggle"
14
- @change="onSelectHost"
15
- >
16
- <option
17
- v-for="(item, index) in partitionConfiguration"
18
- :key="index"
19
- :value="item.value"
20
- :disabled="item.disabled"
21
- >
22
- {{ item.text }}
23
- </option>
24
- </select>
25
- </div>
26
- </div>
27
- </div>
28
-
29
- <div class="datastore-size-container clr-flex-row clr-flex">
30
- <label class="clr-col-md-4 clr-control-label" for="datastore-size">
31
- {{ localization.datastoreSize }}
32
- </label>
33
-
34
- <div class="datastore-size-slider-container clr-col-md-8 p-0">
35
- <div class="clr-col-xl-6 clr-col-md-8 p-0">
36
- <div
37
- class="partition__range-input clr-control-container clr-col-md-10 clr-col-12"
38
- >
39
- <div class="clr-range-wrapper">
40
- <input
41
- id="datastore-size-input-0"
42
- v-model="datastoreSize"
43
- type="range"
44
- min="0"
45
- :max="countDatastoreSizeToGb"
46
- step="0.01"
47
- class="ng-valid clr-range ng-dirty ng-touched"
48
- />
49
- </div>
50
- </div>
51
- </div>
52
-
53
- <input
54
- id="datastore-size-input-1"
55
- v-model="datastoreSize"
56
- type="number"
57
- min="0"
58
- :max="countDatastoreSizeToGb"
59
- step="0.01"
60
- class="show-arrow"
61
- />
62
- <span>{{ localization.gb }}</span>
63
- </div>
64
- </div>
65
-
66
- <template v-if="props.vmfsVersion === 'vmfs-6'">
67
- <div class="clr-form-control clr-row">
68
- <label class="clr-col-md-4 clr-control-label">
69
- {{ localization.blockSize }}
70
- </label>
71
-
72
- <div>
73
- <div class="clr-select-wrapper">
74
- <select
75
- id="datastore-size-select"
76
- v-model="selectedSize"
77
- class="dropdown-toggle"
78
- @change="onSelectHost"
79
- >
80
- <option
81
- v-for="(item, index) in blockSize"
82
- :key="index"
83
- :value="item.value"
84
- :disabled="item.disabled"
85
- >
86
- {{ item.text }}
87
- </option>
88
- </select>
89
- </div>
90
- </div>
91
- </div>
92
-
93
- <div class="clr-form-control clr-row">
94
- <label class="clr-col-md-4 clr-control-label">{{
95
- localization.spaceReclamationGranularity
96
- }}</label>
97
-
98
- <div>
99
- <div class="clr-select-wrapper">
100
- <select
101
- id="granularity-select"
102
- v-model="selectedGranularity"
103
- class="dropdown-toggle"
104
- @change="onSelectHost"
105
- >
106
- <option
107
- v-for="(item, index) in spaceGranularity"
108
- :key="index"
109
- :value="item.value"
110
- :disabled="item.disabled"
111
- >
112
- {{ item.text }}
113
- </option>
114
- </select>
115
- </div>
116
- </div>
117
- </div>
118
-
119
- <div class="clr-form-control clr-row">
120
- <label class="clr-col-md-4 clr-control-label">{{
121
- localization.spaceReclamationPriority
122
- }}</label>
123
-
124
- <div>
125
- <div class="clr-select-wrapper">
126
- <select
127
- id="priority-select"
128
- v-model="selectedPriority"
129
- class="dropdown-toggle"
130
- @change="onSelectHost"
131
- >
132
- <option
133
- v-for="(item, index) in spacePriority"
134
- :key="index"
135
- :value="item.value"
136
- :disabled="item.disabled"
137
- >
138
- {{ item.text }}
139
- </option>
140
- </select>
141
- </div>
142
- </div>
143
- </div>
144
- </template>
145
-
146
- <common-wizards-datastore-add-shared-storm-partition-configuration-size-graphic
147
- :selected-size="+datastoreSize"
148
- :capacity="countDatastoreSizeToGb"
149
- />
150
- </div>
151
- </template>
152
-
153
- <script lang="ts" setup>
154
- import { UI_I_Localization } from '~/models/interfaces'
155
- import { UI_T_VmfsType } from '~/components/common/wizards/datastore/add/models/types'
156
- import { UI_I_SelectHostOptions } from '~/components/common/wizards/datastore/add/sharedStorm/deviceSelection/models/interfaces'
157
- import {
158
- partitionConfigurationFunc,
159
- spacePriorityFunc,
160
- spaceGranularityFunc,
161
- blockSizeFunc,
162
- } from '~/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/config/selectOptions'
163
-
164
- const props = withDefaults(
165
- defineProps<{
166
- vmfsVersion: UI_T_VmfsType
167
- selectedLunDiskSize: number
168
- }>(),
169
- {
170
- selectedLunDiskSize: 0,
171
- }
172
- )
173
- const localization = computed<UI_I_Localization>(() => useLocal())
174
- const { $binary } = useNuxtApp()
175
-
176
- const selectedHost = ref('all-partitions')
177
- const partitionConfiguration = computed<UI_I_SelectHostOptions[]>(() =>
178
- partitionConfigurationFunc(localization.value)
179
- )
180
-
181
- const selectedSize = ref('1')
182
- const blockSize = computed<UI_I_SelectHostOptions[]>(() =>
183
- blockSizeFunc(localization.value)
184
- )
185
-
186
- const selectedGranularity = ref('1')
187
- const spaceGranularity = computed<UI_I_SelectHostOptions[]>(() =>
188
- spaceGranularityFunc(localization.value)
189
- )
190
-
191
- const selectedPriority = ref('low')
192
- const spacePriority = computed<UI_I_SelectHostOptions[]>(() =>
193
- spacePriorityFunc(localization.value)
194
- )
195
-
196
- const countDatastoreSizeToGb = computed(() => {
197
- return $binary.mbToGb(props.selectedLunDiskSize)
198
- })
199
-
200
- const datastoreSize = ref<number | null>(null)
201
- watch(
202
- () => props.selectedLunDiskSize,
203
- (_val) => {
204
- datastoreSize.value = countDatastoreSizeToGb.value
205
- }
206
- )
207
-
208
- const onSelectHost = (): void => {}
209
- </script>
210
-
211
- <style lang="scss" scoped>
212
- .partition {
213
- .datastore-size-container {
214
- display: flex;
215
- margin-left: -1em;
216
- margin-top: 1.2rem;
217
- margin-bottom: 1.2rem;
218
- }
219
- .clr-form-control {
220
- display: flex;
221
- flex-direction: row;
222
- }
223
- &__range-input {
224
- margin-left: -10px;
225
- }
226
- }
227
- .datastore-size-slider-container {
228
- display: flex;
229
- }
230
- </style>
1
+ <template>
2
+ <div class="partition">
3
+ <div class="clr-form-control clr-row">
4
+ <label class="clr-col-md-4 clr-control-label">
5
+ {{ localization.partitionConfiguration }}
6
+ </label>
7
+
8
+ <div class="clr-col-md-8 p-0">
9
+ <div class="clr-select-wrapper">
10
+ <select
11
+ id="host-select"
12
+ v-model="selectedHost"
13
+ class="dropdown-toggle"
14
+ @change="onSelectHost"
15
+ >
16
+ <option
17
+ v-for="(item, index) in partitionConfiguration"
18
+ :key="index"
19
+ :value="item.value"
20
+ :disabled="item.disabled"
21
+ >
22
+ {{ item.text }}
23
+ </option>
24
+ </select>
25
+ </div>
26
+ </div>
27
+ </div>
28
+
29
+ <div class="datastore-size-container clr-flex-row clr-flex">
30
+ <label class="clr-col-md-4 clr-control-label" for="datastore-size">
31
+ {{ localization.datastoreSize }}
32
+ </label>
33
+
34
+ <div class="datastore-size-slider-container clr-col-md-8 p-0">
35
+ <div class="clr-col-xl-6 clr-col-md-8 p-0">
36
+ <div
37
+ class="partition__range-input clr-control-container clr-col-md-10 clr-col-12"
38
+ >
39
+ <div class="clr-range-wrapper">
40
+ <input
41
+ id="datastore-size-input-0"
42
+ v-model="datastoreSize"
43
+ type="range"
44
+ min="0"
45
+ :max="countDatastoreSizeToGb"
46
+ step="0.01"
47
+ class="ng-valid clr-range ng-dirty ng-touched"
48
+ />
49
+ </div>
50
+ </div>
51
+ </div>
52
+
53
+ <input
54
+ id="datastore-size-input-1"
55
+ v-model="datastoreSize"
56
+ type="number"
57
+ min="0"
58
+ :max="countDatastoreSizeToGb"
59
+ step="0.01"
60
+ class="show-arrow"
61
+ />
62
+ <span>{{ localization.gb }}</span>
63
+ </div>
64
+ </div>
65
+
66
+ <template v-if="props.vmfsVersion === 'vmfs-6'">
67
+ <div class="clr-form-control clr-row">
68
+ <label class="clr-col-md-4 clr-control-label">
69
+ {{ localization.blockSize }}
70
+ </label>
71
+
72
+ <div>
73
+ <div class="clr-select-wrapper">
74
+ <select
75
+ id="datastore-size-select"
76
+ v-model="selectedSize"
77
+ class="dropdown-toggle"
78
+ @change="onSelectHost"
79
+ >
80
+ <option
81
+ v-for="(item, index) in blockSize"
82
+ :key="index"
83
+ :value="item.value"
84
+ :disabled="item.disabled"
85
+ >
86
+ {{ item.text }}
87
+ </option>
88
+ </select>
89
+ </div>
90
+ </div>
91
+ </div>
92
+
93
+ <div class="clr-form-control clr-row">
94
+ <label class="clr-col-md-4 clr-control-label">{{
95
+ localization.spaceReclamationGranularity
96
+ }}</label>
97
+
98
+ <div>
99
+ <div class="clr-select-wrapper">
100
+ <select
101
+ id="granularity-select"
102
+ v-model="selectedGranularity"
103
+ class="dropdown-toggle"
104
+ @change="onSelectHost"
105
+ >
106
+ <option
107
+ v-for="(item, index) in spaceGranularity"
108
+ :key="index"
109
+ :value="item.value"
110
+ :disabled="item.disabled"
111
+ >
112
+ {{ item.text }}
113
+ </option>
114
+ </select>
115
+ </div>
116
+ </div>
117
+ </div>
118
+
119
+ <div class="clr-form-control clr-row">
120
+ <label class="clr-col-md-4 clr-control-label">{{
121
+ localization.spaceReclamationPriority
122
+ }}</label>
123
+
124
+ <div>
125
+ <div class="clr-select-wrapper">
126
+ <select
127
+ id="priority-select"
128
+ v-model="selectedPriority"
129
+ class="dropdown-toggle"
130
+ @change="onSelectHost"
131
+ >
132
+ <option
133
+ v-for="(item, index) in spacePriority"
134
+ :key="index"
135
+ :value="item.value"
136
+ :disabled="item.disabled"
137
+ >
138
+ {{ item.text }}
139
+ </option>
140
+ </select>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ </template>
145
+
146
+ <common-wizards-datastore-add-shared-storm-partition-configuration-size-graphic
147
+ :selected-size="+datastoreSize"
148
+ :capacity="countDatastoreSizeToGb"
149
+ />
150
+ </div>
151
+ </template>
152
+
153
+ <script lang="ts" setup>
154
+ import { UI_I_Localization } from '~/models/interfaces'
155
+ import { UI_T_VmfsType } from '~/components/common/wizards/datastore/add/models/types'
156
+ import { UI_I_SelectHostOptions } from '~/components/common/wizards/datastore/add/sharedStorm/deviceSelection/models/interfaces'
157
+ import {
158
+ partitionConfigurationFunc,
159
+ spacePriorityFunc,
160
+ spaceGranularityFunc,
161
+ blockSizeFunc,
162
+ } from '~/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/config/selectOptions'
163
+
164
+ const props = withDefaults(
165
+ defineProps<{
166
+ vmfsVersion: UI_T_VmfsType
167
+ selectedLunDiskSize: number
168
+ }>(),
169
+ {
170
+ selectedLunDiskSize: 0,
171
+ }
172
+ )
173
+ const localization = computed<UI_I_Localization>(() => useLocal())
174
+ const { $binary } = useNuxtApp()
175
+
176
+ const selectedHost = ref('all-partitions')
177
+ const partitionConfiguration = computed<UI_I_SelectHostOptions[]>(() =>
178
+ partitionConfigurationFunc(localization.value)
179
+ )
180
+
181
+ const selectedSize = ref('1')
182
+ const blockSize = computed<UI_I_SelectHostOptions[]>(() =>
183
+ blockSizeFunc(localization.value)
184
+ )
185
+
186
+ const selectedGranularity = ref('1')
187
+ const spaceGranularity = computed<UI_I_SelectHostOptions[]>(() =>
188
+ spaceGranularityFunc(localization.value)
189
+ )
190
+
191
+ const selectedPriority = ref('low')
192
+ const spacePriority = computed<UI_I_SelectHostOptions[]>(() =>
193
+ spacePriorityFunc(localization.value)
194
+ )
195
+
196
+ const countDatastoreSizeToGb = computed(() => {
197
+ return $binary.mbToGb(props.selectedLunDiskSize)
198
+ })
199
+
200
+ const datastoreSize = ref<number | null>(null)
201
+ watch(
202
+ () => props.selectedLunDiskSize,
203
+ (_val) => {
204
+ datastoreSize.value = countDatastoreSizeToGb.value
205
+ }
206
+ )
207
+
208
+ const onSelectHost = (): void => {}
209
+ </script>
210
+
211
+ <style lang="scss" scoped>
212
+ .partition {
213
+ .datastore-size-container {
214
+ display: flex;
215
+ margin-left: -1em;
216
+ margin-top: 1.2rem;
217
+ margin-bottom: 1.2rem;
218
+ }
219
+ .clr-form-control {
220
+ display: flex;
221
+ flex-direction: row;
222
+ }
223
+ &__range-input {
224
+ margin-left: -10px;
225
+ }
226
+ }
227
+ .datastore-size-slider-container {
228
+ display: flex;
229
+ }
230
+ </style>
@@ -1,29 +1,15 @@
1
1
  <template>
2
2
  <section class="nfs-version">
3
- <div
4
- v-for="item in vmfsVersion"
5
- :key="item.value"
6
- class="nfs-version__inner radio"
7
- >
8
- <input
9
- :id="item.label"
10
- v-model="selectedVersion"
11
- type="radio"
12
- :value="item.value"
13
- :disabled="item.disabled"
14
- />
15
- <label :for="item.label">
16
- {{ item.label }}
17
- </label>
18
-
19
- <div class="nfs-version__desc">{{ item.desc }}</div>
20
- </div>
3
+ <common-select-radio-group
4
+ v-model="selectedVersion"
5
+ :options="vmfsVersion"
6
+ />
21
7
  </section>
22
8
  </template>
23
9
 
24
10
  <script lang="ts" setup>
25
11
  import { UI_I_Localization } from '~/models/interfaces'
26
- import { UI_I_DatastoreTypeOption } from '~/components/common/select/radio/models/interfaces'
12
+ import { UI_I_RadioOption } from '~/components/common/select/radio/models/interfaces'
27
13
  import { UI_T_VmfsType } from '~/components/common/wizards/datastore/add/models/types'
28
14
  import { vmfsVersionFunc } from '~/components/common/wizards/datastore/add/sharedStorm/version/config/versionOptions'
29
15
 
@@ -35,9 +21,7 @@ const emits = defineEmits<{
35
21
  (event: 'update:version', value: UI_T_VmfsType): void
36
22
  }>()
37
23
 
38
- const vmfsVersion = readonly<UI_I_DatastoreTypeOption[]>(
39
- vmfsVersionFunc(localization.value)
40
- )
24
+ const vmfsVersion = ref<UI_I_RadioOption[]>(vmfsVersionFunc(localization.value))
41
25
 
42
26
  const selectedVersion = computed<UI_T_VmfsType>({
43
27
  get() {
@@ -51,20 +35,5 @@ const selectedVersion = computed<UI_T_VmfsType>({
51
35
 
52
36
  <style lang="scss" scoped>
53
37
  .nfs-version {
54
- &__desc {
55
- margin-left: 22px;
56
- }
57
- }
58
- .radio {
59
- margin-bottom: 5px;
60
- &:nth-child(2) {
61
- margin-top: 10px;
62
- }
63
- }
64
- .radio {
65
- }
66
- input[type='radio']:focus:checked + label::before,
67
- input[type='radio']:focus + label::before {
68
- box-shadow: inset 0 0 0 0.25rem #0094d2;
69
38
  }
70
39
  </style>
@@ -1,19 +1,21 @@
1
1
  import { UI_I_Localization } from '~/models/interfaces'
2
- import { UI_I_DatastoreTypeOption } from '~/components/common/select/radio/models/interfaces'
2
+ import { UI_I_RadioOption } from '~/components/common/select/radio/models/interfaces'
3
3
 
4
- export const vmfsVersionFunc = (localization: UI_I_Localization): UI_I_DatastoreTypeOption[] => {
4
+ export const vmfsVersionFunc = (
5
+ localization: UI_I_Localization
6
+ ): UI_I_RadioOption[] => {
5
7
  return [
6
8
  {
7
9
  label: 'VMFS 6',
8
10
  value: 'vmfs-6',
9
11
  disabled: false,
10
- desc: localization.vmfsVersionDesc1,
12
+ description: localization.vmfsVersionDesc1,
11
13
  },
12
14
  {
13
15
  label: 'VMFS 5',
14
16
  value: 'vmfs-5',
15
17
  disabled: false,
16
- desc: localization.vmfsVersionDesc2,
18
+ description: localization.vmfsVersionDesc2,
17
19
  },
18
20
  ]
19
21
  }
@@ -22,54 +22,16 @@
22
22
  </div>
23
23
  </div>
24
24
 
25
- <div
26
- v-for="item in datastoreTypes"
27
- :key="item.value"
28
- class="datastore-types__inner radio"
29
- :class="item.disabled && 'disabled'"
30
- >
31
- <div class="header-row">
32
- <input
33
- :id="item.label"
34
- v-model="selectedType"
35
- type="radio"
36
- :value="item.value"
37
- :disabled="item.disabled"
38
- />
39
- <label :for="item.label">
40
- {{ item.label }}
41
- </label>
42
- <div
43
- :id="`${item.value}-select-help-icon`"
44
- class="signpost-container relative"
45
- >
46
- <atoms-the-icon
47
- fill="#0072a3"
48
- width="24px"
49
- height="24px"
50
- name="info-circle"
51
- @click="item.isShowHelp = !item.isShowHelp"
52
- />
53
- <atoms-tooltip-signpost
54
- v-if="item.isShowHelp"
55
- :elem-id="`${item.value}-select-help-icon`"
56
- @hide="item.isShowHelp = false"
57
- >
58
- <div class="help-desc-container">
59
- <p class="help-desc">{{ item.helpDesc }}</p>
60
- </div>
61
- </atoms-tooltip-signpost>
62
- </div>
63
- </div>
64
-
65
- <div class="datastore-types__desc">{{ item.desc }}</div>
66
- </div>
25
+ <common-select-radio-group
26
+ v-model="selectedType"
27
+ :options="datastoreTypes"
28
+ />
67
29
  </section>
68
30
  </template>
69
31
 
70
32
  <script lang="ts" setup>
71
33
  import { UI_I_Localization } from '~/models/interfaces'
72
- import { UI_I_DatastoreTypeOption } from '~/components/common/select/radio/models/interfaces'
34
+ import { UI_I_RadioOption } from '~/components/common/select/radio/models/interfaces'
73
35
  import { datastoreTypesFunc } from '~/components/common/wizards/datastore/add/types/config/typeOptions'
74
36
 
75
37
  const props = defineProps<{
@@ -80,7 +42,7 @@ const emits = defineEmits<{
80
42
  }>()
81
43
  const localization = computed<UI_I_Localization>(() => useLocal())
82
44
 
83
- const datastoreTypes = ref<UI_I_DatastoreTypeOption[]>(
45
+ const datastoreTypes = ref<UI_I_RadioOption[]>(
84
46
  datastoreTypesFunc(localization.value)
85
47
  )
86
48
 
@@ -98,12 +60,6 @@ const isShowTypeHelp = ref<boolean>(false)
98
60
 
99
61
  <style lang="scss" scoped>
100
62
  .datastore-types {
101
- &__subtitle {
102
- }
103
- &__desc {
104
- margin-left: 22px;
105
- }
106
-
107
63
  .signpost-container {
108
64
  display: flex;
109
65
  cursor: pointer;
@@ -118,20 +74,4 @@ const isShowTypeHelp = ref<boolean>(false)
118
74
  gap: 10px;
119
75
  }
120
76
  }
121
-
122
- .radio {
123
- margin-bottom: 5px;
124
- &:nth-child(2) {
125
- margin-top: 10px;
126
- }
127
- &.disabled {
128
- opacity: 0.7;
129
- }
130
- }
131
- .radio {
132
- }
133
- input[type='radio']:focus:checked + label::before,
134
- input[type='radio']:focus + label::before {
135
- box-shadow: inset 0 0 0 0.25rem #0094d2;
136
- }
137
77
  </style>