@ulu/frontend 0.1.0-beta.63 → 0.1.0-beta.65

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.
@@ -5223,6 +5223,9 @@
5223
5223
 
5224
5224
  <li><a href="#mixin-cap-appearance">cap-appearance()</a>
5225
5225
  </li>
5226
+
5227
+ <li><a href="#mixin-backdrop-filter-blur">backdrop-filter-blur()</a>
5228
+ </li>
5226
5229
  </ol>
5227
5230
  </li>
5228
5231
 
@@ -6121,6 +6124,42 @@ styling (text-decoration, etc)</li>
6121
6124
  <ul>
6122
6125
  <li><a href="/frontend/sass/core/breakpoint/#function-get">get()</a></li>
6123
6126
  </ul>
6127
+ <div class="sassdoc-item-header">
6128
+ <h3 id="mixin-backdrop-filter-blur" tabindex="-1">backdrop-filter-blur()</h3>
6129
+ <div class="sassdoc-item-header__labels">
6130
+ <span class="tag tag--primary"><strong>Mixin</strong></span>
6131
+ </div>
6132
+ </div>
6133
+ <p>Add backdrop-filter blur</p>
6134
+ <details>
6135
+ <summary>File Information</summary>
6136
+ <ul>
6137
+ <li><strong>File:</strong> _element.scss</li>
6138
+ <li><strong>Group:</strong> element</li>
6139
+ <li><strong>Type:</strong> mixin</li>
6140
+ <li><strong>Lines (comments):</strong> 387-389</li>
6141
+ <li><strong>Lines (code):</strong> 390-392</li>
6142
+ </ul>
6143
+ </details>
6144
+ <h4 id="parameters-13" tabindex="-1">Parameters</h4>
6145
+ <table>
6146
+ <thead>
6147
+ <tr>
6148
+ <th style="text-align:left">Name</th>
6149
+ <th style="text-align:left">Type</th>
6150
+ <th style="text-align:left">Default</th>
6151
+ <th style="text-align:left">Description</th>
6152
+ </tr>
6153
+ </thead>
6154
+ <tbody>
6155
+ <tr>
6156
+ <td style="text-align:left">$amount</td>
6157
+ <td style="text-align:left"><code>CssUnit</code></td>
6158
+ <td style="text-align:left">get(&quot;backdrop-blur&quot;)</td>
6159
+ <td style="text-align:left">Amount to blur</td>
6160
+ </tr>
6161
+ </tbody>
6162
+ </table>
6124
6163
  <h2 id="functions" tabindex="-1">Functions</h2>
6125
6164
  <div class="sassdoc-item-header">
6126
6165
  <h3 id="function-get" tabindex="-1">get()</h3>
@@ -6139,7 +6178,7 @@ styling (text-decoration, etc)</li>
6139
6178
  <li><strong>Lines (code):</strong> 106-108</li>
6140
6179
  </ul>
6141
6180
  </details>
6142
- <h4 id="parameters-13" tabindex="-1">Parameters</h4>
6181
+ <h4 id="parameters-14" tabindex="-1">Parameters</h4>
6143
6182
  <table>
6144
6183
  <thead>
6145
6184
  <tr>
@@ -6183,7 +6222,7 @@ styling (text-decoration, etc)</li>
6183
6222
  <li><strong>Lines (code):</strong> 128-130</li>
6184
6223
  </ul>
6185
6224
  </details>
6186
- <h4 id="parameters-14" tabindex="-1">Parameters</h4>
6225
+ <h4 id="parameters-15" tabindex="-1">Parameters</h4>
6187
6226
  <table>
6188
6227
  <thead>
6189
6228
  <tr>
@@ -6222,7 +6261,7 @@ styling (text-decoration, etc)</li>
6222
6261
  <li><strong>Lines (code):</strong> 135-137</li>
6223
6262
  </ul>
6224
6263
  </details>
6225
- <h4 id="parameters-15" tabindex="-1">Parameters</h4>
6264
+ <h4 id="parameters-16" tabindex="-1">Parameters</h4>
6226
6265
  <table>
6227
6266
  <thead>
6228
6267
  <tr>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulu/frontend",
3
- "version": "0.1.0-beta.63",
3
+ "version": "0.1.0-beta.65",
4
4
  "description": "Modular Sass Theming Library",
5
5
  "browser": "js/index.js",
6
6
  "main": "index.js",
@@ -382,4 +382,11 @@ $rule-margins: (
382
382
  }
383
383
  }
384
384
  }
385
+ }
386
+
387
+ /// Add backdrop-filter blur
388
+ /// @param {CssUnit} $amount [get("backdrop-blur")] Amount to blur
389
+ ///
390
+ @mixin backdrop-filter-blur($amount: get("backdrop-blur")) {
391
+ backdrop-filter: blur($amount);
385
392
  }
@@ -11,7 +11,7 @@
11
11
  /// Module Settings
12
12
  /// @type Map
13
13
  /// @prop {List|CssUnit} margin [(2rem 0)] The top and bottom margin of the list.
14
- /// @prop {List|CssUnit} item-margin [(0, 0, 1rem, 0)] The margin applied to each list item.
14
+ /// @prop {List|CssUnit} item-margin [((0 0 1rem 0))] The margin applied to each list item.
15
15
  /// @prop {Keyword} align-items [baseline] How to align the counter (flexbox align-items values)
16
16
  /// @prop {CssUnit} counter-width [2.4em] The width and height (if height is falsy)
17
17
  /// @prop {CssUnit} counter-height [null] The height (optional)
@@ -24,7 +24,7 @@
24
24
 
25
25
  $config: (
26
26
  "margin" : (2rem 0),
27
- "item-margin" : (0, 0, 1rem, 0),
27
+ "item-margin" : (0 0 1rem 0),
28
28
  "align-items" : baseline,
29
29
  "counter-width" : 2.4em,
30
30
  "counter-height" : null,