CSR-341 WIP

This commit is contained in:
bmauger 2022-02-10 15:58:21 -05:00
parent 6f4b060e8f
commit 08f0f90576
3 changed files with 35 additions and 20 deletions

View file

@ -43,6 +43,7 @@
import listButton from "@/ux-components/list-button/list-button"; import listButton from "@/ux-components/list-button/list-button";
import listButtonHorizontal from "@/ux-components/list-button-horizontal/list-button-horizontal"; import listButtonHorizontal from "@/ux-components/list-button-horizontal/list-button-horizontal";
import listCard from "@/ux-components/list-card/list-card"; import listCard from "@/ux-components/list-card/list-card";
import radio from "@/ux-components/radio/radio";
export default { export default {
name: "buttonQuestion", name: "buttonQuestion",
@ -95,6 +96,9 @@ export default {
case 'listCard': case 'listCard':
classes = 'row justify-content-center g-2' classes = 'row justify-content-center g-2'
break; break;
case 'radio':
classes = 'ui-radio d-flex'
break;
} }
return classes; return classes;
}, },
@ -130,6 +134,7 @@ export default {
listButton, listButton,
listButtonHorizontal, listButtonHorizontal,
listCard, listCard,
radio,
}, },
}; };
</script> </script>

View file

@ -18,24 +18,30 @@
<div class="row my-4"> <div class="row my-4">
<div class="col"> <div class="col">
<h4 class="m-0 p-2 bg-light rounded">Radio Button</h4> <h4 class="m-0 p-2 bg-light rounded">Radio Button</h4>
<p>Sample radio button group</p> <p class="m-0">Sample radio button group</p>
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="col"> <div class="col">
<radio <radio
checkboxName="demo radio" groupName="radio-demo-2"
buttonID="radio-1" buttonLabel="I'm a radio button!"
tabIndex="1" buttonID="radio-button-a"
checkboxLabel="I'm a radio button" isRequired
value="I'm a radio button!"
modelValue="Model Value 1"
screenReaderOnlyText="Model Value 1"
/> />
</div> </div>
<div class="col"> <div class="col">
<radio <radio
checkboxName="demo radio" groupName="radio-demo-2"
buttonID="radio-2" buttonLabel="I'm also a radio button!"
tabIndex="1" buttonID="radio-button-b"
checkboxLabel="I'm a radio button" isRequired
value="I'm also a radio button!"
modelValue="Model Value 2"
screenReaderOnlyText="Model Value 2"
/> />
</div> </div>
</div> </div>
@ -74,14 +80,17 @@
<textLink <textLink
linkType=navigation linkType=navigation
text="Navigation Link" text="Navigation Link"
href="#!"
/><br><br> /><br><br>
<textLink <textLink
linkType="text" linkType="text"
text="Default Link" text="Default Link"
href="#!"
/><br><br> /><br><br>
<textLink <textLink
linkType=textSmall linkType=textSmall
text="Small Link" text="Small Link"
href="#!"
/><br><br> /><br><br>
<textLink <textLink
linkType=footer linkType=footer

View file

@ -1,16 +1,16 @@
<template> <template>
<!-- Checkbox groups MUST be wrapped in a <fieldset> and <legend> tag --> <!-- Checkbox groups MUST be wrapped in a <fieldset> and <legend> tag and must contain tabindex -->
<div class="ui-radio d-flex"> <div class="ui-radio d-flex">
<input <input
type="radio" type="radio"
aria-checked="false" aria-checked="false"
:name="checkboxName" :name="groupName"
:id="buttonID" :id="buttonID"
:tabindex="tabIndex"
:aria-required="isRequired" :aria-required="isRequired"
:value="value"
/> />
<label class="d-flex align-items-center" :for="buttonID"> <label class="d-flex align-items-center" :for="buttonID">
<p v-if="checkboxLabel" class="m-0">{{ checkboxLabel }}</p> <p v-if="buttonLabel" class="m-0">{{ buttonLabel }}</p>
<span v-if="screenReaderOnlyText" class="sr-only">{{ <span v-if="screenReaderOnlyText" class="sr-only">{{
screenReaderOnlyText screenReaderOnlyText
}}</span> }}</span>
@ -22,12 +22,13 @@
export default { export default {
name: "radio", name: "radio",
props: { props: {
checkboxName: String, groupName: String,
buttonLabel: String,
buttonID: String, buttonID: String,
tabIndex: Number,
checkboxLabel: String,
screenReaderOnlyText: String,
isRequired: Boolean, isRequired: Boolean,
value: String,
modelValue: String,
screenReaderOnlyText: String,
}, },
}; };
</script> </script>