@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.
package/.turbo/turbo-build.log
CHANGED
package/.turbo/turbo-lint.log
CHANGED
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
|
package/build/web/core/raw.js
CHANGED
|
@@ -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.
|
|
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": "
|
|
18
|
+
"gitHead": "540e374959aca8288e2abf633a4df1393a0e6e0d"
|
|
19
19
|
}
|