@tui/design-system 5.0.0-beta.1 → 5.0.0-beta.5

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 (227) hide show
  1. package/CHANGELOG.md +83 -5
  2. package/README.md +36 -8
  3. package/dist/themes/crystalski/fonts.css +30 -0
  4. package/dist/themes/crystalski/fonts.css.map +1 -0
  5. package/dist/themes/crystalski/index.css +435 -0
  6. package/dist/themes/crystalski/index.css.map +1 -0
  7. package/dist/themes/firstchoice/fonts.css +23 -0
  8. package/dist/themes/firstchoice/fonts.css.map +1 -0
  9. package/dist/themes/firstchoice/index.css +449 -0
  10. package/dist/themes/firstchoice/index.css.map +1 -0
  11. package/dist/themes/tui/fonts.css +72 -0
  12. package/dist/themes/tui/fonts.css.map +1 -0
  13. package/dist/themes/tui/index.css +482 -0
  14. package/dist/themes/tui/index.css.map +1 -0
  15. package/package.json +31 -37
  16. package/scss/functions/_map.scss +84 -0
  17. package/scss/functions.scss +1 -0
  18. package/scss/lib/accordion/_index.scss +4 -0
  19. package/scss/lib/accordion/_mixins.scss +233 -0
  20. package/scss/lib/accordion/_variables.scss +11 -0
  21. package/scss/lib/active-tag/_index.scss +4 -0
  22. package/scss/lib/active-tag/_mixins.scss +112 -0
  23. package/scss/lib/active-tag/_variables.scss +8 -0
  24. package/scss/lib/alert/_index.scss +3 -0
  25. package/scss/lib/alert/_mixins.scss +135 -0
  26. package/scss/lib/alert/_variables.scss +15 -0
  27. package/scss/lib/breadcrumb/_index.scss +3 -0
  28. package/scss/lib/breadcrumb/_mixins.scss +58 -0
  29. package/scss/lib/breadcrumb/_variables.scss +6 -0
  30. package/scss/lib/button/_index.scss +4 -0
  31. package/scss/lib/button/_mixins.scss +193 -0
  32. package/scss/lib/button/_variables.scss +25 -0
  33. package/scss/lib/cards/card/_index.scss +3 -0
  34. package/scss/lib/cards/card/_mixins.scss +37 -0
  35. package/scss/lib/cards/card/_variables.scss +2 -0
  36. package/scss/lib/cards/search/_index.scss +3 -0
  37. package/scss/lib/cards/search/_mixins.scss +432 -0
  38. package/scss/lib/cards/search/_variables.scss +10 -0
  39. package/scss/lib/divider/_index.scss +4 -0
  40. package/scss/lib/divider/_mixins.scss +54 -0
  41. package/scss/lib/divider/_variables.scss +17 -0
  42. package/scss/lib/flight-details/_index.scss +3 -0
  43. package/scss/lib/flight-details/_mixins.scss +468 -0
  44. package/scss/lib/flight-details/_variables.scss +6 -0
  45. package/scss/lib/flyout-dropdown/_index.scss +3 -0
  46. package/scss/lib/flyout-dropdown/_mixins.scss +124 -0
  47. package/scss/lib/forms/form-row/_index.scss +3 -0
  48. package/scss/lib/forms/form-row/_mixins.scss +72 -0
  49. package/scss/lib/forms/form-row/_variables.scss +7 -0
  50. package/scss/lib/forms/input-checkbox/_index.scss +3 -0
  51. package/scss/lib/forms/input-checkbox/_mixins.scss +216 -0
  52. package/scss/lib/forms/input-checkbox/_variables.scss +9 -0
  53. package/scss/lib/forms/input-chip/_index.scss +4 -0
  54. package/scss/lib/forms/input-chip/_mixins.scss +124 -0
  55. package/scss/lib/forms/input-chip/_variables.scss +19 -0
  56. package/scss/lib/forms/input-count/_index.scss +3 -0
  57. package/scss/lib/forms/input-count/_mixins.scss +72 -0
  58. package/scss/lib/forms/input-count/_variables.scss +13 -0
  59. package/scss/lib/forms/input-radio/_index.scss +3 -0
  60. package/scss/lib/forms/input-radio/_mixins.scss +139 -0
  61. package/scss/lib/forms/input-radio/_variables.scss +6 -0
  62. package/scss/lib/forms/input-slider/_index.scss +3 -0
  63. package/scss/lib/forms/input-slider/_mixins.scss +147 -0
  64. package/scss/lib/forms/input-slider/_variables.scss +12 -0
  65. package/scss/lib/forms/input-stepper/_index.scss +3 -0
  66. package/scss/lib/forms/input-stepper/_mixins.scss +143 -0
  67. package/scss/lib/forms/input-stepper/_variables.scss +7 -0
  68. package/scss/lib/forms/input-switch/_index.scss +3 -0
  69. package/scss/lib/forms/input-switch/_mixins.scss +122 -0
  70. package/scss/lib/forms/input-switch/_variables.scss +18 -0
  71. package/scss/lib/forms/input-text/_index.scss +3 -0
  72. package/scss/lib/forms/input-text/_mixins.scss +155 -0
  73. package/scss/lib/forms/input-text/_variables.scss +9 -0
  74. package/scss/lib/forms/textarea/_index.scss +3 -0
  75. package/scss/lib/forms/textarea/_mixins.scss +88 -0
  76. package/scss/lib/grid/_column.scss +51 -0
  77. package/scss/lib/grid/_container.scss +21 -0
  78. package/scss/lib/grid/_index.scss +3 -0
  79. package/scss/lib/grid/_mixins.scss +126 -0
  80. package/scss/lib/grid/_variables.scss +11 -0
  81. package/scss/lib/hero/_index.scss +3 -0
  82. package/scss/lib/hero/_mixins.scss +336 -0
  83. package/scss/lib/hero/_variables.scss +21 -0
  84. package/scss/lib/icon/_index.scss +3 -0
  85. package/scss/lib/icon/_mixins.scss +54 -0
  86. package/scss/lib/icon/_variables.scss +10 -0
  87. package/scss/lib/icon-button/_index.scss +3 -0
  88. package/scss/lib/icon-button/_mixins.scss +168 -0
  89. package/scss/lib/icon-button/_variables.scss +31 -0
  90. package/scss/lib/image/_index.scss +3 -0
  91. package/scss/lib/image/_mixins.scss +89 -0
  92. package/scss/lib/image/_variables.scss +13 -0
  93. package/scss/lib/info-tag/_index.scss +4 -0
  94. package/scss/lib/info-tag/_mixins.scss +100 -0
  95. package/scss/lib/info-tag/_variables.scss +13 -0
  96. package/scss/lib/link/_index.scss +3 -0
  97. package/scss/lib/link/_mixins.scss +86 -0
  98. package/scss/lib/link/_variables.scss +13 -0
  99. package/scss/lib/list/_index.scss +3 -0
  100. package/scss/lib/list/_mixins.scss +198 -0
  101. package/scss/lib/list/_variables.scss +9 -0
  102. package/scss/lib/loader/_index.scss +3 -0
  103. package/scss/lib/loader/_mixins.scss +52 -0
  104. package/scss/lib/loader/_variables.scss +12 -0
  105. package/scss/lib/media-button/_index.scss +4 -0
  106. package/scss/lib/media-button/_mixins.scss +75 -0
  107. package/scss/lib/media-button/_variables.scss +4 -0
  108. package/scss/lib/modal/_index.scss +2 -0
  109. package/scss/lib/modal/_mixins.scss +135 -0
  110. package/scss/lib/modal/_variables.scss +11 -0
  111. package/scss/lib/pagination/_index.scss +3 -0
  112. package/scss/lib/pagination/_mixins.scss +220 -0
  113. package/scss/lib/pagination/_variables.scss +12 -0
  114. package/scss/lib/price/_index.scss +3 -0
  115. package/scss/lib/price/_mixins.scss +83 -0
  116. package/scss/lib/price/_variables.scss +10 -0
  117. package/scss/lib/promo-tag/_index.scss +4 -0
  118. package/scss/lib/promo-tag/_mixins.scss +81 -0
  119. package/scss/lib/promo-tag/_variables.scss +7 -0
  120. package/scss/lib/ratings-reviews/numerical/_index.scss +3 -0
  121. package/scss/lib/ratings-reviews/numerical/_mixins.scss +91 -0
  122. package/scss/lib/ratings-reviews/numerical/_variables.scss +18 -0
  123. package/scss/lib/ratings-reviews/percentage/_index.scss +3 -0
  124. package/scss/lib/ratings-reviews/percentage/_mixins.scss +74 -0
  125. package/scss/lib/ratings-reviews/percentage/_variables.scss +6 -0
  126. package/scss/lib/ratings-reviews/range-bar/_index.scss +3 -0
  127. package/scss/lib/ratings-reviews/range-bar/_mixins.scss +88 -0
  128. package/scss/lib/ratings-reviews/range-bar/_variables.scss +16 -0
  129. package/scss/lib/ratings-reviews/range-icons/_index.scss +3 -0
  130. package/scss/lib/ratings-reviews/range-icons/_mixins.scss +200 -0
  131. package/scss/lib/ratings-reviews/range-icons/_variables.scss +31 -0
  132. package/scss/lib/ratings-reviews/range-icons-group/_index.scss +3 -0
  133. package/scss/lib/ratings-reviews/range-icons-group/_mixins.scss +26 -0
  134. package/scss/lib/richtext/_index.scss +3 -0
  135. package/scss/lib/richtext/_mixins.scss +136 -0
  136. package/scss/lib/scroller/_index.scss +4 -0
  137. package/scss/lib/scroller/_mixins.scss +130 -0
  138. package/scss/lib/scroller/_variables.scss +9 -0
  139. package/scss/lib/show-more-less/_index.scss +3 -0
  140. package/scss/lib/show-more-less/_mixins.scss +90 -0
  141. package/scss/lib/show-more-less/_variables.scss +6 -0
  142. package/scss/lib/skeleton/_index.scss +3 -0
  143. package/scss/lib/skeleton/_mixins.scss +151 -0
  144. package/scss/lib/skeleton/_variables.scss +8 -0
  145. package/scss/lib/tooltip/_index.scss +3 -0
  146. package/scss/lib/tooltip/_mixins.scss +305 -0
  147. package/scss/lib/tooltip/_variables.scss +8 -0
  148. package/scss/lib/typography/_index.scss +14 -0
  149. package/scss/lib/typography/_mixins.scss +27 -0
  150. package/scss/lib/typography/_variables.scss +58 -0
  151. package/scss/lib/utility/_index.scss +109 -0
  152. package/scss/lib/utility/_mixins.scss +198 -0
  153. package/scss/mixins.scss +44 -0
  154. package/scss/reset.scss +168 -0
  155. package/scss/themes/crystalski/_colors.scss +48 -0
  156. package/scss/themes/crystalski/_overrides.scss +285 -0
  157. package/scss/themes/crystalski/_primitives.scss +73 -0
  158. package/scss/themes/crystalski/_typography.scss +12 -0
  159. package/scss/themes/crystalski/fonts.json +49 -0
  160. package/scss/themes/crystalski/fonts.scss +5 -0
  161. package/scss/themes/crystalski/index.scss +166 -0
  162. package/scss/themes/crystalski/theme.json +232 -0
  163. package/scss/themes/firstchoice/_colors.scss +53 -0
  164. package/scss/themes/firstchoice/_overrides.scss +355 -0
  165. package/scss/themes/firstchoice/_primitives.scss +106 -0
  166. package/scss/themes/firstchoice/_typography.scss +20 -0
  167. package/scss/themes/firstchoice/fonts.json +50 -0
  168. package/scss/themes/firstchoice/fonts.scss +4 -0
  169. package/scss/themes/firstchoice/index.scss +166 -0
  170. package/scss/themes/firstchoice/theme.json +323 -0
  171. package/scss/themes/tui/_colors.scss +61 -0
  172. package/scss/themes/tui/_overrides.scss +34 -0
  173. package/scss/themes/tui/_primitives.scss +23 -0
  174. package/scss/themes/tui/_typography.scss +24 -0
  175. package/scss/themes/tui/fonts.json +117 -0
  176. package/scss/themes/tui/fonts.scss +12 -0
  177. package/scss/themes/tui/index.scss +166 -0
  178. package/scss/themes/tui/theme.json +139 -0
  179. package/scss/variables/_aspect-ratios.scss +8 -0
  180. package/scss/variables/_assets.scss +6 -0
  181. package/scss/variables/_border-radius.scss +20 -0
  182. package/scss/variables/_breakpoints.scss +17 -0
  183. package/scss/variables/_colors.scss +58 -0
  184. package/scss/variables/_directions.scss +8 -0
  185. package/scss/variables/_display-values.scss +9 -0
  186. package/scss/variables/_elevations.scss +17 -0
  187. package/scss/variables/_env-variables.scss +1 -0
  188. package/scss/variables/_focus.scss +14 -0
  189. package/scss/variables/_grid.scss +21 -0
  190. package/scss/variables/_icons.scss +26 -0
  191. package/scss/variables/_layers.scss +20 -0
  192. package/scss/variables/_motion.scss +27 -0
  193. package/scss/variables/_prefix.scss +1 -0
  194. package/scss/variables/_primitives.scss +100 -0
  195. package/scss/variables/_spacing.scss +38 -0
  196. package/scss/variables/_strokes.scss +18 -0
  197. package/scss/variables/_typography.scss +125 -0
  198. package/scss/variables/base-theme.json +2142 -0
  199. package/scss/variables/fonts/_ambit-bold-italic.scss +10 -0
  200. package/scss/variables/fonts/_ambit-bold.scss +10 -0
  201. package/scss/variables/fonts/_ambit-fallback.scss +21 -0
  202. package/scss/variables/fonts/_ambit-regular-italic.scss +10 -0
  203. package/scss/variables/fonts/_ambit-regular.scss +10 -0
  204. package/scss/variables/fonts/_ambit-semibold-italic.scss +10 -0
  205. package/scss/variables/fonts/_ambit-semibold.scss +10 -0
  206. package/scss/variables/fonts/_brandon-fallback.scss +22 -0
  207. package/scss/variables/fonts/_brandon-medium-italic.scss +10 -0
  208. package/scss/variables/fonts/_brandon-medium.scss +10 -0
  209. package/scss/variables/fonts/_brandon-regular-italic.scss +10 -0
  210. package/scss/variables/fonts/_brandon-regular.scss +10 -0
  211. package/scss/variables/fonts/_font-path.scss +3 -0
  212. package/scss/variables/fonts/_graphie-extralight.scss +10 -0
  213. package/scss/variables/fonts/_graphie-fallback.scss +11 -0
  214. package/scss/variables/fonts/_pastiche-grotesque-black.scss +10 -0
  215. package/scss/variables/fonts/_pastiche-grotesque-fallback.scss +11 -0
  216. package/scss/variables/fonts/_rondelle-black.scss +10 -0
  217. package/scss/variables/fonts/_rondelle-book.scss +10 -0
  218. package/scss/variables/fonts/_rondelle-fallback.scss +21 -0
  219. package/scss/variables/fonts/_tuiheadline-black-italic.scss +10 -0
  220. package/scss/variables/fonts/_tuiheadline-black.scss +10 -0
  221. package/scss/variables/fonts/_tuiheadline-fallback.scss +11 -0
  222. package/scss/variables/fonts/_tuitypelight-bold-italic.scss +10 -0
  223. package/scss/variables/fonts/_tuitypelight-bold.scss +10 -0
  224. package/scss/variables/fonts/_tuitypelight-fallback.scss +21 -0
  225. package/scss/variables/fonts/_tuitypelight-regular-italic.scss +10 -0
  226. package/scss/variables/fonts/_tuitypelight-regular.scss +10 -0
  227. package/scss/variables.scss +60 -0
@@ -0,0 +1,2142 @@
1
+ {
2
+ "colors": {
3
+ "core": {
4
+ "displayType": "color",
5
+ "tokens": {
6
+ "color-core-interaction": {
7
+ "primitive": "color-blue-70",
8
+ "title": "Core interaction",
9
+ "darkColor": true
10
+ },
11
+ "color-core-brand": {
12
+ "primitive": "color-coolblue-50",
13
+ "title": "Core brand"
14
+ },
15
+ "color-core-brand-strong": {
16
+ "primitive": "color-blue-100",
17
+ "title": "Core brand strong",
18
+ "darkColor": true
19
+ },
20
+ "color-core-surface": {
21
+ "primitive": "color-coolblue-20",
22
+ "title": "Core surface"
23
+ },
24
+ "color-core-neutral": {
25
+ "primitive": "color-neutral-10",
26
+ "title": "Core neutral"
27
+ }
28
+ }
29
+ },
30
+ "text": {
31
+ "displayType": "color",
32
+ "tokens": {
33
+ "color-text-strong": {
34
+ "primitive": "color-blue-100",
35
+ "title": "Text strong",
36
+ "darkColor": true
37
+ },
38
+ "color-text-body": {
39
+ "primitive": "color-neutral-90",
40
+ "title": "Text body",
41
+ "darkColor": true
42
+ },
43
+ "color-text-link": {
44
+ "primitive": "color-blue-70",
45
+ "title": "Text link",
46
+ "darkColor": true
47
+ },
48
+ "color-text-inverse": {
49
+ "primitive": "color-neutral-10",
50
+ "title": "Text inverse"
51
+ },
52
+ "color-text-link-visited": {
53
+ "primitive": "color-purple-80",
54
+ "title": "Text link visited",
55
+ "darkColor": true
56
+ },
57
+ "color-text-link-visited-inverse": {
58
+ "primitive": "color-purple-30",
59
+ "title": "Text link visited inverse"
60
+ },
61
+ "color-text-promotion": {
62
+ "primitive": "color-red-80",
63
+ "title": "Text promotion",
64
+ "darkColor": true
65
+ },
66
+ "color-text-danger": {
67
+ "primitive": "color-red-80",
68
+ "title": "Text danger",
69
+ "darkColor": true
70
+ }
71
+ }
72
+ },
73
+ "status": {
74
+ "displayType": "color",
75
+ "tokens": {
76
+ "color-status-success-surface": {
77
+ "primitive": "color-green-20",
78
+ "title": "Status sucess surface"
79
+ },
80
+ "color-status-danger-surface": {
81
+ "primitive": "color-red-20",
82
+ "title": "Status danger surface"
83
+ },
84
+ "color-status-warning-surface": {
85
+ "primitive": "color-orange-20",
86
+ "title": "Status warning surface"
87
+ },
88
+ "color-status-info-surface": {
89
+ "primitive": "color-blue-20",
90
+ "title": "Status info surface"
91
+ },
92
+ "color-status-success-icon": {
93
+ "primitive": "color-green-80",
94
+ "title": "Status sucess icon",
95
+ "lowContrast": true
96
+ },
97
+ "color-status-danger-icon": {
98
+ "primitive": "color-red-80",
99
+ "title": "Status danger icon",
100
+ "darkColor": true
101
+ },
102
+ "color-status-warning-icon": {
103
+ "primitive": "color-orange-80",
104
+ "title": "Status warning icon",
105
+ "lowContrast": true
106
+ },
107
+ "color-status-info-icon": {
108
+ "primitive": "color-blue-100",
109
+ "title": "Status info icon",
110
+ "darkColor": true
111
+ }
112
+ }
113
+ },
114
+ "canvas": {
115
+ "displayType": "color",
116
+ "tokens": {
117
+ "color-canvas-default": {
118
+ "primitive": "color-neutral-10",
119
+ "title": "Canvas default"
120
+ },
121
+ "color-canvas-contrast": {
122
+ "primitive": "color-neutral-20",
123
+ "title": "Canvas contrast"
124
+ }
125
+ }
126
+ },
127
+ "border": {
128
+ "displayType": "color",
129
+ "tokens": {
130
+ "color-border-interaction": {
131
+ "primitive": "color-blue-70",
132
+ "title": "Border interaction",
133
+ "darkColor": true
134
+ },
135
+ "color-border-brand-strong": {
136
+ "primitive": "color-blue-100",
137
+ "title": "Border brand strong",
138
+ "darkColor": true
139
+ },
140
+ "color-border-input": {
141
+ "primitive": "color-neutral-70",
142
+ "title": "Border input",
143
+ "darkColor": true
144
+ },
145
+ "color-border-card": {
146
+ "primitive": "color-neutral-40",
147
+ "title": "Border card"
148
+ },
149
+ "color-border-inverse": {
150
+ "primitive": "color-neutral-10",
151
+ "title": "Border inverse"
152
+ },
153
+ "color-border-divider": {
154
+ "primitive": "color-neutral-40",
155
+ "title": "Border divider"
156
+ },
157
+ "color-border-danger": {
158
+ "primitive": "color-red-80",
159
+ "title": "Border danger",
160
+ "darkColor": true
161
+ }
162
+ }
163
+ },
164
+ "promotion": {
165
+ "displayType": "color",
166
+ "tokens": {
167
+ "color-promotion": {
168
+ "primitive": "color-red-80",
169
+ "title": "Promotion deals",
170
+ "darkColor": true
171
+ }
172
+ }
173
+ },
174
+ "other": {
175
+ "displayType": "color",
176
+ "tokens": {
177
+ "color-other-disabled-soft": {
178
+ "primitive": "color-neutral-40",
179
+ "title": "Disabled soft"
180
+ },
181
+ "color-other-disabled-strong": {
182
+ "primitive": "color-neutral-70",
183
+ "title": "Disabled strong",
184
+ "darkColor": true
185
+ },
186
+ "color-other-elevation": {
187
+ "primitive": "color-neutral-100 40%",
188
+ "title": "Elevation",
189
+ "darkColor": true
190
+ },
191
+ "color-other-scrim": {
192
+ "primitive": "color-neutral-100 80%",
193
+ "title": "Scrim",
194
+ "darkColor": true
195
+ },
196
+ "color-other-active-state-tint": {
197
+ "primitive": "color-blue-20 30%",
198
+ "title": "Active state tint"
199
+ },
200
+ "color-other-button-hover-state": {
201
+ "primitive": "color-neutral-10 20%",
202
+ "title": "Button hover state"
203
+ },
204
+ "color-other-secondary-button-hover-state": {
205
+ "primitive": "color-blue-20 30%",
206
+ "title": "Secondary button hover state"
207
+ },
208
+ "color-other-skeleton-loading": {
209
+ "primitive": "color-neutral-40",
210
+ "title": "Skeleton loading"
211
+ },
212
+ "color-other-scroll-handle": {
213
+ "primitive": "color-neutral-50",
214
+ "title": "Scroll handle colour"
215
+ }
216
+ }
217
+ },
218
+ "brands": {
219
+ "description": "Specific brand colours",
220
+ "displayType": "color",
221
+ "tokens": {
222
+ "color-brand-trip-advisor": {
223
+ "primitive": "color-brand-trip-advisor-green",
224
+ "title": "Trip Advisor",
225
+ "lowContrast": true
226
+ },
227
+ "color-brand-paypal": {
228
+ "primitive": "color-brand-paypal-blue",
229
+ "title": "PayPal",
230
+ "darkColor": true
231
+ }
232
+ }
233
+ }
234
+ },
235
+ "elevations": {
236
+ "displayType": "shadow",
237
+ "tokens": {
238
+ "elevation-none": {
239
+ "title": "none"
240
+ },
241
+ "elevation-100": {
242
+ "title": "100",
243
+ "useWith": ["Accordion", "Card"],
244
+ "primitive": "0X 0Y 2 Blur color-neutral-100 40%"
245
+ },
246
+ "elevation-200": {
247
+ "title": "200",
248
+ "useWith": ["Product cards", "Carousel controls"],
249
+ "primitive": "0X 0Y 4 Blur color-neutral-100 40%"
250
+ },
251
+ "elevation-300": {
252
+ "title": "300",
253
+ "useWith": ["Filters", "Dropdown", "Carousel controls", "Hover"],
254
+ "primitive": "0X 0Y 8 Blur color-neutral-100 40%"
255
+ }
256
+ }
257
+ },
258
+ "focus": {
259
+ "displayType": "size",
260
+ "tokens": {
261
+ "focus-default": {
262
+ "title": "Focus",
263
+ "primitive": "2px color-neutral-10, 4px color-blue-60, 6px color-blue-60 40%",
264
+ "longValue": true,
265
+ "displayType": "shadow"
266
+ },
267
+ "focus-size": {
268
+ "title": "Focus style size",
269
+ "description": "Focus style size"
270
+ },
271
+ "focus-gap": {
272
+ "title": "Focus style gap",
273
+ "description": "Focus style gap"
274
+ }
275
+ }
276
+ },
277
+ "borderradius": {
278
+ "displayType": "radius",
279
+ "tokens": {
280
+ "border-radius-none": {
281
+ "title": "Border radius none"
282
+ },
283
+ "border-radius-100": {
284
+ "title": "Border radius 100",
285
+ "useWith": ["Alert", "Accordion", "Image counter", "Pagination"]
286
+ },
287
+ "border-radius-200": {
288
+ "title": "Border radius 200",
289
+ "useWith": ["Card"]
290
+ },
291
+ "border-radius-400": {
292
+ "title": "Border radius 400",
293
+ "useWith": ["Eye catcher"]
294
+ },
295
+ "border-radius-600": {
296
+ "title": "Border radius 600",
297
+ "useWith": ["Skeleton", "Card"]
298
+ },
299
+ "border-radius-1000": {
300
+ "title": "Border radius 1000",
301
+ "useWith": ["Header"]
302
+ },
303
+ "border-radius-1400": {
304
+ "title": "Border radius 1400",
305
+ "useWith": ["Header"]
306
+ },
307
+ "border-radius-1800": {
308
+ "title": "Border radius 1800",
309
+ "useWith": ["Header"]
310
+ },
311
+ "border-radius-pill": {
312
+ "title": "Border radius pill",
313
+ "useWith": ["Button", "Filter", "Tag"]
314
+ },
315
+ "border-radius-circle": {
316
+ "title": "Border radius circle",
317
+ "useWith": ["Profile pictures", "Icon buttons"]
318
+ }
319
+ }
320
+ },
321
+ "aspectratios": {
322
+ "displayType": "aspect",
323
+ "tokens": {
324
+ "aspect-ratio-1x1-square": {
325
+ "title": "Aspect ratio 1:1 square",
326
+ "description": "1:1 Square"
327
+ },
328
+ "aspect-ratio-4x3-portrait": {
329
+ "title": "Aspect ratio 4:3 portrait",
330
+ "description": "4:3 Portrait"
331
+ },
332
+ "aspect-ratio-4x3-landscape": {
333
+ "title": "Aspect ratio 4:3 landscape",
334
+ "description": "4:3 Landscape"
335
+ },
336
+ "aspect-ratio-16x9-wide": {
337
+ "title": "Aspect ratio 16:9 wide",
338
+ "description": "16:9 Wide"
339
+ },
340
+ "aspect-ratio-3x1-panoramic": {
341
+ "title": "Aspect ratio 3:1 panoramic",
342
+ "description": "3:1 Panoramic"
343
+ }
344
+ }
345
+ },
346
+ "layers": {
347
+ "displayType": "empty",
348
+ "tokens": {
349
+ "layer-hidden": {
350
+ "title": "Hidden",
351
+ "description": "The hidden element is on the lowest level, with the smallest index value of -1"
352
+ },
353
+ "layer-default": {
354
+ "title": "Default",
355
+ "description": "Default level for any element. For use with resetting if required."
356
+ },
357
+ "layer-top": {
358
+ "title": "Top",
359
+ "description": "Displayed above the default"
360
+ },
361
+ "layer-dropdown": {
362
+ "title": "Dropdown",
363
+ "description": "Below the sticky/fixed elements but above default content"
364
+ },
365
+ "layer-sticky": {
366
+ "title": "Sticky",
367
+ "description": "Below fixed elements but above dropdown"
368
+ },
369
+ "layer-modal": {
370
+ "title": "Modal",
371
+ "description": "Above sticky elements but below popover and tooltips"
372
+ },
373
+ "layer-popover": {
374
+ "title": "Popover",
375
+ "description": "Above modal elements but below tooltips"
376
+ },
377
+ "layer-tooltip": {
378
+ "title": "Tooltip",
379
+ "description": "Above all other elements"
380
+ }
381
+ }
382
+ },
383
+ "spacing": {
384
+ "displayType": "size",
385
+ "tokens": {
386
+ "spacing-auto": {
387
+ "title": "Spacing auto"
388
+ },
389
+ "spacing-none": {
390
+ "title": "Spacing none"
391
+ },
392
+ "spacing-050": {
393
+ "title": "Spacing 050"
394
+ },
395
+ "spacing-100": {
396
+ "title": "Spacing 100"
397
+ },
398
+ "spacing-200": {
399
+ "title": "Spacing 200"
400
+ },
401
+ "spacing-300": {
402
+ "title": "Spacing 300"
403
+ },
404
+ "spacing-400": {
405
+ "title": "Spacing 400"
406
+ },
407
+ "spacing-500": {
408
+ "title": "Spacing 500"
409
+ },
410
+ "spacing-600": {
411
+ "title": "Spacing 600"
412
+ },
413
+ "spacing-700": {
414
+ "title": "Spacing 700"
415
+ },
416
+ "spacing-800": {
417
+ "title": "Spacing 800"
418
+ },
419
+ "spacing-900": {
420
+ "title": "Spacing 900"
421
+ },
422
+ "spacing-1000": {
423
+ "title": "Spacing 1000"
424
+ },
425
+ "spacing-1100": {
426
+ "title": "Spacing 1100"
427
+ },
428
+ "spacing-1200": {
429
+ "title": "Spacing 1200"
430
+ },
431
+ "spacing-1300": {
432
+ "title": "Spacing 1300"
433
+ },
434
+ "spacing-1400": {
435
+ "title": "Spacing 1400"
436
+ },
437
+ "spacing-1500": {
438
+ "title": "Spacing 1500"
439
+ },
440
+ "spacing-1600": {
441
+ "title": "Spacing 1600"
442
+ }
443
+ }
444
+ },
445
+ "strokes": {
446
+ "stroke-sizes": {
447
+ "displayType": "border-width",
448
+ "tokens": {
449
+ "stroke-size-025": {
450
+ "title": "Thin"
451
+ },
452
+ "stroke-size-050": {
453
+ "title": "Medium"
454
+ },
455
+ "stroke-size-075": {
456
+ "title": "Thick"
457
+ }
458
+ }
459
+ },
460
+ "stroke-styles": {
461
+ "displayType": "border-style",
462
+ "tokens": {
463
+ "stroke-style-none": {
464
+ "title": "None"
465
+ },
466
+ "stroke-style-solid": {
467
+ "title": "Solid"
468
+ },
469
+ "stroke-style-dashed": {
470
+ "title": "Dashed"
471
+ }
472
+ }
473
+ }
474
+ },
475
+ "typography": {
476
+ "font-size": {
477
+ "displayType": "font-size",
478
+ "tokens": {
479
+ "font-size-root": {
480
+ "title": "Root font size"
481
+ }
482
+ }
483
+ },
484
+ "font-family": {
485
+ "displayType": "font-family",
486
+ "tokens": {
487
+ "font-family-display": {
488
+ "title": "Display"
489
+ },
490
+ "font-family-lead": {
491
+ "title": "Lead"
492
+ },
493
+ "font-family-base": {
494
+ "title": "Base"
495
+ }
496
+ }
497
+ },
498
+ "line-height": {
499
+ "displayType": "line-height",
500
+ "tokens": {
501
+ "line-height-heading": {
502
+ "title": "Heading"
503
+ },
504
+ "line-height-body": {
505
+ "title": "Body"
506
+ },
507
+ "line-height-none": {
508
+ "title": "None"
509
+ }
510
+ }
511
+ },
512
+ "font-weight": {
513
+ "displayType": "font-weight",
514
+ "tokens": {
515
+ "font-weight-regular": {
516
+ "title": "Regular"
517
+ },
518
+ "font-weight-semibold": {
519
+ "title": "Semibold"
520
+ },
521
+ "font-weight-bold": {
522
+ "title": "Bold"
523
+ }
524
+ }
525
+ },
526
+ "typography": {
527
+ "displayType": "font",
528
+ "tokens": {
529
+ "typography-display-large": {
530
+ "title": "Display large"
531
+ },
532
+ "typography-display-medium": {
533
+ "title": "Display medium"
534
+ },
535
+ "typography-display-small": {
536
+ "title": "Display small"
537
+ },
538
+ "typography-heading-xxlarge": {
539
+ "title": "Heading xxlarge"
540
+ },
541
+ "typography-heading-xlarge": {
542
+ "title": "Heading xlarge"
543
+ },
544
+ "typography-heading-large": {
545
+ "title": "Heading large"
546
+ },
547
+ "typography-heading-medium": {
548
+ "title": "Heading medium"
549
+ },
550
+ "typography-heading-small": {
551
+ "title": "Heading small"
552
+ },
553
+ "typography-component-heading-xxlarge": {
554
+ "title": "Component heading xxlarge"
555
+ },
556
+ "typography-component-heading-xxlarge-strong": {
557
+ "title": "Component heading xxlarge strong"
558
+ },
559
+ "typography-component-heading-xlarge": {
560
+ "title": "Component heading xlarge"
561
+ },
562
+ "typography-component-heading-xlarge-strong": {
563
+ "title": "Component heading xlarge strong"
564
+ },
565
+ "typography-component-heading-large": {
566
+ "title": "Component heading large"
567
+ },
568
+ "typography-component-heading-large-strong": {
569
+ "title": "Component heading large strong"
570
+ },
571
+ "typography-component-heading-medium": {
572
+ "title": "Component heading medium"
573
+ },
574
+ "typography-component-heading-medium-strong": {
575
+ "title": "Component heading medium strong"
576
+ },
577
+ "typography-component-heading-small": {
578
+ "title": "Component heading small"
579
+ },
580
+ "typography-component-heading-small-strong": {
581
+ "title": "Component heading small strong"
582
+ },
583
+ "typography-body-large": {
584
+ "title": "Body large"
585
+ },
586
+ "typography-body-large-strong": {
587
+ "title": "Body large strong"
588
+ },
589
+ "typography-body-medium": {
590
+ "title": "Body medium"
591
+ },
592
+ "typography-body-medium-strong": {
593
+ "title": "Body medium strong"
594
+ },
595
+ "typography-body-small": {
596
+ "title": "Body small"
597
+ },
598
+ "typography-body-small-strong": {
599
+ "title": "Body small strong"
600
+ },
601
+ "typography-label-large": {
602
+ "title": "Label large"
603
+ },
604
+ "typography-label-large-strong": {
605
+ "title": "Label large strong"
606
+ },
607
+ "typography-label-medium": {
608
+ "title": "Label medium"
609
+ },
610
+ "typography-label-medium-strong": {
611
+ "title": "Label medium strong"
612
+ },
613
+ "typography-label-small": {
614
+ "title": "Label small"
615
+ },
616
+ "typography-label-small-strong": {
617
+ "title": "Label small strong"
618
+ },
619
+ "typography-label-xsmall": {
620
+ "title": "Label xsmall"
621
+ },
622
+ "typography-label-xsmall-strong": {
623
+ "title": "Label xsmall strong"
624
+ }
625
+ }
626
+ }
627
+ },
628
+ "icon": {
629
+ "description": "Icon sizes are matched to body copy sizes calculated line-heights so that they align nicely when placed inline with copy.",
630
+ "displayType": "size",
631
+ "tokens": {
632
+ "icon-size-default": {
633
+ "title": "Default icon size"
634
+ },
635
+ "icon-size-xsmall": {
636
+ "title": "Xsmall icon size"
637
+ },
638
+ "icon-size-small": {
639
+ "title": "Small icon size"
640
+ },
641
+ "icon-size-medium": {
642
+ "title": "Medium icon size"
643
+ },
644
+ "icon-size-large": {
645
+ "title": "Large icon size"
646
+ },
647
+ "icon-size-xlarge": {
648
+ "title": "Xlarge icon size"
649
+ },
650
+ "icon-size-xxlarge": {
651
+ "title": "XXlarge icon size"
652
+ },
653
+ "icon-size-xxxlarge": {
654
+ "title": "XXXlarge icon size"
655
+ }
656
+ }
657
+ },
658
+ "grid": {
659
+ "displayType": "empty",
660
+ "tokens": {
661
+ "grid-columns": {
662
+ "title": "Grid columns",
663
+ "description": "Number of base grid columns",
664
+ "value": "12"
665
+ },
666
+ "grid-gutter-width": {
667
+ "title": "Gutter width",
668
+ "description": "Horizontal spacing between grid elements (row-gap)",
669
+ "value": "1rem (16px)",
670
+ "displayType": "size"
671
+ },
672
+ "grid-gutter-height": {
673
+ "title": "Gutter height",
674
+ "description": "Vertical spacing between grid elements (column-gap)",
675
+ "value": "1rem (16px)",
676
+ "displayType": "size"
677
+ },
678
+ "layout-max-width": {
679
+ "title": "Max page width",
680
+ "description": "Maximum width of the content",
681
+ "value": "80rem (1280px)"
682
+ },
683
+ "layout-app-height": {
684
+ "title": "Max app height",
685
+ "description": "Height of the content on the viewport",
686
+ "value": "100dvh"
687
+ }
688
+ }
689
+ },
690
+ "motion": {
691
+ "description": "Motion timings and functions - Hover over the example to preview the transition timing or function",
692
+ "displayType": "motion",
693
+ "tokens": {
694
+ "motion-duration-slow": {
695
+ "displayType": "timing",
696
+ "title": "Slow transition"
697
+ },
698
+ "motion-duration-medium": {
699
+ "displayType": "timing",
700
+ "title": "Medium transition"
701
+ },
702
+ "motion-duration-fast": {
703
+ "displayType": "timing",
704
+ "title": "Fast transition"
705
+ },
706
+ "motion-timing-inout": {
707
+ "title": "EaseInOut",
708
+ "description": "EaseInOut - Default for any motion requirements"
709
+ },
710
+ "motion-timing-in": {
711
+ "title": "EaseInSine",
712
+ "description": "EaseInSine - Where interactions require instant feedback for the user. Maximum duration of 0.5s"
713
+ },
714
+ "motion-timing-out": {
715
+ "title": "EaseOutSine",
716
+ "description": "EaseOutSine - Where interactions require instant feedback for the user. Maximum duration of 0.5s"
717
+ },
718
+ "motion-timing-brand": {
719
+ "title": "EaseOutBack",
720
+ "description": "EaseOutBack - We should aim to implement a sense of joy to the user. Creating moments that feel a little playful. For these interactions we use EaseOutBack which creates a subtle bounce moment. This should be used on the Navigation Button, Naviagtion Drop Down, Carousel Swipe and List Image Transition. We can also use this with type to create a nice bounce effect when staggering the postions of the letters"
721
+ }
722
+ }
723
+ },
724
+ "accordion": {
725
+ "tokens": {
726
+ "accordion-radius": {
727
+ "displayType": "radius",
728
+ "primitive": "uilib-border-radius-100",
729
+ "title": "Accordion radius",
730
+ "description": "Accordion radius"
731
+ },
732
+ "accordion-logo-radius": {
733
+ "displayType": "radius",
734
+ "primitive": "uilib-border-radius-100",
735
+ "title": "Accordion logo radius",
736
+ "description": "Accordion logo radius"
737
+ },
738
+ "accordion-icon": {
739
+ "displayType": "icon",
740
+ "title": "Accordion icon",
741
+ "description": "Accordion icon",
742
+ "longValue": true
743
+ },
744
+ "accordion-default-bg-color": {
745
+ "displayType": "color",
746
+ "primitive": "uilib-color-core-neutral",
747
+ "title": "Accordion default background colour",
748
+ "description": "Accordion default background colour"
749
+ },
750
+ "accordion-border-color": {
751
+ "displayType": "color",
752
+ "primitive": "uilib-color-border-card",
753
+ "title": "Accordion border",
754
+ "description": "Accordion border colour"
755
+ },
756
+ "accordion-divider-color": {
757
+ "displayType": "color",
758
+ "primitive": "uilib-color-border-card",
759
+ "title": "Accordion divider",
760
+ "description": "Accordion divider colour"
761
+ }
762
+ }
763
+ },
764
+ "active-tag": {
765
+ "tokens": {
766
+ "active-tag-radius": {
767
+ "displayType": "radius",
768
+ "primitive": "uilib-border-radius-200",
769
+ "title": "Active tag radius",
770
+ "description": "Active tag radius"
771
+ },
772
+ "active-tag-border-color": {
773
+ "displayType": "color",
774
+ "primitive": "uilib-color-border-input",
775
+ "title": "Active tag border",
776
+ "description": "Active tag border color"
777
+ },
778
+ "active-tag-background-color": {
779
+ "displayType": "color",
780
+ "primitive": "uilib-color-core-neutral",
781
+ "title": "Active tag background color",
782
+ "description": "Active tag background color"
783
+ },
784
+ "active-tag-cross-color": {
785
+ "displayType": "color",
786
+ "primitive": "uilib-color-core-interaction",
787
+ "title": "Active tag cross color",
788
+ "description": "Active tag cross color"
789
+ },
790
+ "active-tag-icon": {
791
+ "displayType": "icon",
792
+ "title": "Active tag icon",
793
+ "description": "Active tag icon",
794
+ "longValue": true
795
+ }
796
+ }
797
+ },
798
+ "alert": {
799
+ "displayType": "icon",
800
+ "tokens": {
801
+ "alert-icon-info-bg": {
802
+ "title": "Alert info icon background",
803
+ "description": "Alert info icon background",
804
+ "longValue": true
805
+ },
806
+ "alert-icon-info-mask": {
807
+ "title": "Alert info icon mask",
808
+ "description": "Alert info icon mask",
809
+ "longValue": true
810
+ },
811
+ "alert-icon-error-bg": {
812
+ "title": "Alert error icon background",
813
+ "description": "Alert error icon background",
814
+ "longValue": true
815
+ },
816
+ "alert-icon-error-mask": {
817
+ "title": "Alert error icon mask",
818
+ "description": "Alert error icon mask",
819
+ "longValue": true
820
+ },
821
+ "alert-icon-warning-bg": {
822
+ "title": "Alert warning icon background",
823
+ "description": "Alert warning icon background",
824
+ "longValue": true
825
+ },
826
+ "alert-icon-warning-mask": {
827
+ "title": "Alert warning icon mask",
828
+ "description": "Alert warning icon mask",
829
+ "longValue": true
830
+ },
831
+ "alert-icon-success-bg": {
832
+ "title": "Alert success icon background",
833
+ "description": "Alert success icon background",
834
+ "longValue": true
835
+ },
836
+ "alert-icon-success-mask": {
837
+ "title": "Alert success icon mask",
838
+ "description": "Alert success icon mask",
839
+ "longValue": true
840
+ },
841
+ "alert-radius": {
842
+ "displayType": "radius",
843
+ "primitive": "uilib-border-radius-100",
844
+ "title": "Alert container radius",
845
+ "description": "Alert container radius"
846
+ },
847
+ "alert-text-color": {
848
+ "displayType": "color",
849
+ "primitive": "uilib-color-text-strong",
850
+ "title": "Text colour",
851
+ "description": "Text colour"
852
+ }
853
+ }
854
+ },
855
+ "breadcrumb": {
856
+ "tokens": {
857
+ "breadcrumb-icon": {
858
+ "displayType": "icon",
859
+ "title": "Breadcrumb separator icon",
860
+ "description": "Icon displayed with within breadcrumb",
861
+ "longValue": true
862
+ }
863
+ }
864
+ },
865
+ "button": {
866
+ "displayType": "color",
867
+ "tokens": {
868
+ "button-radius": {
869
+ "primitive": "uilib-border-radius-pill",
870
+ "displayType": "radius",
871
+ "title": "Button radius",
872
+ "description": "Button radius"
873
+ },
874
+ "button-primary-color": {
875
+ "primitive": "uilib-color-text-inverse",
876
+ "title": "Primary text colour",
877
+ "description": "Primary text colour"
878
+ },
879
+ "button-primary-bg-color": {
880
+ "primitive": "uilib-color-core-interaction",
881
+ "title": "Primary background colour",
882
+ "description": "Primary background colour"
883
+ },
884
+ "button-primary-hover-bg-color": {
885
+ "primitive": "uilib-color-core-interaction + 20% uilib-color-core-neutral",
886
+ "title": "Primary background color - hover",
887
+ "description": "Primary background color - hover"
888
+ },
889
+ "button-secondary-color": {
890
+ "primitive": "uilib-color-core-interaction",
891
+ "title": "Secondary text and border colour",
892
+ "description": "Secondary text and border colour"
893
+ },
894
+ "button-secondary-bg-color": {
895
+ "primitive": "uilib-color-core-neutral",
896
+ "title": "Secondary background colour",
897
+ "description": "Secondary background colour"
898
+ },
899
+ "button-secondary-hover-bg-color": {
900
+ "primitive": "uilib-color-core-neutral + 20% uilib-color-core-interaction",
901
+ "title": "Secondary background color - hover",
902
+ "description": "Secondary background color - hover"
903
+ },
904
+ "button-tertiary-color": {
905
+ "primitive": "uilib-color-text-strong",
906
+ "title": "Tertiary text colour",
907
+ "description": "Tertiary text colour"
908
+ },
909
+ "button-tertiary-bg-color": {
910
+ "primitive": "uilib-color-core-brand",
911
+ "title": "Tertiary background colour",
912
+ "description": "Tertiary background colour"
913
+ },
914
+ "button-tertiary-hover-bg-color": {
915
+ "primitive": "uilib-color-core-brand + 20% uilib-color-core-neutral",
916
+ "title": "Tertiary background color - hover",
917
+ "description": "Tertiary background color - hover"
918
+ },
919
+ "button-promotion-color": {
920
+ "primitive": "uilib-color-text-inverse",
921
+ "title": "Promotion text colour",
922
+ "description": "Promotion text colour"
923
+ },
924
+ "button-promotion-bg-color": {
925
+ "primitive": "uilib-color-promotion",
926
+ "title": "Promotion background colour",
927
+ "description": "Promotion background colour"
928
+ },
929
+ "button-promotion-hover-bg-color": {
930
+ "primitive": "uilib-color-promotion + 20% uilib-color-core-neutral",
931
+ "title": "Promotion background color - hover",
932
+ "description": "Promotion background color - hover"
933
+ },
934
+ "button-search-color": {
935
+ "primitive": "uilib-color-text-inverse",
936
+ "title": "Search text colour",
937
+ "description": "Search text colour"
938
+ },
939
+ "button-search-bg-color": {
940
+ "primitive": "uilib-color-core-brand-strong",
941
+ "title": "Search background colour",
942
+ "description": "Search background colour"
943
+ },
944
+ "button-search-hover-bg-color": {
945
+ "primitive": "uilib-color-core-brand-strong + 20% uilib-color-core-neutral",
946
+ "title": "Search background color - hover",
947
+ "description": "Search background color - hover"
948
+ },
949
+ "button-disabled-color": {
950
+ "primitive": "uilib-color-other-disabled-strong",
951
+ "title": "Disabled text colour",
952
+ "description": "Disabled text colour"
953
+ },
954
+ "button-disabled-bg-color": {
955
+ "primitive": "uilib-color-other-disabled-soft",
956
+ "title": "Disabled background and border colour",
957
+ "description": "Disabled background and border colour"
958
+ }
959
+ }
960
+ },
961
+ "card-search": {
962
+ "tokens": {
963
+ "card-search-radius": {
964
+ "primitive": "uilib-border-radius-400",
965
+ "displayType": "radius",
966
+ "title": "Card radius",
967
+ "description": "Card radius"
968
+ },
969
+ "card-search-radius-spacing": {
970
+ "primitive": "uilib-border-spacing-400",
971
+ "displayType": "size",
972
+ "title": "Spacing required for card radius",
973
+ "description": "Spacing required for card radius"
974
+ },
975
+ "card-search-color-flagship": {
976
+ "primitive": "uilib-color-core-brand-strong",
977
+ "displayType": "color",
978
+ "title": "Background for flagship wrapper",
979
+ "description": "Background for flagship wrapper"
980
+ },
981
+ "card-search-color-flagship-text": {
982
+ "primitive": "uilib-color-text-inverse",
983
+ "displayType": "color",
984
+ "title": "Text colour for flagship wrapper",
985
+ "description": "Text colour for flagship wrapper"
986
+ },
987
+ "card-search-highlights-icon": {
988
+ "displayType": "icon",
989
+ "title": "Icon for show/hide within highlight section",
990
+ "description": "Icon for show/hide within highlight section"
991
+ }
992
+ }
993
+ },
994
+ "flight-details": {
995
+ "tokens": {
996
+ "flight-details-icon": {
997
+ "displayType": "icon",
998
+ "title": "Indirect flight details show/hide icon",
999
+ "description": "Indirect flight details show/hide icon",
1000
+ "longValue": true
1001
+ }
1002
+ }
1003
+ },
1004
+ "form-row": {
1005
+ "tokens": {
1006
+ "form-row-label-font": {
1007
+ "primitive": "uilib-typography-label-medium",
1008
+ "displayType": "font",
1009
+ "title": "Form row label font",
1010
+ "description": "Font style used for form row labels",
1011
+ "longValue": true
1012
+ },
1013
+ "form-row-icon": {
1014
+ "displayType": "icon",
1015
+ "title": "Form row error icon",
1016
+ "description": "Icon displayed with error message text",
1017
+ "longValue": true
1018
+ }
1019
+ }
1020
+ },
1021
+ "hero": {
1022
+ "displayType": "color",
1023
+ "tokens": {
1024
+ "hero-image-radius-small": {
1025
+ "primitive": "uilib-border-radius-600 uilib-border-radius-600 0 0",
1026
+ "displayType": "empty",
1027
+ "title": "Border radius for the image at mobile",
1028
+ "description": "Border radius for the image at mobile"
1029
+ },
1030
+ "hero-image-radius-large": {
1031
+ "primitive": "uilib-border-radius-1800 uilib-border-radius-1800 0 0",
1032
+ "displayType": "empty",
1033
+ "title": "Border radius for the image at tablet/desktop",
1034
+ "description": "Border radius for the image at tablet/desktop"
1035
+ },
1036
+ "hero-image-mask": {
1037
+ "displayType": "empty",
1038
+ "title": "Mask for the hero image",
1039
+ "description": "Mask for the hero image",
1040
+ "longValue": true
1041
+ },
1042
+ "hero-image-mask-height-small": {
1043
+ "primitive": "uilib-spacing-1200",
1044
+ "displayType": "size",
1045
+ "title": "Mask height at mobile",
1046
+ "description": "Mask height at mobile"
1047
+ },
1048
+ "hero-image-mask-height-large": {
1049
+ "primitive": "uilib-spacing-1600",
1050
+ "displayType": "size",
1051
+ "title": "Mask height at tablet/desktop",
1052
+ "description": "Mask height at tablet/desktop"
1053
+ },
1054
+ "hero-content-radius": {
1055
+ "primitive": "uilib-border-radius-600",
1056
+ "displayType": "radius",
1057
+ "title": "Border radius for content box",
1058
+ "description": "Border radius for content box"
1059
+ },
1060
+ "hero-content-bg-small": {
1061
+ "primitive": "uilib-color-core-surface",
1062
+ "title": "Background colour for content box at mobile",
1063
+ "description": "Background colour for content box at mobile"
1064
+ },
1065
+ "hero-content-bg": {
1066
+ "primitive": "90% uilib-color-core-neutral",
1067
+ "title": "Background colour for content box at tablet/desktop",
1068
+ "description": "Background colour for content box at tablet/desktop"
1069
+ },
1070
+ "hero-content-text-color": {
1071
+ "primitive": "uilib-color-text-strong",
1072
+ "title": "Text colour for content",
1073
+ "description": "Text colour for content"
1074
+ },
1075
+ "hero-content-text-highlight-color": {
1076
+ "primitive": "uilib-color-text-promotion",
1077
+ "title": "Highlight text colour for content",
1078
+ "description": "Highlight text colour for content"
1079
+ },
1080
+ "hero-flagship-content-bg-small": {
1081
+ "primitive": "uilib-color-core-brand-strong",
1082
+ "title": "Flagship background colour for content box at mobile",
1083
+ "description": "Background colour for content box at mobile"
1084
+ },
1085
+ "hero-flagship-content-bg": {
1086
+ "primitive": "90% uilib-color-core-brand-strong",
1087
+ "title": "Flagship background colour for content box at tablet/desktop",
1088
+ "description": "Flagship background colour for content box at tablet/desktop"
1089
+ },
1090
+ "hero-flagship-content-text-color": {
1091
+ "primitive": "uilib-color-text-inverse",
1092
+ "title": "Flagship text colour for content",
1093
+ "description": "Flagship text colour for content"
1094
+ },
1095
+ "hero-flagship-content-text-highlight-color": {
1096
+ "primitive": "uilib-color-text-inverse",
1097
+ "title": "Flagship highlight text colour for content",
1098
+ "description": "Flagship highlight colour for content"
1099
+ }
1100
+ }
1101
+ },
1102
+ "icon-button": {
1103
+ "displayType": "color",
1104
+ "tokens": {
1105
+ "icon-button-radius": {
1106
+ "primitive": "uilib-border-radius-pill",
1107
+ "displayType": "radius",
1108
+ "title": "Button radius",
1109
+ "description": "Button radius"
1110
+ },
1111
+ "icon-button-ghost-color": {
1112
+ "primitive": "uilib-color-core-interaction",
1113
+ "title": "Ghost text colour",
1114
+ "description": "Ghost text colour"
1115
+ },
1116
+ "icon-button-ghost-bg-color": {
1117
+ "primitive": "transparent",
1118
+ "title": "Ghost background colour",
1119
+ "description": "Ghost background colour"
1120
+ },
1121
+ "icon-button-ghost-hover-bg-color": {
1122
+ "primitive": "uilib-color-core-neutral + 20% uilib-color-core-interaction",
1123
+ "title": "Ghost background color - hover",
1124
+ "description": "Ghost background color - hover"
1125
+ },
1126
+ "icon-button-primary-color": {
1127
+ "primitive": "uilib-color-text-inverse",
1128
+ "title": "Primary text colour",
1129
+ "description": "Primary text colour"
1130
+ },
1131
+ "icon-button-primary-bg-color": {
1132
+ "primitive": "uilib-color-core-interaction",
1133
+ "title": "Primary background colour",
1134
+ "description": "Primary background colour"
1135
+ },
1136
+ "icon-button-primary-hover-bg-color": {
1137
+ "primitive": "uilib-color-core-interaction + 20% uilib-color-core-neutral",
1138
+ "title": "Primary background color - hover",
1139
+ "description": "Primary background color - hover"
1140
+ },
1141
+ "icon-button-secondary-color": {
1142
+ "primitive": "uilib-color-core-interaction",
1143
+ "title": "Secondary text and border colour",
1144
+ "description": "Secondary text and border colour"
1145
+ },
1146
+ "icon-button-secondary-bg-color": {
1147
+ "primitive": "uilib-color-core-neutral",
1148
+ "title": "Secondary background colour",
1149
+ "description": "Secondary background colour"
1150
+ },
1151
+ "icon-button-secondary-hover-bg-color": {
1152
+ "primitive": "uilib-color-core-neutral + 20% uilib-color-core-interaction",
1153
+ "title": "Secondary background color - hover",
1154
+ "description": "Secondary background color - hover"
1155
+ },
1156
+ "icon-button-control-color": {
1157
+ "primitive": "uilib-color-core-interaction",
1158
+ "title": "Control text colour",
1159
+ "description": "Control text colour"
1160
+ },
1161
+ "icon-button-control-bg-color": {
1162
+ "primitive": "uilib-color-core-neutral",
1163
+ "title": "Control background colour",
1164
+ "description": "Control background colour"
1165
+ },
1166
+ "icon-button-control-hover-bg-color": {
1167
+ "primitive": "uilib-color-core-neutral + 20% uilib-color-core-interaction",
1168
+ "title": "Control background color - hover",
1169
+ "description": "Control background color - hover"
1170
+ },
1171
+ "icon-button-promotion-color": {
1172
+ "primitive": "uilib-color-text-inverse",
1173
+ "title": "Promotion text colour",
1174
+ "description": "Promotion text colour"
1175
+ },
1176
+ "icon-button-promotion-bg-color": {
1177
+ "primitive": "uilib-color-promotion",
1178
+ "title": "Promotion background colour",
1179
+ "description": "Promotion background colour"
1180
+ },
1181
+ "icon-button-promotion-hover-bg-color": {
1182
+ "primitive": "uilib-color-promotion + 20% uilib-color-core-neutral",
1183
+ "title": "Promotion background color - hover",
1184
+ "description": "Promotion background color - hover"
1185
+ },
1186
+ "icon-button-search-color": {
1187
+ "primitive": "uilib-color-text-inverse",
1188
+ "title": "Search text colour",
1189
+ "description": "Search text colour"
1190
+ },
1191
+ "icon-button-search-bg-color": {
1192
+ "primitive": "uilib-color-core-brand-strong",
1193
+ "title": "Search background colour",
1194
+ "description": "Search background colour"
1195
+ },
1196
+ "icon-button-search-hover-bg-color": {
1197
+ "primitive": "uilib-color-core-brand-strong + 20% uilib-color-core-neutral",
1198
+ "title": "Search background color - hover",
1199
+ "description": "Search background color - hover"
1200
+ },
1201
+ "icon-button-disabled-color": {
1202
+ "primitive": "uilib-color-other-disabled-strong",
1203
+ "title": "Disabled text colour",
1204
+ "description": "Disabled text colour"
1205
+ },
1206
+ "icon-button-disabled-bg-color": {
1207
+ "primitive": "uilib-color-other-disabled-soft",
1208
+ "title": "Disabled background and border colour",
1209
+ "description": "Disabled background and border colour"
1210
+ },
1211
+ "icon-button-shortlist-color": {
1212
+ "primitive": "uilib-color-text-promotion",
1213
+ "title": "Shortlist text colour",
1214
+ "description": "Shortlist text colour"
1215
+ },
1216
+ "icon-button-shortlist-bg-color": {
1217
+ "primitive": "uilib-color-core-neutral",
1218
+ "title": "Shortlist background colour",
1219
+ "description": "Shortlist background colour"
1220
+ },
1221
+ "icon-button-shortlist-hover-bg-color": {
1222
+ "primitive": "uilib-color-core-neutral + 10% uilib-color-promotion",
1223
+ "title": "Shortlist background color - hover",
1224
+ "description": "Shortlist background color - hover"
1225
+ }
1226
+ }
1227
+ },
1228
+ "image": {
1229
+ "tokens": {
1230
+ "image-landscape": {
1231
+ "title": "Image ratio landscape",
1232
+ "description": "Image ratio landscape",
1233
+ "displayType": "aspect",
1234
+ "primitive": "uilib-aspect-ratio-4x3-landscape"
1235
+ },
1236
+ "image-panoramic": {
1237
+ "title": "Image ratio panoramic",
1238
+ "description": "Image ratio panoramic",
1239
+ "displayType": "aspect",
1240
+ "primitive": "uilib-aspect-ratio-3x1-panoramic"
1241
+ },
1242
+ "image-portrait": {
1243
+ "title": "Image ratio portrait",
1244
+ "description": "Image ratio portrait",
1245
+ "displayType": "aspect",
1246
+ "primitive": "uilib-aspect-ratio-4x3-portrait"
1247
+ },
1248
+ "image-square": {
1249
+ "title": "Image ratio square",
1250
+ "description": "Image ratio square",
1251
+ "displayType": "aspect",
1252
+ "primitive": "uilib-aspect-ratio-1x1-square"
1253
+ },
1254
+ "image-wide": {
1255
+ "title": "Image ratio wide",
1256
+ "description": "Image ratio wide",
1257
+ "displayType": "aspect",
1258
+ "primitive": "uilib-aspect-ratio-16x9-wide"
1259
+ },
1260
+ "image-rectangle": {
1261
+ "title": "Image shape rectangle",
1262
+ "description": "Image shape rectangle",
1263
+ "displayType": "radius",
1264
+ "primitive": "uilib-border-radius-none"
1265
+ },
1266
+ "image-rounded": {
1267
+ "title": "Image shape rounded",
1268
+ "description": "Image shape rounded",
1269
+ "displayType": "radius",
1270
+ "primitive": "uilib-border-radius-600"
1271
+ },
1272
+ "image-fallback": {
1273
+ "title": "Fallback image",
1274
+ "description": "Fallback image",
1275
+ "displayType": "image",
1276
+ "longValue": true
1277
+ }
1278
+ }
1279
+ },
1280
+ "info-tag": {
1281
+ "displayType": "color",
1282
+ "tokens": {
1283
+ "info-tag-radius": {
1284
+ "primitive": "uilib-border-radius-100",
1285
+ "displayType": "radius",
1286
+ "title": "Info tag radius",
1287
+ "description": "Info tag radius"
1288
+ },
1289
+ "info-tag-text-color": {
1290
+ "primitive": "uilib-color-text-strong",
1291
+ "title": "Text colour",
1292
+ "description": "Text colour"
1293
+ },
1294
+ "info-tag-info-bg-color": {
1295
+ "primitive": "uilib-color-status-info-surface",
1296
+ "title": "Info background colour",
1297
+ "description": "Info background colour"
1298
+ },
1299
+ "info-tag-local-product-bg-color": {
1300
+ "primitive": "uilib-color-brand-local",
1301
+ "title": "Local product background colour",
1302
+ "description": "Local product background colour"
1303
+ },
1304
+ "info-tag-neutral-bg-color": {
1305
+ "primitive": "uilib-color-core-neutral",
1306
+ "title": "Neutral background colour",
1307
+ "description": "Neutral background colour"
1308
+ },
1309
+ "info-tag-scarcity-bg-color": {
1310
+ "primitive": "uilib-color-status-warning-surface",
1311
+ "title": "Scarcity background colour",
1312
+ "description": "Scarcity background colour"
1313
+ }
1314
+ }
1315
+ },
1316
+ "input-checkbox": {
1317
+ "tokens": {
1318
+ "input-checkbox-icon-checked": {
1319
+ "displayType": "icon",
1320
+ "title": "Checked icon",
1321
+ "description": "Checked icon",
1322
+ "longValue": true
1323
+ },
1324
+ "input-checkbox-icon-indeterminate": {
1325
+ "displayType": "icon",
1326
+ "title": "Indeterminate icon",
1327
+ "description": "Indeterminate icon",
1328
+ "longValue": true
1329
+ },
1330
+ "input-checkbox-text-color-strong": {
1331
+ "displayType": "color",
1332
+ "primitive": "uilib-color-text-strong",
1333
+ "title": "Text colour (strong variant)",
1334
+ "description": "Text colour (strong variant)"
1335
+ },
1336
+ "input-checkbox-confirm-radius": {
1337
+ "displayType": "radius",
1338
+ "primitive": "uilib-border-radius-100",
1339
+ "title": "Confirmation checkbox container radius",
1340
+ "description": "Confirmation checkbox container radius"
1341
+ }
1342
+ }
1343
+ },
1344
+ "input-chip": {
1345
+ "tokens": {
1346
+ "input-chip-radius": {
1347
+ "displayType": "radius",
1348
+ "primitive": "uilib-border-radius-200",
1349
+ "title": "Chip radius",
1350
+ "description": "Border radius for chip component"
1351
+ },
1352
+
1353
+ "input-chip-default-bg-color": {
1354
+ "displayType": "color",
1355
+ "primitive": "uilib-color-core-neutral",
1356
+ "title": "Default background colour",
1357
+ "description": "Default background colour"
1358
+ },
1359
+ "input-chip-default-border-color": {
1360
+ "displayType": "color",
1361
+ "primitive": "uilib-color-border-card",
1362
+ "title": "Default border colour",
1363
+ "description": "Default border colour"
1364
+ },
1365
+ "input-chip-default-text-color": {
1366
+ "displayType": "color",
1367
+ "primitive": "uilib-color-text-strong",
1368
+ "title": "Default text colour",
1369
+ "description": "Default text colour"
1370
+ },
1371
+ "input-chip-hover-bg-color": {
1372
+ "displayType": "color",
1373
+ "primitive": "uilib-color-core-interaction",
1374
+ "title": "Hover background colour",
1375
+ "description": "Background colour when hovered"
1376
+ },
1377
+ "input-chip-active-bg-color": {
1378
+ "displayType": "color",
1379
+ "primitive": "uilib-color-other-active-state-tint",
1380
+ "title": "Selected background colour",
1381
+ "description": "Background colour when selected"
1382
+ },
1383
+ "input-chip-active-border-color": {
1384
+ "displayType": "color",
1385
+ "primitive": "uilib-color-core-interaction",
1386
+ "title": "Active border colour",
1387
+ "description": "Active border colour"
1388
+ },
1389
+ "input-chip-active-hover-bg-color": {
1390
+ "displayType": "color",
1391
+ "primitive": "uilib-color-core-interaction",
1392
+ "title": "Selected hover background colour",
1393
+ "description": "Hover background colour when selected"
1394
+ },
1395
+ "input-chip-disabled-text-color": {
1396
+ "displayType": "color",
1397
+ "primitive": "uilib-color-other-disabled-soft",
1398
+ "title": "Disabled text colour",
1399
+ "description": "Disabled text colour"
1400
+ },
1401
+ "input-chip-disabled-bg-color": {
1402
+ "displayType": "color",
1403
+ "primitive": "uilib-color-core-neutral",
1404
+ "title": "Disabled background colour",
1405
+ "description": "Disabled background colour"
1406
+ }
1407
+ }
1408
+ },
1409
+ "input-count": {
1410
+ "displayType": "color",
1411
+ "tokens": {
1412
+ "input-count-radius": {
1413
+ "primitive": "uilib-border-radius-100",
1414
+ "displayType": "radius",
1415
+ "title": "Input count border radius",
1416
+ "description": "Input count border radius"
1417
+ },
1418
+ "input-count-color-bg": {
1419
+ "primitive": "uilib-color-canvas-default",
1420
+ "title": "Input count background color",
1421
+ "description": "Input count background color"
1422
+ },
1423
+ "input-count-color-border": {
1424
+ "primitive": "uilib-color-border-input",
1425
+ "title": "Input count border color",
1426
+ "description": "Input count border color"
1427
+ },
1428
+ "input-count-color-text": {
1429
+ "primitive": "uilib-color-text-strong",
1430
+ "title": "Input count text color",
1431
+ "description": "Input count text color"
1432
+ },
1433
+ "input-count-color-selected": {
1434
+ "primitive": "uilib-color-core-interaction",
1435
+ "title": "Input count selected state background and border color",
1436
+ "description": "Input count selected state background and border color"
1437
+ },
1438
+ "input-count-color-selected-text": {
1439
+ "primitive": "uilib-color-text-inverse",
1440
+ "title": "Input count selected text color",
1441
+ "description": "Input count selected text color"
1442
+ },
1443
+ "input-count-font": {
1444
+ "primitive": "uilib-typography-body-medium-strong",
1445
+ "displayType": "font",
1446
+ "title": "Input count font",
1447
+ "description": "Input count font",
1448
+ "longValue": true
1449
+ },
1450
+ "input-count-size": {
1451
+ "primitive": "uilib-spacing-800",
1452
+ "displayType": "size",
1453
+ "title": "Input count minimum size",
1454
+ "description": "Input count minimum size"
1455
+ }
1456
+ }
1457
+ },
1458
+ "input-radio": {
1459
+ "tokens": {
1460
+ "input-radio-text-color-strong": {
1461
+ "displayType": "color",
1462
+ "primitive": "uilib-color-text-strong",
1463
+ "title": "Text colour (strong variant)",
1464
+ "description": "Text colour (strong variant)"
1465
+ }
1466
+ }
1467
+ },
1468
+ "input-slider": {
1469
+ "tokens": {
1470
+ "input-slider-track-color": {
1471
+ "displayType": "color",
1472
+ "primitive": "uilib-color-other-disabled-strong",
1473
+ "title": "Default track colour",
1474
+ "description": "Default track colour"
1475
+ },
1476
+ "input-slider-track-color-selected": {
1477
+ "displayType": "color",
1478
+ "primitive": "uilib-color-core-interaction",
1479
+ "title": "Selected track colour",
1480
+ "description": "Selected track colour"
1481
+ },
1482
+ "input-slider-track-height": {
1483
+ "displayType": "size",
1484
+ "title": "Track height",
1485
+ "description": "Track height"
1486
+ },
1487
+ "input-slider-track-radius": {
1488
+ "displayType": "radius",
1489
+ "primitive": "uilib-border-radius-pill",
1490
+ "title": "Track radius",
1491
+ "description": "Track radius"
1492
+ },
1493
+ "input-slider-thumb-size": {
1494
+ "displayType": "size",
1495
+ "title": "Thumb size",
1496
+ "description": "Thumb size"
1497
+ },
1498
+ "input-slider-thumb-radius": {
1499
+ "displayType": "radius",
1500
+ "primitive": "uilib-border-radius-circle",
1501
+ "title": "Thumb radius",
1502
+ "description": "Thumb radius"
1503
+ },
1504
+ "input-slider-thumb-border-color": {
1505
+ "displayType": "color",
1506
+ "primitive": "uilib-color-core-interaction",
1507
+ "title": "Thumb border colour",
1508
+ "description": "Thumb border colour"
1509
+ }
1510
+ }
1511
+ },
1512
+ "input-switch": {
1513
+ "tokens": {
1514
+ "input-switch-track-color": {
1515
+ "displayType": "color",
1516
+ "primitive": "uilib-color-core-neutral",
1517
+ "title": "Default track colour",
1518
+ "description": "Default track colour"
1519
+ },
1520
+ "input-switch-track-color-selected": {
1521
+ "displayType": "color",
1522
+ "primitive": "uilib-color-core-interaction",
1523
+ "title": "Selected track colour",
1524
+ "description": "Selected track colour"
1525
+ },
1526
+ "input-switch-track-color-disabled": {
1527
+ "displayType": "color",
1528
+ "primitive": "uilib-color-other-disabled-soft",
1529
+ "title": "Disabled track colour",
1530
+ "description": "Disabled track colour"
1531
+ },
1532
+ "input-switch-track-border-color": {
1533
+ "displayType": "color",
1534
+ "primitive": "uilib-color-border-input",
1535
+ "title": "Default track border colour",
1536
+ "description": "Default track border colour"
1537
+ },
1538
+ "input-switch-track-border-color-selected": {
1539
+ "displayType": "color",
1540
+ "primitive": "uilib-color-border-interaction",
1541
+ "title": "Selected track border colour",
1542
+ "description": "Selected track border colour"
1543
+ },
1544
+ "input-switch-track-border-color-disabled": {
1545
+ "displayType": "color",
1546
+ "primitive": "uilib-color-other-disabled-soft",
1547
+ "title": "Disabled track border colour",
1548
+ "description": "Disabled track border colour"
1549
+ },
1550
+ "input-switch-track-height": {
1551
+ "displayType": "size",
1552
+ "title": "Track height",
1553
+ "description": "Track height"
1554
+ },
1555
+ "input-switch-track-width": {
1556
+ "displayType": "size",
1557
+ "title": "Track width",
1558
+ "description": "Track width"
1559
+ },
1560
+ "input-switch-track-radius": {
1561
+ "displayType": "radius",
1562
+ "primitive": "uilib-border-radius-pill",
1563
+ "title": "Track radius",
1564
+ "description": "Track radius"
1565
+ },
1566
+ "input-switch-thumb-size": {
1567
+ "displayType": "size",
1568
+ "title": "Thumb size",
1569
+ "description": "Thumb size"
1570
+ },
1571
+ "input-switch-thumb-radius": {
1572
+ "displayType": "radius",
1573
+ "primitive": "uilib-border-radius-circle",
1574
+ "title": "Thumb radius",
1575
+ "description": "Thumb radius"
1576
+ },
1577
+ "input-switch-thumb-color": {
1578
+ "displayType": "color",
1579
+ "primitive": "uilib-color-other-disabled-strong",
1580
+ "title": "Default Thumb colour",
1581
+ "description": "Default Thumb colour"
1582
+ },
1583
+ "input-switch-thumb-color-selected": {
1584
+ "displayType": "color",
1585
+ "primitive": "uilib-color-core-neutral",
1586
+ "title": "Selected Thumb colour",
1587
+ "description": "Selected Thumb colour"
1588
+ }
1589
+ }
1590
+ },
1591
+ "input-text": {
1592
+ "displayType": "icon",
1593
+ "tokens": {
1594
+ "input-text-icon-clear": {
1595
+ "title": "Clear icon",
1596
+ "description": "Clear icon",
1597
+ "longValue": true
1598
+ },
1599
+ "input-text-icon-show": {
1600
+ "title": "Show password icon",
1601
+ "description": "Show password icon",
1602
+ "longValue": true
1603
+ },
1604
+ "input-text-icon-hide": {
1605
+ "title": "Hide password icon",
1606
+ "description": "Hide password icon",
1607
+ "longValue": true
1608
+ },
1609
+ "input-text-icon-calendar": {
1610
+ "title": "Calendar icon",
1611
+ "description": "Calendar icon",
1612
+ "longValue": true
1613
+ }
1614
+ }
1615
+ },
1616
+ "link": {
1617
+ "displayType": "color",
1618
+ "tokens": {
1619
+ "link-decoration-color": {
1620
+ "primitive": "uilib-color-text-link",
1621
+ "title": "Link underline color",
1622
+ "description": "Link underline color"
1623
+ },
1624
+ "link-decoration-color-visited": {
1625
+ "primitive": "uilib-color-text-link-visited",
1626
+ "title": "Visited link underline color",
1627
+ "description": "Visited link underline color"
1628
+ },
1629
+ "link-decoration-color-inverse": {
1630
+ "primitive": "uilib-color-text-inverse",
1631
+ "title": "Inversed link underline color",
1632
+ "description": "Inversed link underline color"
1633
+ },
1634
+ "link-decoration-color-inverse-visited": {
1635
+ "primitive": "uilib-color-text-link-visited-inverse",
1636
+ "title": "Visited inversed link underline color",
1637
+ "description": "Visited inversed link underline color"
1638
+ },
1639
+ "link-decoration-style": {
1640
+ "primitive": "uilib-stroke-style-solid",
1641
+ "title": "Link underline style",
1642
+ "description": "Link underline style",
1643
+ "displayType": "border-style"
1644
+ },
1645
+ "link-decoration-thickness": {
1646
+ "primitive": "uilib-stroke-size-025",
1647
+ "title": "Link underline thickness",
1648
+ "description": "Link underline thickness",
1649
+ "displayType": "border-width"
1650
+ },
1651
+ "link-decoration-thickness-hover": {
1652
+ "primitive": "uilib-stroke-size-050",
1653
+ "title": "Link underline thickness on hover",
1654
+ "description": "Link underline thickness on hover",
1655
+ "displayType": "border-width"
1656
+ },
1657
+ "link-underline-offset": {
1658
+ "primitive": "uilib-spacing-050",
1659
+ "title": "Spacing between link label and underline",
1660
+ "description": "Spacing between link label and underline",
1661
+ "displayType": "size"
1662
+ }
1663
+ }
1664
+ },
1665
+ "list": {
1666
+ "tokens": {
1667
+ "list-bullet-color": {
1668
+ "primitive": "uilib-color-text-strong",
1669
+ "title": "List bullet color",
1670
+ "description": "List bullet color",
1671
+ "displayType": "color"
1672
+ },
1673
+ "list-bullet-icon": {
1674
+ "title": "List bullet icon",
1675
+ "description": "List bullet icon",
1676
+ "displayType": "icon"
1677
+ },
1678
+ "list-image-radius": {
1679
+ "primitive": "uilib-border-radius-100",
1680
+ "title": "List image radius",
1681
+ "description": "List image radius",
1682
+ "displayType": "radius"
1683
+ },
1684
+ "list-image-radius-alt": {
1685
+ "primitive": "uilib-border-radius-circle",
1686
+ "title": "List image radius (alt)",
1687
+ "description": "List image radius (alt)",
1688
+ "displayType": "radius"
1689
+ }
1690
+ }
1691
+ },
1692
+ "loader": {
1693
+ "tokens": {
1694
+ "loader-image": {
1695
+ "title": "Loader image",
1696
+ "description": "Loader image",
1697
+ "displayType": "image",
1698
+ "longValue": true
1699
+ },
1700
+ "loader-small": {
1701
+ "title": "Loader image size small",
1702
+ "description": "Loader image size small",
1703
+ "displayType": "empty"
1704
+ },
1705
+ "loader-medium": {
1706
+ "title": "Loader image size medium",
1707
+ "description": "Loader image size medium",
1708
+ "displayType": "empty"
1709
+ },
1710
+ "loader-large": {
1711
+ "title": "Loader image size large",
1712
+ "description": "Loader image size large",
1713
+ "displayType": "empty"
1714
+ },
1715
+ "loader-font-small": {
1716
+ "primitive": "uilib-typography-component-heading-medium",
1717
+ "title": "Loader font small",
1718
+ "description": "Loader font small",
1719
+ "displayType": "font",
1720
+ "longValue": true
1721
+ },
1722
+ "loader-font-medium": {
1723
+ "primitive": "uilib-typography-component-heading-large",
1724
+ "title": "Loader font medium",
1725
+ "description": "Loader font medium",
1726
+ "displayType": "font",
1727
+ "longValue": true
1728
+ },
1729
+ "loader-font-large": {
1730
+ "primitive": "uilib-typography-component-heading-xlarge",
1731
+ "title": "Loader font large",
1732
+ "description": "Loader font large",
1733
+ "displayType": "font",
1734
+ "longValue": true
1735
+ }
1736
+ }
1737
+ },
1738
+ "media-button": {
1739
+ "displayType": "color",
1740
+ "tokens": {
1741
+ "media-button-color": {
1742
+ "primitive": "uilib-color-text-strong",
1743
+ "title": "Media button text color",
1744
+ "description": "Media button text color"
1745
+ }
1746
+ }
1747
+ },
1748
+ "modal": {
1749
+ "tokens": {
1750
+ "modal-backdrop-color": {
1751
+ "displayType": "color",
1752
+ "primitive": "uilib-color-other-scrim",
1753
+ "title": "Backdrop color",
1754
+ "description": "Modal backdrop overlay color"
1755
+ },
1756
+ "modal-radius": {
1757
+ "displayType": "radius",
1758
+ "primitive": "uilib-border-radius-400",
1759
+ "title": "Modal border radius",
1760
+ "description": "Modal container border radius"
1761
+ },
1762
+ "modal-icon-close": {
1763
+ "displayType": "icon",
1764
+ "title": "Close icon",
1765
+ "description": "Modal close button icon",
1766
+ "longValue": true
1767
+ }
1768
+ }
1769
+ },
1770
+ "pagination": {
1771
+ "displayType": "color",
1772
+ "tokens": {
1773
+ "pagination-text-color": {
1774
+ "primitive": "uilib-color-text-body",
1775
+ "title": "Pagination text color",
1776
+ "description": "Pagination text color"
1777
+ },
1778
+ "pagination-border-radius": {
1779
+ "primitive": "uilib-icon-button-radius",
1780
+ "displayType": "radius",
1781
+ "title": "Pagination text color",
1782
+ "description": "Pagination text color"
1783
+ },
1784
+ "pagination-icon-color": {
1785
+ "primitive": "uilib-icon-button-ghost-color",
1786
+ "title": "Icon color",
1787
+ "description": "Icon color"
1788
+ },
1789
+ "pagination-selected-bg": {
1790
+ "primitive": "uilib-icon-button-ghost-color",
1791
+ "title": "Background color of the selected page",
1792
+ "description": "Background color of the selected page"
1793
+ },
1794
+ "pagination-hover-bg": {
1795
+ "primitive": "icon-button-ghost-hover-bg-color",
1796
+ "displayType": "color",
1797
+ "title": "Background color on page hover",
1798
+ "description": "Background color on page hover"
1799
+ },
1800
+ "pagination-icon-prev": {
1801
+ "displayType": "icon",
1802
+ "title": "Previous control icon",
1803
+ "description": "Previous control icon"
1804
+ },
1805
+ "pagination-icon-next": {
1806
+ "displayType": "icon",
1807
+ "title": "Next control icon",
1808
+ "description": "Next control icon"
1809
+ }
1810
+ }
1811
+ },
1812
+ "price": {
1813
+ "tokens": {
1814
+ "price-color": {
1815
+ "primitive": "uilib-color-text-strong",
1816
+ "title": "Total price tooltip color",
1817
+ "description": "Total price underline color",
1818
+ "displayType": "color"
1819
+ },
1820
+ "price-font-primary": {
1821
+ "primitive": "uilib-font-family-lead",
1822
+ "title": "Primary price font",
1823
+ "description": "Primary price font",
1824
+ "displayType": "font",
1825
+ "longValue": true
1826
+ },
1827
+ "price-font-secondary": {
1828
+ "primitive": "uilib-font-family-base",
1829
+ "title": "Secondary price font",
1830
+ "description": "Secondary price font",
1831
+ "displayType": "font",
1832
+ "longValue": true
1833
+ },
1834
+ "price-discount-color": {
1835
+ "primitive": "uilib-color-promotion",
1836
+ "title": "Discount colour",
1837
+ "description": "Discount colour",
1838
+ "displayType": "color"
1839
+ },
1840
+ "price-font-main-medium": {
1841
+ "primitive": "uilib-typography-component-heading-xlarge-strong",
1842
+ "title": "Main price unit for Medium variant",
1843
+ "description": "Main price unit for Medium variant",
1844
+ "displayType": "font",
1845
+ "longValue": true
1846
+ },
1847
+ "price-font-main-large": {
1848
+ "primitive": "uilib-typography-component-heading-xxlarge-strong",
1849
+ "title": "Main unit font for Medium variant",
1850
+ "description": "Main unit font for Medium variant",
1851
+ "displayType": "font"
1852
+ },
1853
+ "price-font-sub-large": {
1854
+ "primitive": "uilib-typography-component-heading-medium-strong",
1855
+ "title": "Sub unit font for Large variant",
1856
+ "description": "Sub unit font for Large variant",
1857
+ "displayType": "font",
1858
+ "longValue": true
1859
+ }
1860
+ }
1861
+ },
1862
+ "promo-tag": {
1863
+ "tokens": {
1864
+ "promo-tag-radius": {
1865
+ "primitive": "uilib-border-radius-400",
1866
+ "title": "Promo tag radius",
1867
+ "description": "Promo tag radius",
1868
+ "displayType": "radius"
1869
+ },
1870
+ "promo-tag-color": {
1871
+ "primitive": "uilib-color-text-strong",
1872
+ "title": "Promo tag text color",
1873
+ "description": "Promo tag text color",
1874
+ "displayType": "color"
1875
+ },
1876
+ "promo-tag-bg-color": {
1877
+ "primitive": "uilib-color-core-neutral",
1878
+ "title": "Promo tag filled background color",
1879
+ "description": "Promo tag filled background color",
1880
+ "displayType": "color"
1881
+ },
1882
+ "promo-tag-font": {
1883
+ "primitive": "uilib-typography-label-small",
1884
+ "title": "Promo tag font",
1885
+ "description": "Promo tag font",
1886
+ "displayType": "font",
1887
+ "longValue": true
1888
+ }
1889
+ }
1890
+ },
1891
+ "ratings-numerical": {
1892
+ "displayType": "color",
1893
+ "tokens": {
1894
+ "ratings-numerical-font": {
1895
+ "primitive": "uilib-typography-body-medium",
1896
+ "title": "Numerical rating default font",
1897
+ "description": "Numerical rating default font",
1898
+ "displayType": "font",
1899
+ "longValue": true
1900
+ },
1901
+ "ratings-numerical-color": {
1902
+ "primitive": "uilib-color-text-body",
1903
+ "title": "Numerical rating default text color",
1904
+ "description": "Numerical rating default text color"
1905
+ },
1906
+ "ratings-numerical-color-inverse": {
1907
+ "primitive": "uilib-color-text-inverse",
1908
+ "title": "Numerical rating inverse text color",
1909
+ "description": "Numerical rating inverse text color"
1910
+ },
1911
+ "ratings-numerical-brand-bg": {
1912
+ "primitive": "uilib-color-core-brand",
1913
+ "title": "Numerical rating background color (brand variant)",
1914
+ "description": "Numerical rating background color (brand variant)"
1915
+ },
1916
+ "ratings-numerical-brand-color": {
1917
+ "primitive": "uilib-color-text-strong",
1918
+ "title": "Numerical rating font color (brand variant)",
1919
+ "description": "Numerical rating font color (brand variant)"
1920
+ },
1921
+ "ratings-numerical-brand-logo": {
1922
+ "title": "Numerical rating brand logo",
1923
+ "description": "Numerical rating brand logo",
1924
+ "displayType": "image",
1925
+ "longValue": true
1926
+ },
1927
+ "ratings-numerical-brand-radius": {
1928
+ "displayType": "radius",
1929
+ "primitive": "uilib-border-radius-pill",
1930
+ "title": "Numerical rating radius (brand variant)",
1931
+ "description": "Numerical rating radius (brand variant)"
1932
+ },
1933
+ "ratings-numerical-alt-bg": {
1934
+ "primitive": "uilib-color-core-brand-strong",
1935
+ "title": "Numerical rating background color (alt variant)",
1936
+ "description": "Numerical rating background color (alt variant)"
1937
+ },
1938
+ "ratings-numerical-alt-color": {
1939
+ "primitive": "uilib-color-text-inverse",
1940
+ "title": "Numerical rating font color (alt variant)",
1941
+ "description": "Numerical rating font color (alt variant)"
1942
+ },
1943
+ "ratings-numerical-alt-icon": {
1944
+ "title": "Numerical rating alt icon",
1945
+ "description": "Numerical rating alt icon",
1946
+ "displayType": "icon"
1947
+ },
1948
+ "ratings-numerical-alt-icon-color": {
1949
+ "primitive": "uilib-color-text-inverse",
1950
+ "title": "Numerical rating icon color (alt variant)",
1951
+ "description": "Numerical rating icon color (alt variant)"
1952
+ },
1953
+ "ratings-numerical-alt-radius": {
1954
+ "displayType": "radius",
1955
+ "primitive": "uilib-border-radius-100",
1956
+ "title": "Numerical rating radius (alt variant)",
1957
+ "description": "Numerical rating radius (alt variant)"
1958
+ }
1959
+ }
1960
+ },
1961
+ "ratings-percentage": {
1962
+ "displayType": "icon",
1963
+ "tokens": {
1964
+ "ratings-percentage-leading-icon": {
1965
+ "title": "Percentage leading icon",
1966
+ "description": "Percentage leading icon",
1967
+ "longValue": true
1968
+ }
1969
+ }
1970
+ },
1971
+ "ratings-range-icons": {
1972
+ "displayType": "icon",
1973
+ "tokens": {
1974
+ "ratings-range-icons-tui-t-rating-icon": {
1975
+ "title": "Tui-t rating icon",
1976
+ "description": "Tui-t rating single tile background-image",
1977
+ "longValue": true
1978
+ },
1979
+ "ratings-range-icons-star-rating-icon-checked": {
1980
+ "title": "Star rating checked icon",
1981
+ "description": "Star rating checked single tile background-image",
1982
+ "longValue": true
1983
+ },
1984
+ "ratings-range-icons-star-rating-icon": {
1985
+ "title": "Star rating unchecked icon",
1986
+ "description": "Star rating unchecked single tile background-image",
1987
+ "longValue": true
1988
+ },
1989
+ "ratings-range-icons-sun-rating-icon-checked": {
1990
+ "title": "Sun rating checked icon",
1991
+ "description": "Sun rating checked single tile background-image",
1992
+ "longValue": true
1993
+ },
1994
+ "ratings-range-icons-sun-rating-icon": {
1995
+ "title": "Sun rating unchecked icon",
1996
+ "description": "Sun rating unchecked single tile background-image",
1997
+ "longValue": true
1998
+ },
1999
+ "ratings-range-icons-tripadvisor-rating-icon": {
2000
+ "title": "Tripadvisor unchecked rating icon",
2001
+ "description": "Tripadvisor unchecked rating single tile background-image",
2002
+ "longValue": true
2003
+ },
2004
+ "ratings-range-icons-tripadvisor-rating-icon-checked": {
2005
+ "title": "Tripadvisor checked rating icon",
2006
+ "description": "Tripadvisor checked rating single tile background-image",
2007
+ "longValue": true
2008
+ },
2009
+ "ratings-range-icons-tripadvisor-logo": {
2010
+ "title": "Tripadvisor logo",
2011
+ "description": "Tripadvisor logo as leading image on ratings",
2012
+ "longValue": true,
2013
+ "displayType": "image"
2014
+ },
2015
+ "ratings-range-icons-tui-t-plus-color": {
2016
+ "title": "Tui T Plus color",
2017
+ "description": "Tui T Plus color",
2018
+ "displayType": "color"
2019
+ }
2020
+ }
2021
+ },
2022
+ "ratings-range-bar": {
2023
+ "displayType": "color",
2024
+ "tokens": {
2025
+ "ratings-range-bar-icon-color": {
2026
+ "title": "Icon colour",
2027
+ "description": "Colour of the icon before label",
2028
+ "primitive": "--uilib-color-status-info-icon"
2029
+ },
2030
+ "ratings-range-bar-bar-width": {
2031
+ "title": "Range bar width",
2032
+ "description": "Default range bar width",
2033
+ "displayType": "size"
2034
+ },
2035
+ "ratings-range-bar-bar-color": {
2036
+ "title": "Range bar colour",
2037
+ "description": "Default range bar colour",
2038
+ "primitive": "--uilib-color-core-brand"
2039
+ },
2040
+ "ratings-range-bar-bar-background": {
2041
+ "title": "Range bar background",
2042
+ "description": "Default range bar background colour",
2043
+ "primitive": "--uilib-color-core-surface"
2044
+ },
2045
+ "ratings-range-bar-tripadvisor-bar-width": {
2046
+ "title": "Tripadvisor range bar width",
2047
+ "description": "Tripadvisor range bar width",
2048
+ "displayType": "size"
2049
+ },
2050
+ "ratings-range-bar-tripadvisor-bar-color": {
2051
+ "title": "Tripadvisor range bar colour",
2052
+ "description": "Tripadvisor range bar colour",
2053
+ "primitive": "--uilib-color-brand-trip-advisor"
2054
+ },
2055
+ "ratings-range-bar-tripadvisor-bar-background": {
2056
+ "title": "Tripadvisor range bar background",
2057
+ "description": "Tripadvisor range bar background colour",
2058
+ "primitive": "--uilib-color-other-disabled-soft"
2059
+ }
2060
+ }
2061
+ },
2062
+ "scroller": {
2063
+ "tokens": {
2064
+ "scroller-thumb-size": {
2065
+ "displayType": "size",
2066
+ "title": "Scrollbar thumb size",
2067
+ "description": "Scrollbar thumb size",
2068
+ "primitive": "uilib-spacing-400"
2069
+ },
2070
+ "scroller-thumb-radius": {
2071
+ "displayType": "radius",
2072
+ "title": "Scrollbar thumb radius",
2073
+ "description": "Scrollbar thumb radius",
2074
+ "primitive": "uilib-border-radius-pill"
2075
+ },
2076
+ "scroller-thumb-color": {
2077
+ "displayType": "color",
2078
+ "title": "Scrollbar thumb colour",
2079
+ "description": "Scrollbar thumb colour",
2080
+ "primitive": "uilib-color-other-scroll-handle"
2081
+ },
2082
+ "scroller-fade-size": {
2083
+ "displayType": "size",
2084
+ "title": "Scrollbar fade size",
2085
+ "description": "Scrollbar fade size",
2086
+ "primitive": "uilib-spacing-400"
2087
+ },
2088
+ "scroller-focus-radius": {
2089
+ "displayType": "radius",
2090
+ "title": "Scrollbar focus radius",
2091
+ "description": "Scrollbar focus radius",
2092
+ "primitive": "uilib-border-radius-100"
2093
+ }
2094
+ }
2095
+ },
2096
+ "show-more-less": {
2097
+ "tokens": {
2098
+ "show-more-less-icon": {
2099
+ "displayType": "icon",
2100
+ "title": "Show more/less icon",
2101
+ "description": "Show more/less icon",
2102
+ "longValue": true
2103
+ }
2104
+ }
2105
+ },
2106
+ "skeleton": {
2107
+ "displayType": "color",
2108
+ "tokens": {
2109
+ "skeleton-color": {
2110
+ "primitive": "uilib-color-other-skeleton-loading",
2111
+ "title": "Skeleton loading colour",
2112
+ "description": "Skeleton loading colour"
2113
+ },
2114
+ "skeleton-shimmer-color": {
2115
+ "primitive": "color-neutral-20",
2116
+ "title": "Skeleton shimmer colour",
2117
+ "description": "Skeleton shimmer colour"
2118
+ }
2119
+ }
2120
+ },
2121
+ "tooltip": {
2122
+ "displayType": "color",
2123
+ "tokens": {
2124
+ "tooltip-radius": {
2125
+ "displayType": "radius",
2126
+ "primitive": "uilib-border-radius-100",
2127
+ "title": "Tooltip overlay border radius",
2128
+ "description": "Tooltip overlay border radius"
2129
+ },
2130
+ "tooltip-color-bg": {
2131
+ "primitive": "uilib-color-text-body",
2132
+ "title": "Tooltip overlay background colour",
2133
+ "description": "Tooltip overlay background colour"
2134
+ },
2135
+ "tooltip-color-text": {
2136
+ "primitive": "uilib-color-text-inverse",
2137
+ "title": "Tooltip overlay text colour",
2138
+ "description": "Tooltip overlay text colour"
2139
+ }
2140
+ }
2141
+ }
2142
+ }