Skip to content

Commit c747361

Browse files
authored
🐛 Merge pull request #178 from it-at-m/177-export-of-bug-in-form-components-wrong
🐛 corrected imports of form components #177
2 parents a1ce25a + 89d0b0c commit c747361

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

src/components/Form/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import MucForm from "./MucInput.vue";
55
import MucInput from "./MucInput.vue";
66
import MucRadioButton from "./MucRadioButton.vue";
77
import MucRadioButtonGroup from "./MucRadioButtonGroup.vue";
8-
import MucSingleSelect from "./MucSelect.vue";
98
import MucSelect from "./MucSelect.vue";
109
import MucTextArea from "./MucTextArea.vue";
1110

@@ -17,7 +16,6 @@ export {
1716
MucInput,
1817
MucRadioButton,
1918
MucTextArea,
20-
MucSingleSelect,
2119
MucErrorList,
2220
MucSelect,
2321
};

src/components/index.ts

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,16 @@ import { MucButton } from "./Button";
33
import { MucCallout } from "./Callout";
44
import { MucCard, MucCardContainer } from "./Card";
55
import { MucComment, MucCommentText } from "./Comment/";
6-
import { MucForm } from "./Form";
6+
import {
7+
MucCheckbox,
8+
MucCheckboxGroup,
9+
MucErrorList,
10+
MucInput,
11+
MucRadioButton,
12+
MucRadioButtonGroup,
13+
MucSelect,
14+
MucTextArea,
15+
} from "./Form";
716
import { MucIcon } from "./Icon";
817
import { MucIntro } from "./Intro";
918

@@ -16,6 +25,13 @@ export {
1625
MucCardContainer,
1726
MucComment,
1827
MucCommentText,
19-
MucForm,
28+
MucRadioButton,
29+
MucRadioButtonGroup,
30+
MucInput,
31+
MucTextArea,
32+
MucCheckboxGroup,
33+
MucCheckbox,
34+
MucSelect,
35+
MucErrorList,
2036
MucIcon,
2137
};

0 commit comments

Comments
 (0)