-
-
-
+
@@ -66,8 +68,8 @@ export default {
watch: {
selectedYear(year) {
- this.$store.commit(this.storeMutations.UPDATE_YEAR, year);
- this.$router.push('?fmgPage=vehicle-make');
+ this.$store.commit(this.storeMutations.UPDATE_YEAR, year);
+ this.$router.push('?fmgPage=vehicle-make');
}
},
@@ -81,15 +83,13 @@ export default {
diff --git a/src/layouts/vehicle-year/year-question/year-question.vue b/src/layouts/vehicle-year/year-question/year-question.vue
index 4c5bb8d30..b6af42a07 100644
--- a/src/layouts/vehicle-year/year-question/year-question.vue
+++ b/src/layouts/vehicle-year/year-question/year-question.vue
@@ -1,7 +1,8 @@
-
@@ -18,7 +19,7 @@ export default {
},
props: {
questionText: String,
- years: Array,
+ years: Array,
modelValue: String
},
components: {
diff --git a/src/styles/ux-variables.scss b/src/styles/ux-variables.scss
index a6e84d369..a9857c420 100644
--- a/src/styles/ux-variables.scss
+++ b/src/styles/ux-variables.scss
@@ -54,6 +54,7 @@ $gray-200: #E3E4E4;// Used in theme
$gray-300: #D2D4D4;
$gray: #B0B3B3;// Default Gray
$gray-500: #8E9292;// Used in theme
+$gray-550: #727676;// Used in theme
$gray-600: #4D5151;// Used in theme
$gray-700: #303333;// Used in theme
$gray-800: #222424;// Used in theme
diff --git a/src/ux-components/header/header.vue b/src/ux-components/header/header.vue
index 0749c0462..3395a7e93 100644
--- a/src/ux-components/header/header.vue
+++ b/src/ux-components/header/header.vue
@@ -1,7 +1,7 @@
-
{{ text }}
+ {{ text }}
@@ -14,3 +14,9 @@ export default {
},
};
+
+
diff --git a/src/ux-components/loader/loader.vue b/src/ux-components/loader/loader.vue
index 66ac9bc85..0170fe468 100644
--- a/src/ux-components/loader/loader.vue
+++ b/src/ux-components/loader/loader.vue
@@ -1,5 +1,7 @@
diff --git a/src/ux-components/radio-horizontal/radio-horizontal.vue b/src/ux-components/radio-horizontal/radio-horizontal.vue
index aeed345d6..5cd533e2a 100644
--- a/src/ux-components/radio-horizontal/radio-horizontal.vue
+++ b/src/ux-components/radio-horizontal/radio-horizontal.vue
@@ -12,6 +12,7 @@
{{radioID}}
{{radioLabelSubCopy}}
+ {{screenReaderOnlyText}}
{{errorMessage}}
@@ -26,6 +27,7 @@ export default {
groupName: String, /* Required, unique for each radio button GROUP */
radioID: String, /* Required, unique for each radio button. Used for button id, label and */
radioLabelSubCopy: String, /* Optional, used for multi-line radio buttons */
+ screenReaderOnlyText: String, /* Optional, copy to be read by screenreader */
textPosition: String, /* Optional, use Bootstrap classes: text-start, text-center, text-end. Default (empty) is text-start */
errorMessage: String, /* Optional, if there is an error message to be displayed */
loaderColor: String, /* Specify color of loader/spinner. Options are blue, red, green, white, black. Default is blue */
diff --git a/src/ux-components/radio/radio.vue b/src/ux-components/radio/radio.vue
index 2b4933ec1..516a51585 100644
--- a/src/ux-components/radio/radio.vue
+++ b/src/ux-components/radio/radio.vue
@@ -7,8 +7,8 @@
-
-
+
+
{{radioID}}
{{radioLabelSubCopy}}
{{screenReaderOnlyText}}
@@ -47,6 +47,6 @@ export default {
},
components: {
loader,
- },
+ }
};