Skip to content

Commit

Permalink
- app version = 5.0.35
Browse files Browse the repository at this point in the history
- deleted obsolete LocationInfoDialog
- deleted obsolete PickRequestTypeDialog
- moved some CSS from base to component where it's used
- deleted obsolete "Get started with..." subtitle
- deleted menus from Names Capture component
- updated layout in Names Capture component
- renamed getIsAssumedName -> isAssumedName
- deleted obsolete store imports, methods, etc in Names Capture
- misc layout cleanup/fixes (per UI designs)
- added checks/fixes to Existing Request Display component
- renamed getIsAuthenticated -> isAuthenticated
- added NR num as header in Existing Request Edit component
- created Name Request Details component
- updated hint in Business Fetch component (per UI designs)
- cleaned up Main Container component
- misc cleanup in Search component
- renamed getNameIsSlashed -> isNameSlashed
- renamed getNameIsEnglish -> isNameEnglish
- capitalized conversion desc and text (per UI designs)
- fixed xpro bug in Actions
- added isNewBusiness getter
- deleted an obsolete mutation
- updated some unit tests
  • Loading branch information
severinbeauvais committed Sep 6, 2023
1 parent 0d9eeca commit 1fca66b
Show file tree
Hide file tree
Showing 41 changed files with 437 additions and 673 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "name-request",
"version": "5.0.34",
"version": "5.0.35",
"private": true,
"appName": "Name Request UI",
"sbcName": "SBC Common Components",
Expand Down
8 changes: 2 additions & 6 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,10 @@
:dialog="getIncorporateNowErrorStatus"
@close="closeIncorporateNowErrorDialog()"
/>
<LocationInfoDialog />
<MrasSearchInfoDialog />
<NrNotRequiredDialog />
<PaymentCompleteDialog />
<PickEntityOrConversionDialog />
<PickRequestTypeDialog />
<RenewDialog />
<ReceiptsDialog />
<RefundDialog />
Expand Down Expand Up @@ -114,8 +112,8 @@ import GenesysWebMessage from '@bcrs-shared-components/genesys-web-message/Genes
import { WebChat as ChatPopup } from '@bcrs-shared-components/web-chat'
import {
AffiliationErrorDialog, CancelDialog, ConditionsDialog, ErrorDialog, ExitDialog, HelpMeChooseDialog,
IncorporateNowErrorDialog, LocationInfoDialog, MrasSearchInfoDialog, NrNotRequiredDialog, ConfirmNrDialog,
PaymentCompleteDialog, PickEntityOrConversionDialog, PickRequestTypeDialog, RenewDialog, ReceiptsDialog,
IncorporateNowErrorDialog, MrasSearchInfoDialog, NrNotRequiredDialog, ConfirmNrDialog,
PaymentCompleteDialog, PickEntityOrConversionDialog, RenewDialog, ReceiptsDialog,
RefundDialog, ResubmitDialog, RetryDialog, StaffPaymentErrorDialog, UpgradeDialog, ExitIncompletePaymentDialog
} from '@/components/dialogs'
import SbcHeader from 'sbc-common-components/src/components/SbcHeader.vue'
Expand All @@ -141,12 +139,10 @@ import { CorpTypeCd } from '@bcrs-shared-components/corp-type-module'
GenesysWebMessage,
HelpMeChooseDialog,
IncorporateNowErrorDialog,
LocationInfoDialog,
MrasSearchInfoDialog,
NrNotRequiredDialog,
PaymentCompleteDialog,
PickEntityOrConversionDialog,
PickRequestTypeDialog,
ReceiptsDialog,
RefundDialog,
RenewDialog,
Expand Down
7 changes: 0 additions & 7 deletions src/assets/styles/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -277,13 +277,6 @@ button.reserve-submit-btn {
max-width: 1140px;
}

.mini-back-arrow {
font-weight: bold;
top: -1px !important;
position: relative !important;
color: $app-blue !important;
}

#applicant-info-1 .v-text-field__details {
margin: 0 !important;
}
Expand Down
17 changes: 1 addition & 16 deletions src/components/common/app-title-cols.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,11 @@
<Stats />
</v-col>
</v-row>
<v-row no-gutters>
<v-col cols="12" md="6" lg="6" class="mb-3" :class="{'pt-3': !isMobile}">
<span class="h3 colour-white" id="app-subtitle">Get started with your business
</span>
</v-col>
</v-row>
</div>
</template>

<script lang="ts">
import { Vue, Component, Prop } from 'vue-property-decorator'
import { Vue, Component } from 'vue-property-decorator'
import { Getter } from 'vuex-class'
import Stats from '@/components/new-request/stats.vue'
Expand All @@ -29,9 +23,6 @@ import Stats from '@/components/new-request/stats.vue'
}
})
export default class AppTitleCols extends Vue {
@Prop(String)
readonly id: string
@Getter isMobile!: boolean
}
</script>
Expand All @@ -46,10 +37,4 @@ export default class AppTitleCols extends Vue {
#app-title {
font-size: 34px;
}
#app-subtitle {
font-weight: normal;
font-size: $px-18;
}
</style>
Loading

0 comments on commit 1fca66b

Please sign in to comment.