CSR-241 Update props
This commit is contained in:
parent
dfb3ff38b9
commit
a57b44489e
3 changed files with 4 additions and 3 deletions
|
|
@ -32,6 +32,7 @@ import listButton from "@/ux-components/list-button/list-button";
|
||||||
export default {
|
export default {
|
||||||
name: "buttonQuestion",
|
name: "buttonQuestion",
|
||||||
props: {
|
props: {
|
||||||
|
isMultiSelect: Boolean,
|
||||||
questionText: String,
|
questionText: String,
|
||||||
answers: Array,
|
answers: Array,
|
||||||
modelValue: String,
|
modelValue: String,
|
||||||
|
|
@ -58,4 +59,4 @@ export default {
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ import loader from "@/ux-components/loader/loader";
|
||||||
export default {
|
export default {
|
||||||
name: "listButtonHorizontal",
|
name: "listButtonHorizontal",
|
||||||
props: {
|
props: {
|
||||||
isMultiSelect: Boolean,
|
isMultiSelect: Boolean, /* Defines use as checkbox */
|
||||||
groupName: String, /* Required, unique for each button GROUP */
|
groupName: String, /* Required, unique for each button GROUP */
|
||||||
buttonID: String, /* Required, unique for each button. Used for button id, label and <label for> */
|
buttonID: String, /* Required, unique for each button. Used for button id, label and <label for> */
|
||||||
buttonLabelSubCopy: String, /* Optional, used for multi-line buttons */
|
buttonLabelSubCopy: String, /* Optional, used for multi-line buttons */
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ import loader from "@/ux-components/loader/loader";
|
||||||
export default {
|
export default {
|
||||||
name: "listButton",
|
name: "listButton",
|
||||||
props: {
|
props: {
|
||||||
isMultiSelect: Boolean,
|
isMultiSelect: Boolean, /* Defines use as checkbox */
|
||||||
groupName: String, /* Required, unique for each button GROUP */
|
groupName: String, /* Required, unique for each button GROUP */
|
||||||
buttonID: [Number,String], /* Required, unique for each button. Used for button id, label and <label for> */
|
buttonID: [Number,String], /* Required, unique for each button. Used for button id, label and <label for> */
|
||||||
isRequired: Boolean, /* Optional, default is false */
|
isRequired: Boolean, /* Optional, default is false */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue