File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/plugin/components/fields/VSFRadio Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 21
21
22
22
<div
23
23
:id =" field?.groupId"
24
- :style =" checkboxContainerStyle "
24
+ :style =" radioContainerStyle "
25
25
>
26
26
<v-radio-group
27
27
v-model =" modelValue"
@@ -140,8 +140,8 @@ const inputControlContainerStyle = computed<CSSProperties>(() => {
140
140
});
141
141
142
142
143
- // Inline Checkboxes //
144
- const checkboxContainerStyle = computed <CSSProperties >(() => ({
143
+ // Inline Radios //
144
+ const radioContainerStyle = computed <CSSProperties >(() => ({
145
145
' display' : field .inline ? ' flex' : undefined ,
146
146
}));
147
147
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ import type VSFRadio from './VSFRadio.vue';
8
8
9
9
export interface RadioGroupProps {
10
10
appendIcon ?: VRadioGroup [ 'appendIcon' ] ;
11
+ direction ?: VRadioGroup [ 'direction' ] ;
11
12
error ?: VRadioGroup [ 'error' ] ;
12
- errorMessages ?: VRadioGroup [ 'errorMessages' ] ;
13
13
hideDetails ?: VRadioGroup [ 'hideDetails' ] ;
14
14
groupId ?: VRadioGroup [ 'id' ] ;
15
15
maxErrors ?: VRadioGroup [ 'maxErrors' ] ;
You can’t perform that action at this time.
0 commit comments