Skip to content

Commit 33a8984

Browse files
Death to the monorepo (#34)
* Move base components to website repo * Remove components package * Remove workspace setup * Move site to root * Regenerate lockfile * Fix typing of module nuxt options * Fix highlighting of todo comment
1 parent a62cebc commit 33a8984

File tree

109 files changed

+1120
-3691
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+1120
-3691
lines changed
File renamed without changes.

site/app.vue renamed to app.vue

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

components/src/base-heading/base-heading.vue renamed to components/Base/Heading.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<script setup lang="ts">
22
import { computed, toRefs, unref } from 'vue';
3-
import BaseIcon from '../base-icon/base-icon.vue';
43
54
export interface BaseHeadingProps {
65
size?: 'title' | 'large' | 'medium' | 'small';
@@ -18,7 +17,9 @@ const props = withDefaults(defineProps<BaseHeadingProps>(), {
1817
const { tag, size } = toRefs(props);
1918
2019
const iconSize = computed(() => {
21-
return unref(size);
20+
const headingSize = unref(size);
21+
if (headingSize === 'title') return 'large';
22+
return headingSize;
2223
});
2324
</script>
2425

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

components/docgen.config.cjs

-7
This file was deleted.

components/histoire.config.ts

-10
This file was deleted.

components/histoire.css

-8
This file was deleted.

components/histoire.setup.ts

-17
This file was deleted.
File renamed without changes.

components/package.json

-56
This file was deleted.

components/src/base-divider/base-divider.story.vue

-9
This file was deleted.

components/src/base-heading/base-heading.story.md

-14
This file was deleted.

components/src/base-heading/base-heading.story.vue

-44
This file was deleted.

components/src/base-icon/base-icon.story.vue

-30
This file was deleted.

components/src/index.ts

-2
This file was deleted.

components/src/shims.d.ts

-5
This file was deleted.

components/src/theme/colors.story.vue

-96
This file was deleted.

components/src/theme/fonts.story.vue

-29
This file was deleted.

0 commit comments

Comments
 (0)