diff --git a/lang/en/fieldtypes.php b/lang/en/fieldtypes.php index 650448ef7a2..6725d4dd920 100644 --- a/lang/en/fieldtypes.php +++ b/lang/en/fieldtypes.php @@ -49,6 +49,7 @@ 'bard.config.word_count' => 'Show the word count at the bottom of the field.', 'bard.title' => 'Bard', 'button_group.title' => 'Button Group', + 'checkboxes.config.appearance' => 'Choose how the checkboxes are displayed.', 'checkboxes.config.inline' => 'Show the checkboxes in a row.', 'checkboxes.config.options' => 'Set the array keys and their optional labels.', 'checkboxes.title' => 'Checkboxes', @@ -143,6 +144,7 @@ 'picker.category.special.description' => 'These fields are special, each in their own way.', 'picker.category.structured.description' => 'Fields that store structured data. Some can even nest other fields inside themselves.', 'picker.category.text.description' => 'Fields that store strings of text, rich content, or both.', + 'radio.config.appearance' => 'Choose how the radio buttons are displayed.', 'radio.config.inline' => 'Show the radio buttons in a row.', 'radio.config.options' => 'Set the array keys and their optional labels.', 'radio.title' => 'Radio', diff --git a/resources/js/components/fieldtypes/ButtonGroupFieldtype.vue b/resources/js/components/fieldtypes/ButtonGroupFieldtype.vue index f3412db2232..83e412cab26 100644 --- a/resources/js/components/fieldtypes/ButtonGroupFieldtype.vue +++ b/resources/js/components/fieldtypes/ButtonGroupFieldtype.vue @@ -1,30 +1,49 @@ + + diff --git a/resources/js/components/fieldtypes/RadioFieldtype.vue b/resources/js/components/fieldtypes/RadioFieldtype.vue index 066aee36835..03282aeeafe 100644 --- a/resources/js/components/fieldtypes/RadioFieldtype.vue +++ b/resources/js/components/fieldtypes/RadioFieldtype.vue @@ -1,5 +1,5 @@