@atlaskit/tokens 1.14.2 → 1.15.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.
Files changed (174) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/cjs/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
  3. package/dist/cjs/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
  4. package/dist/cjs/artifacts/palettes-raw/typography-palette.js +313 -43
  5. package/dist/cjs/artifacts/theme-import-map.js +16 -4
  6. package/dist/cjs/artifacts/themes/atlassian-typography-adg3.js +13 -0
  7. package/dist/cjs/artifacts/themes/atlassian-typography-minor3.js +13 -0
  8. package/dist/cjs/artifacts/themes/atlassian-typography.js +2 -2
  9. package/dist/cjs/artifacts/token-default-values.js +23 -2
  10. package/dist/cjs/artifacts/token-names.js +22 -1
  11. package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +1084 -0
  12. package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +666 -0
  13. package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +465 -253
  14. package/dist/cjs/entry-points/tokens-raw.js +2 -2
  15. package/dist/cjs/get-token-value.js +1 -1
  16. package/dist/cjs/get-token.js +1 -1
  17. package/dist/cjs/palettes/typography-palette.js +133 -16
  18. package/dist/cjs/theme-config.js +20 -4
  19. package/dist/cjs/tokens/atlassian-typography/font-family.js +11 -2
  20. package/dist/cjs/tokens/atlassian-typography/letter-spacing.js +29 -0
  21. package/dist/cjs/tokens/atlassian-typography/theme.js +140 -0
  22. package/dist/cjs/tokens/atlassian-typography-adg3/font-family.js +29 -0
  23. package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.js +8 -8
  24. package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.js +4 -4
  25. package/dist/cjs/tokens/atlassian-typography-adg3/letter-spacing.js +29 -0
  26. package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +4 -1
  27. package/dist/cjs/tokens/atlassian-typography-adg3/theme.js +140 -0
  28. package/dist/cjs/tokens/atlassian-typography-minor3/font-family.js +29 -0
  29. package/dist/cjs/tokens/atlassian-typography-minor3/letter-spacing.js +29 -0
  30. package/dist/cjs/tokens/atlassian-typography-minor3/theme.js +140 -0
  31. package/dist/cjs/tokens/default/typography/font-family.js +24 -0
  32. package/dist/cjs/tokens/default/typography/font.js +133 -0
  33. package/dist/cjs/tokens/default/typography/letter-spacing.js +54 -0
  34. package/dist/cjs/tokens/default/typography/line-height.js +8 -0
  35. package/dist/es2019/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
  36. package/dist/es2019/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
  37. package/dist/es2019/artifacts/palettes-raw/typography-palette.js +313 -43
  38. package/dist/es2019/artifacts/theme-import-map.js +8 -4
  39. package/dist/es2019/artifacts/themes/atlassian-typography-adg3.js +50 -0
  40. package/dist/es2019/artifacts/themes/atlassian-typography-minor3.js +31 -0
  41. package/dist/es2019/artifacts/themes/atlassian-typography.js +23 -21
  42. package/dist/es2019/artifacts/token-default-values.js +23 -2
  43. package/dist/es2019/artifacts/token-names.js +22 -1
  44. package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
  45. package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +659 -0
  46. package/dist/es2019/artifacts/tokens-raw/atlassian-typography.js +465 -253
  47. package/dist/es2019/entry-points/tokens-raw.js +1 -1
  48. package/dist/es2019/get-token-value.js +1 -1
  49. package/dist/es2019/get-token.js +1 -1
  50. package/dist/es2019/palettes/typography-palette.js +135 -17
  51. package/dist/es2019/theme-config.js +20 -4
  52. package/dist/es2019/tokens/atlassian-typography/font-family.js +11 -2
  53. package/dist/es2019/tokens/atlassian-typography/letter-spacing.js +22 -0
  54. package/dist/es2019/tokens/atlassian-typography/theme.js +133 -0
  55. package/dist/es2019/tokens/atlassian-typography-adg3/font-family.js +22 -0
  56. package/dist/es2019/tokens/atlassian-typography-adg3/font-size.js +31 -0
  57. package/dist/es2019/tokens/atlassian-typography-adg3/font-weight.js +19 -0
  58. package/dist/es2019/tokens/atlassian-typography-adg3/letter-spacing.js +22 -0
  59. package/dist/es2019/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +4 -1
  60. package/dist/es2019/tokens/atlassian-typography-adg3/theme.js +133 -0
  61. package/dist/es2019/tokens/atlassian-typography-minor3/font-family.js +22 -0
  62. package/dist/es2019/tokens/atlassian-typography-minor3/letter-spacing.js +22 -0
  63. package/dist/es2019/tokens/atlassian-typography-minor3/theme.js +133 -0
  64. package/dist/es2019/tokens/default/typography/font-family.js +24 -0
  65. package/dist/es2019/tokens/default/typography/font.js +126 -0
  66. package/dist/es2019/tokens/default/typography/letter-spacing.js +47 -0
  67. package/dist/es2019/tokens/default/typography/line-height.js +8 -0
  68. package/dist/esm/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
  69. package/dist/esm/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
  70. package/dist/esm/artifacts/palettes-raw/typography-palette.js +313 -43
  71. package/dist/esm/artifacts/theme-import-map.js +12 -4
  72. package/dist/esm/artifacts/themes/atlassian-typography-adg3.js +6 -0
  73. package/dist/esm/artifacts/themes/atlassian-typography-minor3.js +6 -0
  74. package/dist/esm/artifacts/themes/atlassian-typography.js +2 -2
  75. package/dist/esm/artifacts/token-default-values.js +23 -2
  76. package/dist/esm/artifacts/token-names.js +22 -1
  77. package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
  78. package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +659 -0
  79. package/dist/esm/artifacts/tokens-raw/atlassian-typography.js +465 -253
  80. package/dist/esm/entry-points/tokens-raw.js +1 -1
  81. package/dist/esm/get-token-value.js +1 -1
  82. package/dist/esm/get-token.js +1 -1
  83. package/dist/esm/palettes/typography-palette.js +133 -16
  84. package/dist/esm/theme-config.js +20 -4
  85. package/dist/esm/tokens/atlassian-typography/font-family.js +11 -2
  86. package/dist/esm/tokens/atlassian-typography/letter-spacing.js +22 -0
  87. package/dist/esm/tokens/atlassian-typography/theme.js +133 -0
  88. package/dist/esm/tokens/atlassian-typography-adg3/font-family.js +22 -0
  89. package/dist/esm/tokens/atlassian-typography-adg3/font-size.js +31 -0
  90. package/dist/esm/tokens/atlassian-typography-adg3/font-weight.js +19 -0
  91. package/dist/esm/tokens/atlassian-typography-adg3/letter-spacing.js +22 -0
  92. package/dist/esm/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +4 -1
  93. package/dist/esm/tokens/atlassian-typography-adg3/theme.js +133 -0
  94. package/dist/esm/tokens/atlassian-typography-minor3/font-family.js +22 -0
  95. package/dist/esm/tokens/atlassian-typography-minor3/letter-spacing.js +22 -0
  96. package/dist/esm/tokens/atlassian-typography-minor3/theme.js +133 -0
  97. package/dist/esm/tokens/default/typography/font-family.js +24 -0
  98. package/dist/esm/tokens/default/typography/font.js +126 -0
  99. package/dist/esm/tokens/default/typography/letter-spacing.js +47 -0
  100. package/dist/esm/tokens/default/typography/line-height.js +8 -0
  101. package/dist/types/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
  102. package/dist/types/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
  103. package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
  104. package/dist/types/artifacts/theme-import-map.d.ts +1 -1
  105. package/dist/types/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
  106. package/dist/types/artifacts/themes/atlassian-typography-minor3.d.ts +7 -0
  107. package/dist/types/artifacts/themes/atlassian-typography.d.ts +2 -2
  108. package/dist/types/artifacts/token-default-values.d.ts +23 -2
  109. package/dist/types/artifacts/token-names.d.ts +43 -1
  110. package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
  111. package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +137 -0
  112. package/dist/types/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
  113. package/dist/types/artifacts/types-internal.d.ts +2 -2
  114. package/dist/types/artifacts/types.d.ts +2 -2
  115. package/dist/types/entry-points/tokens-raw.d.ts +1 -1
  116. package/dist/types/index.d.ts +1 -1
  117. package/dist/types/palettes/typography-palette.d.ts +8 -6
  118. package/dist/types/theme-config.d.ts +4 -4
  119. package/dist/types/tokens/atlassian-typography/letter-spacing.d.ts +4 -0
  120. package/dist/types/tokens/atlassian-typography/theme.d.ts +10 -0
  121. package/dist/types/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
  122. package/dist/types/tokens/atlassian-typography-adg3/letter-spacing.d.ts +4 -0
  123. package/dist/types/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
  124. package/dist/types/tokens/atlassian-typography-minor3/font-family.d.ts +4 -0
  125. package/dist/types/tokens/atlassian-typography-minor3/letter-spacing.d.ts +4 -0
  126. package/dist/types/tokens/atlassian-typography-minor3/theme.d.ts +10 -0
  127. package/dist/types/tokens/default/typography/font.d.ts +20 -0
  128. package/dist/types/tokens/default/typography/letter-spacing.d.ts +4 -0
  129. package/dist/types/types.d.ts +111 -22
  130. package/dist/types-ts4.5/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
  131. package/dist/types-ts4.5/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
  132. package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
  133. package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +1 -1
  134. package/dist/types-ts4.5/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
  135. package/dist/types-ts4.5/artifacts/themes/atlassian-typography-minor3.d.ts +7 -0
  136. package/dist/types-ts4.5/artifacts/themes/atlassian-typography.d.ts +2 -2
  137. package/dist/types-ts4.5/artifacts/token-default-values.d.ts +23 -2
  138. package/dist/types-ts4.5/artifacts/token-names.d.ts +43 -1
  139. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
  140. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +137 -0
  141. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
  142. package/dist/types-ts4.5/artifacts/types-internal.d.ts +2 -2
  143. package/dist/types-ts4.5/artifacts/types.d.ts +2 -2
  144. package/dist/types-ts4.5/entry-points/tokens-raw.d.ts +1 -1
  145. package/dist/types-ts4.5/index.d.ts +1 -1
  146. package/dist/types-ts4.5/palettes/typography-palette.d.ts +8 -6
  147. package/dist/types-ts4.5/theme-config.d.ts +7 -3
  148. package/dist/types-ts4.5/tokens/atlassian-typography/letter-spacing.d.ts +4 -0
  149. package/dist/types-ts4.5/tokens/atlassian-typography/theme.d.ts +10 -0
  150. package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
  151. package/dist/types-ts4.5/tokens/atlassian-typography-adg3/letter-spacing.d.ts +4 -0
  152. package/dist/types-ts4.5/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
  153. package/dist/types-ts4.5/tokens/atlassian-typography-minor3/font-family.d.ts +4 -0
  154. package/dist/types-ts4.5/tokens/atlassian-typography-minor3/letter-spacing.d.ts +4 -0
  155. package/dist/types-ts4.5/tokens/atlassian-typography-minor3/theme.d.ts +10 -0
  156. package/dist/types-ts4.5/tokens/default/typography/font.d.ts +20 -0
  157. package/dist/types-ts4.5/tokens/default/typography/letter-spacing.d.ts +4 -0
  158. package/dist/types-ts4.5/types.d.ts +111 -22
  159. package/figma/atlassian-typography-adg3.json +150 -0
  160. package/figma/atlassian-typography-minor3.json +51 -0
  161. package/figma/atlassian-typography.json +19 -82
  162. package/package.json +1 -2
  163. package/report.api.md +87 -2
  164. package/tmp/api-report-tmp.d.ts +65 -7
  165. package/dist/es2019/tokens/atlassian-typography/font-size.js +0 -31
  166. package/dist/es2019/tokens/atlassian-typography/font-weight.js +0 -19
  167. package/dist/esm/tokens/atlassian-typography/font-size.js +0 -31
  168. package/dist/esm/tokens/atlassian-typography/font-weight.js +0 -19
  169. /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
  170. /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
  171. /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
  172. /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
  173. /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
  174. /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
@@ -6,449 +6,661 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.default = void 0;
7
7
  /**
8
8
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
9
- * @codegen <<SignedSource::7bcab6ad73069f6baf12316783222835>>
9
+ * @codegen <<SignedSource::bf6a6956c0f05008a38d080067ade3fb>>
10
10
  * @codegenCommand yarn build tokens
11
11
  */
12
12
  var tokens = [{
13
13
  "attributes": {
14
- "group": "fontFamily",
15
- "state": "active",
16
- "introduced": "0.10.33",
17
- "description": "Helpful guidance goes here"
18
- },
19
- "value": "\"SFMono-Medium\", \"SF Mono\", \"Segoe UI Mono\", \"Roboto Mono\", \"Ubuntu Mono\", Menlo, Consolas, Courier, monospace",
20
- "filePath": "src/tokens/atlassian-typography/font-family.tsx",
14
+ "group": "typography",
15
+ "state": "experimental",
16
+ "introduced": "1.14.0",
17
+ "description": "The default body font."
18
+ },
19
+ "value": {
20
+ "fontSize": 14,
21
+ "fontStyle": "normal",
22
+ "fontWeight": "400",
23
+ "lineHeight": 20,
24
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
25
+ "letterSpacing": "0"
26
+ },
27
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
21
28
  "isSource": true,
22
29
  "original": {
23
30
  "attributes": {
24
- "group": "fontFamily",
25
- "state": "active",
26
- "introduced": "0.10.33",
27
- "description": "Helpful guidance goes here"
31
+ "group": "typography",
32
+ "state": "experimental",
33
+ "introduced": "1.14.0",
34
+ "description": "The default body font."
28
35
  },
29
- "value": "FontFamilyMonospace"
30
- },
31
- "name": "font.family.monospace",
32
- "path": ["font", "family", "monospace"],
33
- "cleanName": "font.family.monospace"
36
+ "value": {
37
+ "fontWeight": "FontWeight400",
38
+ "fontSize": "FontSize14",
39
+ "lineHeight": "LineHeight200",
40
+ "fontFamily": "FontFamilyWebSans",
41
+ "fontStyle": "normal",
42
+ "letterSpacing": "LetterSpacing0"
43
+ }
44
+ },
45
+ "name": "font.body.[default]",
46
+ "path": ["font", "body", "[default]"],
47
+ "cleanName": "font.body"
34
48
  }, {
35
49
  "attributes": {
36
- "group": "fontFamily",
37
- "state": "active",
38
- "introduced": "0.10.33",
39
- "description": "Helpful guidance goes here"
40
- },
41
- "value": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif",
42
- "filePath": "src/tokens/atlassian-typography/font-family.tsx",
50
+ "group": "typography",
51
+ "state": "experimental",
52
+ "introduced": "1.14.0",
53
+ "description": "Smaller body font."
54
+ },
55
+ "value": {
56
+ "fontSize": 12,
57
+ "fontStyle": "normal",
58
+ "fontWeight": "400",
59
+ "lineHeight": 20,
60
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
61
+ "letterSpacing": "0"
62
+ },
63
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
43
64
  "isSource": true,
44
65
  "original": {
45
66
  "attributes": {
46
- "group": "fontFamily",
47
- "state": "active",
48
- "introduced": "0.10.33",
49
- "description": "Helpful guidance goes here"
67
+ "group": "typography",
68
+ "state": "experimental",
69
+ "introduced": "1.14.0",
70
+ "description": "Smaller body font."
50
71
  },
51
- "value": "FontFamilySans"
52
- },
53
- "name": "font.family.sans",
54
- "path": ["font", "family", "sans"],
55
- "cleanName": "font.family.sans"
72
+ "value": {
73
+ "fontWeight": "FontWeight400",
74
+ "fontSize": "FontSize12",
75
+ "lineHeight": "LineHeight200",
76
+ "fontFamily": "FontFamilyWebSans",
77
+ "fontStyle": "normal",
78
+ "letterSpacing": "LetterSpacing0"
79
+ }
80
+ },
81
+ "name": "font.body.sm",
82
+ "path": ["font", "body", "sm"],
83
+ "cleanName": "font.body.sm"
56
84
  }, {
57
85
  "attributes": {
58
- "group": "fontSize",
59
- "state": "active",
60
- "introduced": "0.10.33",
61
- "description": "Helpful guidance goes here"
62
- },
63
- "value": "11px",
64
- "filePath": "src/tokens/atlassian-typography/font-size.tsx",
86
+ "group": "typography",
87
+ "state": "experimental",
88
+ "introduced": "1.14.0",
89
+ "description": "Used for monospace and code."
90
+ },
91
+ "value": {
92
+ "fontSize": "0.875em",
93
+ "fontStyle": "normal",
94
+ "fontWeight": "400",
95
+ "lineHeight": "1",
96
+ "fontFamily": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
97
+ "letterSpacing": "0"
98
+ },
99
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
65
100
  "isSource": true,
66
101
  "original": {
67
102
  "attributes": {
68
- "group": "fontSize",
69
- "state": "active",
70
- "introduced": "0.10.33",
71
- "description": "Helpful guidance goes here"
103
+ "group": "typography",
104
+ "state": "experimental",
105
+ "introduced": "1.14.0",
106
+ "description": "Used for monospace and code."
72
107
  },
73
- "value": "FontSize050"
74
- },
75
- "name": "font.size.050",
76
- "path": ["font", "size", "050"],
77
- "cleanName": "font.size.050"
108
+ "value": {
109
+ "fontWeight": "FontWeight400",
110
+ "fontSize": "FontSizeCode",
111
+ "lineHeight": "LineHeight1",
112
+ "fontFamily": "FontFamilyWebMono",
113
+ "fontStyle": "normal",
114
+ "letterSpacing": "LetterSpacing0"
115
+ }
116
+ },
117
+ "name": "font.code.[default]",
118
+ "path": ["font", "code", "[default]"],
119
+ "cleanName": "font.code"
78
120
  }, {
79
121
  "attributes": {
80
- "group": "fontSize",
81
- "state": "active",
82
- "introduced": "0.10.33",
83
- "description": "Helpful guidance goes here"
84
- },
85
- "value": "12px",
86
- "filePath": "src/tokens/atlassian-typography/font-size.tsx",
122
+ "group": "typography",
123
+ "state": "experimental",
124
+ "introduced": "1.14.0",
125
+ "description": "TBD"
126
+ },
127
+ "value": {
128
+ "fontSize": 24,
129
+ "fontStyle": "normal",
130
+ "fontWeight": "700",
131
+ "lineHeight": 28,
132
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
133
+ "letterSpacing": "0"
134
+ },
135
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
87
136
  "isSource": true,
88
137
  "original": {
89
138
  "attributes": {
90
- "group": "fontSize",
91
- "state": "active",
92
- "introduced": "0.10.33",
93
- "description": "Helpful guidance goes here"
139
+ "group": "typography",
140
+ "state": "experimental",
141
+ "introduced": "1.14.0",
142
+ "description": "TBD"
94
143
  },
95
- "value": "FontSize075"
96
- },
97
- "name": "font.size.075",
98
- "path": ["font", "size", "075"],
99
- "cleanName": "font.size.075"
144
+ "value": {
145
+ "fontWeight": "FontWeight700",
146
+ "fontSize": "FontSize24",
147
+ "lineHeight": "LineHeight400",
148
+ "fontFamily": "FontFamilyWebSans",
149
+ "fontStyle": "normal",
150
+ "letterSpacing": "LetterSpacing0"
151
+ }
152
+ },
153
+ "name": "font.heading.lg",
154
+ "path": ["font", "heading", "lg"],
155
+ "cleanName": "font.heading.lg"
100
156
  }, {
101
157
  "attributes": {
102
- "group": "fontSize",
103
- "state": "active",
104
- "introduced": "0.10.33",
105
- "description": "Helpful guidance goes here"
106
- },
107
- "value": "14px",
108
- "filePath": "src/tokens/atlassian-typography/font-size.tsx",
158
+ "group": "typography",
159
+ "state": "experimental",
160
+ "introduced": "1.14.0",
161
+ "description": "TBD"
162
+ },
163
+ "value": {
164
+ "fontSize": 20,
165
+ "fontStyle": "normal",
166
+ "fontWeight": "700",
167
+ "lineHeight": 24,
168
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
169
+ "letterSpacing": "0"
170
+ },
171
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
109
172
  "isSource": true,
110
173
  "original": {
111
174
  "attributes": {
112
- "group": "fontSize",
113
- "state": "active",
114
- "introduced": "0.10.33",
115
- "description": "Helpful guidance goes here"
175
+ "group": "typography",
176
+ "state": "experimental",
177
+ "introduced": "1.14.0",
178
+ "description": "TBD"
116
179
  },
117
- "value": "FontSize100"
118
- },
119
- "name": "font.size.100",
120
- "path": ["font", "size", "100"],
121
- "cleanName": "font.size.100"
180
+ "value": {
181
+ "fontWeight": "FontWeight700",
182
+ "fontSize": "FontSize20",
183
+ "lineHeight": "LineHeight300",
184
+ "fontFamily": "FontFamilyWebSans",
185
+ "fontStyle": "normal",
186
+ "letterSpacing": "LetterSpacing0"
187
+ }
188
+ },
189
+ "name": "font.heading.md",
190
+ "path": ["font", "heading", "md"],
191
+ "cleanName": "font.heading.md"
122
192
  }, {
123
193
  "attributes": {
124
- "group": "fontSize",
125
- "state": "active",
126
- "introduced": "0.10.33",
127
- "description": "Helpful guidance goes here"
128
- },
129
- "value": "16px",
130
- "filePath": "src/tokens/atlassian-typography/font-size.tsx",
194
+ "group": "typography",
195
+ "state": "experimental",
196
+ "introduced": "1.14.0",
197
+ "description": "TBD"
198
+ },
199
+ "value": {
200
+ "fontSize": 16,
201
+ "fontStyle": "normal",
202
+ "fontWeight": "700",
203
+ "lineHeight": 20,
204
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
205
+ "letterSpacing": "0"
206
+ },
207
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
131
208
  "isSource": true,
132
209
  "original": {
133
210
  "attributes": {
134
- "group": "fontSize",
135
- "state": "active",
136
- "introduced": "0.10.33",
137
- "description": "Helpful guidance goes here"
211
+ "group": "typography",
212
+ "state": "experimental",
213
+ "introduced": "1.14.0",
214
+ "description": "TBD"
138
215
  },
139
- "value": "FontSize200"
140
- },
141
- "name": "font.size.200",
142
- "path": ["font", "size", "200"],
143
- "cleanName": "font.size.200"
216
+ "value": {
217
+ "fontWeight": "FontWeight700",
218
+ "fontSize": "FontSize16",
219
+ "lineHeight": "LineHeight200",
220
+ "fontFamily": "FontFamilyWebSans",
221
+ "fontStyle": "normal",
222
+ "letterSpacing": "LetterSpacing0"
223
+ }
224
+ },
225
+ "name": "font.heading.sm",
226
+ "path": ["font", "heading", "sm"],
227
+ "cleanName": "font.heading.sm"
144
228
  }, {
145
229
  "attributes": {
146
- "group": "fontSize",
147
- "state": "active",
148
- "introduced": "0.10.33",
149
- "description": "Helpful guidance goes here"
150
- },
151
- "value": "20px",
152
- "filePath": "src/tokens/atlassian-typography/font-size.tsx",
230
+ "group": "typography",
231
+ "state": "experimental",
232
+ "introduced": "1.14.0",
233
+ "description": "TBD"
234
+ },
235
+ "value": {
236
+ "fontSize": 28,
237
+ "fontStyle": "normal",
238
+ "fontWeight": "700",
239
+ "lineHeight": 32,
240
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
241
+ "letterSpacing": "0"
242
+ },
243
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
153
244
  "isSource": true,
154
245
  "original": {
155
246
  "attributes": {
156
- "group": "fontSize",
157
- "state": "active",
158
- "introduced": "0.10.33",
159
- "description": "Helpful guidance goes here"
247
+ "group": "typography",
248
+ "state": "experimental",
249
+ "introduced": "1.14.0",
250
+ "description": "TBD"
160
251
  },
161
- "value": "FontSize300"
162
- },
163
- "name": "font.size.300",
164
- "path": ["font", "size", "300"],
165
- "cleanName": "font.size.300"
252
+ "value": {
253
+ "fontWeight": "FontWeight700",
254
+ "fontSize": "FontSize28",
255
+ "lineHeight": "LineHeight500",
256
+ "fontFamily": "FontFamilyWebSans",
257
+ "fontStyle": "normal",
258
+ "letterSpacing": "LetterSpacing0"
259
+ }
260
+ },
261
+ "name": "font.heading.xl",
262
+ "path": ["font", "heading", "xl"],
263
+ "cleanName": "font.heading.xl"
166
264
  }, {
167
265
  "attributes": {
168
- "group": "fontSize",
169
- "state": "active",
170
- "introduced": "0.10.33",
171
- "description": "Helpful guidance goes here"
172
- },
173
- "value": "24px",
174
- "filePath": "src/tokens/atlassian-typography/font-size.tsx",
266
+ "group": "typography",
267
+ "state": "experimental",
268
+ "introduced": "1.14.0",
269
+ "description": "TBD"
270
+ },
271
+ "value": {
272
+ "fontSize": 14,
273
+ "fontStyle": "normal",
274
+ "fontWeight": "700",
275
+ "lineHeight": 16,
276
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
277
+ "letterSpacing": "0"
278
+ },
279
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
175
280
  "isSource": true,
176
281
  "original": {
177
282
  "attributes": {
178
- "group": "fontSize",
179
- "state": "active",
180
- "introduced": "0.10.33",
181
- "description": "Helpful guidance goes here"
283
+ "group": "typography",
284
+ "state": "experimental",
285
+ "introduced": "1.14.0",
286
+ "description": "TBD"
182
287
  },
183
- "value": "FontSize400"
184
- },
185
- "name": "font.size.400",
186
- "path": ["font", "size", "400"],
187
- "cleanName": "font.size.400"
288
+ "value": {
289
+ "fontWeight": "FontWeight700",
290
+ "fontSize": "FontSize14",
291
+ "lineHeight": "LineHeight100",
292
+ "fontFamily": "FontFamilyWebSans",
293
+ "fontStyle": "normal",
294
+ "letterSpacing": "LetterSpacing0"
295
+ }
296
+ },
297
+ "name": "font.heading.xs",
298
+ "path": ["font", "heading", "xs"],
299
+ "cleanName": "font.heading.xs"
188
300
  }, {
189
301
  "attributes": {
190
- "group": "fontSize",
191
- "state": "active",
192
- "introduced": "0.10.33",
193
- "description": "Helpful guidance goes here"
194
- },
195
- "value": "29px",
196
- "filePath": "src/tokens/atlassian-typography/font-size.tsx",
302
+ "group": "typography",
303
+ "state": "experimental",
304
+ "introduced": "1.14.0",
305
+ "description": "TBD"
306
+ },
307
+ "value": {
308
+ "fontSize": 36,
309
+ "fontStyle": "normal",
310
+ "fontWeight": "700",
311
+ "lineHeight": 40,
312
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
313
+ "letterSpacing": "0"
314
+ },
315
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
197
316
  "isSource": true,
198
317
  "original": {
199
318
  "attributes": {
200
- "group": "fontSize",
201
- "state": "active",
202
- "introduced": "0.10.33",
203
- "description": "Helpful guidance goes here"
319
+ "group": "typography",
320
+ "state": "experimental",
321
+ "introduced": "1.14.0",
322
+ "description": "TBD"
204
323
  },
205
- "value": "FontSize500"
206
- },
207
- "name": "font.size.500",
208
- "path": ["font", "size", "500"],
209
- "cleanName": "font.size.500"
324
+ "value": {
325
+ "fontWeight": "FontWeight700",
326
+ "fontSize": "FontSize36",
327
+ "lineHeight": "LineHeight700",
328
+ "fontFamily": "FontFamilyWebSans",
329
+ "fontStyle": "normal",
330
+ "letterSpacing": "LetterSpacing0"
331
+ }
332
+ },
333
+ "name": "font.heading.xxl",
334
+ "path": ["font", "heading", "xxl"],
335
+ "cleanName": "font.heading.xxl"
210
336
  }, {
211
337
  "attributes": {
212
- "group": "fontSize",
213
- "state": "active",
214
- "introduced": "0.10.33",
215
- "description": "Helpful guidance goes here"
216
- },
217
- "value": "35px",
218
- "filePath": "src/tokens/atlassian-typography/font-size.tsx",
338
+ "group": "typography",
339
+ "state": "experimental",
340
+ "introduced": "1.14.0",
341
+ "description": "TBD"
342
+ },
343
+ "value": {
344
+ "fontSize": 12,
345
+ "fontStyle": "normal",
346
+ "fontWeight": "700",
347
+ "lineHeight": 16,
348
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
349
+ "letterSpacing": "0"
350
+ },
351
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
219
352
  "isSource": true,
220
353
  "original": {
221
354
  "attributes": {
222
- "group": "fontSize",
223
- "state": "active",
224
- "introduced": "0.10.33",
225
- "description": "Helpful guidance goes here"
355
+ "group": "typography",
356
+ "state": "experimental",
357
+ "introduced": "1.14.0",
358
+ "description": "TBD"
226
359
  },
227
- "value": "FontSize600"
228
- },
229
- "name": "font.size.600",
230
- "path": ["font", "size", "600"],
231
- "cleanName": "font.size.600"
360
+ "value": {
361
+ "fontWeight": "FontWeight700",
362
+ "fontSize": "FontSize12",
363
+ "lineHeight": "LineHeight100",
364
+ "fontFamily": "FontFamilyWebSans",
365
+ "fontStyle": "normal",
366
+ "letterSpacing": "LetterSpacing0"
367
+ }
368
+ },
369
+ "name": "font.heading.xxs",
370
+ "path": ["font", "heading", "xxs"],
371
+ "cleanName": "font.heading.xxs"
232
372
  }, {
233
373
  "attributes": {
234
- "group": "fontWeight",
374
+ "group": "letterSpacing",
235
375
  "state": "active",
236
376
  "introduced": "0.10.33",
237
377
  "description": "Helpful guidance goes here"
238
378
  },
239
- "value": "700",
240
- "filePath": "src/tokens/atlassian-typography/font-weight.tsx",
379
+ "value": "0",
380
+ "filePath": "src/tokens/atlassian-typography/letter-spacing.tsx",
241
381
  "isSource": true,
242
382
  "original": {
243
383
  "attributes": {
244
- "group": "fontWeight",
384
+ "group": "letterSpacing",
245
385
  "state": "active",
246
386
  "introduced": "0.10.33",
247
387
  "description": "Helpful guidance goes here"
248
388
  },
249
- "value": "FontWeightBold"
389
+ "value": "LetterSpacing0"
250
390
  },
251
- "name": "font.weight.bold",
252
- "path": ["font", "weight", "bold"],
253
- "cleanName": "font.weight.bold"
391
+ "name": "font.letterSpacing.0",
392
+ "path": ["font", "letterSpacing", "0"],
393
+ "cleanName": "font.letterSpacing.0"
254
394
  }, {
255
395
  "attributes": {
256
- "group": "fontWeight",
396
+ "group": "letterSpacing",
257
397
  "state": "active",
258
398
  "introduced": "0.10.33",
259
399
  "description": "Helpful guidance goes here"
260
400
  },
261
- "value": "500",
262
- "filePath": "src/tokens/atlassian-typography/font-weight.tsx",
401
+ "value": "0",
402
+ "filePath": "src/tokens/atlassian-typography/letter-spacing.tsx",
263
403
  "isSource": true,
264
404
  "original": {
265
405
  "attributes": {
266
- "group": "fontWeight",
406
+ "group": "letterSpacing",
267
407
  "state": "active",
268
408
  "introduced": "0.10.33",
269
409
  "description": "Helpful guidance goes here"
270
410
  },
271
- "value": "FontWeightMedium"
411
+ "value": "LetterSpacing0"
272
412
  },
273
- "name": "font.weight.medium",
274
- "path": ["font", "weight", "medium"],
275
- "cleanName": "font.weight.medium"
413
+ "name": "font.letterSpacing.100",
414
+ "path": ["font", "letterSpacing", "100"],
415
+ "cleanName": "font.letterSpacing.100"
276
416
  }, {
277
417
  "attributes": {
278
- "group": "fontWeight",
418
+ "group": "letterSpacing",
279
419
  "state": "active",
280
420
  "introduced": "0.10.33",
281
421
  "description": "Helpful guidance goes here"
282
422
  },
283
- "value": "400",
284
- "filePath": "src/tokens/atlassian-typography/font-weight.tsx",
423
+ "value": "0",
424
+ "filePath": "src/tokens/atlassian-typography/letter-spacing.tsx",
285
425
  "isSource": true,
286
426
  "original": {
287
427
  "attributes": {
288
- "group": "fontWeight",
428
+ "group": "letterSpacing",
289
429
  "state": "active",
290
430
  "introduced": "0.10.33",
291
431
  "description": "Helpful guidance goes here"
292
432
  },
293
- "value": "FontWeightRegular"
433
+ "value": "LetterSpacing0"
294
434
  },
295
- "name": "font.weight.regular",
296
- "path": ["font", "weight", "regular"],
297
- "cleanName": "font.weight.regular"
435
+ "name": "font.letterSpacing.200",
436
+ "path": ["font", "letterSpacing", "200"],
437
+ "cleanName": "font.letterSpacing.200"
298
438
  }, {
299
439
  "attributes": {
300
- "group": "fontWeight",
440
+ "group": "letterSpacing",
301
441
  "state": "active",
302
442
  "introduced": "0.10.33",
303
443
  "description": "Helpful guidance goes here"
304
444
  },
305
- "value": "600",
306
- "filePath": "src/tokens/atlassian-typography/font-weight.tsx",
445
+ "value": "0",
446
+ "filePath": "src/tokens/atlassian-typography/letter-spacing.tsx",
307
447
  "isSource": true,
308
448
  "original": {
309
449
  "attributes": {
310
- "group": "fontWeight",
450
+ "group": "letterSpacing",
311
451
  "state": "active",
312
452
  "introduced": "0.10.33",
313
453
  "description": "Helpful guidance goes here"
314
454
  },
315
- "value": "FontWeightSemiBold"
455
+ "value": "LetterSpacing0"
316
456
  },
317
- "name": "font.weight.semibold",
318
- "path": ["font", "weight", "semibold"],
319
- "cleanName": "font.weight.semibold"
457
+ "name": "font.letterSpacing.300",
458
+ "path": ["font", "letterSpacing", "300"],
459
+ "cleanName": "font.letterSpacing.300"
320
460
  }, {
321
461
  "attributes": {
322
- "group": "lineHeight",
462
+ "group": "letterSpacing",
323
463
  "state": "active",
324
464
  "introduced": "0.10.33",
325
465
  "description": "Helpful guidance goes here"
326
466
  },
327
- "value": "16px",
328
- "filePath": "src/tokens/atlassian-typography/line-height.tsx",
467
+ "value": "0",
468
+ "filePath": "src/tokens/atlassian-typography/letter-spacing.tsx",
329
469
  "isSource": true,
330
470
  "original": {
331
471
  "attributes": {
332
- "group": "lineHeight",
472
+ "group": "letterSpacing",
333
473
  "state": "active",
334
474
  "introduced": "0.10.33",
335
475
  "description": "Helpful guidance goes here"
336
476
  },
337
- "value": "LineHeight100"
477
+ "value": "LetterSpacing0"
338
478
  },
339
- "name": "font.lineHeight.100",
340
- "path": ["font", "lineHeight", "100"],
341
- "cleanName": "font.lineHeight.100"
479
+ "name": "font.letterSpacing.400",
480
+ "path": ["font", "letterSpacing", "400"],
481
+ "cleanName": "font.letterSpacing.400"
342
482
  }, {
343
483
  "attributes": {
344
- "group": "lineHeight",
345
- "state": "active",
346
- "introduced": "0.10.33",
484
+ "group": "typography",
485
+ "state": "experimental",
486
+ "introduced": "1.14.0",
487
+ "description": "Single-line non-wrapping text like that in a button."
488
+ },
489
+ "value": {
490
+ "fontSize": 14,
491
+ "fontStyle": "normal",
492
+ "fontWeight": "400",
493
+ "lineHeight": "1",
494
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
495
+ "letterSpacing": "0"
496
+ },
497
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
498
+ "isSource": true,
499
+ "original": {
500
+ "attributes": {
501
+ "group": "typography",
502
+ "state": "experimental",
503
+ "introduced": "1.14.0",
504
+ "description": "Single-line non-wrapping text like that in a button."
505
+ },
506
+ "value": {
507
+ "fontWeight": "FontWeight400",
508
+ "fontSize": "FontSize14",
509
+ "lineHeight": "LineHeight1",
510
+ "fontFamily": "FontFamilyWebSans",
511
+ "fontStyle": "normal",
512
+ "letterSpacing": "LetterSpacing0"
513
+ }
514
+ },
515
+ "name": "font.ui.[default]",
516
+ "path": ["font", "ui", "[default]"],
517
+ "cleanName": "font.ui"
518
+ }, {
519
+ "attributes": {
520
+ "group": "typography",
521
+ "state": "experimental",
522
+ "introduced": "1.14.0",
523
+ "description": "Single-line non-wrapping supporting text like that in a smaller label."
524
+ },
525
+ "value": {
526
+ "fontSize": 12,
527
+ "fontStyle": "normal",
528
+ "fontWeight": "400",
529
+ "lineHeight": "1",
530
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
531
+ "letterSpacing": "0"
532
+ },
533
+ "filePath": "src/tokens/atlassian-typography/theme.tsx",
534
+ "isSource": true,
535
+ "original": {
536
+ "attributes": {
537
+ "group": "typography",
538
+ "state": "experimental",
539
+ "introduced": "1.14.0",
540
+ "description": "Single-line non-wrapping supporting text like that in a smaller label."
541
+ },
542
+ "value": {
543
+ "fontWeight": "FontWeight400",
544
+ "fontSize": "FontSize12",
545
+ "lineHeight": "LineHeight1",
546
+ "fontFamily": "FontFamilyWebSans",
547
+ "fontStyle": "normal",
548
+ "letterSpacing": "LetterSpacing0"
549
+ }
550
+ },
551
+ "name": "font.ui.sm",
552
+ "path": ["font", "ui", "sm"],
553
+ "cleanName": "font.ui.sm"
554
+ }, {
555
+ "attributes": {
556
+ "group": "fontFamily",
557
+ "state": "experimental",
558
+ "introduced": "1.14.0",
347
559
  "description": "Helpful guidance goes here"
348
560
  },
349
- "value": "20px",
350
- "filePath": "src/tokens/atlassian-typography/line-height.tsx",
561
+ "value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
562
+ "filePath": "src/tokens/atlassian-typography/font-family.tsx",
351
563
  "isSource": true,
352
564
  "original": {
353
565
  "attributes": {
354
- "group": "lineHeight",
355
- "state": "active",
356
- "introduced": "0.10.33",
566
+ "group": "fontFamily",
567
+ "state": "experimental",
568
+ "introduced": "1.14.0",
357
569
  "description": "Helpful guidance goes here"
358
570
  },
359
- "value": "LineHeight200"
571
+ "value": "FontFamilyWebMono"
360
572
  },
361
- "name": "font.lineHeight.200",
362
- "path": ["font", "lineHeight", "200"],
363
- "cleanName": "font.lineHeight.200"
573
+ "name": "font.family.code",
574
+ "path": ["font", "family", "code"],
575
+ "cleanName": "font.family.code"
364
576
  }, {
365
577
  "attributes": {
366
- "group": "lineHeight",
578
+ "group": "fontFamily",
367
579
  "state": "active",
368
580
  "introduced": "0.10.33",
369
581
  "description": "Helpful guidance goes here"
370
582
  },
371
- "value": "24px",
372
- "filePath": "src/tokens/atlassian-typography/line-height.tsx",
583
+ "value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
584
+ "filePath": "src/tokens/atlassian-typography/font-family.tsx",
373
585
  "isSource": true,
374
586
  "original": {
375
587
  "attributes": {
376
- "group": "lineHeight",
588
+ "group": "fontFamily",
377
589
  "state": "active",
378
590
  "introduced": "0.10.33",
379
591
  "description": "Helpful guidance goes here"
380
592
  },
381
- "value": "LineHeight300"
593
+ "value": "FontFamilyWebMono"
382
594
  },
383
- "name": "font.lineHeight.300",
384
- "path": ["font", "lineHeight", "300"],
385
- "cleanName": "font.lineHeight.300"
595
+ "name": "font.family.monospace",
596
+ "path": ["font", "family", "monospace"],
597
+ "cleanName": "font.family.monospace"
386
598
  }, {
387
599
  "attributes": {
388
- "group": "lineHeight",
389
- "state": "active",
390
- "introduced": "0.10.33",
600
+ "group": "fontFamily",
601
+ "state": "experimental",
602
+ "introduced": "1.14.0",
391
603
  "description": "Helpful guidance goes here"
392
604
  },
393
- "value": "28px",
394
- "filePath": "src/tokens/atlassian-typography/line-height.tsx",
605
+ "value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
606
+ "filePath": "src/tokens/atlassian-typography/font-family.tsx",
395
607
  "isSource": true,
396
608
  "original": {
397
609
  "attributes": {
398
- "group": "lineHeight",
399
- "state": "active",
400
- "introduced": "0.10.33",
610
+ "group": "fontFamily",
611
+ "state": "experimental",
612
+ "introduced": "1.14.0",
401
613
  "description": "Helpful guidance goes here"
402
614
  },
403
- "value": "LineHeight400"
615
+ "value": "FontFamilyWebSans"
404
616
  },
405
- "name": "font.lineHeight.400",
406
- "path": ["font", "lineHeight", "400"],
407
- "cleanName": "font.lineHeight.400"
617
+ "name": "font.family.product",
618
+ "path": ["font", "family", "product"],
619
+ "cleanName": "font.family.product"
408
620
  }, {
409
621
  "attributes": {
410
- "group": "lineHeight",
622
+ "group": "fontFamily",
411
623
  "state": "active",
412
624
  "introduced": "0.10.33",
413
625
  "description": "Helpful guidance goes here"
414
626
  },
415
- "value": "32px",
416
- "filePath": "src/tokens/atlassian-typography/line-height.tsx",
627
+ "value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
628
+ "filePath": "src/tokens/atlassian-typography/font-family.tsx",
417
629
  "isSource": true,
418
630
  "original": {
419
631
  "attributes": {
420
- "group": "lineHeight",
632
+ "group": "fontFamily",
421
633
  "state": "active",
422
634
  "introduced": "0.10.33",
423
635
  "description": "Helpful guidance goes here"
424
636
  },
425
- "value": "LineHeight500"
637
+ "value": "FontFamilyWebSans"
426
638
  },
427
- "name": "font.lineHeight.500",
428
- "path": ["font", "lineHeight", "500"],
429
- "cleanName": "font.lineHeight.500"
639
+ "name": "font.family.sans",
640
+ "path": ["font", "family", "sans"],
641
+ "cleanName": "font.family.sans"
430
642
  }, {
431
643
  "attributes": {
432
- "group": "lineHeight",
433
- "state": "active",
434
- "introduced": "0.10.33",
644
+ "group": "fontFamily",
645
+ "state": "experimental",
646
+ "introduced": "1.14.0",
435
647
  "description": "Helpful guidance goes here"
436
648
  },
437
- "value": "40px",
438
- "filePath": "src/tokens/atlassian-typography/line-height.tsx",
649
+ "value": "Charlie Sans",
650
+ "filePath": "src/tokens/atlassian-typography/font-family.tsx",
439
651
  "isSource": true,
440
652
  "original": {
441
653
  "attributes": {
442
- "group": "lineHeight",
443
- "state": "active",
444
- "introduced": "0.10.33",
654
+ "group": "fontFamily",
655
+ "state": "experimental",
656
+ "introduced": "1.14.0",
445
657
  "description": "Helpful guidance goes here"
446
658
  },
447
- "value": "LineHeight600"
659
+ "value": "FontFamilyCharlie"
448
660
  },
449
- "name": "font.lineHeight.600",
450
- "path": ["font", "lineHeight", "600"],
451
- "cleanName": "font.lineHeight.600"
661
+ "name": "font.family.brand",
662
+ "path": ["font", "family", "brand"],
663
+ "cleanName": "font.family.brand"
452
664
  }];
453
665
  var _default = tokens;
454
666
  exports.default = _default;