@ulu/frontend 0.0.13 → 0.0.14

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.
@@ -117,7 +117,7 @@ export class CssBreakpoints {
117
117
  /**
118
118
  * Get a breakpoint by key
119
119
  * @param {String} name The name of the breakpoint to get
120
- * @return {Breakpoint} Breakpoint to act on (see BreakpointDirection)
120
+ * @return {Breakpoint} Breakpoint to act on (see Breakpoint class)
121
121
  */
122
122
  at(name) {
123
123
  const bp = this.breakpoints[name];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulu/frontend",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "Theming library",
5
5
  "browser": "js/index.js",
6
6
  "main": "index.js",
@@ -53,7 +53,7 @@ export class CssBreakpoints {
53
53
  /**
54
54
  * Get a breakpoint by key
55
55
  * @param {String} name The name of the breakpoint to get
56
- * @return {Breakpoint} Breakpoint to act on (see BreakpointDirection)
56
+ * @return {Breakpoint} Breakpoint to act on (see Breakpoint class)
57
57
  */
58
58
  at(name: string): Breakpoint;
59
59
  }