@ulu/frontend 0.6.11 → 0.6.12

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.
@@ -37,22 +37,11 @@ $-fallbacks: (
37
37
 
38
38
  /// Module Settings
39
39
  /// @type Map
40
- /// @prop {Boolean} link-separated-margin [false] Enables a margin between the items in the menu-stack.
41
- /// @prop {Boolean} link-separated-rule-style [false] Enables a rule between the items in the menu-stack.
40
+
42
41
  /// @prop {Dimension} nested-indent [0.5em] The indentation of child lists within the menu-stack.
43
42
  /// @prop {Dimension} rule-margin [0.5em] Sets the padding and margin of the rule.
44
43
  /// @prop {String} rule-style [default] Determines the styling of the rule. Uses the rule.scss component.
45
44
  /// @prop {Number} toggle-icon-rotate [false] Set a value to rotate the collapsible item toggle icon rotation when open (ie. 90deg)
46
- /// @prop {Dimension} compact-link-padding-x [0.75em] The links horizontal padding when using the compact option.
47
- /// @prop {Dimension} compact-link-padding-y [0.25em] The links vertical padding when using the compact option.
48
- /// @prop {Dimension} compact-link-margin [0.2em] Margin between items when compact
49
- /// @prop {Dimension} compact-link-border-radius [null] Unless set will use the normal link border radius
50
- /// @prop {Dimension} compact-selectable-input-width [2em] The width of the checkbox/radio input (when compact modifier)
51
- /// @prop {Dimension} compact-selectable-input-font-size [null] Optional compact input font-size
52
- /// @prop {Dimension} compact-selectable-input-top [null] Optional y/top for input
53
- /// @prop {Dimension} stacked-link-padding-x [0.4em] The links horizontal padding when using the stacked option.
54
- /// @prop {Dimension} stacked-link-padding-y [0.4em] The links vertical padding when using the stacked option.
55
- /// @prop {Dimension} stacked-link-icon-margin [0.35em] Margin between icon and text when stacked.
56
45
  /// @prop {Color} label-color [null] The type color of the label.
57
46
  /// @prop {Dimension} label-margin [0.5em] The margin of the label.
58
47
  /// @prop {CssValue} label-text-transform [uppercase] Transforms the label text.
@@ -75,6 +64,8 @@ $-fallbacks: (
75
64
  /// @prop {Dimension} link-margin [0.2em] Margin for the menu-stack toggle.
76
65
  /// @prop {Dimension} link-padding-x [1em] Horizontal padding for menu-stack toggle.
77
66
  /// @prop {Dimension} link-padding-y [0.35em] Vertical padding for menu-stack toggle.
67
+ /// @prop {Boolean} link-separated-margin [false] Enables a margin between the items in the menu-stack.
68
+ /// @prop {Boolean} link-separated-rule-style [false] Enables a rule between the items in the menu-stack.
78
69
  /// @prop {Dimension} selectable-input-width [3em] The width of the checkbox/radio input
79
70
  /// @prop {Dimension} selectable-input-top [0.73em] To fine tune the y/top value for absolutely positioned input, if you pass null/falsey it will use the padding which isn't always perfect since this is setup to not be centered when wrapping lines in label
80
71
  /// @prop {Dimension} selectable-input-font-size [null] Optional to set a specific font-size on the input
@@ -88,7 +79,18 @@ $-fallbacks: (
88
79
  /// @prop {Boolean} title-separated-margin [false] Use specific margin for title separated items.
89
80
  /// @prop {Dimension} columns-gap [2rem] The gap between columns in a columns menu stack.
90
81
  /// @prop {Dimension} columns-min-width [18rem] The minimum width of a column in a columns menu stack.
91
-
82
+ /// @prop {Dimension} compact-link-padding-x [0.75em] The links horizontal padding when using the compact option.
83
+ /// @prop {Dimension} compact-link-padding-y [0.25em] The links vertical padding when using the compact option.
84
+ /// @prop {Dimension} compact-link-margin [0.2em] Margin between items when compact
85
+ /// @prop {Dimension} compact-link-border-radius [null] Unless set will use the normal link border radius
86
+ /// @prop {Dimension} compact-selectable-input-width [2em] The width of the checkbox/radio input (when compact modifier)
87
+ /// @prop {Dimension} compact-selectable-input-font-size [null] Optional compact input font-size
88
+ /// @prop {Dimension} compact-selectable-input-top [null] Optional y/top for input
89
+ /// @prop {Dimension} stacked-link-padding-x [0.4em] The links horizontal padding when using the stacked option.
90
+ /// @prop {Dimension} stacked-link-padding-y [0.4em] The links vertical padding when using the stacked option.
91
+ /// @prop {Dimension} stacked-link-icon-margin [0.35em] Margin between icon and text when stacked.
92
+ /// @prop {Dimension} stacked-link-border-radius [true] Border radius for stacked style of links, defaults to element "border-radius-small"
93
+ /// @prop {Dimension} stacked-link-font-weight [true] Optional font-weight for stacked style
92
94
 
93
95
  $config: (
94
96
  "nested-indent" : 0.5em,
@@ -129,9 +131,11 @@ $config: (
129
131
  "compact-selectable-input-top" : 0.5em,
130
132
  "compact-selectable-input-font-size": 0.8em,
131
133
  "stacked-link-padding-x": 0.4em,
132
- "stacked-link-padding-y": 0.4em,
134
+ "stacked-link-padding-y": 0.8em,
135
+ "stacked-link-margin": 0.4em,
133
136
  "stacked-link-icon-margin": 0.35em,
134
137
  "stacked-link-border-radius": true,
138
+ "stacked-link-font-weight" : null,
135
139
  "selectable-input-width" : 3em,
136
140
  "selectable-input-top" : 0.73em,
137
141
  "selectable-input-font-size" : null,
@@ -394,6 +398,8 @@ $config: (
394
398
  border-radius: get("stacked-link-border-radius");
395
399
  padding-top: get("stacked-link-padding-y");
396
400
  padding-bottom: get("stacked-link-padding-y");
401
+ margin: get("stacked-link-margin") 0;
402
+ font-weight: get("stacked-link-font-weight");
397
403
  }
398
404
  #{ $prefix }__link-icon {
399
405
  margin-right: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulu/frontend",
3
- "version": "0.6.11",
3
+ "version": "0.6.12",
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": [