@carbon/type 11.45.0-rc.0 → 11.45.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.45.0-rc.0",
4
+ "version": "11.45.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "module": "es/index.js",
@@ -41,16 +41,16 @@
41
41
  "postinstall": "ibmtelemetry --config=telemetry.yml"
42
42
  },
43
43
  "dependencies": {
44
- "@carbon/grid": "^11.41.0-rc.0",
45
- "@carbon/layout": "^11.39.0-rc.0",
44
+ "@carbon/grid": "^11.41.0",
45
+ "@carbon/layout": "^11.39.0",
46
46
  "@ibm/telemetry-js": "^1.5.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@carbon/cli": "^11.32.0-rc.0",
50
- "@carbon/test-utils": "^10.36.0",
49
+ "@carbon/cli": "^11.32.0",
50
+ "@carbon/test-utils": "^10.37.0",
51
51
  "change-case": "^4.1.1",
52
52
  "css": "^3.0.0",
53
- "rimraf": "^6.0.0"
53
+ "rimraf": "^6.0.1"
54
54
  },
55
55
  "eyeglass": {
56
56
  "exports": false,
@@ -58,5 +58,5 @@
58
58
  "sassDir": "scss",
59
59
  "needs": "^1.3.0"
60
60
  },
61
- "gitHead": "babd7a9692f8c0595b67877417d7ebf915e19b20"
61
+ "gitHead": "d66cc6afbdf6802cf8b14042f20f7c350beef90b"
62
62
  }
@@ -3,7 +3,7 @@
3
3
  exports[`fontFamily should be printable 1`] = `"font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;"`;
4
4
 
5
5
  exports[`fontFamily should export the supported font families 1`] = `
6
- Object {
6
+ {
7
7
  "mono": "'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace",
8
8
  "sans": "'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif",
9
9
  "sansCondensed": "'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif",
@@ -3,7 +3,7 @@
3
3
  exports[`fontWeight should be printable 1`] = `"font-weight: 400;"`;
4
4
 
5
5
  exports[`fontWeight should export the supported font weights 1`] = `
6
- Object {
6
+ {
7
7
  "light": 300,
8
8
  "regular": 400,
9
9
  "semibold": 600,
@@ -1,7 +1,7 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`scale should export the type scale 1`] = `
4
- Array [
4
+ [
5
5
  12,
6
6
  14,
7
7
  16,
@@ -12,7 +12,7 @@ import * as CarbonType from '../';
12
12
  describe('type', () => {
13
13
  it('should export type helpers', () => {
14
14
  expect(Object.keys(CarbonType)).toMatchInlineSnapshot(`
15
- Array [
15
+ [
16
16
  "fluid",
17
17
  "fontFamilies",
18
18
  "fontFamily",
@@ -41,22 +41,22 @@ describe('fluid', () => {
41
41
 
42
42
  it('should compute the fluid styles for a token', () => {
43
43
  expect(fluid(display04)).toMatchInlineSnapshot(`
44
- Object {
45
- "@media (min-width: 42rem)": Object {
44
+ {
45
+ "@media (min-width: 42rem)": {
46
46
  "fontSize": "calc(4.25rem + 1.5 * ((100vw - 42rem) / 24))",
47
47
  "lineHeight": 1.15,
48
48
  },
49
- "@media (min-width: 66rem)": Object {
49
+ "@media (min-width: 66rem)": {
50
50
  "fontSize": "calc(5.75rem + 1.875 * ((100vw - 66rem) / 16))",
51
51
  "letterSpacing": "-0.64px",
52
52
  "lineHeight": 1.11,
53
53
  },
54
- "@media (min-width: 82rem)": Object {
54
+ "@media (min-width: 82rem)": {
55
55
  "fontSize": "calc(7.625rem + 2.125 * ((100vw - 82rem) / 17))",
56
56
  "letterSpacing": "-0.64px",
57
57
  "lineHeight": 1.07,
58
58
  },
59
- "@media (min-width: 99rem)": Object {
59
+ "@media (min-width: 99rem)": {
60
60
  "fontSize": "9.75rem",
61
61
  "letterSpacing": "-0.96px",
62
62
  "lineHeight": 1.05,