@bliss-design-system/icon
Advanced tools
Comparing version 2.0.0 to 2.0.1
# @bliss-design-system/icon | ||
## 2.0.1 | ||
### Patch Changes | ||
- fix global style leak | ||
## 2.0.0 | ||
### Major Changes | ||
@@ -5,0 +12,0 @@ |
{ | ||
"name": "@bliss-design-system/icon", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Bliss Design Sytem icon web component, consumes icons from Bliss Iconsets toolkit", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -0,0 +0,0 @@ import { BlissIcon } from './ts/BlissIcon.js'; |
@@ -43,7 +43,2 @@ import { __decorate } from "tslib"; | ||
return html ` | ||
<style> | ||
svg { | ||
display: block; | ||
} | ||
</style> | ||
<svg | ||
@@ -54,2 +49,3 @@ xmlns="http://www.w3.org/2000/svg" | ||
fill="currentColor" | ||
style="display: block;" | ||
> | ||
@@ -56,0 +52,0 @@ <use href=${`#bliss-icon-${this.iconName}`}></use> |
@@ -59,7 +59,2 @@ import { html, property, LitElement, TemplateResult } from 'lit-element'; | ||
return html` | ||
<style> | ||
svg { | ||
display: block; | ||
} | ||
</style> | ||
<svg | ||
@@ -70,2 +65,3 @@ xmlns="http://www.w3.org/2000/svg" | ||
fill="currentColor" | ||
style="display: block;" | ||
> | ||
@@ -72,0 +68,0 @@ <use href=${`#bliss-icon-${this.iconName}`}></use> |
11984
175