@codecademy/variance 0.24.1-alpha.b124b2.0 → 0.24.1-alpha.bd0e21.0

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.
@@ -48,7 +48,8 @@ declare class ThemeBuilder<T extends AbstractTheme> {
48
48
  updateScale<Key extends keyof T, Fn extends (tokens: T[Key]) => Record<string | number, unknown>>(key: Key, updateFn: Fn): ThemeBuilder<T & Record<Key, T[Key] & ReturnType<Fn>>>;
49
49
  /**
50
50
  *
51
- * @param name Adds an accessible name to the theme
51
+ * @param name Adds a name to the theme
52
+ * This is used for referencing the theme for replacing default fonts.
52
53
  * @example .addName('core')
53
54
  */
54
55
  addName(name: string): ThemeBuilder<MergeTheme<T & PrivateThemeKeys, Record<'name', string>>>;
@@ -108,7 +108,8 @@ class ThemeBuilder {
108
108
 
109
109
  /**
110
110
  *
111
- * @param name Adds an accessible name to the theme
111
+ * @param name Adds a name to the theme
112
+ * This is used for referencing the theme for replacing default fonts.
112
113
  * @example .addName('core')
113
114
  */
114
115
  addName(name) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codecademy/variance",
3
3
  "description": "Constraint based CSS in JS for building scalable design systems",
4
- "version": "0.24.1-alpha.b124b2.0",
4
+ "version": "0.24.1-alpha.bd0e21.0",
5
5
  "author": "codecaaron <aaron@codecademy.com>",
6
6
  "dependencies": {
7
7
  "csstype": "^3.0.7",
@@ -32,5 +32,5 @@
32
32
  "build": "nx build @codecademy/variance"
33
33
  },
34
34
  "types": "dist/index.d.ts",
35
- "gitHead": "7194365c53ab9cdad89735ab0b44bec29de3b95b"
35
+ "gitHead": "48477ecf2c9232999fff36a4d493d10d9542ecea"
36
36
  }