@ulu/frontend 0.0.18 → 0.0.19

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,10 @@
1
1
  # Change Log
2
2
 
3
+ ## Version 0.0.18
4
+
5
+ - Fix docs issue with JS broken from Markdown Attrs
6
+ - Fix missing arguments in typography module sassdocs comments
7
+
3
8
  ## Version 0.0.17
4
9
 
5
10
  ### SCSS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulu/frontend",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "description": "Modular Sass Theming Library",
5
5
  "browser": "js/index.js",
6
6
  "main": "index.js",
@@ -55,7 +55,7 @@
55
55
  "homepage": "https://github.com/Jscherbe/frontend#readme",
56
56
  "devDependencies": {
57
57
  "@ulu/vitepress-auto-menus": "^0.0.3",
58
- "@ulu/vitepress-sassdoc": "^0.0.7",
58
+ "@ulu/vitepress-sassdoc": "^0.0.8",
59
59
  "clean-jsdoc-theme": "^4.2.17",
60
60
  "fs-extra": "^11.2.0",
61
61
  "jsdoc": "^4.0.2",
@@ -275,6 +275,7 @@ $sizes: (
275
275
  /// Print a typography size (font-size, line-height)
276
276
  /// @param {String} $nameOrMap Name to retrieve from sizes map or a unique size map that follows the API
277
277
  /// @param {Map} $changes Modifications to be merged into size before using
278
+ /// @param {Boolean} $only-font-size Only print the font size
278
279
 
279
280
  @mixin size($name, $changes: false, $only-font-size: null) {
280
281
  $size: $name;