@limetech/lime-elements 37.61.7 → 37.61.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/cjs/limel-icon_2.cjs.entry.js +1 -1
- package/dist/cjs/limel-icon_2.cjs.entry.js.map +1 -1
- package/dist/collection/components/icon/icon.css +13 -19
- package/dist/esm/limel-icon_2.entry.js +1 -1
- package/dist/esm/limel-icon_2.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-441c0259.entry.js +2 -0
- package/dist/lime-elements/p-441c0259.entry.js.map +1 -0
- package/package.json +1 -1
- package/dist/lime-elements/p-5862b851.entry.js +0 -2
- package/dist/lime-elements/p-5862b851.entry.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [37.61.8](https://github.com/Lundalogik/lime-elements/compare/v37.61.7...v37.61.8) (2024-09-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
* **icons:** size icons according to our size rhythms ([116080e](https://github.com/Lundalogik/lime-elements/commit/116080e7358406a7903092cf6bc2167b7bad2a1e))
|
|
8
|
+
|
|
1
9
|
## [37.61.7](https://github.com/Lundalogik/lime-elements/compare/v37.61.6...v37.61.7) (2024-09-23)
|
|
2
10
|
|
|
3
11
|
|
|
@@ -153,7 +153,7 @@ const iconCache = (() => {
|
|
|
153
153
|
return createIconCache();
|
|
154
154
|
})();
|
|
155
155
|
|
|
156
|
-
const iconCss = ":host{background-color:var(--icon-background-color, transparent);border-radius:50%;display:inline-block;line-height:0;box-sizing:border-box}:host svg{fill:currentColor;height:100%;pointer-events:none;width:100%}:host div{margin:var(--limel-icon-svg-margin, 0)}:host([hidden]){display:none}:host([size=x-small]){height:
|
|
156
|
+
const iconCss = ":host{background-color:var(--icon-background-color, transparent);border-radius:50%;display:inline-block;line-height:0;box-sizing:border-box}:host svg{fill:currentColor;height:100%;pointer-events:none;width:100%}:host div{margin:var(--limel-icon-svg-margin, 0)}:host([hidden]){display:none}:host([size=x-small]){height:1rem !important;width:1rem !important}:host([size=small]){height:1.25rem !important;width:1.25rem !important}:host([size=medium]){height:1.5rem !important;width:1.5rem !important}:host([size=large]){height:1.75rem !important;width:1.75rem !important}:host([badge][size=x-small]){height:1.5rem !important;width:1.5rem !important;--limel-icon-svg-margin:0.25rem}:host([badge][size=small]){height:1.75rem !important;width:1.75rem !important;--limel-icon-svg-margin:0.25rem}:host([badge][size=medium]){height:2.5rem !important;width:2.5rem !important;--limel-icon-svg-margin:0.5rem}:host([badge][size=large]){height:2.75rem !important;width:2.75rem !important;--limel-icon-svg-margin:0.5rem}";
|
|
157
157
|
|
|
158
158
|
const Icon = class {
|
|
159
159
|
constructor(hostRef) {
|