@carbon/themes 11.20.0-rc.0 → 11.20.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/README.md +3 -7
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -55,18 +55,14 @@ Inline theming can be done by using the mixin. For example:
55
55
  @use '@carbon/themes/scss/themes';
56
56
  @use '@carbon/themes/scss/theme';
57
57
 
58
- // Use the default white theme here
58
+ // Uses the default white theme here
59
59
 
60
60
  .my-dark-theme {
61
- @include theme.theme(themes.$g90) {
62
- // Use the dark theme here
63
- }
61
+ @include theme.theme(themes.$g90);
64
62
  }
65
63
 
66
64
  .my-darker-theme {
67
- @include theme.theme(themes.$g100) {
68
- // Use the darker theme here
69
- }
65
+ @include theme.theme(themes.$g100);
70
66
  }
71
67
  ```
72
68
 
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.20.0-rc.0",
4
+ "version": "11.20.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "module": "es/index.js",
@@ -29,18 +29,18 @@
29
29
  "build": "yarn clean && carbon-cli bundle src/index.js --name CarbonThemes && babel-node --presets '@babel/preset-env' tasks/build.js && carbon-cli check \"scss/*.scss\""
30
30
  },
31
31
  "dependencies": {
32
- "@carbon/colors": "^11.16.0-rc.0",
33
- "@carbon/layout": "^11.15.0-rc.0",
34
- "@carbon/type": "^11.19.0-rc.0",
32
+ "@carbon/colors": "^11.16.0",
33
+ "@carbon/layout": "^11.15.0",
34
+ "@carbon/type": "^11.19.0",
35
35
  "color": "^4.0.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@babel/node": "^7.17.10",
39
39
  "@babel/preset-env": "^7.18.2",
40
- "@carbon/cli": "^11.11.0-rc.0",
40
+ "@carbon/cli": "^11.11.0",
41
41
  "@carbon/cli-reporter": "^10.6.0",
42
- "@carbon/scss-generator": "^10.18.0-rc.0",
43
- "@carbon/test-utils": "^10.30.0-rc.0",
42
+ "@carbon/scss-generator": "^10.18.0",
43
+ "@carbon/test-utils": "^10.30.0",
44
44
  "change-case": "^4.1.1",
45
45
  "core-js": "^3.16.0",
46
46
  "fs-extra": "^10.0.0",
@@ -48,5 +48,5 @@
48
48
  "rimraf": "^5.0.0"
49
49
  },
50
50
  "sideEffects": false,
51
- "gitHead": "7469c25402ca50e3e74bdb049fbdd5811c1dede9"
51
+ "gitHead": "4f3787a474ab93252975d717426c186ec4355812"
52
52
  }