Skip to content

Commit 7a57e1e

Browse files
authored
Replace BC Registries and Online Services to Service BC Connect (#377)
1 parent d640dc7 commit 7a57e1e

File tree

7 files changed

+26
-20
lines changed

7 files changed

+26
-20
lines changed

vue/sbc-common-components/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vue/sbc-common-components/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "sbc-common-components",
3-
"version": "3.0.15",
3+
"version": "3.0.16",
44
"private": false,
5-
"description": "Common Vue Components to be used across BC Registries and Online Services.",
5+
"description": "Common Vue Components to be used across Service BC Connect.",
66
"license": "Apache-2.0",
77
"repository": {
88
"type": "git",

vue/sbc-common-components/src/components/NotificationPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
flat
1414
outlined
1515
>
16-
<v-toolbar-title class="toolbar-title">What's New at BC Registries</v-toolbar-title>
16+
<v-toolbar-title class="toolbar-title">What's New at Service BC Connect</v-toolbar-title>
1717
<v-spacer></v-spacer>
1818
<v-btn
1919
icon

vue/sbc-common-components/src/components/SbcAuthenticationOptions.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@
44
<template v-if="isDialog">
55
<v-row>
66
<v-col cols="11">
7-
<h3>Log in to BC Registries</h3>
7+
<h3>Log in to Service BC Connect</h3>
88
</v-col>
99
<v-col cols="1">
1010
<v-icon large color="primary" @click="emitClose()">mdi-close</v-icon>
1111
</v-col>
1212
</v-row>
1313
<p>
14-
Don't have a BC Registries account?
14+
Don't have a Service BC Connect account?
1515
<a @click="goToCreateAccount">
1616
<u>Create an account</u>
1717
</a>
1818
</p>
1919
</template>
2020
<template v-else>
21-
<h1 class="view-header__title">Log in to BC Registries</h1>
21+
<h1 class="view-header__title">Log in to Service BC Connect</h1>
2222
<p class="mt-4 mb-0">
23-
Don't have a BC Registries account? <a class="text-decoration-underline" @click="goToCreateAccount">Create an account</a>
23+
Don't have a Service BC Connect account? <a class="text-decoration-underline" @click="goToCreateAccount">Create an account</a>
2424
</p>
2525
</template>
2626
</div>
@@ -84,7 +84,7 @@ export default class SbcAuthenticationOptions extends NavigationMixin {
8484
type: LoginSource.BCSC,
8585
title: 'BC Services Card',
8686
description: `Residents of British Columbia can use their government-issued
87-
BC Services Card to securly access BC Registries.`,
87+
BC Services Card to securly access Service BC Connect.`,
8888
icon: 'mdi-account-card-details-outline',
8989
btnLabel: 'Log in with BC Services Card',
9090
idpHint: IdpHint.BCSC
@@ -93,7 +93,7 @@ export default class SbcAuthenticationOptions extends NavigationMixin {
9393
type: LoginSource.BCEID,
9494
title: 'BCeID',
9595
description: `Non-BC residents and residents do not have a BC Services Card
96-
can use a BCeID account to securly access BC Registries.`,
96+
can use a BCeID account to securly access Service BC Connect.`,
9797
icon: 'mdi-two-factor-authentication',
9898
btnLabel: 'Log in with BCeID',
9999
idpHint: IdpHint.BCEID

vue/sbc-common-components/src/components/SbcHeader.vue

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<source media="(max-width: 600px)" srcset="../assets/img/gov_bc_logo_vert.png">
1212
<img class="brand__image" src="../assets/img/gov_bc_logo_vert.png" alt="Government of British Columbia Logo" title="Government of British Columbia">
1313
</picture>
14-
<span class="brand__title">BC Registries <span class="brand__title--wrap">and Online Services</span></span>
14+
<span class="brand__title">Service<span class="brand__title--bc">BC</span> <span class="brand__title--wrap">Connect</span></span>
1515
</a>
1616
<!-- Environment Alert -->
1717
<v-alert v-if="environment" :color="alertColor" dense class="env-distinction">
@@ -721,6 +721,10 @@ $app-header-font-color: #ffffff;
721721
color: inherit;
722722
}
723723
724+
.brand__title--bc {
725+
color: $BCgovGold5;
726+
}
727+
724728
.user-avatar {
725729
border-radius: 0.15rem;
726730
font-size: 1.1875rem;
@@ -731,6 +735,12 @@ $app-header-font-color: #ffffff;
731735
overflow-y: scroll;
732736
733737
}
738+
@media (max-width: 680px) {
739+
.brand__title--wrap {
740+
display: block;
741+
}
742+
}
743+
734744
@media (max-width: 900px) {
735745
.brand__image {
736746
margin-right: 0.75rem;
@@ -741,10 +751,6 @@ $app-header-font-color: #ffffff;
741751
font-size: 1rem;
742752
line-height: 1.25rem;
743753
}
744-
745-
.brand__title--wrap {
746-
display: block;
747-
}
748754
}
749755
750756
.v-btn.user-account-btn {

vue/sbc-common-components/src/components/SbcLogin.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<v-row justify="center">
44
<v-col class="text-center">
55
<div class="mt-5 mb-10 font-weight-bold">
6-
<h1>BC Registries Account Login</h1>
6+
<h1>Service BC Connect Account Login</h1>
77
</div>
88
<v-card
99
class="mx-auto"
@@ -25,7 +25,7 @@
2525
aria-label="log in"
2626
id="loginBtn"
2727
v-on="on">
28-
<span>Log in to my BC Registries Account</span>
28+
<span>Log in to my Service BC Connect Account</span>
2929
<v-icon class="mr-n1 ml-2">mdi-menu-down</v-icon>
3030
</v-btn>
3131
</template>

vue/sbc-common-components/src/components/SbcProductSelector.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
alt="Government of British Columbia Logo"
6262
title="Government of British Columbia">
6363
</picture>
64-
<span class="brand__title">BC Registries <span class="brand__title--wrap">and Online Services</span></span>
64+
<span class="brand__title">Service<span class="brand__title--bc">BC</span> <span class="brand__title--wrap">Connect</span></span>
6565
</a>
6666
<div class="app-header__actions">
6767
</div>
@@ -73,7 +73,7 @@
7373
<v-icon>mdi-arrow-left</v-icon>
7474
</v-btn>
7575
<div>
76-
<h1>BC Registries Products <span class="lb">and Services</span></h1>
76+
<h1>Service BC Connect Products <span class="lb">and Services</span></h1>
7777
<p class="view-header__desc">Easy access to a wide range of information products and services, including access <span class="ls">to British Columbia Provincial and Municipal Government information.</span></p>
7878
</div>
7979
<div>

0 commit comments

Comments
 (0)