@hopper-ui/tokens 3.1.0 → 3.1.2
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 +12 -0
- package/README.md +4 -9
- package/dist/dark/tokens.css +1 -1
- package/dist/tokens.css +2 -2
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @hopper-ui/tokens
|
|
2
2
|
|
|
3
|
+
## 3.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- eb5de30: Updated neutral surface strong value in dark mode
|
|
8
|
+
|
|
9
|
+
## 3.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- a31b7e2: Updated the heading small line height token to the right core token
|
|
14
|
+
|
|
3
15
|
## 3.1.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -29,17 +29,12 @@ npm install -D @hopper-ui/tokens
|
|
|
29
29
|
|
|
30
30
|
## Usage
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
View the [user's documentation](https://hopper.workleap.design/).
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
@import '@hopper-ui/tokens/tokens.css';
|
|
36
|
-
```
|
|
34
|
+
## 🤝 Contributing
|
|
37
35
|
|
|
38
|
-
|
|
39
|
-
```css
|
|
40
|
-
@import '@hopper-ui/tokens/dark/tokens.css';
|
|
41
|
-
```
|
|
36
|
+
View the [contributor's documentation](https://github.com/gsoft-inc/wl-hopper/blob/main/CONTRIBUTING.md).
|
|
42
37
|
|
|
43
38
|
## License
|
|
44
39
|
|
|
45
|
-
Copyright © 2023,
|
|
40
|
+
Copyright © 2023, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/workleap-license/blob/master/LICENSE.
|
package/dist/dark/tokens.css
CHANGED
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
--hop-neutral-border-disabled: var(--hop-rock-800);
|
|
168
168
|
--hop-neutral-border-strong-hover: var(--hop-samoyed);
|
|
169
169
|
--hop-neutral-border-strong: var(--hop-samoyed);
|
|
170
|
-
--hop-neutral-surface-strong: var(--hop-
|
|
170
|
+
--hop-neutral-surface-strong: var(--hop-toad-25);
|
|
171
171
|
--hop-neutral-surface-hover: var(--hop-rock-800);
|
|
172
172
|
--hop-neutral-icon-disabled: var(--hop-rock-500);
|
|
173
173
|
--hop-neutral-icon: var(--hop-rock-25);
|
package/dist/tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 19 Dec 2023 15:35:35 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -583,7 +583,7 @@
|
|
|
583
583
|
--hop-heading-xs-font-weight: var(--hop-font-weight-410);
|
|
584
584
|
--hop-heading-xs-font-size: var(--hop-font-size-160);
|
|
585
585
|
--hop-heading-xs-font-family: var(--hop-font-family-primary);
|
|
586
|
-
--hop-heading-sm-line-height: var(--hop-line-height-1-
|
|
586
|
+
--hop-heading-sm-line-height: var(--hop-line-height-1-33);
|
|
587
587
|
--hop-heading-sm-font-weight: var(--hop-font-weight-580);
|
|
588
588
|
--hop-heading-sm-font-size: var(--hop-font-size-180);
|
|
589
589
|
--hop-heading-sm-font-family: var(--hop-font-family-primary);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hopper-ui/tokens",
|
|
3
3
|
"author": "Workleap",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.2",
|
|
5
5
|
"description": "The tokens package.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -30,13 +30,12 @@
|
|
|
30
30
|
"README.md"
|
|
31
31
|
],
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@types/node": "20.
|
|
33
|
+
"@types/node": "20.9.0",
|
|
34
34
|
"@workleap/eslint-plugin": "3.0.0",
|
|
35
35
|
"@workleap/tsup-configs": "3.0.1",
|
|
36
36
|
"@workleap/typescript-configs": "3.0.2",
|
|
37
37
|
"style-dictionary": "3.9.0",
|
|
38
|
-
"
|
|
39
|
-
"tsup": "7.2.0",
|
|
38
|
+
"tsx": "4.1.2",
|
|
40
39
|
"typescript": "5.2.2"
|
|
41
40
|
},
|
|
42
41
|
"sideEffects": false,
|
|
@@ -45,6 +44,6 @@
|
|
|
45
44
|
},
|
|
46
45
|
"scripts": {
|
|
47
46
|
"clean:dist": "pnpm dlx rimraf dist",
|
|
48
|
-
"build": "
|
|
47
|
+
"build": "tsx src/style-dictionary/build.ts"
|
|
49
48
|
}
|
|
50
49
|
}
|