Skip to content

Commit a1ce25a

Browse files
authored
🐛 Merge pull request #176 from it-at-m/175-bug-rename-radiobutton-to-mucradiobutton
🐛 Renamed radiobutton to mucradiobutton #175
2 parents 5af37c7 + a71a567 commit a1ce25a

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

src/components/Form/MucRadioButton.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import MucRadioButtonGroup from "./MucRadioButtonGroup.vue";
33

44
export default {
55
component: MucRadioButton,
6-
title: "Forms/RadioButton",
6+
title: "Forms/MucRadioButton",
77
tags: ["autodocs"],
88
parameters: {
99
docs: {

src/components/Form/MucRadioButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<script setup lang="ts">
2626
import { computed, inject } from "vue";
2727
28-
import { RadioButtonGroupKey } from "./RadioButtonTypes";
28+
import { RadioButtonGroupKey } from "./MucRadioButtonTypes";
2929
3030
const props = withDefaults(
3131
defineProps<{

src/components/Form/MucRadioButtonGroup.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
<script setup lang="ts">
1717
import { provide, readonly, toRef } from "vue";
1818
19-
import { RadioButtonGroupKey, RadioButtonValueTypes } from "./RadioButtonTypes";
19+
import {
20+
RadioButtonGroupKey,
21+
RadioButtonValueTypes,
22+
} from "./MucRadioButtonTypes";
2023
2124
/**
2225
* exposed two-way binding of the currently selected radiobuttons-value

0 commit comments

Comments
 (0)