@hopper-ui/tokens 3.1.0 → 3.1.1

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @hopper-ui/tokens
2
2
 
3
+ ## 3.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - a31b7e2: Updated the heading small line height token to the right core token
8
+
3
9
  ## 3.1.0
4
10
 
5
11
  ### Minor Changes
package/README.md CHANGED
@@ -29,17 +29,12 @@ npm install -D @hopper-ui/tokens
29
29
 
30
30
  ## Usage
31
31
 
32
- The tokens are available in the `dist` folder. You can import the tokens in your project by doing:
32
+ View the [user's documentation](https://hopper.workleap.design/).
33
33
 
34
- ```css
35
- @import '@hopper-ui/tokens/tokens.css';
36
- ```
34
+ ## 🤝 Contributing
37
35
 
38
- for the dark mode, you can import them by doing:
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, GSoft inc. 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/gsoft-license/blob/master/LICENSE.
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/tokens.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 08 Nov 2023 14:23:59 GMT
3
+ * Generated on Wed, 06 Dec 2023 19:36:37 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-50);
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.0",
4
+ "version": "3.1.1",
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.8.10",
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
- "ts-node": "10.9.1",
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": "node --loader ts-node/esm src/style-dictionary/build.ts"
47
+ "build": "tsx src/style-dictionary/build.ts"
49
48
  }
50
49
  }