Skip to content

Commit

Permalink
🐛 Merge pull request #178 from it-at-m/177-export-of-bug-in-form-comp…
Browse files Browse the repository at this point in the history
…onents-wrong

🐛 corrected imports of form components #177
  • Loading branch information
langehm authored Aug 13, 2024
2 parents a1ce25a + 89d0b0c commit c747361
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/components/Form/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import MucForm from "./MucInput.vue";
import MucInput from "./MucInput.vue";
import MucRadioButton from "./MucRadioButton.vue";
import MucRadioButtonGroup from "./MucRadioButtonGroup.vue";
import MucSingleSelect from "./MucSelect.vue";
import MucSelect from "./MucSelect.vue";
import MucTextArea from "./MucTextArea.vue";

Expand All @@ -17,7 +16,6 @@ export {
MucInput,
MucRadioButton,
MucTextArea,
MucSingleSelect,
MucErrorList,
MucSelect,
};
20 changes: 18 additions & 2 deletions src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@ import { MucButton } from "./Button";
import { MucCallout } from "./Callout";
import { MucCard, MucCardContainer } from "./Card";
import { MucComment, MucCommentText } from "./Comment/";
import { MucForm } from "./Form";
import {
MucCheckbox,
MucCheckboxGroup,
MucErrorList,
MucInput,
MucRadioButton,
MucRadioButtonGroup,
MucSelect,
MucTextArea,
} from "./Form";
import { MucIcon } from "./Icon";
import { MucIntro } from "./Intro";

Expand All @@ -16,6 +25,13 @@ export {
MucCardContainer,
MucComment,
MucCommentText,
MucForm,
MucRadioButton,
MucRadioButtonGroup,
MucInput,
MucTextArea,
MucCheckboxGroup,
MucCheckbox,
MucSelect,
MucErrorList,
MucIcon,
};

0 comments on commit c747361

Please sign in to comment.