@hopper-ui/tokens 5.1.5 → 5.1.7
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/CHANGELOG.md +13 -0
- package/dist/sharegate/tokens.css +1 -1
- package/dist/workleap/tokens.css +2 -2
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @hopper-ui/tokens
|
|
2
2
|
|
|
3
|
+
## 5.1.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8d43263: - Add support for gradient color tokens: https://www.npmjs.com/package/style-dictionary-utils#gradientcss
|
|
8
|
+
- Add support for shadow tokens: https://www.npmjs.com/package/style-dictionary-utils#shadowcss
|
|
9
|
+
|
|
10
|
+
## 5.1.6
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 33aedf7: Fixed Workleap control disabled background color token using neutral.surface instead of neutral.surface-disabled, causing disabled Switch and SegmentedControl to appear white instead of grey
|
|
15
|
+
|
|
3
16
|
## 5.1.5
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/workleap/tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Tue,
|
|
3
|
+
* Generated on Tue, 07 Apr 2026 21:19:59 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -1316,7 +1316,7 @@
|
|
|
1316
1316
|
--hop-comp-control-border-color-hover: var(--hop-neutral-border-hover);
|
|
1317
1317
|
--hop-comp-control-border-color: var(--hop-neutral-border);
|
|
1318
1318
|
--hop-comp-control-background-color-error: var(--hop-danger-surface-strong);
|
|
1319
|
-
--hop-comp-control-background-color-disabled: var(--hop-neutral-surface);
|
|
1319
|
+
--hop-comp-control-background-color-disabled: var(--hop-neutral-surface-disabled);
|
|
1320
1320
|
--hop-comp-control-background-color-selected: var(--hop-neutral-surface-selected);
|
|
1321
1321
|
--hop-comp-control-background-color-press: var(--hop-neutral-surface-press);
|
|
1322
1322
|
--hop-comp-control-background-color-hover: var(--hop-neutral-surface-hover);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hopper-ui/tokens",
|
|
3
3
|
"author": "Workleap",
|
|
4
|
-
"version": "5.1.
|
|
4
|
+
"version": "5.1.7",
|
|
5
5
|
"description": "The tokens package.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"eslint-plugin-import": "2.32.0",
|
|
43
43
|
"jest": "29.7.0",
|
|
44
44
|
"style-dictionary": "3.9.2",
|
|
45
|
+
"style-dictionary-utils": "2.4.1",
|
|
45
46
|
"tsx": "4.20.6",
|
|
46
47
|
"typescript": "5.5.4",
|
|
47
48
|
"typescript-eslint": "8.46.2"
|