diff --git a/ppr-ui/package-lock.json b/ppr-ui/package-lock.json index 0c5577df3..faef6768b 100644 --- a/ppr-ui/package-lock.json +++ b/ppr-ui/package-lock.json @@ -1,12 +1,12 @@ { "name": "ppr-ui", - "version": "3.0.8", + "version": "3.0.9", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ppr-ui", - "version": "3.0.8", + "version": "3.0.9", "dependencies": { "@bcrs-shared-components/input-field-date-picker": "^1.0.0", "@lemoncode/fonk": "^1.5.1", diff --git a/ppr-ui/package.json b/ppr-ui/package.json index 9c1bda4df..8ff99e44b 100644 --- a/ppr-ui/package.json +++ b/ppr-ui/package.json @@ -1,6 +1,6 @@ { "name": "ppr-ui", - "version": "3.0.8", + "version": "3.0.9", "private": true, "appName": "Assets UI", "sbcName": "SBC Common Components", diff --git a/ppr-ui/src/App.vue b/ppr-ui/src/App.vue index 366c76115..316c30647 100644 --- a/ppr-ui/src/App.vue +++ b/ppr-ui/src/App.vue @@ -34,7 +34,7 @@ /> - + -

{{ setImportantWord }}:

+

+ {{ setImportantWord }}: +

diff --git a/ppr-ui/src/components/common/ContactInformation.vue b/ppr-ui/src/components/common/ContactInformation.vue index 14ddae641..97fd25930 100644 --- a/ppr-ui/src/components/common/ContactInformation.vue +++ b/ppr-ui/src/components/common/ContactInformation.vue @@ -92,6 +92,7 @@ id="first-name" v-model="contactInfoModel.personName.first" variant="filled" + color="primary" class="pt-4 pr-2" :class="{ 'long-error-message': enableCombinedNameValidation }" label="First Name" @@ -105,6 +106,7 @@ id="middle-name" v-model="contactInfoModel.personName.middle" variant="filled" + color="primary" class="pt-4 px-2" label="Middle Name (Optional)" :error="hasLongCombinedName" @@ -117,6 +119,7 @@ id="last-name" v-model="contactInfoModel.personName.last" variant="filled" + color="primary" class="pt-4 px-2" label="Last Name" :error="hasLongCombinedName" @@ -139,6 +142,7 @@ id="business-name" v-model="contactInfoModel.businessName" variant="filled" + color="primary" class="pt-4 pr-2" label="Business Name" :rules="isBusinessOption ? businessNameRules : []" @@ -156,6 +160,7 @@ id="contact-info-email" v-model="contactInfoModel.emailAddress" variant="filled" + color="primary" class="pt-4 pr-2" label="Email Address (Optional)" :rules="emailRules" @@ -174,6 +179,7 @@ v-model="contactInfoModel.phoneNumber" v-maska:[phoneMask] variant="filled" + color="primary" class="pt-4 pr-3" label="Phone Number (Optional)" :rules="phoneRules" @@ -184,6 +190,7 @@ id="contact-info-phone-ext" v-model="contactInfoModel.phoneExtension" variant="filled" + color="primary" class="pt-4 px-2" label="Extension (Optional)" :rules="phoneExtensionRules" diff --git a/ppr-ui/src/components/common/CourtOrder.vue b/ppr-ui/src/components/common/CourtOrder.vue index 6f5891842..38d88850c 100644 --- a/ppr-ui/src/components/common/CourtOrder.vue +++ b/ppr-ui/src/components/common/CourtOrder.vue @@ -243,6 +243,7 @@ id="txt-court-name" v-model.trim="courtName" variant="filled" + color="primary" label="Court Name" hint="For example: Supreme Court of British Columbia" persistentHint @@ -269,6 +270,7 @@ id="txt-court-registry" v-model.trim="courtRegistry" variant="filled" + color="primary" label="Court Registry" hint="The location (city) of the court. For example: Richmond" persistentHint @@ -295,6 +297,7 @@ id="txt-court-file-number" v-model.trim="fileNumber" variant="filled" + color="primary" label="Court File Number" persistentHint :errorMessages=" @@ -353,6 +356,7 @@ autoGrow counter="512" variant="filled" + color="primary" label="Effect of Order" class="bg-white pt-2 text-input-field" :errorMessages=" diff --git a/ppr-ui/src/components/common/DocumentId.vue b/ppr-ui/src/components/common/DocumentId.vue index 796e1ea02..c0d6dae0d 100644 --- a/ppr-ui/src/components/common/DocumentId.vue +++ b/ppr-ui/src/components/common/DocumentId.vue @@ -37,6 +37,7 @@ id="doc-id-field" v-model="documentIdModel" variant="filled" + color="primary" maxlength="8" label="Document ID Number" :rules="documentIdRules" diff --git a/ppr-ui/src/components/common/FolioNumber.vue b/ppr-ui/src/components/common/FolioNumber.vue index 209422ef5..0adccfd20 100644 --- a/ppr-ui/src/components/common/FolioNumber.vue +++ b/ppr-ui/src/components/common/FolioNumber.vue @@ -7,6 +7,7 @@ label="Folio or Reference Number" persistentHint variant="filled" + color="primary" @keypress.enter="shiftFocus()" /> diff --git a/ppr-ui/src/components/common/FolioNumberSummary.vue b/ppr-ui/src/components/common/FolioNumberSummary.vue index 716dae149..3c9a9bd22 100644 --- a/ppr-ui/src/components/common/FolioNumberSummary.vue +++ b/ppr-ui/src/components/common/FolioNumberSummary.vue @@ -47,6 +47,7 @@ v-model="folioNumber" class="text-folio" variant="filled" + color="primary" label="Folio or Reference Number (Optional)" persistentHint :rules="rules" diff --git a/ppr-ui/src/components/common/FormField.vue b/ppr-ui/src/components/common/FormField.vue index 348375089..0e33097c4 100644 --- a/ppr-ui/src/components/common/FormField.vue +++ b/ppr-ui/src/components/common/FormField.vue @@ -15,6 +15,7 @@ v-model="inputModel" class="px-1" variant="filled" + color="primary" :label="inputLabel" :rules="rules" :data-test-id="`${sectionId}-text-field`" diff --git a/ppr-ui/src/components/common/HomeLocationInfo.vue b/ppr-ui/src/components/common/HomeLocationInfo.vue index 2c4b99c50..e44a3308c 100644 --- a/ppr-ui/src/components/common/HomeLocationInfo.vue +++ b/ppr-ui/src/components/common/HomeLocationInfo.vue @@ -21,6 +21,7 @@ id="band-name" v-model="locationInfo.bandName" variant="filled" + color="primary" label="Band Name" :rules="locationInputRules(null, 'Enter a band name', 'band-name')" /> @@ -33,6 +34,7 @@ id="reserve-number" v-model="locationInfo.reserveNumber" variant="filled" + color="primary" label="Reserve Number" :rules="locationInputRules(null, 'Enter a reserve number', 'reserve-number')" /> @@ -42,6 +44,7 @@ id="reserve-additional-description" v-model="additionalDescription" variant="filled" + color="primary" label="Additional Description" hint="Example: PIN number" :error="isReserveLengthErr" @@ -62,6 +65,7 @@ id="lot" v-model="locationInfo.lot" variant="filled" + color="primary" :label="isStrata ? 'Strata Lot' : 'Lot'" :rules="locationInputRules(10, 'Enter a lot number', 'lot')" persistentHint @@ -75,6 +79,7 @@ id="land-district" v-model="locationInfo.landDistrict" variant="filled" + color="primary" label="Land District" :rules="locationInputRules(20, 'Enter a land district', 'land-district')" persistentHint @@ -88,6 +93,7 @@ id="plan" v-model="locationInfo.plan" variant="filled" + color="primary" :label="isStrata ? 'Strata Plan' : 'Plan'" :rules="locationInputRules(12, 'Enter a plan number', 'plan')" persistentHint @@ -104,6 +110,7 @@ id="district-lot" v-model="locationInfo.districtLot" variant="filled" + color="primary" label="District Lot" :rules="locationInputRules(17, 'Enter a district lot', 'district-lot')" persistentHint @@ -118,6 +125,7 @@ id="part-of" v-model="locationInfo.partOf" variant="filled" + color="primary" label="Part Of" :rules="maxLength(10)" persistentHint @@ -132,6 +140,7 @@ id="section" v-model="locationInfo.section" variant="filled" + color="primary" label="Section" :rules="maxLength(10)" persistentHint @@ -148,6 +157,7 @@ id="township" v-model="locationInfo.township" variant="filled" + color="primary" label="Township" :rules="maxLength(2)" persistentHint @@ -162,6 +172,7 @@ id="Range" v-model="locationInfo.range" variant="filled" + color="primary" label="Range" :rules="maxLength(2)" persistentHint @@ -176,6 +187,7 @@ id="meridian" v-model="locationInfo.meridian" variant="filled" + color="primary" label="Meridian" :rules="maxLength(3)" persistentHint @@ -192,6 +204,7 @@ id="parcel" v-model="locationInfo.parcel" variant="filled" + color="primary" label="Parcel" :rules="locationInputRules(10, 'Enter a parcel block')" persistentHint @@ -206,6 +219,7 @@ id="block" v-model="locationInfo.block" variant="filled" + color="primary" label="Block" :rules="locationInputRules(10, 'Enter a block')" persistentHint @@ -219,6 +233,7 @@ id="exceptionPlan" v-model="locationInfo.exceptionPlan" variant="filled" + color="primary" label="Except Plan" :rules="maxLength(80)" persistentHint diff --git a/ppr-ui/src/components/common/InfoChip.vue b/ppr-ui/src/components/common/InfoChip.vue index cbcf806eb..09088db61 100644 --- a/ppr-ui/src/components/common/InfoChip.vue +++ b/ppr-ui/src/components/common/InfoChip.vue @@ -2,7 +2,7 @@
-

+