Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

400 update mde to v107 #409

Open
wants to merge 3 commits into
base: beta
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .storybook/preview-head.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!-- Load MDE-CSS from assets-Server -->
<link
rel="stylesheet"
href="https://assets.muenchen.de/mde/1.0.6/css/muenchende-fontfaces.css"
href="https://assets.muenchen.de/mde/1.0.7/css/muenchende-fontfaces.css"
/>
<link
rel="stylesheet"
href="https://assets.muenchen.de/mde/1.0.6/css/muenchende-style.css"
href="https://assets.muenchen.de/mde/1.0.7/css/muenchende-style.css"
/>
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,14 @@
# muc-patternlab-vue

This repository contains a ready-to-use Vue-Components-Library based
on [munich.de's MDE5 Patternlab](https://patternlab.muenchen.space/). Current supported Version
is [1.0.4](https://patternlab.muenchen.space/?p=documentation-changelog).
on [munich.de's MDE5 Patternlab](https://patternlab.muenchen.space/).

The supported MDE-Version can be taken out of the following table:

| muc-patternlab-vue | MDE Version |
| >= 4.x | [1.0.7](https://patternlab.muenchen.space/?p=documentation-changelog) |
| >= 3.x | [1.0.6](https://patternlab.muenchen.space/?p=documentation-changelog) |
| < 3.x | [1.0.4](https://patternlab.muenchen.space/?p=documentation-changelog) |

In its current state only some components exist. The library will continually grow as the need for new components grows.

Expand Down
2 changes: 1 addition & 1 deletion docs/GettingStarted.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ In your Webcomponents root you should import the MDE5-CSS from assets.muenchen.d

<template>
<link
href="https://assets.muenchen.de/mde/1.0.6/css/muenchende-style.css"
href="https://assets.muenchen.de/mde/1.0.7/css/muenchende-style.css"
rel="stylesheet"
/>

Expand Down
30 changes: 0 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions src/components/Banner/MucBanner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,3 @@ const typeIcon = computed(() => {
</div>
</div>
</template>

<style scoped>
.m-banner--success {
background-color: #f1f6f3;
border-bottom: 1px solid #3a7f53;
}
</style>
26 changes: 0 additions & 26 deletions src/components/Callout/MucCallout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,29 +108,3 @@ const typeAriaLabel = computed(() => {
}
});
</script>

<style scoped>
/* class below may look unused but they are used dynamically! Do NOT remove them!! */
.m-callout--success {
background-color: #f1f6f3;
border-color: #95b9a2;
}

/* class below may look unused but they are used dynamically! Do NOT remove them!! */
.m-callout--success .m-callout__icon {
background-color: #3a7f53;
box-shadow: 0 0.3125rem 0.625rem rgba(0, 90, 159, 0.2);
}

/* class below may look unused but they are used dynamically! Do NOT remove them!! */
.m-callout--error {
background-color: #f8f2f2;
border-color: #c79a9b;
}

/* class below may look unused but they are used dynamically! Do NOT remove them!! */
.m-callout--error .m-callout__icon {
background-color: #984447;
box-shadow: 0 0.3125rem 0.625rem rgba(0, 90, 159, 0.2);
}
</style>