Skip to content

Commit

Permalink
🐛 Merge pull request #176 from it-at-m/175-bug-rename-radiobutton-to-…
Browse files Browse the repository at this point in the history
…mucradiobutton

🐛 Renamed radiobutton to mucradiobutton #175
  • Loading branch information
langehm authored Aug 7, 2024
2 parents 5af37c7 + a71a567 commit a1ce25a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Form/MucRadioButton.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import MucRadioButtonGroup from "./MucRadioButtonGroup.vue";

export default {
component: MucRadioButton,
title: "Forms/RadioButton",
title: "Forms/MucRadioButton",
tags: ["autodocs"],
parameters: {
docs: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Form/MucRadioButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<script setup lang="ts">
import { computed, inject } from "vue";
import { RadioButtonGroupKey } from "./RadioButtonTypes";
import { RadioButtonGroupKey } from "./MucRadioButtonTypes";
const props = withDefaults(
defineProps<{
Expand Down
5 changes: 4 additions & 1 deletion src/components/Form/MucRadioButtonGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
<script setup lang="ts">
import { provide, readonly, toRef } from "vue";
import { RadioButtonGroupKey, RadioButtonValueTypes } from "./RadioButtonTypes";
import {
RadioButtonGroupKey,
RadioButtonValueTypes,
} from "./MucRadioButtonTypes";
/**
* exposed two-way binding of the currently selected radiobuttons-value
Expand Down
File renamed without changes.

0 comments on commit a1ce25a

Please sign in to comment.