@carbon/type 11.3.0 → 11.5.0-rc.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@carbon/type",
3
3
  "description": "Typography for digital and software products using the Carbon Design System",
4
- "version": "11.3.0",
4
+ "version": "11.5.0-rc.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "module": "es/index.js",
@@ -37,11 +37,11 @@
37
37
  "clean": "rimraf css es lib umd"
38
38
  },
39
39
  "dependencies": {
40
- "@carbon/grid": "^11.2.0-rc.0"
40
+ "@carbon/grid": "^11.4.0-rc.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@carbon/cli": "^11.1.0-rc.0",
44
- "@carbon/test-utils": "^10.24.0-rc.0",
43
+ "@carbon/cli": "^11.2.0",
44
+ "@carbon/test-utils": "^10.25.0",
45
45
  "change-case": "^4.1.1",
46
46
  "css": "^3.0.0",
47
47
  "rimraf": "^3.0.0"
@@ -52,5 +52,5 @@
52
52
  "sassDir": "scss",
53
53
  "needs": "^1.3.0"
54
54
  },
55
- "gitHead": "df7ebd7676092998702f525cdef6d8d80c6ed9ad"
55
+ "gitHead": "24655f8eaf108c43ac036e71360d4d3dc09a3bf4"
56
56
  }
package/src/fontFamily.js CHANGED
@@ -8,8 +8,7 @@
8
8
  // Font family fallbacks for: IBM Plex Mono, IBM Plex Sans, IBM Plex Sans
9
9
  // Condensed, IBM Plex Sans Hebrew, and IBM Plex Serif
10
10
  export const fontFamilies = {
11
- mono:
12
- "'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace",
11
+ mono: "'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace",
13
12
  sans: "'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif",
14
13
  sansCondensed:
15
14
  "'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif",
package/src/scale.js CHANGED
@@ -25,27 +25,6 @@ export function getTypeSize(step) {
25
25
  * > Array.from({ length: 23 }, (_, i) => getTypeSize(i + 1))
26
26
  */
27
27
  export const scale = [
28
- 12,
29
- 14,
30
- 16,
31
- 18,
32
- 20,
33
- 24,
34
- 28,
35
- 32,
36
- 36,
37
- 42,
38
- 48,
39
- 54,
40
- 60,
41
- 68,
42
- 76,
43
- 84,
44
- 92,
45
- 102,
46
- 112,
47
- 122,
48
- 132,
49
- 144,
50
- 156,
28
+ 12, 14, 16, 18, 20, 24, 28, 32, 36, 42, 48, 54, 60, 68, 76, 84, 92, 102, 112,
29
+ 122, 132, 144, 156,
51
30
  ];