Merge branch 'release/2025.01.23' into feature/CASH-109
This commit is contained in:
commit
7ad42554d5
6 changed files with 31 additions and 18 deletions
|
|
@ -27,17 +27,17 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body ps-5 pe-5 pb-4 pt-1">
|
<div class="modal-body ps-5 pe-5 pb-4 pt-1">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
<div class="modal-footer">
|
</div>
|
||||||
<modalButtonMain
|
<div class="modal-footer">
|
||||||
isPrimary
|
<modalButtonMain
|
||||||
class="w-100"
|
isPrimary
|
||||||
:id="modalId + '-modalbtn'"
|
class="w-100"
|
||||||
ref="modalButtonMain"
|
:id="modalId + '-modalbtn'"
|
||||||
loaderColor="white"
|
ref="modalButtonMain"
|
||||||
:buttonText="footerButtonText"
|
loaderColor="white"
|
||||||
@click-event="validateAndEmit"
|
:buttonText="footerButtonText"
|
||||||
:class="isFooterButtonDisabled && 'form-test-invalid'" />
|
@click-event="validateAndEmit"
|
||||||
</div>
|
:class="isFooterButtonDisabled && 'form-test-invalid'" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -173,7 +173,7 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.modal-footer {
|
.modal-footer {
|
||||||
padding: 1rem 0;
|
padding: 1rem 1.5rem;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,9 @@ export default {
|
||||||
// Call the "next" function to complete the transition to this page.
|
// Call the "next" function to complete the transition to this page.
|
||||||
next(async (vm) => {
|
next(async (vm) => {
|
||||||
vm.setCmsContent(resultMap.cmsContent);
|
vm.setCmsContent(resultMap.cmsContent);
|
||||||
vm.showSaveProgressModal = !(emailFromStore?.length > 0);
|
// turned off Save Your Progress for 1/23/25 release
|
||||||
|
// to restore, uncomment line below
|
||||||
|
// vm.showSaveProgressModal = !(emailFromStore?.length > 0);
|
||||||
if (store.getters.externalParameterState?.isExternalParameter) {
|
if (store.getters.externalParameterState?.isExternalParameter) {
|
||||||
if (store.getters.externalParameterServiceZip.zipCode) {
|
if (store.getters.externalParameterServiceZip.zipCode) {
|
||||||
await baseMixin.methods.dispatchStoreAction(
|
await baseMixin.methods.dispatchStoreAction(
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,9 @@ export default {
|
||||||
// Call the "next" function to complete the transition to this page.
|
// Call the "next" function to complete the transition to this page.
|
||||||
next(async (vm) => {
|
next(async (vm) => {
|
||||||
vm.setCmsContent(resultMap.cmsContent);
|
vm.setCmsContent(resultMap.cmsContent);
|
||||||
vm.showSaveProgressModal = !(emailFromStore?.length > 0);
|
// turned off Save Your Progress for 1/23/25 release
|
||||||
|
// to restore, uncomment line below
|
||||||
|
// vm.showSaveProgressModal = !(emailFromStore?.length > 0);
|
||||||
if (store.getters.externalParameterState?.isExternalParameter) {
|
if (store.getters.externalParameterState?.isExternalParameter) {
|
||||||
if (store.getters.externalParameterServiceZip.zipCode) {
|
if (store.getters.externalParameterServiceZip.zipCode) {
|
||||||
await baseMixin.methods.dispatchStoreAction(
|
await baseMixin.methods.dispatchStoreAction(
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,9 @@ export default {
|
||||||
// Call the "next" function to complete the transition to this page.
|
// Call the "next" function to complete the transition to this page.
|
||||||
next(async (vm) => {
|
next(async (vm) => {
|
||||||
vm.setCmsContent(resultMap.cmsContent);
|
vm.setCmsContent(resultMap.cmsContent);
|
||||||
vm.showSaveProgressModal = !(emailFromStore?.length > 0);
|
// turned off Save Your Progress for 1/23/25 release
|
||||||
|
// to restore, uncomment line below
|
||||||
|
// vm.showSaveProgressModal = !(emailFromStore?.length > 0);
|
||||||
if (store.getters.externalParameterState?.isExternalParameter) {
|
if (store.getters.externalParameterState?.isExternalParameter) {
|
||||||
if (store.getters.externalParameterServiceZip.zipCode) {
|
if (store.getters.externalParameterServiceZip.zipCode) {
|
||||||
const serviceState = store.getters.order.serviceLocation.state;
|
const serviceState = store.getters.order.serviceLocation.state;
|
||||||
|
|
|
||||||
|
|
@ -293,8 +293,12 @@ export default {
|
||||||
// Call the "next" function to complete the transition to this page.
|
// Call the "next" function to complete the transition to this page.
|
||||||
next(async (vm) => {
|
next(async (vm) => {
|
||||||
vm.setCmsContent(resultMap.cmsContent);
|
vm.setCmsContent(resultMap.cmsContent);
|
||||||
vm.showSaveProgressPopup = showSaveProgressPopup;
|
|
||||||
vm.showSaveProgressModal = showSaveProgressModal;
|
// turned off Save Your Progress for 1/23/25 release
|
||||||
|
// to restore, uncomment the 2 lines below
|
||||||
|
// vm.showSaveProgressPopup = showSaveProgressPopup;
|
||||||
|
// vm.showSaveProgressModal = showSaveProgressModal;
|
||||||
|
|
||||||
vm.addableVaps = addableVaps;
|
vm.addableVaps = addableVaps;
|
||||||
vm.lineItems = lineItems;
|
vm.lineItems = lineItems;
|
||||||
vm.availableLineItems = pricingResults;
|
vm.availableLineItems = pricingResults;
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,10 @@ export default {
|
||||||
// Call the "next" function to complete the transition to this page.
|
// Call the "next" function to complete the transition to this page.
|
||||||
next((vm) => {
|
next((vm) => {
|
||||||
vm.setCmsContent(resultMap.cmsContent);
|
vm.setCmsContent(resultMap.cmsContent);
|
||||||
vm.showSaveProgressModal = !(emailFromStore?.length > 0);
|
// turned off Save Your Progress for 1/23/25 release
|
||||||
|
// to restore, uncomment line below
|
||||||
|
// vm.showSaveProgressModal = !(emailFromStore?.length > 0);
|
||||||
|
|
||||||
// Glass Part Question dynamic component
|
// Glass Part Question dynamic component
|
||||||
Object.keys(vm.$refs)
|
Object.keys(vm.$refs)
|
||||||
.filter((r) => r.includes(vm.RefPrefix) && vm.$refs[r][0] !== undefined)
|
.filter((r) => r.includes(vm.RefPrefix) && vm.$refs[r][0] !== undefined)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue