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