@ulu/frontend 0.1.0-beta.89 → 0.1.0-beta.90

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.1.0-beta.90
4
+
5
+ - Fix missing file-header comments in base scss modules
6
+
3
7
  ## 0.1.0-beta.89
4
8
 
5
9
  - **scss/base/elements** - Remove old breakpoints.embed-for-scripts (puts active breakpoint on body hidden pseudo)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulu/frontend",
3
- "version": "0.1.0-beta.89",
3
+ "version": "0.1.0-beta.90",
4
4
  "description": "A versatile SCSS and JavaScript component library offering configurable, accessible components and flexible integration into any project, with SCSS modules suitable for modern JS frameworks.",
5
5
  "browser": "js/index.js",
6
6
  "main": "index.js",
@@ -41,6 +41,7 @@ $config: (
41
41
  /// Output Layout Styles
42
42
 
43
43
  @mixin styles {
44
+ @include utils.file-header('base', 'layout');
44
45
 
45
46
  @if (get("containers")) {
46
47
  @each $name, $values in layout.$containers {
@@ -10,6 +10,8 @@
10
10
  /// @include ulu.base-print-styles();
11
11
 
12
12
  @mixin styles {
13
+ @include utils.file-header('base', 'print');
14
+
13
15
  @media (print) {
14
16
  * {
15
17
  background: transparent !important;