@carbon/themes 11.63.0 → 11.64.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.
Files changed (2) hide show
  1. package/package.json +6 -6
  2. package/scss/_theme.scss +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@carbon/themes",
3
3
  "description": "Themes for applying color in the Carbon Design System",
4
- "version": "11.63.0",
4
+ "version": "11.64.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "module": "es/index.js",
@@ -32,16 +32,16 @@
32
32
  "postinstall": "ibmtelemetry --config=telemetry.yml"
33
33
  },
34
34
  "dependencies": {
35
- "@carbon/colors": "^11.42.0",
36
- "@carbon/layout": "^11.43.0",
37
- "@carbon/type": "^11.49.0",
35
+ "@carbon/colors": "^11.43.0",
36
+ "@carbon/layout": "^11.44.0",
37
+ "@carbon/type": "^11.50.0",
38
38
  "@ibm/telemetry-js": "^1.5.0",
39
39
  "color": "^4.0.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@babel/node": "^7.27.1",
43
43
  "@babel/preset-env": "^7.27.2",
44
- "@carbon/cli": "^11.36.0",
44
+ "@carbon/cli": "^11.37.0",
45
45
  "@carbon/cli-reporter": "^10.8.0",
46
46
  "@carbon/scss-generator": "^10.20.0",
47
47
  "@carbon/test-utils": "^10.38.0",
@@ -52,5 +52,5 @@
52
52
  "rimraf": "^6.0.1"
53
53
  },
54
54
  "sideEffects": false,
55
- "gitHead": "d2ccae94e5aa3defcce07cc9ea90058fda6c9705"
55
+ "gitHead": "4a42de3036ca693bf2c6477e917824982fafd7af"
56
56
  }
package/scss/_theme.scss CHANGED
@@ -110,7 +110,7 @@ $-component-tokens: ();
110
110
  @each $property, $property-value in $value {
111
111
  // Only support one-level of depth for values that are maps. This is to
112
112
  // avoid bringing properties like `breakpoints` on type tokens
113
- @if type-of($property-value) != map {
113
+ @if meta.type-of($property-value) != map {
114
114
  @include -custom-property('#{$name}-#{$property}', $property-value);
115
115
  }
116
116
  }