bfg-common 1.3.413 → 1.3.415
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.
|
@@ -2,12 +2,9 @@
|
|
|
2
2
|
<div class="new-datastore">
|
|
3
3
|
<atoms-wizard
|
|
4
4
|
show
|
|
5
|
-
:
|
|
5
|
+
:wizard="wizard"
|
|
6
6
|
:selected-scheme="selectedScheme"
|
|
7
|
-
:is-loading="wizard.wizardLoader.status"
|
|
8
|
-
:loader-messages="wizard.wizardLoader.messages"
|
|
9
7
|
:title="localization.newDatastore"
|
|
10
|
-
:was-completed="wasCompleted"
|
|
11
8
|
:localization="localization"
|
|
12
9
|
class="add-datastore"
|
|
13
10
|
test-id="add-datastore-wizard"
|
|
@@ -80,7 +77,7 @@ import Wizard from '~/components/atoms/wizard/lib/utils/utils'
|
|
|
80
77
|
import {
|
|
81
78
|
stepsFunc,
|
|
82
79
|
stepsSchemeInitial,
|
|
83
|
-
} from '~/components/common/wizards/datastoreNew/add/lib/config/
|
|
80
|
+
} from '~/components/common/wizards/datastoreNew/add/lib/config/steps'
|
|
84
81
|
|
|
85
82
|
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
86
83
|
import { UI_T_Project } from '~/lib/models/types'
|
|
@@ -88,7 +85,7 @@ import { UI_T_Project } from '~/lib/models/types'
|
|
|
88
85
|
import {
|
|
89
86
|
UI_T_DatastoreType,
|
|
90
87
|
UI_T_NfsType,
|
|
91
|
-
UI_T_WizardDatastoreMode,
|
|
88
|
+
// UI_T_WizardDatastoreMode,
|
|
92
89
|
} from '~/components/common/wizards/datastore/add/lib/models/types'
|
|
93
90
|
import { UI_I_CreateDatastoreForm } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
|
94
91
|
import {
|
|
@@ -124,7 +121,6 @@ const wizard: Wizard = new Wizard(
|
|
|
124
121
|
stepsSchemeInitial
|
|
125
122
|
)
|
|
126
123
|
|
|
127
|
-
const wasCompleted = computed<boolean>(() => wizard.wasCompleted())
|
|
128
124
|
const selectedScheme = computed<number[]>(() => wizard.selectedScheme.value)
|
|
129
125
|
const alertMessages = computed<string[][]>(() => wizard.alertMessages.value)
|
|
130
126
|
|