@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,666 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ /**
8
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
9
+ * @codegen <<SignedSource::943b9b3b3139522a62a9775dcae78ed4>>
10
+ * @codegenCommand yarn build tokens
11
+ */
12
+ var tokens = [{
13
+ "attributes": {
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-minor3/theme.tsx",
28
+ "isSource": true,
29
+ "original": {
30
+ "attributes": {
31
+ "group": "typography",
32
+ "state": "experimental",
33
+ "introduced": "1.14.0",
34
+ "description": "The default body font."
35
+ },
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"
48
+ }, {
49
+ "attributes": {
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-minor3/theme.tsx",
64
+ "isSource": true,
65
+ "original": {
66
+ "attributes": {
67
+ "group": "typography",
68
+ "state": "experimental",
69
+ "introduced": "1.14.0",
70
+ "description": "Smaller body font."
71
+ },
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"
84
+ }, {
85
+ "attributes": {
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-minor3/theme.tsx",
100
+ "isSource": true,
101
+ "original": {
102
+ "attributes": {
103
+ "group": "typography",
104
+ "state": "experimental",
105
+ "introduced": "1.14.0",
106
+ "description": "Used for monospace and code."
107
+ },
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"
120
+ }, {
121
+ "attributes": {
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-minor3/theme.tsx",
136
+ "isSource": true,
137
+ "original": {
138
+ "attributes": {
139
+ "group": "typography",
140
+ "state": "experimental",
141
+ "introduced": "1.14.0",
142
+ "description": "TBD"
143
+ },
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"
156
+ }, {
157
+ "attributes": {
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-minor3/theme.tsx",
172
+ "isSource": true,
173
+ "original": {
174
+ "attributes": {
175
+ "group": "typography",
176
+ "state": "experimental",
177
+ "introduced": "1.14.0",
178
+ "description": "TBD"
179
+ },
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"
192
+ }, {
193
+ "attributes": {
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-minor3/theme.tsx",
208
+ "isSource": true,
209
+ "original": {
210
+ "attributes": {
211
+ "group": "typography",
212
+ "state": "experimental",
213
+ "introduced": "1.14.0",
214
+ "description": "TBD"
215
+ },
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"
228
+ }, {
229
+ "attributes": {
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-minor3/theme.tsx",
244
+ "isSource": true,
245
+ "original": {
246
+ "attributes": {
247
+ "group": "typography",
248
+ "state": "experimental",
249
+ "introduced": "1.14.0",
250
+ "description": "TBD"
251
+ },
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"
264
+ }, {
265
+ "attributes": {
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-minor3/theme.tsx",
280
+ "isSource": true,
281
+ "original": {
282
+ "attributes": {
283
+ "group": "typography",
284
+ "state": "experimental",
285
+ "introduced": "1.14.0",
286
+ "description": "TBD"
287
+ },
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"
300
+ }, {
301
+ "attributes": {
302
+ "group": "typography",
303
+ "state": "experimental",
304
+ "introduced": "1.14.0",
305
+ "description": "TBD"
306
+ },
307
+ "value": {
308
+ "fontSize": 32,
309
+ "fontStyle": "normal",
310
+ "fontWeight": "700",
311
+ "lineHeight": 36,
312
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
313
+ "letterSpacing": "0"
314
+ },
315
+ "filePath": "src/tokens/atlassian-typography-minor3/theme.tsx",
316
+ "isSource": true,
317
+ "original": {
318
+ "attributes": {
319
+ "group": "typography",
320
+ "state": "experimental",
321
+ "introduced": "1.14.0",
322
+ "description": "TBD"
323
+ },
324
+ "value": {
325
+ "fontWeight": "FontWeight700",
326
+ "fontSize": "FontSize32",
327
+ "lineHeight": "LineHeight600",
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"
336
+ }, {
337
+ "attributes": {
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-minor3/theme.tsx",
352
+ "isSource": true,
353
+ "original": {
354
+ "attributes": {
355
+ "group": "typography",
356
+ "state": "experimental",
357
+ "introduced": "1.14.0",
358
+ "description": "TBD"
359
+ },
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"
372
+ }, {
373
+ "attributes": {
374
+ "group": "letterSpacing",
375
+ "state": "active",
376
+ "introduced": "0.10.33",
377
+ "description": "Helpful guidance goes here"
378
+ },
379
+ "value": "0",
380
+ "filePath": "src/tokens/atlassian-typography-minor3/letter-spacing.tsx",
381
+ "isSource": true,
382
+ "original": {
383
+ "attributes": {
384
+ "group": "letterSpacing",
385
+ "state": "active",
386
+ "introduced": "0.10.33",
387
+ "description": "Helpful guidance goes here"
388
+ },
389
+ "value": "LetterSpacing0"
390
+ },
391
+ "name": "font.letterSpacing.0",
392
+ "path": ["font", "letterSpacing", "0"],
393
+ "cleanName": "font.letterSpacing.0"
394
+ }, {
395
+ "attributes": {
396
+ "group": "letterSpacing",
397
+ "state": "active",
398
+ "introduced": "0.10.33",
399
+ "description": "Helpful guidance goes here"
400
+ },
401
+ "value": "0",
402
+ "filePath": "src/tokens/atlassian-typography-minor3/letter-spacing.tsx",
403
+ "isSource": true,
404
+ "original": {
405
+ "attributes": {
406
+ "group": "letterSpacing",
407
+ "state": "active",
408
+ "introduced": "0.10.33",
409
+ "description": "Helpful guidance goes here"
410
+ },
411
+ "value": "LetterSpacing0"
412
+ },
413
+ "name": "font.letterSpacing.100",
414
+ "path": ["font", "letterSpacing", "100"],
415
+ "cleanName": "font.letterSpacing.100"
416
+ }, {
417
+ "attributes": {
418
+ "group": "letterSpacing",
419
+ "state": "active",
420
+ "introduced": "0.10.33",
421
+ "description": "Helpful guidance goes here"
422
+ },
423
+ "value": "0",
424
+ "filePath": "src/tokens/atlassian-typography-minor3/letter-spacing.tsx",
425
+ "isSource": true,
426
+ "original": {
427
+ "attributes": {
428
+ "group": "letterSpacing",
429
+ "state": "active",
430
+ "introduced": "0.10.33",
431
+ "description": "Helpful guidance goes here"
432
+ },
433
+ "value": "LetterSpacing0"
434
+ },
435
+ "name": "font.letterSpacing.200",
436
+ "path": ["font", "letterSpacing", "200"],
437
+ "cleanName": "font.letterSpacing.200"
438
+ }, {
439
+ "attributes": {
440
+ "group": "letterSpacing",
441
+ "state": "active",
442
+ "introduced": "0.10.33",
443
+ "description": "Helpful guidance goes here"
444
+ },
445
+ "value": "0",
446
+ "filePath": "src/tokens/atlassian-typography-minor3/letter-spacing.tsx",
447
+ "isSource": true,
448
+ "original": {
449
+ "attributes": {
450
+ "group": "letterSpacing",
451
+ "state": "active",
452
+ "introduced": "0.10.33",
453
+ "description": "Helpful guidance goes here"
454
+ },
455
+ "value": "LetterSpacing0"
456
+ },
457
+ "name": "font.letterSpacing.300",
458
+ "path": ["font", "letterSpacing", "300"],
459
+ "cleanName": "font.letterSpacing.300"
460
+ }, {
461
+ "attributes": {
462
+ "group": "letterSpacing",
463
+ "state": "active",
464
+ "introduced": "0.10.33",
465
+ "description": "Helpful guidance goes here"
466
+ },
467
+ "value": "0",
468
+ "filePath": "src/tokens/atlassian-typography-minor3/letter-spacing.tsx",
469
+ "isSource": true,
470
+ "original": {
471
+ "attributes": {
472
+ "group": "letterSpacing",
473
+ "state": "active",
474
+ "introduced": "0.10.33",
475
+ "description": "Helpful guidance goes here"
476
+ },
477
+ "value": "LetterSpacing0"
478
+ },
479
+ "name": "font.letterSpacing.400",
480
+ "path": ["font", "letterSpacing", "400"],
481
+ "cleanName": "font.letterSpacing.400"
482
+ }, {
483
+ "attributes": {
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-minor3/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-minor3/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",
559
+ "description": "Helpful guidance goes here"
560
+ },
561
+ "value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
562
+ "filePath": "src/tokens/atlassian-typography-minor3/font-family.tsx",
563
+ "isSource": true,
564
+ "original": {
565
+ "attributes": {
566
+ "group": "fontFamily",
567
+ "state": "experimental",
568
+ "introduced": "1.14.0",
569
+ "description": "Helpful guidance goes here"
570
+ },
571
+ "value": "FontFamilyWebMono"
572
+ },
573
+ "name": "font.family.code",
574
+ "path": ["font", "family", "code"],
575
+ "cleanName": "font.family.code"
576
+ }, {
577
+ "attributes": {
578
+ "group": "fontFamily",
579
+ "state": "active",
580
+ "introduced": "0.10.33",
581
+ "description": "Helpful guidance goes here"
582
+ },
583
+ "value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
584
+ "filePath": "src/tokens/atlassian-typography-minor3/font-family.tsx",
585
+ "isSource": true,
586
+ "original": {
587
+ "attributes": {
588
+ "group": "fontFamily",
589
+ "state": "active",
590
+ "introduced": "0.10.33",
591
+ "description": "Helpful guidance goes here"
592
+ },
593
+ "value": "FontFamilyWebMono"
594
+ },
595
+ "name": "font.family.monospace",
596
+ "path": ["font", "family", "monospace"],
597
+ "cleanName": "font.family.monospace"
598
+ }, {
599
+ "attributes": {
600
+ "group": "fontFamily",
601
+ "state": "experimental",
602
+ "introduced": "1.14.0",
603
+ "description": "Helpful guidance goes here"
604
+ },
605
+ "value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
606
+ "filePath": "src/tokens/atlassian-typography-minor3/font-family.tsx",
607
+ "isSource": true,
608
+ "original": {
609
+ "attributes": {
610
+ "group": "fontFamily",
611
+ "state": "experimental",
612
+ "introduced": "1.14.0",
613
+ "description": "Helpful guidance goes here"
614
+ },
615
+ "value": "FontFamilyWebSans"
616
+ },
617
+ "name": "font.family.product",
618
+ "path": ["font", "family", "product"],
619
+ "cleanName": "font.family.product"
620
+ }, {
621
+ "attributes": {
622
+ "group": "fontFamily",
623
+ "state": "active",
624
+ "introduced": "0.10.33",
625
+ "description": "Helpful guidance goes here"
626
+ },
627
+ "value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
628
+ "filePath": "src/tokens/atlassian-typography-minor3/font-family.tsx",
629
+ "isSource": true,
630
+ "original": {
631
+ "attributes": {
632
+ "group": "fontFamily",
633
+ "state": "active",
634
+ "introduced": "0.10.33",
635
+ "description": "Helpful guidance goes here"
636
+ },
637
+ "value": "FontFamilyWebSans"
638
+ },
639
+ "name": "font.family.sans",
640
+ "path": ["font", "family", "sans"],
641
+ "cleanName": "font.family.sans"
642
+ }, {
643
+ "attributes": {
644
+ "group": "fontFamily",
645
+ "state": "experimental",
646
+ "introduced": "1.14.0",
647
+ "description": "Helpful guidance goes here"
648
+ },
649
+ "value": "Charlie Sans",
650
+ "filePath": "src/tokens/atlassian-typography-minor3/font-family.tsx",
651
+ "isSource": true,
652
+ "original": {
653
+ "attributes": {
654
+ "group": "fontFamily",
655
+ "state": "experimental",
656
+ "introduced": "1.14.0",
657
+ "description": "Helpful guidance goes here"
658
+ },
659
+ "value": "FontFamilyCharlie"
660
+ },
661
+ "name": "font.family.brand",
662
+ "path": ["font", "family", "brand"],
663
+ "cleanName": "font.family.brand"
664
+ }];
665
+ var _default = tokens;
666
+ exports.default = _default;