@servicetitan/hammer-token 0.5.0 → 0.5.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @servicetitan/hammer-token@0.4.0 build /home/runner/work/anvil2/anvil2/packages/token
2
+ > @servicetitan/hammer-token@0.5.1 build /home/runner/work/hammer/hammer/packages/hammer-token
3
3
  > node ./config.js
4
4
 
5
5
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @servicetitan/hammer-token@0.4.0 lint /home/runner/work/anvil2/anvil2/packages/token
2
+ > @servicetitan/hammer-token@0.5.1 lint /home/runner/work/hammer/hammer/packages/hammer-token
3
3
  > eslint
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ # v0.5.2 (Fri May 03 2024)
2
+
3
+ #### 🏠 Internal
4
+
5
+ - Update: renaming folders [#431](https://github.com/servicetitan/hammer/pull/431) ([@tounsoo](https://github.com/tounsoo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
10
+
11
+ ---
12
+
13
+ # v0.5.1 (Thu Apr 18 2024)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - ANV-1270: Dialog border-radius updated to 1rem [#402](https://github.com/servicetitan/hammer/pull/402) ([@rgdelato](https://github.com/rgdelato))
18
+
19
+ #### Authors: 1
20
+
21
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
22
+
23
+ ---
24
+
1
25
  # v0.5.0 (Fri Apr 12 2024)
2
26
 
3
27
  #### ✨ New Feature
@@ -1,6 +1,7 @@
1
1
  export const common = {
2
2
  BorderRadiusNone: "0rem",
3
3
  BorderRadiusRounded: "0.375rem",
4
+ BorderRadiusRoundedStrong: "1rem",
4
5
  BorderRadiusPill: "500px",
5
6
  BorderRadiusCircular: "100%",
6
7
  BorderWidthNone: "0rem",
@@ -110,6 +110,7 @@ export const BackgroundColorInvertedStrong = {
110
110
  };
111
111
  export const BorderRadiusNone = { value: "0rem" };
112
112
  export const BorderRadiusRounded = { value: "0.375rem" };
113
+ export const BorderRadiusRoundedStrong = { value: "1rem" };
113
114
  export const BorderRadiusPill = { value: "500px" };
114
115
  export const BorderRadiusCircular = { value: "100%" };
115
116
  export const BorderWidthNone = { value: "0rem" };
@@ -11,6 +11,7 @@ $background-color-inverted: var(--background-color-inverted, #2d2e31);
11
11
  $background-color-inverted-strong: var(--background-color-inverted-strong, #141414);
12
12
  $border-radius-none: 0rem;
13
13
  $border-radius-rounded: 0.375rem;
14
+ $border-radius-rounded-strong: 1rem;
14
15
  $border-radius-pill: 500px;
15
16
  $border-radius-circular: 100%;
16
17
  $border-width-none: 0rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@servicetitan/hammer-token",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "description": "",
5
5
  "main": "build/web/index.js",
6
6
  "types": "build/web/index.d.ts",
@@ -15,5 +15,5 @@
15
15
  "fs-extra": "^11.2.0",
16
16
  "style-dictionary": "latest"
17
17
  },
18
- "gitHead": "63b594325282a7604c28071200504253e4736411"
18
+ "gitHead": "540e374959aca8288e2abf633a4df1393a0e6e0d"
19
19
  }
@@ -7,6 +7,9 @@
7
7
  "rounded": {
8
8
  "value": "0.375rem"
9
9
  },
10
+ "rounded-strong": {
11
+ "value": "1rem"
12
+ },
10
13
  "pill": {
11
14
  "value": "500px"
12
15
  },