bfg-common 1.3.512 → 1.3.514
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.
|
@@ -17,7 +17,7 @@ export default class Wizard {
|
|
|
17
17
|
private _selectedSchemeId: Ref<number>
|
|
18
18
|
private _wizardLoader: Ref<UI_I_Loader>
|
|
19
19
|
private _waitingStepId: Ref<number>
|
|
20
|
-
|
|
20
|
+
isDisabledNextButton: Ref<boolean>
|
|
21
21
|
selectedScheme: ComputedRef<number[]>
|
|
22
22
|
alertMessages: ComputedRef<string[][]>
|
|
23
23
|
stepsInSelectedScheme: ComputedRef<UI_I_WizardStep[]>
|
|
@@ -37,6 +37,7 @@ export default class Wizard {
|
|
|
37
37
|
messages: [],
|
|
38
38
|
})
|
|
39
39
|
this._waitingStepId = ref<number>(-1)
|
|
40
|
+
this.isDisabledNextButton = ref<boolean>(false)
|
|
40
41
|
this.selectedScheme = computed<number[]>(
|
|
41
42
|
() => this._stepsScheme.value[this._selectedSchemeId.value]
|
|
42
43
|
)
|
|
@@ -232,12 +233,8 @@ export default class Wizard {
|
|
|
232
233
|
)
|
|
233
234
|
}
|
|
234
235
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
set isDisabledNextButton(newValue: boolean) {
|
|
240
|
-
this._isDisabledNextButton.value = newValue
|
|
236
|
+
setDisabledNextButton(newValue: boolean) {
|
|
237
|
+
this.isDisabledNextButton.value = newValue
|
|
241
238
|
}
|
|
242
239
|
|
|
243
240
|
selectedStepData(step: UI_I_WizardStepNavigation): UI_I_WizardStep[] {
|