@ulu/frontend 0.3.6 → 0.3.7
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.
|
@@ -60,6 +60,7 @@ $-fallbacks: (
|
|
|
60
60
|
/// @prop {CssValue} label-line-height [true] Adjust the link line-height, defaults to typography line-height-dense
|
|
61
61
|
/// @prop {Dimension} link-icon-margin [0.65em] Adds a right margin to the icon.
|
|
62
62
|
/// @prop {Dimension} link-icon-width [1em] The width of the icon.
|
|
63
|
+
/// @prop {Dimension} link-icon-font-size [null] Set the font-size for the icon (not set by default)
|
|
63
64
|
/// @prop {Dimension} link-margin [0.2em] Margin for the menu-stack toggle.
|
|
64
65
|
/// @prop {Dimension} link-padding-x [1em] Horizontal padding for menu-stack toggle.
|
|
65
66
|
/// @prop {Dimension} link-padding-y [0.35em] Vertical padding for menu-stack toggle.
|
|
@@ -92,6 +93,7 @@ $config: (
|
|
|
92
93
|
"link-line-height" : true,
|
|
93
94
|
"link-icon-margin" : 0.65em,
|
|
94
95
|
"link-icon-width" : 1em,
|
|
96
|
+
"link-icon-font-size" : null,
|
|
95
97
|
"link-margin" : 0.2em,
|
|
96
98
|
"link-padding-x": 1.25em,
|
|
97
99
|
"link-padding-y": 0.5em,
|
|
@@ -280,6 +282,7 @@ $styles: (
|
|
|
280
282
|
#{ $prefix }__link-icon {
|
|
281
283
|
margin-right: get("link-icon-margin");
|
|
282
284
|
width: get("link-icon-width");
|
|
285
|
+
font-size: get("link-icon-font-size");
|
|
283
286
|
}
|
|
284
287
|
#{ $prefix }__collapsible {
|
|
285
288
|
margin: 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ulu/frontend",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"description": "A framework-agnostic frontend toolkit providing a modular, tree-shakable library of accessible components and utilities. Designed for seamless integration, it features a highly configurable SCSS system for any environment and vanilla JavaScript modules optimized for traditional websites and content management systems.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|