@carbon/themes 11.3.0 → 11.4.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/docs/sass.md +2 -2
- package/package.json +10 -10
package/docs/sass.md
CHANGED
|
@@ -56,7 +56,7 @@ You can also extend the theme with your own custom tokens:
|
|
|
56
56
|
$fallback: themes.$g100,
|
|
57
57
|
$theme: (
|
|
58
58
|
token-01: #000000,
|
|
59
|
-
)
|
|
59
|
+
)
|
|
60
60
|
);
|
|
61
61
|
```
|
|
62
62
|
|
|
@@ -181,7 +181,7 @@ Sass would not compile when doing the following:
|
|
|
181
181
|
```scss
|
|
182
182
|
@use '@carbon/themes/scss/modules/themes';
|
|
183
183
|
@use '@carbon/themes' with (
|
|
184
|
-
$theme: themes.$g100
|
|
184
|
+
$theme: themes.$g100
|
|
185
185
|
);
|
|
186
186
|
```
|
|
187
187
|
|
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.
|
|
4
|
+
"version": "11.4.0-rc.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.
|
|
33
|
-
"@carbon/layout": "^11.
|
|
34
|
-
"@carbon/type": "^11.
|
|
32
|
+
"@carbon/colors": "^11.3.0-rc.0",
|
|
33
|
+
"@carbon/layout": "^11.3.0-rc.0",
|
|
34
|
+
"@carbon/type": "^11.4.0-rc.0",
|
|
35
35
|
"color": "^3.1.2"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@babel/node": "^7.
|
|
39
|
-
"@babel/preset-env": "^7.
|
|
40
|
-
"@carbon/cli": "^11.
|
|
38
|
+
"@babel/node": "^7.17.10",
|
|
39
|
+
"@babel/preset-env": "^7.18.2",
|
|
40
|
+
"@carbon/cli": "^11.2.0-rc.0",
|
|
41
41
|
"@carbon/cli-reporter": "^10.5.0",
|
|
42
|
-
"@carbon/scss-generator": "^10.
|
|
43
|
-
"@carbon/test-utils": "^10.
|
|
42
|
+
"@carbon/scss-generator": "^10.14.0-rc.0",
|
|
43
|
+
"@carbon/test-utils": "^10.25.0-rc.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": "^3.0.0"
|
|
49
49
|
},
|
|
50
50
|
"sideEffects": false,
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "a44075aa04612c5ddaf73953ca7ce14d1882a02c"
|
|
52
52
|
}
|