Skip to content

Commit 1f9b29c

Browse files
committed
🐛 fix missing style exports and remove unused style import in index.ts
1 parent cfda99d commit 1f9b29c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

docs/GettingStarted.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ In your Webcomponents root you should import the MDE5-CSS and SVG-Sprite for MDE
5555
<style>
5656
@import "@muenchen/muc-patternlab-vue/dist/assets/temporary/muenchende-style.css";
5757
@import "@muenchen/muc-patternlab-vue/dist/assets/temporary/custom-style.css";
58+
@import "@muenchen/muc-patternlab-vue/dist/style.css";
5859
</style>
5960
```
6061

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@
2121
"types": "./dist/types/index.d.ts",
2222
"import": "./dist/muc-patternlab-vue.es.js"
2323
},
24-
"./dist/assets/temporary/muc-icons.svg": "./dist/assets/temporary/muc-icons.svg",
25-
"./dist/assets/temporary/custom-icons.svg": "./dist/assets/temporary/custom-icons.svg",
24+
"./dist/style.css": "./dist/style.css",
25+
"./dist/assets/temporary/custom-style.css": "./dist/assets/temporary/custom-style.css",
26+
"./dist/assets/temporary/muenchende-style.css": "./dist/assets/temporary/muenchende-style.css",
2627
"./dist/assets/temporary/muenchende-fontface.css": "./dist/assets/temporary/muenchende-fontface.css",
27-
"./dist/assets/temporary/muenchende-style.css": "./dist/assets/temporary/muenchende-style.css"
28+
"./dist/assets/temporary/muc-icons.svg": "./dist/assets/temporary/muc-icons.svg",
29+
"./dist/assets/temporary/custom-icons.svg": "./dist/assets/temporary/custom-icons.svg"
2830
},
2931
"files": [
3032
"src",

src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import { type App } from "vue";
22

33
import * as components from "./components";
44

5-
import "../public/assets/temporary/muenchende-style.css";
6-
75
function install(app: App) {
86
for (const key in components) {
97
// @ts-expect-error

0 commit comments

Comments
 (0)