project-booster-vue 10.22.3 → 10.22.5
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.
- package/package.json +1 -1
- package/src/components/rework/exit-options/MPbExitOptions.vue +2 -1
- package/src/components/rework/question/city-search/MPbCitySearch.vue +2 -1
- package/src/components/rework/question/configurations-import/MPbConfigurationsImport.vue +2 -1
- package/src/components/rework/question/dimensions-input/MPbDimensionsInput.vue +2 -1
- package/src/components/rework/question/incremental-amount-input/MPbIncrementalAmountInput.vue +3 -2
- package/src/components/rework/question/list-select/MPbListSelect.vue +2 -1
- package/src/components/rework/question/space-input/MPbSpaceInput.vue +2 -1
- package/src/components/rework/question/upload-document/MPbUploadDocument.vue +3 -2
package/package.json
CHANGED
|
@@ -84,12 +84,13 @@
|
|
|
84
84
|
</div>
|
|
85
85
|
|
|
86
86
|
<m-pb-navigation
|
|
87
|
+
v-if="payload?.viewModel?.nextStep"
|
|
87
88
|
:payload="payload"
|
|
88
89
|
:nextButtonAction="payload.viewModel.nextStep"
|
|
89
90
|
:step-number="stepNumber"
|
|
90
91
|
:next-step-type="EventTypeEnum.BUTTON"
|
|
91
|
-
v-if="payload?.viewModel?.nextStep"
|
|
92
92
|
:trackingStatus="trackingStatus"
|
|
93
|
+
:runtime-options="runtimeOptions"
|
|
93
94
|
@go-back="$emit('go-back')"
|
|
94
95
|
@next-step="goToNavigation(payload.viewModel.nextStep)"
|
|
95
96
|
/>
|
|
@@ -74,9 +74,10 @@
|
|
|
74
74
|
:nextButtonAction="payload.viewModel.nextStep"
|
|
75
75
|
:disabledNextButton="!selectedCity"
|
|
76
76
|
:trackingStatus="trackingStatus"
|
|
77
|
+
:step-number="stepNumber"
|
|
78
|
+
:runtime-options="runtimeOptions"
|
|
77
79
|
@go-back="$emit('go-back')"
|
|
78
80
|
@next-step="nextStep"
|
|
79
|
-
:step-number="stepNumber"
|
|
80
81
|
/>
|
|
81
82
|
</div>
|
|
82
83
|
</form>
|
|
@@ -71,9 +71,10 @@
|
|
|
71
71
|
:answers="answers"
|
|
72
72
|
:payload="payload"
|
|
73
73
|
:trackingStatus="trackingStatus"
|
|
74
|
+
:step-number="stepNumber"
|
|
75
|
+
:runtime-options="runtimeOptions"
|
|
74
76
|
@go-back="$emit('go-back')"
|
|
75
77
|
@next-step="callAction(payload?.viewModel?.nextStep)"
|
|
76
|
-
:step-number="stepNumber"
|
|
77
78
|
/>
|
|
78
79
|
</m-container>
|
|
79
80
|
</div>
|
|
@@ -53,9 +53,10 @@
|
|
|
53
53
|
:nextButtonAction="payload.viewModel.nextStep"
|
|
54
54
|
:disabledNextButton="width === 'undefined' || length === 'undefined'"
|
|
55
55
|
:trackingStatus="trackingStatus"
|
|
56
|
+
:step-number="stepNumber"
|
|
57
|
+
:runtime-options="runtimeOptions"
|
|
56
58
|
@go-back="$emit('go-back')"
|
|
57
59
|
@next-step="handleFormSubmit"
|
|
58
|
-
:step-number="stepNumber"
|
|
59
60
|
/>
|
|
60
61
|
</div>
|
|
61
62
|
</form>
|
package/src/components/rework/question/incremental-amount-input/MPbIncrementalAmountInput.vue
CHANGED
|
@@ -22,10 +22,11 @@
|
|
|
22
22
|
<m-pb-navigation
|
|
23
23
|
:payload="payload"
|
|
24
24
|
:nextButtonAction="payload.viewModel.nextStep"
|
|
25
|
+
:step-number="stepNumber"
|
|
26
|
+
:answers="answers"
|
|
27
|
+
:runtime-options="runtimeOptions"
|
|
25
28
|
@go-back="$emit('go-back')"
|
|
26
29
|
@next-step="nextStep"
|
|
27
|
-
:answers="answers"
|
|
28
|
-
:step-number="stepNumber"
|
|
29
30
|
/>
|
|
30
31
|
</form>
|
|
31
32
|
</div>
|
|
@@ -32,9 +32,10 @@
|
|
|
32
32
|
:nextButtonAction="payload.viewModel.nextStep"
|
|
33
33
|
:disabledNextButton="!hasSelectedAnswers"
|
|
34
34
|
:trackingStatus="trackingStatus"
|
|
35
|
+
:step-number="stepNumber"
|
|
36
|
+
:runtime-options="runtimeOptions"
|
|
35
37
|
@go-back="$emit('go-back')"
|
|
36
38
|
@next-step="submitAnswers"
|
|
37
|
-
:step-number="stepNumber"
|
|
38
39
|
/>
|
|
39
40
|
</div>
|
|
40
41
|
</div>
|
|
@@ -66,9 +66,10 @@
|
|
|
66
66
|
:stepLocation="stepLocation"
|
|
67
67
|
:nextButtonAction="payload.viewModel.nextStep"
|
|
68
68
|
:trackingStatus="true"
|
|
69
|
+
:step-number="stepNumber"
|
|
70
|
+
:runtime-options="runtimeOptions"
|
|
69
71
|
@go-back="$emit('go-back')"
|
|
70
72
|
@next-step="nextStep"
|
|
71
|
-
:step-number="stepNumber"
|
|
72
73
|
/>
|
|
73
74
|
</div>
|
|
74
75
|
</form>
|
|
@@ -89,9 +89,10 @@
|
|
|
89
89
|
:answers="answers"
|
|
90
90
|
:stepLocation="stepLocation"
|
|
91
91
|
:trackingStatus="true"
|
|
92
|
-
@go-back="$emit('go-back')"
|
|
93
|
-
@next-step="validMultiSelect(payload?.multiSelect?.actions?.VALIDATE)"
|
|
94
92
|
:step-number="stepNumber"
|
|
93
|
+
:runtime-options="runtimeOptions"
|
|
94
|
+
@go-back="$emit('go-back')"
|
|
95
|
+
@next-step="validMultiSelect"
|
|
95
96
|
/>
|
|
96
97
|
|
|
97
98
|
<m-pb-media-upload
|