@carbon/themes 11.55.0-rc.0 → 11.55.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/es/index.js +2 -1
- package/lib/index.js +2 -1
- package/package.json +6 -6
- package/src/tokens/Token.js +2 -1
- package/umd/index.js +2 -1
package/es/index.js
CHANGED
|
@@ -4779,7 +4779,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
4779
4779
|
});
|
|
4780
4780
|
|
|
4781
4781
|
/**
|
|
4782
|
-
* Copyright IBM Corp. 2018,
|
|
4782
|
+
* Copyright IBM Corp. 2018, 2025
|
|
4783
4783
|
*
|
|
4784
4784
|
* This source code is licensed under the Apache-2.0 license found in the
|
|
4785
4785
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -4790,6 +4790,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
4790
4790
|
* that it applies to like border or background, along with a state if the
|
|
4791
4791
|
* token should only be used for specific states like hover or focus.
|
|
4792
4792
|
*/
|
|
4793
|
+
// eslint-disable-next-line @typescript-eslint/no-extraneous-class
|
|
4793
4794
|
var Token = /*#__PURE__*/function () {
|
|
4794
4795
|
function Token(name, properties, state) {
|
|
4795
4796
|
_classCallCheck(this, Token);
|
package/lib/index.js
CHANGED
|
@@ -4785,7 +4785,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
4785
4785
|
});
|
|
4786
4786
|
|
|
4787
4787
|
/**
|
|
4788
|
-
* Copyright IBM Corp. 2018,
|
|
4788
|
+
* Copyright IBM Corp. 2018, 2025
|
|
4789
4789
|
*
|
|
4790
4790
|
* This source code is licensed under the Apache-2.0 license found in the
|
|
4791
4791
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -4796,6 +4796,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
4796
4796
|
* that it applies to like border or background, along with a state if the
|
|
4797
4797
|
* token should only be used for specific states like hover or focus.
|
|
4798
4798
|
*/
|
|
4799
|
+
// eslint-disable-next-line @typescript-eslint/no-extraneous-class
|
|
4799
4800
|
var Token = /*#__PURE__*/function () {
|
|
4800
4801
|
function Token(name, properties, state) {
|
|
4801
4802
|
_classCallCheck(this, Token);
|
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.55.0
|
|
4
|
+
"version": "11.55.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.35.0
|
|
36
|
-
"@carbon/layout": "^11.36.0
|
|
37
|
-
"@carbon/type": "^11.42.0
|
|
35
|
+
"@carbon/colors": "^11.35.0",
|
|
36
|
+
"@carbon/layout": "^11.36.0",
|
|
37
|
+
"@carbon/type": "^11.42.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.29.0
|
|
44
|
+
"@carbon/cli": "^11.29.0",
|
|
45
45
|
"@carbon/cli-reporter": "^10.7.0",
|
|
46
46
|
"@carbon/scss-generator": "^10.19.0",
|
|
47
47
|
"@carbon/test-utils": "^10.36.0",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"rimraf": "^6.0.0"
|
|
53
53
|
},
|
|
54
54
|
"sideEffects": false,
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "faed0dec20f49fc7a98d7509c2c0170dff9992fc"
|
|
56
56
|
}
|
package/src/tokens/Token.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright IBM Corp. 2018,
|
|
2
|
+
* Copyright IBM Corp. 2018, 2025
|
|
3
3
|
*
|
|
4
4
|
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* that it applies to like border or background, along with a state if the
|
|
11
11
|
* token should only be used for specific states like hover or focus.
|
|
12
12
|
*/
|
|
13
|
+
// eslint-disable-next-line @typescript-eslint/no-extraneous-class
|
|
13
14
|
export class Token {
|
|
14
15
|
static create(token) {
|
|
15
16
|
if (typeof token === 'string') {
|
package/umd/index.js
CHANGED
|
@@ -4782,7 +4782,7 @@
|
|
|
4782
4782
|
});
|
|
4783
4783
|
|
|
4784
4784
|
/**
|
|
4785
|
-
* Copyright IBM Corp. 2018,
|
|
4785
|
+
* Copyright IBM Corp. 2018, 2025
|
|
4786
4786
|
*
|
|
4787
4787
|
* This source code is licensed under the Apache-2.0 license found in the
|
|
4788
4788
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -4793,6 +4793,7 @@
|
|
|
4793
4793
|
* that it applies to like border or background, along with a state if the
|
|
4794
4794
|
* token should only be used for specific states like hover or focus.
|
|
4795
4795
|
*/
|
|
4796
|
+
// eslint-disable-next-line @typescript-eslint/no-extraneous-class
|
|
4796
4797
|
var Token = /*#__PURE__*/function () {
|
|
4797
4798
|
function Token(name, properties, state) {
|
|
4798
4799
|
_classCallCheck(this, Token);
|