bfg-common 1.5.392 → 1.5.393

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.
@@ -1,305 +1,304 @@
1
- <template>
2
- <ui-wizard
3
- show
4
- :steps="props.wizard.steps"
5
- :selected-scheme="props.selectedScheme"
6
- :is-loading="props.wizard.wizardLoader.status"
7
- :title="props.title"
8
- :texts="texts"
9
- test-id="add-datastore-wizard"
10
- @change-steps="onChangeSteps"
11
- @hide="onHideModal"
12
- @submit="onCreateDatastore"
13
- >
14
- <template #content="{ selectedStep }">
15
- <ui-wizard-block
16
- v-if="selectedStep.id === dynamicSteps.type"
17
- :sub-title-height="height0"
18
- >
19
- <template #subTitle>
20
- <div ref="subTitleBlock0">
21
- <div class="subtitle-block flex-row items-start">
22
- <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
23
-
24
- <common-tooltip-help
25
- :title="localization.common.information"
26
- :help-text="localization.common.datastoreTypeHelpDesc"
27
- :is-show-help="isShowFirstStepHelp"
28
- test-id="datastore-type-subtitle-tooltip"
29
- help-id="datastore-type-subtitle-tooltip-icon"
30
- dropdown-width="320px"
31
- dropdown-left
32
- class="ml-2"
33
- @update-is-show="onUpdateIsShowFirstStepHelp"
34
- />
35
- </div>
36
- </div>
37
- </template>
38
- <template #content>
39
- <common-backup-storage-actions-add-steps-type-mode
40
- v-if="selectedStep.id === dynamicSteps.type"
41
- v-model="formModelLocal.type_code"
42
- :updater-hide-all-help-popups="updaterHideAllHelpPopups"
43
- @hide-all-help-popups="isShowFirstStepHelp = false"
44
- />
45
- </template>
46
- </ui-wizard-block>
47
-
48
- <ui-wizard-block
49
- v-if="selectedStep.id === dynamicSteps.name"
50
- :sub-title-height="height1"
51
- >
52
- <template #subTitle>
53
- <div ref="subTitleBlock1">
54
- <div class="subtitle-block">
55
- <ui-alert
56
- v-if="props.alertMessages[dynamicSteps.name].length"
57
- :messages="props.alertMessages[dynamicSteps.name]"
58
- test-id="add-host-connection-settings-error-alert"
59
- type="error"
60
- size="md"
61
- class="subtitle-block__alert"
62
- />
63
-
64
- <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
65
- </div>
66
- </div>
67
- </template>
68
- <template #content>
69
- <common-backup-storage-actions-add-steps-name
70
- v-if="selectedStep.id === dynamicSteps.name"
71
- v-model="formModelLocal"
72
- :project="props.project"
73
- :alert-messages="props.alertMessages[dynamicSteps.name]"
74
- :messages-fields="selectedStep.fields"
75
- :is-disabled-name-field="wizard.wizardLoader.status"
76
- />
77
- </template>
78
- </ui-wizard-block>
79
-
80
- <ui-wizard-block
81
- v-if="selectedStep.id === dynamicSteps.nameAndConfigure"
82
- :sub-title-height="height2"
83
- >
84
- <template #subTitle>
85
- <div ref="subTitleBlock2">
86
- <div class="subtitle-block">
87
- <ui-alert
88
- v-if="props.alertMessages[dynamicSteps.nameAndConfigure].length"
89
- :messages="props.alertMessages[dynamicSteps.nameAndConfigure]"
90
- test-id="add-host-connection-settings-error-alert"
91
- type="error"
92
- size="md"
93
- class="subtitle-block__alert"
94
- />
95
-
96
- <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
97
- </div>
98
- </div>
99
- </template>
100
- <template #content>
101
- <common-backup-storage-actions-add-steps-name-and-configure
102
- v-if="selectedStep.id === dynamicSteps.nameAndConfigure"
103
- v-model="formModelLocal"
104
- :project="props.project"
105
- :alert-messages="props.alertMessages"
106
- :messages-fields="selectedStep.fields"
107
- :is-disabled-name-field="wizard.wizardLoader.status"
108
- />
109
- </template>
110
- </ui-wizard-block>
111
-
112
- <ui-wizard-block
113
- v-if="selectedStep.id === dynamicSteps.storage"
114
- :sub-title-height="height3"
115
- >
116
- <template #subTitle>
117
- <div ref="subTitleBlock3">
118
- <div class="subtitle-block">
119
- <ui-alert
120
- v-if="props.alertMessages[dynamicSteps.storage].length"
121
- :messages="props.alertMessages[dynamicSteps.storage]"
122
- test-id="add-host-accessibility-error-alert"
123
- type="error"
124
- size="md"
125
- class="subtitle-block__alert"
126
- />
127
-
128
- <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
129
- </div>
130
- </div>
131
- </template>
132
- <template #content>
133
- <div class="pb-4">
134
- <common-vm-actions-common-select-storage
135
- :datastore="props.datastore"
136
- :is-datastore-loading="props.isDatastoreLoading"
137
- :get-datastore-table-func="props.getDatastoreTableFunc"
138
- hide-compatibility
139
- hide-alert
140
- class="storage-datatable h-full"
141
- @change-storage="onChangeStorage"
142
- />
143
- </div>
144
- </template>
145
- </ui-wizard-block>
146
-
147
- <ui-wizard-block
148
- v-if="selectedStep.id === dynamicSteps.hostAccessibility"
149
- :sub-title-height="height4"
150
- >
151
- <template #subTitle>
152
- <div ref="subTitleBlock4">
153
- <div class="subtitle-block">
154
- <ui-alert
155
- v-if="
156
- props.alertMessages[dynamicSteps.hostAccessibility].length
157
- "
158
- :messages="props.alertMessages[dynamicSteps.hostAccessibility]"
159
- test-id="add-host-accessibility-error-alert"
160
- type="error"
161
- size="md"
162
- class="subtitle-block__alert"
163
- />
164
-
165
- <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
166
- </div>
167
- </div>
168
- </template>
169
- <template #content>
170
- <common-backup-storage-actions-add-steps-host-accessibility
171
- v-if="selectedStep.id === dynamicSteps.hostAccessibility"
172
- v-model="formModelLocal.hosts"
173
- :alert-messages="
174
- props.alertMessages[dynamicSteps.hostAccessibility]
175
- "
176
- :hosts="props.hosts"
177
- />
178
- </template>
179
- </ui-wizard-block>
180
-
181
- <ui-wizard-block
182
- v-if="selectedStep.id === dynamicSteps.readyComplete"
183
- :sub-title-height="height5"
184
- >
185
- <template #subTitle>
186
- <div ref="subTitleBlock5">
187
- <div class="subtitle-block">
188
- <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
189
- </div>
190
- </div>
191
- </template>
192
- <template #content>
193
- <common-backup-storage-actions-add-steps-ready-complete
194
- v-if="selectedStep.id === dynamicSteps.readyComplete"
195
- :form="formModelLocal"
196
- :project="props.project"
197
- :hosts="props.hosts"
198
- :datastore="props.datastore"
199
- />
200
- </template>
201
- </ui-wizard-block>
202
- </template>
203
- </ui-wizard>
204
- </template>
205
-
206
- <script setup lang="ts">
207
- import { useElementSize } from '@vueuse/core'
208
- import type {
209
- UI_I_WizardStep,
210
- UI_I_WizardTexts,
211
- } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
212
- import type Wizard from '~/node_modules/bfg-uikit/components/ui/wizard/lib/utils/utils'
213
- import type { UI_I_Localization } from '~/lib/models/interfaces'
214
- import type { UI_T_Project } from '~/lib/models/types'
215
- import type { UI_I_TablePayload } from '~/lib/models/table/interfaces'
216
- import type { UI_I_DatastoreTableItem } from '~/lib/models/store/storage/interfaces'
217
- import type { UI_I_CreateDatastoreForm } from '~/components/common/backup/storage/actions/add/lib/models/interfaces'
218
- import { dynamicSteps } from '~/components/common/backup/storage/actions/add/lib/config/steps'
219
-
220
- const formModelLocal = defineModel<UI_I_CreateDatastoreForm>({ required: true })
221
- const props = defineProps<{
222
- project: UI_T_Project
223
- wizard: Wizard
224
- selectedScheme: number[]
225
- alertMessages: string[][]
226
- title: string
227
- datastore: UI_I_DatastoreTableItem[]
228
- isDatastoreLoading: boolean
229
- getDatastoreTableFunc: (payload: UI_I_TablePayload) => Promise<void>
230
- hosts?: any[]
231
- }>()
232
- const emits = defineEmits<{
233
- (event: 'change-steps', value: UI_I_WizardStep[]): void
234
- (event: 'change-storage', value: UI_I_WizardStep[]): void
235
- (event: 'hide'): void
236
- (event: 'submit', value: any): void
237
- }>()
238
-
239
- const localization = computed<UI_I_Localization>(() => useLocal())
240
-
241
- const texts = computed<UI_I_WizardTexts>(() => ({
242
- cancel: localization.value.common.cancel,
243
- back: localization.value.common.backCap,
244
- processing: localization.value.common.processing,
245
- next: localization.value.common.next,
246
- finish: localization.value.common.create,
247
- incompleteTitle: localization.value.common.incompleteProcess,
248
- incompleteMessage: localization.value.common.incompleteProcessMessage,
249
- incompleteCancel: localization.value.common.cancel,
250
- incompleteLeave: localization.value.common.leave,
251
- step: localization.value.common.step,
252
- of: localization.value.common.of2,
253
- }))
254
-
255
- const updaterHideAllHelpPopups = ref<number>(0)
256
- const isShowFirstStepHelp = ref<boolean>(false)
257
- const onUpdateIsShowFirstStepHelp = (value: boolean): void => {
258
- updaterHideAllHelpPopups.value++
259
- isShowFirstStepHelp.value = value
260
- }
261
-
262
- const subTitleBlock0 = ref<HTMLElement | null>(null)
263
- const { height: height0 } = useElementSize(subTitleBlock0)
264
-
265
- const subTitleBlock1 = ref<HTMLElement | null>(null)
266
- const { height: height1 } = useElementSize(subTitleBlock1)
267
-
268
- const subTitleBlock2 = ref<HTMLElement | null>(null)
269
- const { height: height2 } = useElementSize(subTitleBlock2)
270
-
271
- const subTitleBlock3 = ref<HTMLElement | null>(null)
272
- const { height: height3 } = useElementSize(subTitleBlock3)
273
-
274
- const subTitleBlock4 = ref<HTMLElement | null>(null)
275
- const { height: height4 } = useElementSize(subTitleBlock4)
276
-
277
- const subTitleBlock5 = ref<HTMLElement | null>(null)
278
- const { height: height5 } = useElementSize(subTitleBlock5)
279
-
280
- const onChangeSteps = async (value: UI_I_WizardStep[]): Promise<void> =>
281
- emits('change-steps', value)
282
- const onChangeStorage = async (value: UI_I_WizardStep[]): Promise<void> =>
283
- emits('change-storage', value)
284
-
285
- const onHideModal = (): void => emits('hide')
286
- const onCreateDatastore = (): void => emits('submit')
287
- </script>
288
-
289
- <style scoped lang="scss">
290
- .subtitle-block {
291
- display: flex;
292
- flex-direction: column;
293
- row-gap: 16px;
294
- border-bottom: 1px solid var(--wizard-line);
295
- padding-bottom: 12px;
296
-
297
- &.flex-row {
298
- flex-direction: row;
299
- }
300
-
301
- :deep(&__alert) {
302
- padding: 10px 12px;
303
- }
304
- }
305
- </style>
1
+ <template>
2
+ <ui-wizard
3
+ show
4
+ :steps="props.wizard.steps"
5
+ :selected-scheme="props.selectedScheme"
6
+ :is-loading="props.wizard.wizardLoader.status"
7
+ :title="props.title"
8
+ :texts="texts"
9
+ test-id="add-datastore-wizard"
10
+ @change-steps="onChangeSteps"
11
+ @hide="onHideModal"
12
+ @submit="onCreateDatastore"
13
+ >
14
+ <template #content="{ selectedStep }">
15
+ <ui-wizard-block
16
+ v-if="selectedStep.id === dynamicSteps.type"
17
+ :sub-title-height="height0"
18
+ >
19
+ <template #subTitle>
20
+ <div ref="subTitleBlock0">
21
+ <div class="subtitle-block flex-row items-start">
22
+ <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
23
+
24
+ <common-tooltip-help
25
+ :title="localization.common.information"
26
+ :help-text="localization.common.datastoreTypeHelpDesc"
27
+ :is-show-help="isShowFirstStepHelp"
28
+ test-id="datastore-type-subtitle-tooltip"
29
+ help-id="datastore-type-subtitle-tooltip-icon"
30
+ dropdown-width="320px"
31
+ dropdown-left
32
+ class="ml-2"
33
+ @update-is-show="onUpdateIsShowFirstStepHelp"
34
+ />
35
+ </div>
36
+ </div>
37
+ </template>
38
+ <template #content>
39
+ <common-backup-storage-actions-add-steps-type-mode
40
+ v-if="selectedStep.id === dynamicSteps.type"
41
+ v-model="formModelLocal.type_code"
42
+ :updater-hide-all-help-popups="updaterHideAllHelpPopups"
43
+ @hide-all-help-popups="isShowFirstStepHelp = false"
44
+ />
45
+ </template>
46
+ </ui-wizard-block>
47
+
48
+ <ui-wizard-block
49
+ v-if="selectedStep.id === dynamicSteps.name"
50
+ :sub-title-height="height1"
51
+ >
52
+ <template #subTitle>
53
+ <div ref="subTitleBlock1">
54
+ <div class="subtitle-block">
55
+ <ui-alert
56
+ v-if="props.alertMessages[dynamicSteps.name].length"
57
+ :messages="props.alertMessages[dynamicSteps.name]"
58
+ test-id="add-host-connection-settings-error-alert"
59
+ type="error"
60
+ size="md"
61
+ class="subtitle-block__alert"
62
+ />
63
+
64
+ <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
65
+ </div>
66
+ </div>
67
+ </template>
68
+ <template #content>
69
+ <common-backup-storage-actions-add-steps-name
70
+ v-if="selectedStep.id === dynamicSteps.name"
71
+ v-model="formModelLocal"
72
+ :project="props.project"
73
+ :alert-messages="props.alertMessages[dynamicSteps.name]"
74
+ :messages-fields="selectedStep.fields"
75
+ :is-disabled-name-field="wizard.wizardLoader.status"
76
+ />
77
+ </template>
78
+ </ui-wizard-block>
79
+
80
+ <ui-wizard-block
81
+ v-if="selectedStep.id === dynamicSteps.nameAndConfigure"
82
+ :sub-title-height="height2"
83
+ >
84
+ <template #subTitle>
85
+ <div ref="subTitleBlock2">
86
+ <div class="subtitle-block">
87
+ <ui-alert
88
+ v-if="props.alertMessages[dynamicSteps.nameAndConfigure].length"
89
+ :messages="props.alertMessages[dynamicSteps.nameAndConfigure]"
90
+ test-id="add-host-connection-settings-error-alert"
91
+ type="error"
92
+ size="md"
93
+ class="subtitle-block__alert"
94
+ />
95
+
96
+ <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
97
+ </div>
98
+ </div>
99
+ </template>
100
+ <template #content>
101
+ <common-backup-storage-actions-add-steps-name-and-configure
102
+ v-if="selectedStep.id === dynamicSteps.nameAndConfigure"
103
+ v-model="formModelLocal"
104
+ :alert-messages="props.alertMessages"
105
+ :messages-fields="selectedStep.fields"
106
+ :is-disabled-name-field="wizard.wizardLoader.status"
107
+ />
108
+ </template>
109
+ </ui-wizard-block>
110
+
111
+ <ui-wizard-block
112
+ v-if="selectedStep.id === dynamicSteps.storage"
113
+ :sub-title-height="height3"
114
+ >
115
+ <template #subTitle>
116
+ <div ref="subTitleBlock3">
117
+ <div class="subtitle-block">
118
+ <ui-alert
119
+ v-if="props.alertMessages[dynamicSteps.storage].length"
120
+ :messages="props.alertMessages[dynamicSteps.storage]"
121
+ test-id="add-host-accessibility-error-alert"
122
+ type="error"
123
+ size="md"
124
+ class="subtitle-block__alert"
125
+ />
126
+
127
+ <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
128
+ </div>
129
+ </div>
130
+ </template>
131
+ <template #content>
132
+ <div class="pb-4">
133
+ <common-vm-actions-common-select-storage
134
+ :datastore="props.datastore"
135
+ :is-datastore-loading="props.isDatastoreLoading"
136
+ :get-datastore-table-func="props.getDatastoreTableFunc"
137
+ hide-compatibility
138
+ hide-alert
139
+ class="storage-datatable h-full"
140
+ @change-storage="onChangeStorage"
141
+ />
142
+ </div>
143
+ </template>
144
+ </ui-wizard-block>
145
+
146
+ <ui-wizard-block
147
+ v-if="selectedStep.id === dynamicSteps.hostAccessibility"
148
+ :sub-title-height="height4"
149
+ >
150
+ <template #subTitle>
151
+ <div ref="subTitleBlock4">
152
+ <div class="subtitle-block">
153
+ <ui-alert
154
+ v-if="
155
+ props.alertMessages[dynamicSteps.hostAccessibility].length
156
+ "
157
+ :messages="props.alertMessages[dynamicSteps.hostAccessibility]"
158
+ test-id="add-host-accessibility-error-alert"
159
+ type="error"
160
+ size="md"
161
+ class="subtitle-block__alert"
162
+ />
163
+
164
+ <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
165
+ </div>
166
+ </div>
167
+ </template>
168
+ <template #content>
169
+ <common-backup-storage-actions-add-steps-host-accessibility
170
+ v-if="selectedStep.id === dynamicSteps.hostAccessibility"
171
+ v-model="formModelLocal.hosts"
172
+ :alert-messages="
173
+ props.alertMessages[dynamicSteps.hostAccessibility]
174
+ "
175
+ :hosts="props.hosts"
176
+ />
177
+ </template>
178
+ </ui-wizard-block>
179
+
180
+ <ui-wizard-block
181
+ v-if="selectedStep.id === dynamicSteps.readyComplete"
182
+ :sub-title-height="height5"
183
+ >
184
+ <template #subTitle>
185
+ <div ref="subTitleBlock5">
186
+ <div class="subtitle-block">
187
+ <ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
188
+ </div>
189
+ </div>
190
+ </template>
191
+ <template #content>
192
+ <common-backup-storage-actions-add-steps-ready-complete
193
+ v-if="selectedStep.id === dynamicSteps.readyComplete"
194
+ :form="formModelLocal"
195
+ :project="props.project"
196
+ :hosts="props.hosts"
197
+ :datastore="props.datastore"
198
+ />
199
+ </template>
200
+ </ui-wizard-block>
201
+ </template>
202
+ </ui-wizard>
203
+ </template>
204
+
205
+ <script setup lang="ts">
206
+ import { useElementSize } from '@vueuse/core'
207
+ import type {
208
+ UI_I_WizardStep,
209
+ UI_I_WizardTexts,
210
+ } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
211
+ import type Wizard from '~/node_modules/bfg-uikit/components/ui/wizard/lib/utils/utils'
212
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
213
+ import type { UI_T_Project } from '~/lib/models/types'
214
+ import type { UI_I_TablePayload } from '~/lib/models/table/interfaces'
215
+ import type { UI_I_DatastoreTableItem } from '~/lib/models/store/storage/interfaces'
216
+ import type { UI_I_CreateDatastoreForm } from '~/components/common/backup/storage/actions/add/lib/models/interfaces'
217
+ import { dynamicSteps } from '~/components/common/backup/storage/actions/add/lib/config/steps'
218
+
219
+ const formModelLocal = defineModel<UI_I_CreateDatastoreForm>({ required: true })
220
+ const props = defineProps<{
221
+ project: UI_T_Project
222
+ wizard: Wizard
223
+ selectedScheme: number[]
224
+ alertMessages: string[][]
225
+ title: string
226
+ datastore: UI_I_DatastoreTableItem[]
227
+ isDatastoreLoading: boolean
228
+ getDatastoreTableFunc: (payload: UI_I_TablePayload) => Promise<void>
229
+ hosts?: any[]
230
+ }>()
231
+ const emits = defineEmits<{
232
+ (event: 'change-steps', value: UI_I_WizardStep[]): void
233
+ (event: 'change-storage', value: UI_I_WizardStep[]): void
234
+ (event: 'hide'): void
235
+ (event: 'submit', value: any): void
236
+ }>()
237
+
238
+ const localization = computed<UI_I_Localization>(() => useLocal())
239
+
240
+ const texts = computed<UI_I_WizardTexts>(() => ({
241
+ cancel: localization.value.common.cancel,
242
+ back: localization.value.common.backCap,
243
+ processing: localization.value.common.processing,
244
+ next: localization.value.common.next,
245
+ finish: localization.value.common.create,
246
+ incompleteTitle: localization.value.common.incompleteProcess,
247
+ incompleteMessage: localization.value.common.incompleteProcessMessage,
248
+ incompleteCancel: localization.value.common.cancel,
249
+ incompleteLeave: localization.value.common.leave,
250
+ step: localization.value.common.step,
251
+ of: localization.value.common.of2,
252
+ }))
253
+
254
+ const updaterHideAllHelpPopups = ref<number>(0)
255
+ const isShowFirstStepHelp = ref<boolean>(false)
256
+ const onUpdateIsShowFirstStepHelp = (value: boolean): void => {
257
+ updaterHideAllHelpPopups.value++
258
+ isShowFirstStepHelp.value = value
259
+ }
260
+
261
+ const subTitleBlock0 = ref<HTMLElement | null>(null)
262
+ const { height: height0 } = useElementSize(subTitleBlock0)
263
+
264
+ const subTitleBlock1 = ref<HTMLElement | null>(null)
265
+ const { height: height1 } = useElementSize(subTitleBlock1)
266
+
267
+ const subTitleBlock2 = ref<HTMLElement | null>(null)
268
+ const { height: height2 } = useElementSize(subTitleBlock2)
269
+
270
+ const subTitleBlock3 = ref<HTMLElement | null>(null)
271
+ const { height: height3 } = useElementSize(subTitleBlock3)
272
+
273
+ const subTitleBlock4 = ref<HTMLElement | null>(null)
274
+ const { height: height4 } = useElementSize(subTitleBlock4)
275
+
276
+ const subTitleBlock5 = ref<HTMLElement | null>(null)
277
+ const { height: height5 } = useElementSize(subTitleBlock5)
278
+
279
+ const onChangeSteps = async (value: UI_I_WizardStep[]): Promise<void> =>
280
+ emits('change-steps', value)
281
+ const onChangeStorage = async (value: UI_I_WizardStep[]): Promise<void> =>
282
+ emits('change-storage', value)
283
+
284
+ const onHideModal = (): void => emits('hide')
285
+ const onCreateDatastore = (): void => emits('submit')
286
+ </script>
287
+
288
+ <style scoped lang="scss">
289
+ .subtitle-block {
290
+ display: flex;
291
+ flex-direction: column;
292
+ row-gap: 16px;
293
+ border-bottom: 1px solid var(--wizard-line);
294
+ padding-bottom: 12px;
295
+
296
+ &.flex-row {
297
+ flex-direction: row;
298
+ }
299
+
300
+ :deep(&__alert) {
301
+ padding: 10px 12px;
302
+ }
303
+ }
304
+ </style>
@@ -29,7 +29,6 @@
29
29
  <common-backup-storage-actions-add-steps-name-and-configure
30
30
  v-if="selectedStep.id === dynamicSteps.nameAndConfigure"
31
31
  v-model="formModelLocal"
32
- :project="props.project"
33
32
  :messages-fields="selectedStep.fields"
34
33
  :alert-messages="props.alertMessages[dynamicSteps.nameAndConfigure]"
35
34
  />