bfg-common 1.3.513 → 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,7 +37,7 @@ export default class Wizard {
|
|
|
37
37
|
messages: [],
|
|
38
38
|
})
|
|
39
39
|
this._waitingStepId = ref<number>(-1)
|
|
40
|
-
this.
|
|
40
|
+
this.isDisabledNextButton = ref<boolean>(false)
|
|
41
41
|
this.selectedScheme = computed<number[]>(
|
|
42
42
|
() => this._stepsScheme.value[this._selectedSchemeId.value]
|
|
43
43
|
)
|
|
@@ -233,12 +233,8 @@ export default class Wizard {
|
|
|
233
233
|
)
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
set isDisabledNextButton(newValue: boolean) {
|
|
241
|
-
this._isDisabledNextButton.value = newValue
|
|
236
|
+
setDisabledNextButton(newValue: boolean) {
|
|
237
|
+
this.isDisabledNextButton.value = newValue
|
|
242
238
|
}
|
|
243
239
|
|
|
244
240
|
selectedStepData(step: UI_I_WizardStepNavigation): UI_I_WizardStep[] {
|