@servicetitan/hammer-token 2.1.1 → 2.3.0

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 (51) hide show
  1. package/.turbo/turbo-build.log +4 -1
  2. package/CHANGELOG.md +20 -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/border.css +49 -29
  7. package/build/web/core/css-utils/color.css +231 -103
  8. package/build/web/core/css-utils/font.css +45 -43
  9. package/build/web/core/css-utils/spacing.css +71 -1
  10. package/build/web/core/css-utils/utils.css +576 -368
  11. package/build/web/core/index.js +2 -1
  12. package/build/web/core/raw.js +34 -24
  13. package/build/web/core/semantic-variables.scss +34 -24
  14. package/build/web/core/semantic.js +74 -24
  15. package/build/web/core/semantic.scss +16 -11
  16. package/config.js +97 -23
  17. package/package.json +3 -2
  18. package/src/global/primitive/breakpoint.js +19 -0
  19. package/src/global/primitive/color.js +231 -0
  20. package/src/global/primitive/duration.js +16 -0
  21. package/src/global/primitive/font.js +60 -0
  22. package/src/global/primitive/radius.js +31 -0
  23. package/src/global/primitive/size.js +55 -0
  24. package/src/global/primitive/transition.js +16 -0
  25. package/src/theme/core/background.js +170 -0
  26. package/src/theme/core/border.js +103 -0
  27. package/src/theme/core/component/button.js +708 -0
  28. package/src/theme/core/component/checkbox.js +405 -0
  29. package/src/theme/core/focus.js +35 -0
  30. package/src/theme/core/foreground.js +148 -0
  31. package/src/theme/core/overlay.js +137 -0
  32. package/src/theme/core/shadow.js +29 -0
  33. package/src/theme/core/status.js +49 -0
  34. package/src/theme/core/typography.js +82 -0
  35. package/src/utils/css-utils-format-utils.js +104 -34
  36. package/type/types.ts +75 -0
  37. package/src/global/primitive/breakpoint.json +0 -19
  38. package/src/global/primitive/color.json +0 -231
  39. package/src/global/primitive/duration.json +0 -16
  40. package/src/global/primitive/font.json +0 -60
  41. package/src/global/primitive/radius.json +0 -31
  42. package/src/global/primitive/size.json +0 -55
  43. package/src/global/primitive/transition.json +0 -16
  44. package/src/theme/core/background.json +0 -144
  45. package/src/theme/core/border.json +0 -87
  46. package/src/theme/core/focus.json +0 -31
  47. package/src/theme/core/foreground.json +0 -132
  48. package/src/theme/core/overlay.json +0 -134
  49. package/src/theme/core/shadow.json +0 -25
  50. package/src/theme/core/status.json +0 -46
  51. package/src/theme/core/typography.json +0 -79
@@ -1,25 +0,0 @@
1
- {
2
- "shadow": {
3
- "color": {
4
- "value": "{color.neutral.400}14",
5
- "attributes": {
6
- "appearance": {
7
- "dark": {
8
- "value": "{color.neutral.0}14"
9
- }
10
- }
11
- }
12
- },
13
- "size": {
14
- "flat": {
15
- "value": "{size.0} {size.0} {size.0}"
16
- },
17
- "float": {
18
- "value": "{size.0} {size.half} {size.2}"
19
- },
20
- "overlay": {
21
- "value": "{size.0} {size.2} {size.6}"
22
- }
23
- }
24
- }
25
- }
@@ -1,46 +0,0 @@
1
- {
2
- "status": {
3
- "color": {
4
- "info": {
5
- "value": "{color.blue.500}",
6
- "attributes": {
7
- "appearance": {
8
- "dark": {
9
- "value": "{color.blue.300}"
10
- }
11
- }
12
- }
13
- },
14
- "danger": {
15
- "value": "{color.red.500}",
16
- "attributes": {
17
- "appearance": {
18
- "dark": {
19
- "value": "{color.red.300}"
20
- }
21
- }
22
- }
23
- },
24
- "success": {
25
- "value": "{color.green.500}",
26
- "attributes": {
27
- "appearance": {
28
- "dark": {
29
- "value": "{color.green.300}"
30
- }
31
- }
32
- }
33
- },
34
- "warning": {
35
- "value": "{color.yellow.500}",
36
- "attributes": {
37
- "appearance": {
38
- "dark": {
39
- "value": "{color.yellow.300}"
40
- }
41
- }
42
- }
43
- }
44
- }
45
- }
46
- }
@@ -1,79 +0,0 @@
1
- {
2
- "typography": {
3
- "paragraph": {
4
- "size": {
5
- "xsmall": {
6
- "value": "{font.size.200}"
7
- },
8
- "small": {
9
- "value": "{font.size.300}"
10
- },
11
- "default": {
12
- "value": "{font.size.400}"
13
- },
14
- "large": {
15
- "value": "{font.size.500}"
16
- },
17
- "xlarge": {
18
- "value": "{font.size.600}"
19
- }
20
- },
21
- "font-weight": {
22
- "value": "{font.weight.normal}"
23
- },
24
- "font-family": {
25
- "value": "{font.family.base}"
26
- }
27
- },
28
- "heading": {
29
- "size": {
30
- "xsmall": {
31
- "value": "{font.size.300}"
32
- },
33
- "small": {
34
- "value": "{font.size.400}"
35
- },
36
- "default": {
37
- "value": "{font.size.500}"
38
- },
39
- "large": {
40
- "value": "{font.size.600}"
41
- },
42
- "xlarge": {
43
- "value": "{font.size.800}"
44
- }
45
- },
46
- "font-weight": {
47
- "value": "{font.weight.bold}"
48
- },
49
- "font-family": {
50
- "value": "{font.family.display}"
51
- }
52
- },
53
- "label": {
54
- "size": {
55
- "xsmall": {
56
- "value": "{font.size.100}"
57
- },
58
- "small": {
59
- "value": "{font.size.200}"
60
- },
61
- "default": {
62
- "value": "{font.size.300}"
63
- },
64
- "large": {
65
- "value": "{font.size.400}"
66
- },
67
- "xlarge": {
68
- "value": "{font.size.500}"
69
- }
70
- },
71
- "font-weight": {
72
- "value": "{font.weight.semibold}"
73
- },
74
- "font-family": {
75
- "value": "{font.family.base}"
76
- }
77
- }
78
- }
79
- }