@servicetitan/hammer-token 0.0.0-rc-20250807234739

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.
Files changed (49) hide show
  1. package/.turbo/turbo-build.log +37 -0
  2. package/CHANGELOG.md +385 -0
  3. package/build/web/core/component-variables.scss +139 -0
  4. package/build/web/core/component.js +645 -0
  5. package/build/web/core/component.scss +69 -0
  6. package/build/web/core/css-utils/a2-border.css +53 -0
  7. package/build/web/core/css-utils/a2-color.css +235 -0
  8. package/build/web/core/css-utils/a2-font.css +49 -0
  9. package/build/web/core/css-utils/a2-spacing.css +483 -0
  10. package/build/web/core/css-utils/a2-utils.css +785 -0
  11. package/build/web/core/css-utils/border.css +53 -0
  12. package/build/web/core/css-utils/color.css +235 -0
  13. package/build/web/core/css-utils/font.css +49 -0
  14. package/build/web/core/css-utils/spacing.css +483 -0
  15. package/build/web/core/css-utils/utils.css +785 -0
  16. package/build/web/core/index.js +5 -0
  17. package/build/web/core/primitive-variables.scss +126 -0
  18. package/build/web/core/primitive.js +124 -0
  19. package/build/web/core/primitive.scss +124 -0
  20. package/build/web/core/raw.js +229 -0
  21. package/build/web/core/semantic-variables.scss +246 -0
  22. package/build/web/core/semantic.js +911 -0
  23. package/build/web/core/semantic.scss +137 -0
  24. package/build/web/index.d.ts +4 -0
  25. package/build/web/index.js +3 -0
  26. package/config.js +504 -0
  27. package/eslint.config.mjs +4 -0
  28. package/package.json +25 -0
  29. package/src/global/primitive/breakpoint.js +19 -0
  30. package/src/global/primitive/color.js +231 -0
  31. package/src/global/primitive/duration.js +16 -0
  32. package/src/global/primitive/font.js +60 -0
  33. package/src/global/primitive/radius.js +31 -0
  34. package/src/global/primitive/size.js +55 -0
  35. package/src/global/primitive/transition.js +16 -0
  36. package/src/theme/core/background.js +170 -0
  37. package/src/theme/core/border.js +103 -0
  38. package/src/theme/core/charts.js +439 -0
  39. package/src/theme/core/component/button.js +708 -0
  40. package/src/theme/core/component/checkbox.js +405 -0
  41. package/src/theme/core/focus.js +35 -0
  42. package/src/theme/core/foreground.js +148 -0
  43. package/src/theme/core/overlay.js +137 -0
  44. package/src/theme/core/shadow.js +29 -0
  45. package/src/theme/core/status.js +49 -0
  46. package/src/theme/core/typography.js +82 -0
  47. package/src/utils/copy-css-utils-cli.js +37 -0
  48. package/src/utils/css-utils-format-utils.js +267 -0
  49. package/type/types.ts +341 -0
@@ -0,0 +1,37 @@
1
+
2
+ > @servicetitan/hammer-token@0.0.0-rc-20250807234739 build /home/runner/work/hammer/hammer/packages/hammer-token
3
+ > node ./config.js
4
+
5
+
6
+ css
7
+ ✔︎ build/web/core/css-utils/utils.css
8
+ ✔︎ build/web/core/css-utils/border.css
9
+ ✔︎ build/web/core/css-utils/color.css
10
+ ✔︎ build/web/core/css-utils/font.css
11
+ ✔︎ build/web/core/css-utils/spacing.css
12
+ ✔︎ build/web/core/css-utils/a2-utils.css
13
+ ✔︎ build/web/core/css-utils/a2-border.css
14
+ ✔︎ build/web/core/css-utils/a2-color.css
15
+ ✔︎ build/web/core/css-utils/a2-font.css
16
+ ✔︎ build/web/core/css-utils/a2-spacing.css
17
+
18
+ scss
19
+ ✔︎ build/web/core/primitive.scss
20
+ ✔︎ build/web/core/primitive-variables.scss
21
+ ✔︎ build/web/core/semantic.scss
22
+ ✔︎ build/web/core/semantic-variables.scss
23
+ ✔︎ build/web/core/component.scss
24
+ ✔︎ build/web/core/component-variables.scss
25
+
26
+ tsLight
27
+ ✔︎ build/web/core/primitive.js
28
+ ✔︎ build/web/core/raw.js
29
+ ✔︎ build/web/core/semantic.js
30
+ ✔︎ build/web/core/component.js
31
+
32
+ ==============================================
33
+ Building index files...
34
+
35
+ Index built!
36
+ ==============================================
37
+
package/CHANGELOG.md ADDED
@@ -0,0 +1,385 @@
1
+ # @servicetitan/hammer-token
2
+
3
+ ## 0.0.0-rc-20250807234739
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1393](https://github.com/servicetitan/hammer/pull/1393) [`0869aed`](https://github.com/servicetitan/hammer/commit/0869aed7c5d63837d10d74576e0932ad14812401) Thanks [@rgdelato](https://github.com/rgdelato)! - [Tokens] Add chart color tokens to `hammer-token` package
8
+
9
+ ## 2.4.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#1341](https://github.com/servicetitan/hammer/pull/1341) [`46212ed`](https://github.com/servicetitan/hammer/commit/46212ed9ff046019b8c65a7edfce746766c93e90) Thanks [@rgdelato](https://github.com/rgdelato)! - [CSS Utils] Add `"a2-"` prefixed CSS utils files
14
+
15
+ ## 2.3.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [#1058](https://github.com/servicetitan/hammer/pull/1058) [`e51ea16`](https://github.com/servicetitan/hammer/commit/e51ea16532654e9abe794ee945e5bc8f936bb79a) Thanks [@AdamLantz](https://github.com/AdamLantz)! - Add success background and border colors
20
+
21
+ ## 2.2.0
22
+
23
+ ### Minor Changes
24
+
25
+ - [#1053](https://github.com/servicetitan/hammer/pull/1053) [`a77ea35`](https://github.com/servicetitan/hammer/commit/a77ea3512be19df6c62518236fd618ec133b6828) Thanks [@tounsoo](https://github.com/tounsoo)! - [Token] Add component token for Button (Tier 3)
26
+
27
+ - [#1114](https://github.com/servicetitan/hammer/pull/1114) [`cd71261`](https://github.com/servicetitan/hammer/commit/cd712612e9d50a6ca6b19853349677e0f10b33cf) Thanks [@tounsoo](https://github.com/tounsoo)! - [CSS-Utils] Add all side padding and margin utility classes
28
+
29
+ ### Patch Changes
30
+
31
+ - [#1053](https://github.com/servicetitan/hammer/pull/1053) [`a77ea35`](https://github.com/servicetitan/hammer/commit/a77ea3512be19df6c62518236fd618ec133b6828) Thanks [@tounsoo](https://github.com/tounsoo)! - [Button] Style change for secondary to be borderless with gray background
32
+
33
+ - [#1104](https://github.com/servicetitan/hammer/pull/1104) [`f8b390e`](https://github.com/servicetitan/hammer/commit/f8b390e34c0025ee63f2329241c95f743ba7c8c5) Thanks [@tounsoo](https://github.com/tounsoo)! - [CSS-Utils] Update css-util formatter to have correct css variables and proper fallback for colors
34
+
35
+ ## 2.1.1
36
+
37
+ ### Patch Changes
38
+
39
+ - [#1068](https://github.com/servicetitan/hammer/pull/1068) [`14505d4`](https://github.com/servicetitan/hammer/commit/14505d456543988d51197c5e1aaa584365e19247) Thanks [@ericag1985](https://github.com/ericag1985)! - [CSS-utils] fix layers being out of order when using the utility css sheets
40
+
41
+ ## 2.1.0
42
+
43
+ ### Minor Changes
44
+
45
+ - [#973](https://github.com/servicetitan/hammer/pull/973) [`254017e`](https://github.com/servicetitan/hammer/commit/254017e119885123599b7bdb549ef6e9354a5e7b) Thanks [@rgdelato](https://github.com/rgdelato)! - Drop support for Node.js 18.x and below
46
+
47
+ ## 2.0.2
48
+
49
+ ### Patch Changes
50
+
51
+ - [#1022](https://github.com/servicetitan/hammer/pull/1022) [`9ea51f9`](https://github.com/servicetitan/hammer/commit/9ea51f9bee1568e4256f7f33f87d62a4ca254eba) Thanks [@rgdelato](https://github.com/rgdelato)! - [CSS Utils] Wrap duplicated CSS util classes in `@layer application`
52
+
53
+ ## 2.0.1
54
+
55
+ ### Patch Changes
56
+
57
+ - [#957](https://github.com/servicetitan/hammer/pull/957) [`850ef84`](https://github.com/servicetitan/hammer/commit/850ef84820a8d29b066dcc91a75512f8a23ac7bf) Thanks [@tounsoo](https://github.com/tounsoo)! - Add additional foreground tokens and update overlay tokens to enhance color accessibility- Update Button, Listbox, Calendar, SideNav, Link to use the new tokens
58
+
59
+ ## 2.0.0
60
+
61
+ ### Major Changes
62
+
63
+ - [#945](https://github.com/servicetitan/hammer/pull/945) [`87e0760`](https://github.com/servicetitan/hammer/commit/87e0760c3615268e28444d109479d9502bfa0788) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - Update `border-radius-*` tokens and add `radius-*` primitives
64
+
65
+ ## 1.3.6
66
+
67
+ ### Patch Changes
68
+
69
+ - [#913](https://github.com/servicetitan/hammer/pull/913) [`3246da5`](https://github.com/servicetitan/hammer/commit/3246da57b0b41ad823acf6c45fa4bea0fe8fca84) Thanks [@tounsoo](https://github.com/tounsoo)! - Fix font family base not using CSS variables
70
+
71
+ ## 1.3.5
72
+
73
+ ### Patch Changes
74
+
75
+ - [#889](https://github.com/servicetitan/hammer/pull/889) [`56f1e97`](https://github.com/servicetitan/hammer/commit/56f1e97b15cb203e0a004fed2eb6bdb91a9917cf) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - Updating CHANGELOG headings to match Changesets
76
+
77
+ ## v1.3.4 (Sat Nov 02 2024)
78
+
79
+ #### 🐛 Bug Fix
80
+
81
+ - ANV-1953: Add monolith CSS to storybook, create CSS file to temp fix `71.1orion` [#796](https://github.com/servicetitan/hammer/pull/796) ([@rgdelato](https://github.com/rgdelato) [@tounsoo](https://github.com/tounsoo) [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
82
+
83
+ #### Authors: 3
84
+
85
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
86
+ - Derek Watson ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
87
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
88
+
89
+ ---
90
+
91
+ ## v1.3.3 (Tue Oct 29 2024)
92
+
93
+ #### 🐛 Bug Fix
94
+
95
+ - NOTICK: Add missing primitive tokens and remove `color-scheme` setting in Theme Provider [#790](https://github.com/servicetitan/hammer/pull/790) ([@tounsoo](https://github.com/tounsoo))
96
+
97
+ #### Authors: 1
98
+
99
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
100
+
101
+ ---
102
+
103
+ ## v1.3.2 (Mon Oct 28 2024)
104
+
105
+ #### 🐛 Bug Fix
106
+
107
+ - ANV-2216: Fix CSS var not being available in certain conditions, theme tokens to not override each other with different versions values [#776](https://github.com/servicetitan/hammer/pull/776) ([@tounsoo](https://github.com/tounsoo))
108
+
109
+ #### Authors: 1
110
+
111
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
112
+
113
+ ---
114
+
115
+ ## v1.3.1 (Mon Oct 28 2024)
116
+
117
+ #### 📝 Documentation
118
+
119
+ - HOTFIX: Changelog updates after release mishap [#784](https://github.com/servicetitan/hammer/pull/784) ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
120
+
121
+ #### Authors: 1
122
+
123
+ - Derek Watson ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
124
+
125
+ ---
126
+
127
+ ## v1.3.0 (Fri Oct 25 2024)
128
+
129
+ #### ✨ New Feature
130
+
131
+ - ANV-2021: Add sr-only class to css-utils [#773](https://github.com/servicetitan/hammer/pull/773) ([@tounsoo](https://github.com/tounsoo))
132
+
133
+ #### Authors: 1
134
+
135
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
136
+
137
+ ---
138
+
139
+ ## v1.2.0 (Wed Aug 14 2024)
140
+
141
+ #### 🏠 Internal
142
+
143
+ - ANV-1692: Update Token requirements [#609](https://github.com/servicetitan/hammer/pull/609) ([@tounsoo](https://github.com/tounsoo))
144
+
145
+ #### Authors: 1
146
+
147
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
148
+
149
+ ---
150
+
151
+ ## v1.1.2 (Mon Jul 15 2024)
152
+
153
+ #### 🏠 Internal
154
+
155
+ - ANV-1264: Docs Icons page [#509](https://github.com/servicetitan/hammer/pull/509) ([@rgdelato](https://github.com/rgdelato))
156
+
157
+ #### Authors: 1
158
+
159
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
160
+
161
+ ---
162
+
163
+ ## v1.1.1 (Thu Jul 11 2024)
164
+
165
+ #### 📝 Dependencies
166
+
167
+ - ANV-1529: Add `commander` to `optionalDependencies` in `hammer-token` [#556](https://github.com/servicetitan/hammer/pull/556) ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n) [@rgdelato](https://github.com/rgdelato))
168
+
169
+ #### Authors: 2
170
+
171
+ - Derek Watson ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
172
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
173
+
174
+ ---
175
+
176
+ ## v1.1.0 (Wed Jul 10 2024)
177
+
178
+ #### 🚀 Enhancement
179
+
180
+ - ANV-1529: Fix CSS Utils dark class prefix and add CLI to override [#554](https://github.com/servicetitan/hammer/pull/554) ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
181
+
182
+ #### Authors: 1
183
+
184
+ - Derek Watson ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
185
+
186
+ ---
187
+
188
+ ## v1.0.0 (Mon Jun 03 2024)
189
+
190
+ #### 🏠 Internal
191
+
192
+ - ANV-1341: Adding empty change to icon/token repos to include them in v1.0.0 release [#497](https://github.com/servicetitan/hammer/pull/497) ([@rgdelato](https://github.com/rgdelato))
193
+
194
+ #### Authors: 1
195
+
196
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
197
+
198
+ ---
199
+
200
+ ## v0.7.0 (Mon Jun 03 2024)
201
+
202
+ #### 🐛 Bug Fix
203
+
204
+ - ANV-1392: Fix CSS Utils / Font file and add fallback values [#486](https://github.com/servicetitan/hammer/pull/486) ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
205
+
206
+ #### Authors: 1
207
+
208
+ - Derek Watson ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
209
+
210
+ ---
211
+
212
+ ## v0.6.0 (Fri May 31 2024)
213
+
214
+ #### ✨ New Feature
215
+
216
+ - ANV-1392: CSS Utils in `hammer-token` [#479](https://github.com/servicetitan/hammer/pull/479) ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
217
+
218
+ #### Authors: 1
219
+
220
+ - Derek Watson ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
221
+
222
+ ---
223
+
224
+ ## v0.5.2 (Fri May 03 2024)
225
+
226
+ #### 🏠 Internal
227
+
228
+ - Update: renaming folders [#431](https://github.com/servicetitan/hammer/pull/431) ([@tounsoo](https://github.com/tounsoo))
229
+
230
+ #### Authors: 1
231
+
232
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
233
+
234
+ ---
235
+
236
+ ## v0.5.1 (Thu Apr 18 2024)
237
+
238
+ #### 🐛 Bug Fix
239
+
240
+ - ANV-1270: Dialog border-radius updated to 1rem [#402](https://github.com/servicetitan/hammer/pull/402) ([@rgdelato](https://github.com/rgdelato))
241
+
242
+ #### Authors: 1
243
+
244
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
245
+
246
+ ---
247
+
248
+ ## v0.5.0 (Fri Apr 12 2024)
249
+
250
+ #### ✨ New Feature
251
+
252
+ - Anvil 2 -> Hammer [#392](https://github.com/servicetitan/anvil2/pull/392) ([@rgdelato](https://github.com/rgdelato))
253
+
254
+ #### Authors: 1
255
+
256
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
257
+
258
+ ---
259
+
260
+ ## v0.4.0 (Fri Mar 29 2024)
261
+
262
+ #### 🏠 Internal
263
+
264
+ - ANV-1125: Externalize `anvil-react` dependencies [#287](https://github.com/servicetitan/anvil2/pull/287) ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
265
+
266
+ #### Authors: 1
267
+
268
+ - Derek Watson ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
269
+
270
+ ---
271
+
272
+ ## v0.3.0 (Mon Mar 18 2024)
273
+
274
+ :tada: This release contains work from a new contributor! :tada:
275
+
276
+ Thank you, Derek Watson ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)), for all your work!
277
+
278
+ #### 🚀 Enhancement
279
+
280
+ - ANV-1114: add Breakpoint and update relevant components [#265](https://github.com/servicetitan/anvil2/pull/265) ([@tounsoo](https://github.com/tounsoo))
281
+
282
+ #### 🏠 Internal
283
+
284
+ - ANV-1153 Use `pnpm` to fix dependency issues [#272](https://github.com/servicetitan/anvil2/pull/272) ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n) [@tounsoo](https://github.com/tounsoo))
285
+ - ANV-1075: Adding lots of new ESLint rules [#255](https://github.com/servicetitan/anvil2/pull/255) ([@rgdelato](https://github.com/rgdelato))
286
+
287
+ #### Authors: 3
288
+
289
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
290
+ - Derek Watson ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
291
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
292
+
293
+ ---
294
+
295
+ ## v0.2.0 (Fri Jan 26 2024)
296
+
297
+ #### 🐛 Bug Fix
298
+
299
+ - Fix: add types for BorderColorSubdued, fix Duration type [#183](https://github.com/servicetitan/anvil2/pull/183) ([@tounsoo](https://github.com/tounsoo))
300
+
301
+ #### 🏠 Internal
302
+
303
+ - Prettier formatting [#187](https://github.com/servicetitan/anvil2/pull/187) ([@rgdelato](https://github.com/rgdelato))
304
+ - Merge branch 'master' into next [#190](https://github.com/servicetitan/anvil2/pull/190) ([@rgdelato](https://github.com/rgdelato))
305
+
306
+ #### Authors: 5
307
+
308
+ - Arsen Melikyan ([@bugron](https://github.com/bugron))
309
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
310
+ - James C ([@jpex](https://github.com/jpex))
311
+ - Patrick Buckingham ([@pbuckingham-st](https://github.com/pbuckingham-st))
312
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
313
+
314
+ ---
315
+
316
+ ## v0.1.0 (Sat Dec 16 2023)
317
+
318
+ :tada: This release contains work from new contributors! :tada:
319
+
320
+ Thanks for all your work!
321
+
322
+ :heart: Patrick Buckingham ([@pbuckingham-st](https://github.com/pbuckingham-st))
323
+
324
+ :heart: Sergey Yakunin ([@yakunins](https://github.com/yakunins))
325
+
326
+ :heart: James C ([@jpex](https://github.com/jpex))
327
+
328
+ #### ✨ New Feature
329
+
330
+ - ANV-773: Grid component to alpha [#129](https://github.com/servicetitan/anvil2/pull/129) ([@rgdelato](https://github.com/rgdelato))
331
+ - Token 2.0 [#67](https://github.com/servicetitan/anvil2/pull/67) ([@tounsoo](https://github.com/tounsoo) [@yakunins](https://github.com/yakunins))
332
+
333
+ #### 🏠 Internal
334
+
335
+ - Merge branch 'master' into next [#152](https://github.com/servicetitan/anvil2/pull/152) ([@rgdelato](https://github.com/rgdelato))
336
+ - Added watcher for dev step over icons and tokens [#98](https://github.com/servicetitan/anvil2/pull/98) ([@yakunins](https://github.com/yakunins) [@pbuckingham-st](https://github.com/pbuckingham-st))
337
+ - Update background/strongest token value on light mode [#109](https://github.com/servicetitan/anvil2/pull/109) ([@jpex](https://github.com/jpex))
338
+ - Updating package names to use "@servicetitan/" scope [#94](https://github.com/servicetitan/anvil2/pull/94) ([@rgdelato](https://github.com/rgdelato))
339
+ - Rename packages with `anvil` prefix, preparing for release test [#91](https://github.com/servicetitan/anvil2/pull/91) ([@tounsoo](https://github.com/tounsoo))
340
+ - Proper dev tasks order in turbo.repo config [#77](https://github.com/servicetitan/anvil2/pull/77) ([@yakunins](https://github.com/yakunins))
341
+
342
+ #### ⚠️ Pushed to `next`
343
+
344
+ - Merge branch 'master' into next ([@rgdelato](https://github.com/rgdelato))
345
+
346
+ #### 📝 Dependencies
347
+
348
+ - Upgrade: Bump graphql from 16.8.0 to 16.8.1 [#101](https://github.com/servicetitan/anvil2/pull/101) ([@dependabot[bot]](https://github.com/dependabot[bot]))
349
+
350
+ #### Authors: 6
351
+
352
+ - [@dependabot[bot]](https://github.com/dependabot[bot])
353
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
354
+ - James C ([@jpex](https://github.com/jpex))
355
+ - Patrick Buckingham ([@pbuckingham-st](https://github.com/pbuckingham-st))
356
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
357
+ - Sergey Yakunin ([@yakunins](https://github.com/yakunins))
358
+
359
+ ---
360
+
361
+ ## v0.1.0 (Thu Sep 14 2023)
362
+
363
+ :tada: This release contains work from new contributors! :tada:
364
+
365
+ Thanks for all your work!
366
+
367
+ :heart: Patrick Buckingham ([@pbuckingham-st](https://github.com/pbuckingham-st))
368
+
369
+ :heart: Sergey Yakunin ([@yakunins](https://github.com/yakunins))
370
+
371
+ #### ✨ New Feature
372
+
373
+ - Token 2.0 [#67](https://github.com/servicetitan/blacksmith/pull/67) ([@tounsoo](https://github.com/tounsoo) [@yakunins](https://github.com/yakunins))
374
+
375
+ #### 🏠 Internal
376
+
377
+ - Updating package names to use "@servicetitan/" scope [#94](https://github.com/servicetitan/blacksmith/pull/94) ([@rgdelato](https://github.com/rgdelato))
378
+ - Rename packages with `anvil` prefix, preparing for release test [#91](https://github.com/servicetitan/blacksmith/pull/91) ([@tounsoo](https://github.com/tounsoo))
379
+ - Proper dev tasks order in turbo.repo config [#77](https://github.com/servicetitan/blacksmith/pull/77) ([@yakunins](https://github.com/yakunins))
380
+
381
+ #### Authors: 3
382
+
383
+ - Ben Ho ([@tounsoo](https://github.com/tounsoo))
384
+ - Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
385
+ - Sergey Yakunin ([@yakunins](https://github.com/yakunins))
@@ -0,0 +1,139 @@
1
+ $light: (
2
+ button-primary-foreground-color: #ffffff,
3
+ button-primary-foreground-color-hover: #ffffff,
4
+ button-primary-foreground-color-active: #ffffff,
5
+ button-primary-background-color: #0265DC,
6
+ button-primary-background-color-hover: #0655b4ff,
7
+ button-primary-background-color-active: #09458cff,
8
+ button-primary-border-color: transparent,
9
+ button-primary-focus-ring-color: #0265DC,
10
+ button-secondary-foreground-color: #141414,
11
+ button-secondary-foreground-color-hover: #141414,
12
+ button-secondary-foreground-color-active: #141414,
13
+ button-secondary-background-color: #0404040f,
14
+ button-secondary-background-color-hover: #05050522,
15
+ button-secondary-background-color-active: #07070735,
16
+ button-secondary-border-color: transparent,
17
+ button-secondary-focus-ring-color: #0265DC,
18
+ button-ghost-foreground-color: #141414,
19
+ button-ghost-foreground-color-hover: #141414,
20
+ button-ghost-foreground-color-active: #141414,
21
+ button-ghost-background-color: transparent,
22
+ button-ghost-background-color-hover: #14141414,
23
+ button-ghost-background-color-active: #14141429,
24
+ button-ghost-border-color: transparent,
25
+ button-ghost-focus-ring-color: #0265DC,
26
+ button-danger-primary-foreground-color: #ffffff,
27
+ button-danger-primary-foreground-color-hover: #ffffff,
28
+ button-danger-primary-foreground-color-active: #ffffff,
29
+ button-danger-primary-background-color: #e13212,
30
+ button-danger-primary-background-color-hover: #b82c12ff,
31
+ button-danger-primary-background-color-active: #8f2613ff,
32
+ button-danger-primary-border-color: transparent,
33
+ button-danger-primary-focus-ring-color: #e13212,
34
+ button-danger-secondary-foreground-color: #bf2a00,
35
+ button-danger-secondary-foreground-color-hover: #bf2a00,
36
+ button-danger-secondary-foreground-color-active: #bf2a00,
37
+ button-danger-secondary-background-color: #ffece9,
38
+ button-danger-secondary-background-color-hover: #fcd9d4ff,
39
+ button-danger-secondary-background-color-active: #f6b4a9ff,
40
+ button-danger-secondary-border-color: transparent,
41
+ button-danger-secondary-focus-ring-color: #e13212,
42
+ checkbox-unchecked-fill-color-default: #141414,
43
+ checkbox-unchecked-fill-color-hover: #141414,
44
+ checkbox-unchecked-fill-color-active: #141414,
45
+ checkbox-unchecked-background-color-default: transparent,
46
+ checkbox-unchecked-background-color-hover: #14141414,
47
+ checkbox-unchecked-background-color-active: #14141429,
48
+ checkbox-checked-fill-color-default: #0265DC,
49
+ checkbox-checked-fill-color-hover: #004ba0d1,
50
+ checkbox-checked-fill-color-active: #0151afb8,
51
+ checkbox-checked-background-color-default: transparent,
52
+ checkbox-checked-background-color-hover: #0265dc14,
53
+ checkbox-checked-background-color-active: #0265dc29,
54
+ checkbox-unchecked-error-fill-color-default: #e13212,
55
+ checkbox-unchecked-error-fill-color-hover: #bf2a00,
56
+ checkbox-unchecked-error-fill-color-active: #bf2a00,
57
+ checkbox-unchecked-error-background-color-default: transparent,
58
+ checkbox-unchecked-error-background-color-hover: #e132120f,
59
+ checkbox-unchecked-error-background-color-active: #e132122e,
60
+ checkbox-checked-error-fill-color-default: #e13212,
61
+ checkbox-checked-error-fill-color-hover: #bf2a00,
62
+ checkbox-checked-error-fill-color-active: #bf2a00,
63
+ checkbox-checked-error-background-color-default: transparent,
64
+ checkbox-checked-error-background-color-hover: #e132120f,
65
+ checkbox-checked-error-background-color-active: #e132122e,
66
+ );
67
+ $dark: (
68
+ button-primary-foreground-color: #141414,
69
+ button-primary-foreground-color-hover: #141414,
70
+ button-primary-foreground-color-active: #141414,
71
+ button-primary-background-color: #78BBFA,
72
+ button-primary-background-color-hover: #8ec6fbff,
73
+ button-primary-background-color-active: #68a0d5ff,
74
+ button-primary-border-color: transparent,
75
+ button-primary-focus-ring-color: #78BBFA,
76
+ button-secondary-foreground-color: #ffffff,
77
+ button-secondary-foreground-color-hover: #ffffff,
78
+ button-secondary-foreground-color-active: #ffffff,
79
+ button-secondary-background-color: #ffffff0f,
80
+ button-secondary-background-color-hover: #ffffff22,
81
+ button-secondary-background-color-active: #ffffff35,
82
+ button-secondary-border-color: transparent,
83
+ button-secondary-focus-ring-color: #78BBFA,
84
+ button-ghost-foreground-color: #ffffff,
85
+ button-ghost-foreground-color-hover: #ffffff,
86
+ button-ghost-foreground-color-active: #ffffff,
87
+ button-ghost-background-color: transparent,
88
+ button-ghost-background-color-hover: #ffffff14,
89
+ button-ghost-background-color-active: #ffffff29,
90
+ button-ghost-border-color: transparent,
91
+ button-ghost-focus-ring-color: #78BBFA,
92
+ button-danger-primary-foreground-color: #141414,
93
+ button-danger-primary-foreground-color-hover: #141414,
94
+ button-danger-primary-foreground-color-active: #141414,
95
+ button-danger-primary-background-color: #ff745f,
96
+ button-danger-primary-background-color-hover: #ff8a79ff,
97
+ button-danger-primary-background-color-active: #d96553ff,
98
+ button-danger-primary-border-color: transparent,
99
+ button-danger-primary-focus-ring-color: #ff745f,
100
+ button-danger-secondary-foreground-color: #ffffff,
101
+ button-danger-secondary-foreground-color-hover: #ff745f,
102
+ button-danger-secondary-foreground-color-active: #ff745f,
103
+ button-danger-secondary-background-color: #ff745f33,
104
+ button-danger-secondary-background-color-hover: #fe6e5852,
105
+ button-danger-secondary-background-color-active: #fe6a5466,
106
+ button-danger-secondary-border-color: transparent,
107
+ button-danger-secondary-focus-ring-color: #ff745f,
108
+ checkbox-unchecked-fill-color-default: #ffffff,
109
+ checkbox-unchecked-fill-color-hover: #ffffff,
110
+ checkbox-unchecked-fill-color-active: #ffffff,
111
+ checkbox-unchecked-background-color-default: transparent,
112
+ checkbox-unchecked-background-color-hover: #ffffff14,
113
+ checkbox-unchecked-background-color-active: #ffffff29,
114
+ checkbox-checked-fill-color-default: #78BBFA,
115
+ checkbox-checked-fill-color-hover: #abd8feda,
116
+ checkbox-checked-fill-color-active: #abd8fee0,
117
+ checkbox-checked-background-color-default: transparent,
118
+ checkbox-checked-background-color-hover: #78bbfa14,
119
+ checkbox-checked-background-color-active: #78bbfa29,
120
+ checkbox-unchecked-error-fill-color-default: #ff745f,
121
+ checkbox-unchecked-error-fill-color-hover: #ff745f,
122
+ checkbox-unchecked-error-fill-color-active: #ff745f,
123
+ checkbox-unchecked-error-background-color-default: transparent,
124
+ checkbox-unchecked-error-background-color-hover: #f94d321a,
125
+ checkbox-unchecked-error-background-color-active: #f94d3240,
126
+ checkbox-checked-error-fill-color-default: #ff745f,
127
+ checkbox-checked-error-fill-color-hover: #ff745f,
128
+ checkbox-checked-error-fill-color-active: #ff745f,
129
+ checkbox-checked-error-background-color-default: transparent,
130
+ checkbox-checked-error-background-color-hover: #f94d321a,
131
+ checkbox-checked-error-background-color-active: #f94d3240,
132
+ );
133
+ $nonColor: (
134
+ button-primary-border-radius: 0.375rem,
135
+ button-secondary-border-radius: 0.375rem,
136
+ button-ghost-border-radius: 0.375rem,
137
+ button-danger-primary-border-radius: 0.375rem,
138
+ button-danger-secondary-border-radius: 0.375rem,
139
+ );