remove old components/classes
This commit is contained in:
parent
d0b970e68a
commit
3b342bf3e7
1 changed files with 1 additions and 31 deletions
|
|
@ -109,10 +109,6 @@
|
||||||
:ref="RECAL_MODAL_REF_NAME"
|
:ref="RECAL_MODAL_REF_NAME"
|
||||||
cssModalHeadlineClass="text-center"
|
cssModalHeadlineClass="text-center"
|
||||||
cmsWidgetName="RecalModal" />
|
cmsWidgetName="RecalModal" />
|
||||||
<contentGroupModal
|
|
||||||
:ref="DEDUCTIBLE_MODAL_REF_NAME"
|
|
||||||
cmsWidgetName="DeductibleModal"
|
|
||||||
class="deductible-modal" />
|
|
||||||
<cancelClaimModal
|
<cancelClaimModal
|
||||||
:ref="CANCEL_CLAIM_REF_NAME"
|
:ref="CANCEL_CLAIM_REF_NAME"
|
||||||
@cancelClaimConfirmation="cancelClaim"
|
@cancelClaimConfirmation="cancelClaim"
|
||||||
|
|
@ -146,7 +142,7 @@ import baseFormMixin from '@/mixins/base-form-mixin.js';
|
||||||
import navigationScenarios from '@/router/router-constants/navigation-scenarios.js';
|
import navigationScenarios from '@/router/router-constants/navigation-scenarios.js';
|
||||||
import bailoutMessage from '@/constants/bailoutMessage';
|
import bailoutMessage from '@/constants/bailoutMessage';
|
||||||
import widgetFields from '@/constants/cms-widget-fields.js';
|
import widgetFields from '@/constants/cms-widget-fields.js';
|
||||||
import { formatAmountInDollars, createOrderedListFromStringOfParagraphs, createUnorderedListFromStringOfParagraphs } from '@/helpers/text-helper.js';
|
import { formatAmountInDollars, createUnorderedListFromStringOfParagraphs } from '@/helpers/text-helper.js';
|
||||||
import showIssLoadingModal from '@/helpers/loading-modal-helper';
|
import showIssLoadingModal from '@/helpers/loading-modal-helper';
|
||||||
import { getPriceOfLineItems } from '@/helpers/price-calculator';
|
import { getPriceOfLineItems } from '@/helpers/price-calculator';
|
||||||
import coverageStatuses from '@/constants/coverage-statuses';
|
import coverageStatuses from '@/constants/coverage-statuses';
|
||||||
|
|
@ -155,7 +151,6 @@ import coverageType from '@/constants/coverage-type';
|
||||||
const CANCEL_CLAIM_REF_NAME = 'CancelClaimModal';
|
const CANCEL_CLAIM_REF_NAME = 'CancelClaimModal';
|
||||||
const SAFELITE_PROVIDER = 'Safelite';
|
const SAFELITE_PROVIDER = 'Safelite';
|
||||||
const RECAL_MODAL_REF_NAME = 'RecalModal';
|
const RECAL_MODAL_REF_NAME = 'RecalModal';
|
||||||
const DEDUCTIBLE_MODAL_REF_NAME = 'DeductibleModal';
|
|
||||||
const SITE_FOOTER_REF_NAME = 'siteFooter';
|
const SITE_FOOTER_REF_NAME = 'siteFooter';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
@ -238,7 +233,6 @@ export default {
|
||||||
},
|
},
|
||||||
CANCEL_CLAIM_REF_NAME,
|
CANCEL_CLAIM_REF_NAME,
|
||||||
RECAL_MODAL_REF_NAME,
|
RECAL_MODAL_REF_NAME,
|
||||||
DEDUCTIBLE_MODAL_REF_NAME,
|
|
||||||
SITE_FOOTER_REF_NAME
|
SITE_FOOTER_REF_NAME
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
@ -412,12 +406,6 @@ export default {
|
||||||
nextStepsBody(newValue, oldValue) {
|
nextStepsBody(newValue, oldValue) {
|
||||||
if (newValue !== oldValue) {
|
if (newValue !== oldValue) {
|
||||||
setupModalLink(this, RECAL_MODAL_REF_NAME);
|
setupModalLink(this, RECAL_MODAL_REF_NAME);
|
||||||
setupModalLink(this, DEDUCTIBLE_MODAL_REF_NAME);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
verifiedItacAlertBody(newValue, oldValue) {
|
|
||||||
if (newValue !== oldValue) {
|
|
||||||
setupModalLink(this, DEDUCTIBLE_MODAL_REF_NAME);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -574,9 +562,6 @@ export default {
|
||||||
.cost-underline {
|
.cost-underline {
|
||||||
border-bottom: 4px solid #0c7e47;
|
border-bottom: 4px solid #0c7e47;
|
||||||
}
|
}
|
||||||
.deductible-text {
|
|
||||||
line-height: 1.5rem;
|
|
||||||
}
|
|
||||||
.sub-header {
|
.sub-header {
|
||||||
line-height: 1.5rem;
|
line-height: 1.5rem;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
|
@ -686,21 +671,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.deductible-modal) {
|
|
||||||
p {
|
|
||||||
margin-bottom: 0 !important;
|
|
||||||
}
|
|
||||||
img.mb-4 {
|
|
||||||
margin: 0 !important;
|
|
||||||
}
|
|
||||||
h5 {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
p:last-child {
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal {
|
.modal {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue