@hashicorp/design-system-tokens 2.3.0 → 2.3.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,15 @@
1
1
  # @hashicorp/design-system-tokens
2
2
 
3
+ ## 2.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ `cloud-ui/email` - Fixed CSS helpers for "elevation" styles
8
+
9
+ <small class="doc-whats-new-changelog-metadata">[#3158](https://github.com/hashicorp/design-system/pull/3158)</small>
10
+
11
+ <div class="doc-whats-new-changelog-separator"></div>
12
+
3
13
  ## 2.3.0
4
14
 
5
15
  ### Minor Changes
@@ -224,7 +234,6 @@ This release signifies the first major release of the HashiCorp Design System. M
224
234
  ### Minor Changes
225
235
 
226
236
  - [#136](https://github.com/hashicorp/design-system/pull/136) [`c17f142c`](https://github.com/hashicorp/design-system/commit/c17f142c0c938b471b696820d1fa440f62f7315b) Thanks [@didoo](https://github.com/didoo)! - Updated the font-stack design tokens in “typography”
227
-
228
237
  - removed `SF Pro Display/Text` in `Display/Text` (we can rely on `-apple-system + BlinkMacSystemFont`)
229
238
  - replaced `Segoe UI Display/Text` with `Segoe UI` in `Display/Text`
230
239
  - added `Helvetica, Arial` to the `sans` block in `Display/Text`
package/README.md CHANGED
@@ -10,8 +10,8 @@ Any platform/framework that can process CSS files and can use CSS custom propert
10
10
 
11
11
  ## Installation
12
12
 
13
- ```
14
- yarn add @hashicorp/design-system-tokens
13
+ ```bash
14
+ pnpm add @hashicorp/design-system-tokens
15
15
  ```
16
16
 
17
17
  Then import one of those files in your app's style file (`app.scss` or similar):
@@ -2,12 +2,12 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
 
5
- .hds-elevation-inset { box-shadow: inset 0px 1px 2px 1px #656a761a); }
6
- .hds-elevation-low { box-shadow: 0px 1px 1px 0px #656a760d, 0px 2px 2px 0px #656a760d); }
7
- .hds-elevation-mid { box-shadow: 0px 2px 3px 0px #656a761a, 0px 8px 16px -10px #656a7633); }
8
- .hds-elevation-high { box-shadow: 0px 2px 3px 0px #656a7626, 0px 16px 16px -10px #656a7633); }
9
- .hds-elevation-higher { box-shadow: 0px 2px 3px 0px #656a761a, 0px 12px 28px 0px #656a7640); }
10
- .hds-elevation-overlay { box-shadow: 0px 2px 3px 0px #3b3d4540, 0px 12px 24px 0px #3b3d4559); }
5
+ .hds-elevation-inset { box-shadow: inset 0px 1px 2px 1px #656a761a; }
6
+ .hds-elevation-low { box-shadow: 0px 1px 1px 0px #656a760d, 0px 2px 2px 0px #656a760d; }
7
+ .hds-elevation-mid { box-shadow: 0px 2px 3px 0px #656a761a, 0px 8px 16px -10px #656a7633; }
8
+ .hds-elevation-high { box-shadow: 0px 2px 3px 0px #656a7626, 0px 16px 16px -10px #656a7633; }
9
+ .hds-elevation-higher { box-shadow: 0px 2px 3px 0px #656a761a, 0px 12px 28px 0px #656a7640; }
10
+ .hds-elevation-overlay { box-shadow: 0px 2px 3px 0px #3b3d4540, 0px 12px 24px 0px #3b3d4559; }
11
11
  .hds-surface-inset { box-shadow: inset 0 0 0 1px #656a764d, inset 0px 1px 2px 1px #656a761a; }
12
12
  .hds-surface-base { box-shadow: 0 0 0 1px #656a7633; }
13
13
  .hds-surface-low { box-shadow: 0 0 0 1px #656a7626, 0px 1px 1px 0px #656a760d, 0px 2px 2px 0px #656a760d; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hashicorp/design-system-tokens",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "Helios Design Tokens",
5
5
  "keywords": [
6
6
  "hashicorp",
@@ -17,11 +17,6 @@
17
17
  "license": "MPL-2.0",
18
18
  "author": "HashiCorp Design Systems <design-systems@hashicorp.com>",
19
19
  "type": "module",
20
- "scripts": {
21
- "typecheck": "yarn tsc --noEmit",
22
- "lint": "yarn eslint --quiet --ext .js,.ts",
23
- "build": "tsx ./scripts/build"
24
- },
25
20
  "devDependencies": {
26
21
  "@types/fs-extra": "^11.0.4",
27
22
  "@types/lodash-es": "^4.17.12",
@@ -39,5 +34,10 @@
39
34
  "ts-node": "^10.9.2",
40
35
  "tsx": "^4.19.2",
41
36
  "typescript": "^5.7.2"
37
+ },
38
+ "scripts": {
39
+ "typecheck": "pnpm tsc --noEmit",
40
+ "lint": "pnpm eslint --quiet --ext .js,.ts",
41
+ "build": "tsx ./scripts/build"
42
42
  }
43
- }
43
+ }