@telus-uds/theme-koodo 3.14.0 → 3.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/android/schema.json +606 -426
- package/build/android/theme.json +772 -244
- package/build/ios/schema.json +606 -426
- package/build/ios/theme.json +772 -244
- package/build/rn/schema.json +606 -426
- package/build/rn/theme.js +521 -155
- package/package.json +4 -4
- package/theme.json +784 -147
package/theme.json
CHANGED
|
@@ -25,6 +25,100 @@
|
|
|
25
25
|
"thickness": "{palette.border.border4}"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
|
+
"Badge": {
|
|
29
|
+
"appearances": {
|
|
30
|
+
"alternative": {
|
|
31
|
+
"type": "variant",
|
|
32
|
+
"values": [true]
|
|
33
|
+
},
|
|
34
|
+
"outline": {
|
|
35
|
+
"type": "variant",
|
|
36
|
+
"values": [true]
|
|
37
|
+
},
|
|
38
|
+
"purpose": {
|
|
39
|
+
"type": "variant",
|
|
40
|
+
"values": ["offer", "editorial"]
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"rules": [
|
|
44
|
+
{
|
|
45
|
+
"if": {
|
|
46
|
+
"outline": true
|
|
47
|
+
},
|
|
48
|
+
"tokens": {
|
|
49
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
50
|
+
"borderColor": "{palette.color.carouselPink}"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"if": {
|
|
55
|
+
"alternative": true
|
|
56
|
+
},
|
|
57
|
+
"tokens": {
|
|
58
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
59
|
+
"borderColor": "{palette.color.mosque}",
|
|
60
|
+
"color": "{palette.color.mosque}",
|
|
61
|
+
"paddingBottom": "{palette.size.size8}",
|
|
62
|
+
"paddingTop": "{palette.size.size8}"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"if": {
|
|
67
|
+
"purpose": "offer"
|
|
68
|
+
},
|
|
69
|
+
"tokens": {
|
|
70
|
+
"backgroundColor": "{palette.color.onahau}",
|
|
71
|
+
"color": "{palette.color.black}",
|
|
72
|
+
"paddingBottom": "{palette.size.size8}",
|
|
73
|
+
"paddingTop": "{palette.size.size8}"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"if": {
|
|
78
|
+
"purpose": "editorial"
|
|
79
|
+
},
|
|
80
|
+
"tokens": {
|
|
81
|
+
"backgroundColor": "{palette.color.black}",
|
|
82
|
+
"color": "{palette.color.white}"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"if": {
|
|
87
|
+
"outline": true,
|
|
88
|
+
"purpose": "editorial"
|
|
89
|
+
},
|
|
90
|
+
"tokens": {
|
|
91
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
92
|
+
"borderColor": "{palette.color.black}",
|
|
93
|
+
"color": "{palette.color.black}"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"if": {
|
|
98
|
+
"outline": true,
|
|
99
|
+
"purpose": "offer"
|
|
100
|
+
},
|
|
101
|
+
"tokens": {
|
|
102
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
103
|
+
"borderColor": "{palette.color.onahau}"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"tokens": {
|
|
108
|
+
"backgroundColor": "{palette.color.carouselPink}",
|
|
109
|
+
"borderColor": "{palette.color.transparent}",
|
|
110
|
+
"borderRadius": "{palette.radius.pill32}",
|
|
111
|
+
"borderWidth": "{palette.border.border2}",
|
|
112
|
+
"color": "{palette.color.flirt}",
|
|
113
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
114
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
115
|
+
"gradient": "{system.gradient.none}",
|
|
116
|
+
"paddingBottom": "{palette.size.size2}",
|
|
117
|
+
"paddingLeft": "{palette.size.size16}",
|
|
118
|
+
"paddingRight": "{palette.size.size16}",
|
|
119
|
+
"paddingTop": "{palette.size.size2}"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
28
122
|
"Box": {
|
|
29
123
|
"appearances": {
|
|
30
124
|
"background": {
|
|
@@ -196,45 +290,68 @@
|
|
|
196
290
|
},
|
|
197
291
|
"Button": {
|
|
198
292
|
"appearances": {
|
|
199
|
-
"
|
|
200
|
-
"description": "
|
|
293
|
+
"danger": {
|
|
294
|
+
"description": "Indicates a user action that is destructive and will result in loss of information or cause significant monetary charges. Limit the use of the danger button whenever possible.",
|
|
201
295
|
"type": "variant",
|
|
202
296
|
"values": [true]
|
|
203
297
|
},
|
|
204
298
|
"focus": "{appearances.Button.focus}",
|
|
205
299
|
"hover": "{appearances.Button.hover}",
|
|
206
300
|
"inactive": "{appearances.Button.inactive}",
|
|
301
|
+
"inverse": {
|
|
302
|
+
"description": "Use inverse buttons on darker backgrounds. High and low priority buttons, and danger buttons, are available in inverse.",
|
|
303
|
+
"type": "variant",
|
|
304
|
+
"values": [true]
|
|
305
|
+
},
|
|
207
306
|
"pressed": "{appearances.Button.pressed}",
|
|
208
|
-
"
|
|
209
|
-
"description": "
|
|
307
|
+
"priority": {
|
|
308
|
+
"description": "Indicates the importance of the call-to-action. Limit the amount of high priority buttons on a page to prioritize meaningful user flows. Low priority styles are applied by default.",
|
|
210
309
|
"type": "variant",
|
|
211
|
-
"values": ["
|
|
310
|
+
"values": ["high", "low"]
|
|
212
311
|
},
|
|
213
|
-
"
|
|
214
|
-
"
|
|
312
|
+
"size": {
|
|
313
|
+
"type": "variant",
|
|
314
|
+
"values": ["small"]
|
|
315
|
+
},
|
|
316
|
+
"text": {
|
|
317
|
+
"description": "Text variant visually deprioritize the button styles",
|
|
215
318
|
"type": "variant",
|
|
216
319
|
"values": [true]
|
|
217
320
|
},
|
|
218
|
-
"
|
|
321
|
+
"width": {
|
|
322
|
+
"description": "Available in default or full-width. Default-width expands based on content Full-width expands to width of the container.",
|
|
323
|
+
"type": "variant",
|
|
324
|
+
"values": ["full"]
|
|
325
|
+
}
|
|
219
326
|
},
|
|
220
327
|
"rules": [
|
|
221
328
|
{
|
|
222
329
|
"if": {
|
|
223
|
-
"
|
|
330
|
+
"priority": "high"
|
|
224
331
|
},
|
|
225
332
|
"tokens": {
|
|
226
|
-
"
|
|
333
|
+
"backgroundColor": "{palette.color.mosque}",
|
|
334
|
+
"color": "{palette.color.white}"
|
|
227
335
|
}
|
|
228
336
|
},
|
|
229
337
|
{
|
|
230
338
|
"if": {
|
|
231
|
-
"
|
|
339
|
+
"danger": true
|
|
232
340
|
},
|
|
233
341
|
"tokens": {
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
|
|
237
|
-
|
|
342
|
+
"borderColor": "{palette.color.trinidad}",
|
|
343
|
+
"color": "{palette.color.trinidad}"
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"if": {
|
|
348
|
+
"inverse": true
|
|
349
|
+
},
|
|
350
|
+
"tokens": {
|
|
351
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
352
|
+
"borderColor": "{palette.color.white}",
|
|
353
|
+
"color": "{palette.color.white}",
|
|
354
|
+
"outerBackgroundColor": "{palette.color.transparent}"
|
|
238
355
|
}
|
|
239
356
|
},
|
|
240
357
|
{
|
|
@@ -243,153 +360,495 @@
|
|
|
243
360
|
},
|
|
244
361
|
"tokens": {
|
|
245
362
|
"backgroundColor": "{palette.color.mosqueDark}",
|
|
246
|
-
"borderColor": "{palette.color.mosqueDark}",
|
|
247
363
|
"color": "{palette.color.white}"
|
|
248
364
|
}
|
|
249
365
|
},
|
|
250
366
|
{
|
|
251
367
|
"if": {
|
|
252
|
-
"
|
|
368
|
+
"pressed": true
|
|
369
|
+
},
|
|
370
|
+
"tokens": {
|
|
371
|
+
"backgroundColor": "{palette.color.mortar}",
|
|
372
|
+
"color": "{palette.color.silver}"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"if": {
|
|
377
|
+
"focus": true
|
|
378
|
+
},
|
|
379
|
+
"tokens": {
|
|
380
|
+
"outerBorderColor": "{palette.color.mosque}",
|
|
381
|
+
"outerBorderGap": "{palette.size.size2}"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"if": {
|
|
386
|
+
"inverse": true,
|
|
387
|
+
"priority": "high"
|
|
388
|
+
},
|
|
389
|
+
"tokens": {
|
|
390
|
+
"backgroundColor": "{palette.color.white}",
|
|
391
|
+
"borderWidth": "{palette.border.none}",
|
|
392
|
+
"color": "{palette.color.mosque}"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"if": {
|
|
397
|
+
"hover": true,
|
|
398
|
+
"priority": "high"
|
|
399
|
+
},
|
|
400
|
+
"tokens": {
|
|
401
|
+
"backgroundColor": "{palette.color.mosqueDark}",
|
|
402
|
+
"color": "{palette.color.white}"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"if": {
|
|
407
|
+
"danger": true,
|
|
408
|
+
"focus": true
|
|
409
|
+
},
|
|
410
|
+
"tokens": {
|
|
411
|
+
"color": "{palette.color.trinidad}",
|
|
412
|
+
"outerBorderColor": "{palette.color.trinidad}",
|
|
413
|
+
"outerBorderGap": "{palette.size.size2}"
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"if": {
|
|
418
|
+
"danger": true,
|
|
253
419
|
"hover": true
|
|
254
420
|
},
|
|
255
421
|
"tokens": {
|
|
256
|
-
"backgroundColor": "{palette.color.
|
|
257
|
-
"
|
|
422
|
+
"backgroundColor": "{palette.color.trinidadDark}",
|
|
423
|
+
"color": "{palette.color.white}"
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"if": {
|
|
428
|
+
"hover": true,
|
|
429
|
+
"inverse": true
|
|
430
|
+
},
|
|
431
|
+
"tokens": {
|
|
432
|
+
"backgroundColor": "{palette.color.whiteDark}",
|
|
433
|
+
"borderColor": "{palette.color.whiteDark}",
|
|
434
|
+
"color": "{palette.color.mosque}"
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"if": {
|
|
439
|
+
"pressed": true,
|
|
440
|
+
"priority": "high"
|
|
441
|
+
},
|
|
442
|
+
"tokens": {
|
|
443
|
+
"backgroundColor": "{palette.color.mortar}",
|
|
444
|
+
"color": "{palette.color.silver}"
|
|
258
445
|
}
|
|
259
446
|
},
|
|
260
447
|
{
|
|
261
448
|
"if": {
|
|
449
|
+
"inverse": true,
|
|
262
450
|
"pressed": true
|
|
263
451
|
},
|
|
452
|
+
"tokens": {
|
|
453
|
+
"backgroundColor": "{palette.color.silver}",
|
|
454
|
+
"color": "{palette.color.dove}"
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"if": {
|
|
459
|
+
"focus": true,
|
|
460
|
+
"priority": "high"
|
|
461
|
+
},
|
|
264
462
|
"tokens": {
|
|
265
463
|
"backgroundColor": "{palette.color.mosque}",
|
|
464
|
+
"color": "{palette.color.white}",
|
|
465
|
+
"outerBorderGap": "{palette.size.size2}"
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"if": {
|
|
470
|
+
"focus": true,
|
|
471
|
+
"inverse": true
|
|
472
|
+
},
|
|
473
|
+
"tokens": {
|
|
474
|
+
"borderColor": "{palette.color.white}",
|
|
475
|
+
"color": "{palette.color.white}",
|
|
476
|
+
"outerBorderColor": "{palette.color.white}",
|
|
477
|
+
"outerBorderGap": "{palette.size.size2}"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"if": {
|
|
482
|
+
"focus": true,
|
|
483
|
+
"pressed": true
|
|
484
|
+
},
|
|
485
|
+
"tokens": {
|
|
486
|
+
"backgroundColor": "{palette.color.mortar}",
|
|
266
487
|
"borderColor": "{palette.color.mosque}",
|
|
267
|
-
"color": "{palette.color.
|
|
488
|
+
"color": "{palette.color.silver}",
|
|
489
|
+
"outerBorderGap": "{palette.size.size2}"
|
|
268
490
|
}
|
|
269
491
|
},
|
|
270
492
|
{
|
|
271
493
|
"if": {
|
|
272
|
-
"
|
|
494
|
+
"danger": true,
|
|
495
|
+
"pressed": true,
|
|
496
|
+
"priority": "high"
|
|
273
497
|
},
|
|
274
498
|
"tokens": {
|
|
275
|
-
"
|
|
499
|
+
"backgroundColor": "{palette.color.mortar}",
|
|
500
|
+
"color": "{palette.color.silver}"
|
|
276
501
|
}
|
|
277
502
|
},
|
|
278
503
|
{
|
|
279
504
|
"if": {
|
|
280
|
-
"
|
|
505
|
+
"hover": true,
|
|
506
|
+
"inverse": true,
|
|
507
|
+
"priority": "high"
|
|
281
508
|
},
|
|
282
509
|
"tokens": {
|
|
283
|
-
"backgroundColor": "{palette.color.
|
|
284
|
-
"
|
|
285
|
-
"color": "{palette.color.white}"
|
|
510
|
+
"backgroundColor": "{palette.color.whiteDark}",
|
|
511
|
+
"color": "{palette.color.mosque}"
|
|
286
512
|
}
|
|
287
513
|
},
|
|
288
514
|
{
|
|
289
515
|
"if": {
|
|
290
|
-
"
|
|
291
|
-
"
|
|
516
|
+
"focus": true,
|
|
517
|
+
"inverse": true,
|
|
518
|
+
"priority": "high"
|
|
292
519
|
},
|
|
293
520
|
"tokens": {
|
|
294
521
|
"backgroundColor": "{palette.color.white}",
|
|
295
|
-
"borderColor": "{palette.color.
|
|
296
|
-
"color": "{palette.color.
|
|
522
|
+
"borderColor": "{palette.color.white}",
|
|
523
|
+
"color": "{palette.color.mosque}",
|
|
524
|
+
"outerBorderColor": "{palette.color.white}",
|
|
525
|
+
"outerBorderGap": "{palette.size.size2}"
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"if": {
|
|
530
|
+
"danger": true,
|
|
531
|
+
"focus": true,
|
|
532
|
+
"pressed": true
|
|
533
|
+
},
|
|
534
|
+
"tokens": {
|
|
535
|
+
"backgroundColor": "{palette.color.mortar}",
|
|
536
|
+
"borderColor": "{palette.color.trinidad}",
|
|
537
|
+
"color": "{palette.color.silver}",
|
|
538
|
+
"outerBorderGap": "{palette.size.size2}"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"if": {
|
|
543
|
+
"focus": true,
|
|
544
|
+
"inverse": true,
|
|
545
|
+
"pressed": true
|
|
546
|
+
},
|
|
547
|
+
"tokens": {
|
|
548
|
+
"backgroundColor": "{palette.color.silver}",
|
|
549
|
+
"borderColor": "{palette.color.silver}",
|
|
550
|
+
"color": "{palette.color.dove}",
|
|
551
|
+
"outerBorderGap": "{palette.size.size2}"
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"if": {
|
|
556
|
+
"width": "full"
|
|
557
|
+
},
|
|
558
|
+
"tokens": {
|
|
559
|
+
"width": "{system.size.full}"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"if": {
|
|
564
|
+
"size": "small"
|
|
565
|
+
},
|
|
566
|
+
"tokens": {
|
|
567
|
+
"minWidth": "{system.size.zero}",
|
|
568
|
+
"paddingBottom": "{palette.size.size4}",
|
|
569
|
+
"paddingLeft": "{palette.size.size16}",
|
|
570
|
+
"paddingRight": "{palette.size.size16}",
|
|
571
|
+
"paddingTop": "{palette.size.size4}"
|
|
572
|
+
}
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"description": "Buttons should not be disabled or set as inactive. Use inline (on blur) error messaging to provide feedback when the form is invalid. In exceptional instances where disabled buttons are needed, it must be clear to the user why the button is disabled and what they need to do to enable it.",
|
|
576
|
+
"if": {
|
|
577
|
+
"inactive": true
|
|
578
|
+
},
|
|
579
|
+
"tokens": {
|
|
580
|
+
"backgroundColor": "{palette.color.silver}",
|
|
581
|
+
"borderColor": "{palette.color.silver}",
|
|
582
|
+
"borderWidth": "{palette.border.none}",
|
|
583
|
+
"color": "{palette.color.gallery}"
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"if": {
|
|
588
|
+
"text": true
|
|
589
|
+
},
|
|
590
|
+
"tokens": {
|
|
591
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
592
|
+
"borderColor": "{palette.color.transparent}",
|
|
593
|
+
"borderWidth": "{system.border.zero}",
|
|
594
|
+
"color": "{palette.color.chathamsBlue}",
|
|
595
|
+
"minWidth": "{system.size.zero}",
|
|
596
|
+
"paddingLeft": "{palette.size.size0}",
|
|
597
|
+
"paddingRight": "{palette.size.size0}",
|
|
598
|
+
"textLine": "{system.textLine.underline}"
|
|
297
599
|
}
|
|
298
600
|
},
|
|
299
601
|
{
|
|
300
602
|
"if": {
|
|
301
603
|
"hover": true,
|
|
302
|
-
"
|
|
604
|
+
"text": true
|
|
303
605
|
},
|
|
304
606
|
"tokens": {
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
-
|
|
607
|
+
"color": "{palette.color.chathamsBlueDark}",
|
|
608
|
+
"textLine": "{system.textLine.none}"
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"if": {
|
|
613
|
+
"priority": "high",
|
|
614
|
+
"text": true
|
|
615
|
+
},
|
|
616
|
+
"tokens": {
|
|
617
|
+
"color": "{palette.color.mosque}"
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"if": {
|
|
622
|
+
"danger": true,
|
|
623
|
+
"text": true
|
|
624
|
+
},
|
|
625
|
+
"tokens": {
|
|
626
|
+
"color": "{palette.color.trinidad}"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"if": {
|
|
631
|
+
"focus": true,
|
|
632
|
+
"text": true
|
|
633
|
+
},
|
|
634
|
+
"tokens": {
|
|
635
|
+
"borderColor": "{palette.color.transparent}",
|
|
636
|
+
"borderRadius": "{palette.radius.none}",
|
|
637
|
+
"color": "{palette.color.chathamsBlue}",
|
|
638
|
+
"outerBorderColor": "{palette.color.chathamsBlue}"
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"if": {
|
|
643
|
+
"focus": true,
|
|
644
|
+
"priority": "high",
|
|
645
|
+
"text": true
|
|
646
|
+
},
|
|
647
|
+
"tokens": {
|
|
648
|
+
"borderColor": "{palette.color.transparent}",
|
|
649
|
+
"borderRadius": "{palette.radius.none}",
|
|
650
|
+
"color": "{palette.color.mosque}",
|
|
651
|
+
"outerBorderColor": "{palette.color.mosque}"
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"if": {
|
|
656
|
+
"danger": true,
|
|
657
|
+
"focus": true,
|
|
658
|
+
"text": true
|
|
659
|
+
},
|
|
660
|
+
"tokens": {
|
|
661
|
+
"borderColor": "{palette.color.transparent}",
|
|
662
|
+
"borderRadius": "{palette.radius.none}",
|
|
663
|
+
"color": "{palette.color.trinidad}",
|
|
664
|
+
"outerBorderColor": "{palette.color.trinidad}"
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"if": {
|
|
669
|
+
"hover": true,
|
|
670
|
+
"priority": "high",
|
|
671
|
+
"text": true
|
|
672
|
+
},
|
|
673
|
+
"tokens": {
|
|
674
|
+
"color": "{palette.color.mosqueDark}"
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"if": {
|
|
679
|
+
"hover": true,
|
|
680
|
+
"priority": null,
|
|
681
|
+
"text": true
|
|
682
|
+
},
|
|
683
|
+
"tokens": {
|
|
684
|
+
"color": "{palette.color.chathamsBlueDark}"
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"if": {
|
|
689
|
+
"hover": true,
|
|
690
|
+
"priority": "low",
|
|
691
|
+
"text": true
|
|
692
|
+
},
|
|
693
|
+
"tokens": {
|
|
694
|
+
"color": "{palette.color.chathamsBlueDark}"
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"if": {
|
|
699
|
+
"danger": true,
|
|
700
|
+
"hover": true,
|
|
701
|
+
"text": true
|
|
702
|
+
},
|
|
703
|
+
"tokens": {
|
|
704
|
+
"color": "{palette.color.trinidadDark}"
|
|
308
705
|
}
|
|
309
706
|
},
|
|
310
707
|
{
|
|
311
708
|
"if": {
|
|
312
709
|
"pressed": true,
|
|
313
|
-
"
|
|
710
|
+
"text": true
|
|
314
711
|
},
|
|
315
712
|
"tokens": {
|
|
316
|
-
"
|
|
317
|
-
"
|
|
318
|
-
"
|
|
713
|
+
"borderColor": "{palette.color.transparent}",
|
|
714
|
+
"color": "{palette.color.mortar}",
|
|
715
|
+
"textLine": "{system.textLine.none}"
|
|
319
716
|
}
|
|
320
717
|
},
|
|
321
718
|
{
|
|
322
719
|
"if": {
|
|
323
720
|
"focus": true,
|
|
324
|
-
"
|
|
721
|
+
"pressed": true,
|
|
722
|
+
"text": true
|
|
325
723
|
},
|
|
326
724
|
"tokens": {
|
|
327
|
-
"
|
|
725
|
+
"borderColor": "{palette.color.transparent}",
|
|
726
|
+
"color": "{palette.color.mortar}",
|
|
727
|
+
"outerBorderColor": "{palette.color.chathamsBlue}",
|
|
728
|
+
"textLine": "{system.textLine.none}"
|
|
328
729
|
}
|
|
329
730
|
},
|
|
330
731
|
{
|
|
331
732
|
"if": {
|
|
332
733
|
"focus": true,
|
|
333
734
|
"pressed": true,
|
|
334
|
-
"
|
|
735
|
+
"priority": "high",
|
|
736
|
+
"text": true
|
|
335
737
|
},
|
|
336
738
|
"tokens": {
|
|
337
|
-
"
|
|
739
|
+
"borderColor": "{palette.color.transparent}",
|
|
740
|
+
"color": "{palette.color.mortar}",
|
|
741
|
+
"outerBorderColor": "{palette.color.mortar}",
|
|
742
|
+
"textLine": "{system.textLine.none}"
|
|
338
743
|
}
|
|
339
744
|
},
|
|
340
745
|
{
|
|
341
746
|
"if": {
|
|
342
|
-
"
|
|
747
|
+
"danger": true,
|
|
748
|
+
"focus": true,
|
|
749
|
+
"pressed": true,
|
|
750
|
+
"text": true
|
|
343
751
|
},
|
|
344
752
|
"tokens": {
|
|
345
|
-
"
|
|
753
|
+
"borderColor": "{palette.color.transparent}",
|
|
754
|
+
"color": "{palette.color.mortar}",
|
|
755
|
+
"outerBorderColor": "{palette.color.trinidad}",
|
|
756
|
+
"textLine": "{system.textLine.none}"
|
|
346
757
|
}
|
|
347
758
|
},
|
|
348
759
|
{
|
|
349
760
|
"if": {
|
|
350
|
-
"
|
|
761
|
+
"inactive": true,
|
|
762
|
+
"text": true
|
|
351
763
|
},
|
|
352
764
|
"tokens": {
|
|
353
|
-
"
|
|
354
|
-
"
|
|
355
|
-
"
|
|
356
|
-
"
|
|
765
|
+
"borderColor": "{palette.color.transparent}",
|
|
766
|
+
"color": "{palette.color.silver}",
|
|
767
|
+
"outerBorderColor": "{palette.color.transparent}",
|
|
768
|
+
"textLine": "{system.textLine.none}"
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"if": {
|
|
773
|
+
"inverse": true,
|
|
774
|
+
"text": true
|
|
775
|
+
},
|
|
776
|
+
"tokens": {
|
|
777
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
778
|
+
"color": "{palette.color.white}"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"if": {
|
|
783
|
+
"hover": true,
|
|
784
|
+
"inverse": true,
|
|
785
|
+
"text": true
|
|
786
|
+
},
|
|
787
|
+
"tokens": {
|
|
788
|
+
"color": "{palette.color.silver}"
|
|
357
789
|
}
|
|
358
790
|
},
|
|
359
791
|
{
|
|
360
792
|
"if": {
|
|
361
793
|
"focus": true,
|
|
362
|
-
"
|
|
794
|
+
"inverse": true,
|
|
795
|
+
"text": true
|
|
363
796
|
},
|
|
364
797
|
"tokens": {
|
|
365
|
-
"
|
|
798
|
+
"borderColor": "{palette.color.transparent}",
|
|
799
|
+
"color": "{palette.color.white}",
|
|
800
|
+
"outerBorderColor": "{palette.color.white}"
|
|
801
|
+
}
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"if": {
|
|
805
|
+
"focus": true,
|
|
806
|
+
"inverse": true,
|
|
807
|
+
"pressed": true,
|
|
808
|
+
"text": true
|
|
809
|
+
},
|
|
810
|
+
"tokens": {
|
|
811
|
+
"borderColor": "{palette.color.transparent}",
|
|
812
|
+
"color": "{palette.color.dove}",
|
|
813
|
+
"outerBorderColor": "{palette.color.dove}"
|
|
814
|
+
}
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"if": {
|
|
818
|
+
"inactive": true,
|
|
819
|
+
"inverse": true,
|
|
820
|
+
"text": true
|
|
821
|
+
},
|
|
822
|
+
"tokens": {
|
|
823
|
+
"borderColor": "{palette.color.transparent}",
|
|
824
|
+
"color": "{palette.color.silver}"
|
|
366
825
|
}
|
|
367
826
|
}
|
|
368
827
|
],
|
|
369
828
|
"tokens": {
|
|
370
829
|
"alignSelf": "{system.flexAlign.flexStart}",
|
|
371
|
-
"backgroundColor": "{palette.color.
|
|
372
|
-
"borderColor": "{palette.color.
|
|
830
|
+
"backgroundColor": "{palette.color.white}",
|
|
831
|
+
"borderColor": "{palette.color.mosque}",
|
|
373
832
|
"borderRadius": "{palette.radius.radius4}",
|
|
374
|
-
"borderWidth": "{palette.border.
|
|
375
|
-
"color": "{palette.color.
|
|
833
|
+
"borderWidth": "{palette.border.border1}",
|
|
834
|
+
"color": "{palette.color.mosque}",
|
|
376
835
|
"fontName": "{palette.fontName.StagSans}",
|
|
377
836
|
"fontSize": "{palette.fontSize.size16}",
|
|
378
837
|
"fontWeight": "{palette.fontWeight.weight600}",
|
|
379
838
|
"icon": "{system.icon.none}",
|
|
380
839
|
"iconSize": "{palette.size.size24}",
|
|
381
840
|
"iconSpace": "{system.integer.2}",
|
|
382
|
-
"lineHeight": "{palette.lineHeight.
|
|
383
|
-
"minWidth": "{
|
|
841
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}",
|
|
842
|
+
"minWidth": "{palette.size.size144}",
|
|
384
843
|
"opacity": "{system.opacity.opaque}",
|
|
385
|
-
"outerBackgroundColor": "{palette.color.
|
|
386
|
-
"outerBorderColor": "{palette.color.
|
|
387
|
-
"outerBorderGap": "{
|
|
388
|
-
"outerBorderWidth": "{palette.border.
|
|
389
|
-
"paddingBottom": "{palette.size.
|
|
390
|
-
"paddingLeft": "{palette.size.
|
|
391
|
-
"paddingRight": "{palette.size.
|
|
392
|
-
"paddingTop": "{palette.size.
|
|
844
|
+
"outerBackgroundColor": "{palette.color.white}",
|
|
845
|
+
"outerBorderColor": "{palette.color.transparent}",
|
|
846
|
+
"outerBorderGap": "{system.size.none}",
|
|
847
|
+
"outerBorderWidth": "{palette.border.border1}",
|
|
848
|
+
"paddingBottom": "{palette.size.size12}",
|
|
849
|
+
"paddingLeft": "{palette.size.size32}",
|
|
850
|
+
"paddingRight": "{palette.size.size32}",
|
|
851
|
+
"paddingTop": "{palette.size.size12}",
|
|
393
852
|
"shadow": "{system.shadow.none}",
|
|
394
853
|
"textAlign": "{system.flexJustifyContent.center}",
|
|
395
854
|
"textLine": "{system.textLine.none}",
|
|
@@ -911,7 +1370,7 @@
|
|
|
911
1370
|
"icon": "{palette.icon.Check}",
|
|
912
1371
|
"iconBackgroundColor": "{palette.color.white}",
|
|
913
1372
|
"iconColor": "{palette.color.mosque}",
|
|
914
|
-
"iconSize": "{palette.size.
|
|
1373
|
+
"iconSize": "{palette.size.size20}",
|
|
915
1374
|
"inputBackgroundColor": "{palette.color.white}",
|
|
916
1375
|
"inputBorderColor": "{palette.color.mosque}",
|
|
917
1376
|
"inputBorderRadius": "{palette.radius.none}",
|
|
@@ -1149,18 +1608,38 @@
|
|
|
1149
1608
|
},
|
|
1150
1609
|
{
|
|
1151
1610
|
"if": {
|
|
1152
|
-
"decorative": true
|
|
1611
|
+
"decorative": true
|
|
1612
|
+
},
|
|
1613
|
+
"tokens": {
|
|
1614
|
+
"color": "{palette.color.mosque}"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"if": {
|
|
1619
|
+
"decorative": true,
|
|
1620
|
+
"weight": "thick"
|
|
1621
|
+
},
|
|
1622
|
+
"tokens": {
|
|
1623
|
+
"color": "{palette.color.mosque}",
|
|
1624
|
+
"width": "{palette.size.size2}"
|
|
1625
|
+
}
|
|
1626
|
+
},
|
|
1627
|
+
{
|
|
1628
|
+
"if": {
|
|
1629
|
+
"inverse": true
|
|
1153
1630
|
},
|
|
1154
1631
|
"tokens": {
|
|
1155
|
-
"color": "{palette.color.
|
|
1632
|
+
"color": "{palette.color.white}"
|
|
1156
1633
|
}
|
|
1157
1634
|
},
|
|
1158
1635
|
{
|
|
1159
1636
|
"if": {
|
|
1160
|
-
"inverse": true
|
|
1637
|
+
"inverse": true,
|
|
1638
|
+
"weight": "thick"
|
|
1161
1639
|
},
|
|
1162
1640
|
"tokens": {
|
|
1163
|
-
"color": "{palette.color.white}"
|
|
1641
|
+
"color": "{palette.color.white}",
|
|
1642
|
+
"width": "{palette.size.size2}"
|
|
1164
1643
|
}
|
|
1165
1644
|
}
|
|
1166
1645
|
],
|
|
@@ -1231,24 +1710,12 @@
|
|
|
1231
1710
|
"validation": "{appearances.Feedback.validation}"
|
|
1232
1711
|
},
|
|
1233
1712
|
"rules": [
|
|
1234
|
-
{
|
|
1235
|
-
"if": {
|
|
1236
|
-
"validation": "success"
|
|
1237
|
-
},
|
|
1238
|
-
"tokens": {
|
|
1239
|
-
"backgroundColor": "{palette.color.mintTulip}",
|
|
1240
|
-
"borderColor": "{palette.color.mintTulip}",
|
|
1241
|
-
"color": "{palette.color.bilbao}"
|
|
1242
|
-
}
|
|
1243
|
-
},
|
|
1244
1713
|
{
|
|
1245
1714
|
"if": {
|
|
1246
1715
|
"validation": "error"
|
|
1247
1716
|
},
|
|
1248
1717
|
"tokens": {
|
|
1249
|
-
"backgroundColor": "{palette.color.
|
|
1250
|
-
"borderColor": "{palette.color.carouselPink}",
|
|
1251
|
-
"color": "{palette.color.trinidad}"
|
|
1718
|
+
"backgroundColor": "{palette.color.piggyPink}"
|
|
1252
1719
|
}
|
|
1253
1720
|
},
|
|
1254
1721
|
{
|
|
@@ -1258,7 +1725,7 @@
|
|
|
1258
1725
|
},
|
|
1259
1726
|
"tokens": {
|
|
1260
1727
|
"icon": "{palette.icon.CheckCircledFilled}",
|
|
1261
|
-
"iconColor": "{palette.color.
|
|
1728
|
+
"iconColor": "{palette.color.mosque}"
|
|
1262
1729
|
}
|
|
1263
1730
|
},
|
|
1264
1731
|
{
|
|
@@ -1267,29 +1734,29 @@
|
|
|
1267
1734
|
"validation": "error"
|
|
1268
1735
|
},
|
|
1269
1736
|
"tokens": {
|
|
1270
|
-
"icon": "{palette.icon.
|
|
1271
|
-
"iconColor": "{palette.color.
|
|
1737
|
+
"icon": "{palette.icon.Caution}",
|
|
1738
|
+
"iconColor": "{palette.color.amaranth}"
|
|
1272
1739
|
}
|
|
1273
1740
|
}
|
|
1274
1741
|
],
|
|
1275
1742
|
"tokens": {
|
|
1276
|
-
"backgroundColor": "{palette.color.
|
|
1277
|
-
"borderColor": "{palette.color.
|
|
1278
|
-
"borderRadius": "{palette.radius.
|
|
1279
|
-
"borderWidth": "{palette.border.
|
|
1280
|
-
"color": "{palette.color.
|
|
1743
|
+
"backgroundColor": "{palette.color.icicle}",
|
|
1744
|
+
"borderColor": "{palette.color.transparent}",
|
|
1745
|
+
"borderRadius": "{palette.radius.none}",
|
|
1746
|
+
"borderWidth": "{palette.border.none}",
|
|
1747
|
+
"color": "{palette.color.black}",
|
|
1281
1748
|
"contentFontSize": "{palette.fontSize.size14}",
|
|
1282
1749
|
"fontName": "{palette.fontName.StagSans}",
|
|
1283
1750
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
1284
1751
|
"icon": "{system.icon.none}",
|
|
1285
1752
|
"iconColor": "{palette.color.transparent}",
|
|
1286
1753
|
"iconGap": "{palette.size.size8}",
|
|
1287
|
-
"iconSize": "{palette.size.
|
|
1754
|
+
"iconSize": "{palette.size.size20}",
|
|
1288
1755
|
"lineHeight": "{palette.lineHeight.multiply150}",
|
|
1289
|
-
"paddingBottom": "{palette.size.
|
|
1756
|
+
"paddingBottom": "{palette.size.size12}",
|
|
1290
1757
|
"paddingLeft": "{palette.size.size16}",
|
|
1291
1758
|
"paddingRight": "{palette.size.size16}",
|
|
1292
|
-
"paddingTop": "{palette.size.
|
|
1759
|
+
"paddingTop": "{palette.size.size12}",
|
|
1293
1760
|
"space": "{system.integer.2}",
|
|
1294
1761
|
"titleFontSize": "{palette.fontSize.size16}"
|
|
1295
1762
|
}
|
|
@@ -1518,7 +1985,18 @@
|
|
|
1518
1985
|
"pressed": true
|
|
1519
1986
|
},
|
|
1520
1987
|
"tokens": {
|
|
1521
|
-
"backgroundColor": "{palette.color.
|
|
1988
|
+
"backgroundColor": "{palette.color.mosqueDark}",
|
|
1989
|
+
"borderColor": "{palette.color.mosqueDark}",
|
|
1990
|
+
"iconColor": "{palette.color.white}"
|
|
1991
|
+
}
|
|
1992
|
+
},
|
|
1993
|
+
{
|
|
1994
|
+
"if": {
|
|
1995
|
+
"pressed": true
|
|
1996
|
+
},
|
|
1997
|
+
"tokens": {
|
|
1998
|
+
"backgroundColor": "{palette.color.mosqueDark}",
|
|
1999
|
+
"borderColor": "{palette.color.mosqueDark}",
|
|
1522
2000
|
"iconColor": "{palette.color.white}"
|
|
1523
2001
|
}
|
|
1524
2002
|
},
|
|
@@ -1529,7 +2007,8 @@
|
|
|
1529
2007
|
},
|
|
1530
2008
|
"tokens": {
|
|
1531
2009
|
"borderColor": "{palette.color.mosque}",
|
|
1532
|
-
"borderWidth": "{palette.border.border3}"
|
|
2010
|
+
"borderWidth": "{palette.border.border3}",
|
|
2011
|
+
"iconColor": "{palette.color.mosque}"
|
|
1533
2012
|
}
|
|
1534
2013
|
},
|
|
1535
2014
|
{
|
|
@@ -1556,7 +2035,7 @@
|
|
|
1556
2035
|
"backgroundColor": "{system.color.transparent}",
|
|
1557
2036
|
"borderColor": "{palette.color.mosque}",
|
|
1558
2037
|
"borderRadius": "{system.radius.round}",
|
|
1559
|
-
"borderWidth": "{palette.border.
|
|
2038
|
+
"borderWidth": "{palette.border.border3}",
|
|
1560
2039
|
"iconColor": "{palette.color.mosque}",
|
|
1561
2040
|
"iconScale": "{system.iconScale.scale1}",
|
|
1562
2041
|
"iconSize": "{palette.size.size24}",
|
|
@@ -1580,10 +2059,10 @@
|
|
|
1580
2059
|
"gap": "{palette.size.size8}",
|
|
1581
2060
|
"hintColor": "{palette.color.black}",
|
|
1582
2061
|
"hintFontName": "{palette.fontName.StagSans}",
|
|
1583
|
-
"hintFontSize": "{palette.fontSize.
|
|
2062
|
+
"hintFontSize": "{palette.fontSize.size14}",
|
|
1584
2063
|
"hintFontWeight": "{palette.fontWeight.weight400}",
|
|
1585
|
-
"hintLineHeight": "{palette.lineHeight.
|
|
1586
|
-
"lineHeight": "{palette.lineHeight.
|
|
2064
|
+
"hintLineHeight": "{palette.lineHeight.ratio10to7}",
|
|
2065
|
+
"lineHeight": "{palette.lineHeight.multiply150}"
|
|
1587
2066
|
}
|
|
1588
2067
|
},
|
|
1589
2068
|
"InputSupports": {
|
|
@@ -1595,12 +2074,22 @@
|
|
|
1595
2074
|
},
|
|
1596
2075
|
"Link": {
|
|
1597
2076
|
"appearances": {
|
|
2077
|
+
"alternative": {
|
|
2078
|
+
"type": "variant",
|
|
2079
|
+
"values": [true]
|
|
2080
|
+
},
|
|
2081
|
+
"focus": "{appearances.Link.focus}",
|
|
1598
2082
|
"hover": "{appearances.Link.hover}",
|
|
1599
2083
|
"iconPosition": "{appearances.Link.iconPosition}",
|
|
1600
|
-
"
|
|
1601
|
-
"
|
|
2084
|
+
"inverse": {
|
|
2085
|
+
"type": "variant",
|
|
2086
|
+
"values": [true]
|
|
2087
|
+
},
|
|
2088
|
+
"pressed": "{appearances.Link.pressed}",
|
|
2089
|
+
"size": {
|
|
2090
|
+
"description": "Text sizes for block links; similar but not always identical to Typography sizes.",
|
|
1602
2091
|
"type": "variant",
|
|
1603
|
-
"values": ["
|
|
2092
|
+
"values": ["micro", "small", "large"]
|
|
1604
2093
|
}
|
|
1605
2094
|
},
|
|
1606
2095
|
"rules": [
|
|
@@ -1612,6 +2101,26 @@
|
|
|
1612
2101
|
"iconSpace": "{system.integer.2}"
|
|
1613
2102
|
}
|
|
1614
2103
|
},
|
|
2104
|
+
{
|
|
2105
|
+
"if": {
|
|
2106
|
+
"focus": true
|
|
2107
|
+
},
|
|
2108
|
+
"tokens": {
|
|
2109
|
+
"color": "{palette.color.mosque}",
|
|
2110
|
+
"outerBorderColor": "{palette.color.mosque}",
|
|
2111
|
+
"outerBorderOutline": "{system.borderStyle.none}"
|
|
2112
|
+
}
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"if": {
|
|
2116
|
+
"focus": true,
|
|
2117
|
+
"pressed": true
|
|
2118
|
+
},
|
|
2119
|
+
"tokens": {
|
|
2120
|
+
"color": "{palette.color.mortar}",
|
|
2121
|
+
"outerBorderColor": "{palette.color.mortar}"
|
|
2122
|
+
}
|
|
2123
|
+
},
|
|
1615
2124
|
{
|
|
1616
2125
|
"if": {
|
|
1617
2126
|
"hover": true
|
|
@@ -1623,19 +2132,137 @@
|
|
|
1623
2132
|
},
|
|
1624
2133
|
{
|
|
1625
2134
|
"if": {
|
|
1626
|
-
"
|
|
2135
|
+
"pressed": true
|
|
2136
|
+
},
|
|
2137
|
+
"tokens": {
|
|
2138
|
+
"color": "{palette.color.mortar}",
|
|
2139
|
+
"textLine": "{system.textLine.none}"
|
|
2140
|
+
}
|
|
2141
|
+
},
|
|
2142
|
+
{
|
|
2143
|
+
"if": {
|
|
2144
|
+
"alternative": true
|
|
2145
|
+
},
|
|
2146
|
+
"tokens": {
|
|
2147
|
+
"color": "{palette.color.dove}"
|
|
2148
|
+
}
|
|
2149
|
+
},
|
|
2150
|
+
{
|
|
2151
|
+
"if": {
|
|
2152
|
+
"alternative": true,
|
|
2153
|
+
"focus": true
|
|
2154
|
+
},
|
|
2155
|
+
"tokens": {
|
|
2156
|
+
"color": "{palette.color.dove}",
|
|
2157
|
+
"outerBorderColor": "{palette.color.dove}"
|
|
2158
|
+
}
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
"if": {
|
|
2162
|
+
"alternative": true,
|
|
2163
|
+
"focus": true,
|
|
2164
|
+
"pressed": true
|
|
2165
|
+
},
|
|
2166
|
+
"tokens": {
|
|
2167
|
+
"color": "{palette.color.mortar}",
|
|
2168
|
+
"outerBorderColor": "{palette.color.mortar}"
|
|
2169
|
+
}
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
"if": {
|
|
2173
|
+
"alternative": true,
|
|
2174
|
+
"hover": true
|
|
2175
|
+
},
|
|
2176
|
+
"tokens": {
|
|
2177
|
+
"color": "{palette.color.doveDark}"
|
|
2178
|
+
}
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
"if": {
|
|
2182
|
+
"alternative": true,
|
|
2183
|
+
"pressed": true
|
|
2184
|
+
},
|
|
2185
|
+
"tokens": {
|
|
2186
|
+
"color": "{palette.color.mortar}"
|
|
2187
|
+
}
|
|
2188
|
+
},
|
|
2189
|
+
{
|
|
2190
|
+
"if": {
|
|
2191
|
+
"inverse": true
|
|
2192
|
+
},
|
|
2193
|
+
"tokens": {
|
|
2194
|
+
"color": "{palette.color.icicle}"
|
|
2195
|
+
}
|
|
2196
|
+
},
|
|
2197
|
+
{
|
|
2198
|
+
"if": {
|
|
2199
|
+
"focus": true,
|
|
2200
|
+
"inverse": true
|
|
2201
|
+
},
|
|
2202
|
+
"tokens": {
|
|
2203
|
+
"color": "{palette.color.icicle}",
|
|
2204
|
+
"outerBorderColor": "{palette.color.icicle}"
|
|
2205
|
+
}
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
"if": {
|
|
2209
|
+
"focus": true,
|
|
2210
|
+
"inverse": true,
|
|
2211
|
+
"pressed": true
|
|
1627
2212
|
},
|
|
1628
2213
|
"tokens": {
|
|
1629
|
-
"color": "{palette.color.
|
|
2214
|
+
"color": "{palette.color.silver}",
|
|
2215
|
+
"outerBorderColor": "{palette.color.silver}"
|
|
1630
2216
|
}
|
|
1631
2217
|
},
|
|
1632
2218
|
{
|
|
1633
2219
|
"if": {
|
|
1634
2220
|
"hover": true,
|
|
1635
|
-
"
|
|
2221
|
+
"inverse": true
|
|
2222
|
+
},
|
|
2223
|
+
"tokens": {
|
|
2224
|
+
"color": "{palette.color.icicleDark}"
|
|
2225
|
+
}
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
"if": {
|
|
2229
|
+
"inverse": true,
|
|
2230
|
+
"pressed": true
|
|
2231
|
+
},
|
|
2232
|
+
"tokens": {
|
|
2233
|
+
"color": "{palette.color.silver}"
|
|
2234
|
+
}
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
"if": {
|
|
2238
|
+
"size": "micro"
|
|
2239
|
+
},
|
|
2240
|
+
"tokens": {
|
|
2241
|
+
"blockFontName": "{palette.fontName.StagSans}",
|
|
2242
|
+
"blockFontSize": "{palette.fontSize.size12}",
|
|
2243
|
+
"blockFontWeight": "{palette.fontWeight.weight600}",
|
|
2244
|
+
"blockLineHeight": "{palette.lineHeight.ratio4to3}",
|
|
2245
|
+
"iconSize": "{palette.size.size16}"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
"if": {
|
|
2250
|
+
"size": "small"
|
|
2251
|
+
},
|
|
2252
|
+
"tokens": {
|
|
2253
|
+
"blockFontSize": "{palette.fontSize.size14}",
|
|
2254
|
+
"blockLineHeight": "{palette.lineHeight.ratio10to7}",
|
|
2255
|
+
"iconSize": "{palette.size.size20}"
|
|
2256
|
+
}
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
"if": {
|
|
2260
|
+
"size": "large"
|
|
1636
2261
|
},
|
|
1637
2262
|
"tokens": {
|
|
1638
|
-
"
|
|
2263
|
+
"blockFontSize": "{palette.fontSize.size20}",
|
|
2264
|
+
"blockLineHeight": "{palette.lineHeight.ratio7to5}",
|
|
2265
|
+
"iconSize": "{palette.size.size24}"
|
|
1639
2266
|
}
|
|
1640
2267
|
}
|
|
1641
2268
|
],
|
|
@@ -1644,7 +2271,7 @@
|
|
|
1644
2271
|
"blockFontName": "{palette.fontName.StagSans}",
|
|
1645
2272
|
"blockFontSize": "{palette.fontSize.size16}",
|
|
1646
2273
|
"blockFontWeight": "{palette.fontWeight.weight600}",
|
|
1647
|
-
"blockLineHeight": "{palette.lineHeight.
|
|
2274
|
+
"blockLineHeight": "{palette.lineHeight.ratio3to2}",
|
|
1648
2275
|
"borderRadius": "{palette.radius.radius4}",
|
|
1649
2276
|
"color": "{palette.color.mosque}",
|
|
1650
2277
|
"icon": "{system.icon.none}",
|
|
@@ -1653,9 +2280,9 @@
|
|
|
1653
2280
|
"iconTranslateX": "{system.size.zero}",
|
|
1654
2281
|
"iconTranslateY": "{system.size.zero}",
|
|
1655
2282
|
"outerBorderColor": "{palette.color.transparent}",
|
|
1656
|
-
"outerBorderGap": "{palette.size.
|
|
2283
|
+
"outerBorderGap": "{palette.size.size2}",
|
|
1657
2284
|
"outerBorderOutline": "{system.borderStyle.none}",
|
|
1658
|
-
"outerBorderWidth": "{palette.border.
|
|
2285
|
+
"outerBorderWidth": "{palette.border.border2}",
|
|
1659
2286
|
"textLine": "{system.textLine.underline}",
|
|
1660
2287
|
"textLineStyle": "{system.textLineStyle.solid}"
|
|
1661
2288
|
}
|
|
@@ -2179,9 +2806,7 @@
|
|
|
2179
2806
|
"hover": true
|
|
2180
2807
|
},
|
|
2181
2808
|
"tokens": {
|
|
2182
|
-
"
|
|
2183
|
-
"borderColor": "{palette.color.mosqueDark}",
|
|
2184
|
-
"color": "{palette.color.white}"
|
|
2809
|
+
"borderWidth": "{palette.border.border3}"
|
|
2185
2810
|
}
|
|
2186
2811
|
},
|
|
2187
2812
|
{
|
|
@@ -2189,9 +2814,9 @@
|
|
|
2189
2814
|
"pressed": true
|
|
2190
2815
|
},
|
|
2191
2816
|
"tokens": {
|
|
2192
|
-
"backgroundColor": "{palette.color.
|
|
2193
|
-
"borderColor": "{palette.color.
|
|
2194
|
-
"
|
|
2817
|
+
"backgroundColor": "{palette.color.silver}",
|
|
2818
|
+
"borderColor": "{palette.color.dove}",
|
|
2819
|
+
"iconColor": "{palette.color.dove}"
|
|
2195
2820
|
}
|
|
2196
2821
|
},
|
|
2197
2822
|
{
|
|
@@ -2199,22 +2824,32 @@
|
|
|
2199
2824
|
"focus": true
|
|
2200
2825
|
},
|
|
2201
2826
|
"tokens": {
|
|
2202
|
-
"outerBorderColor": "{palette.color.
|
|
2827
|
+
"outerBorderColor": "{palette.color.dove}"
|
|
2828
|
+
}
|
|
2829
|
+
},
|
|
2830
|
+
{
|
|
2831
|
+
"if": {
|
|
2832
|
+
"focus": true,
|
|
2833
|
+
"pressed": true
|
|
2834
|
+
},
|
|
2835
|
+
"tokens": {
|
|
2836
|
+
"borderWidth": "{palette.border.border1}",
|
|
2837
|
+
"outerBorderColor": "{palette.color.dove}"
|
|
2203
2838
|
}
|
|
2204
2839
|
}
|
|
2205
2840
|
],
|
|
2206
2841
|
"tokens": {
|
|
2207
2842
|
"alignSelf": "{system.flexAlign.flexStart}",
|
|
2208
|
-
"backgroundColor": "{palette.color.
|
|
2209
|
-
"borderColor": "{palette.color.
|
|
2210
|
-
"borderRadius": "{palette.radius.
|
|
2211
|
-
"borderWidth": "{palette.border.
|
|
2212
|
-
"color": "{palette.color.
|
|
2843
|
+
"backgroundColor": "{palette.color.white}",
|
|
2844
|
+
"borderColor": "{palette.color.dove}",
|
|
2845
|
+
"borderRadius": "{palette.radius.radius48}",
|
|
2846
|
+
"borderWidth": "{palette.border.border1}",
|
|
2847
|
+
"color": "{palette.color.dove}",
|
|
2213
2848
|
"fontName": "{palette.fontName.StagSans}",
|
|
2214
2849
|
"fontSize": "{palette.fontSize.size16}",
|
|
2215
2850
|
"fontWeight": "{palette.fontWeight.weight600}",
|
|
2216
2851
|
"icon": "{system.icon.none}",
|
|
2217
|
-
"iconColor": "{palette.color.
|
|
2852
|
+
"iconColor": "{palette.color.mosque}",
|
|
2218
2853
|
"iconSize": "{palette.size.size24}",
|
|
2219
2854
|
"iconSpace": "{system.integer.2}",
|
|
2220
2855
|
"lineHeight": "{palette.lineHeight.multiply150}",
|
|
@@ -2224,10 +2859,10 @@
|
|
|
2224
2859
|
"outerBorderColor": "{palette.color.white}",
|
|
2225
2860
|
"outerBorderGap": "{palette.size.size2}",
|
|
2226
2861
|
"outerBorderWidth": "{palette.border.border2}",
|
|
2227
|
-
"paddingBottom": "{palette.size.
|
|
2862
|
+
"paddingBottom": "{palette.size.size12}",
|
|
2228
2863
|
"paddingLeft": "{palette.size.size24}",
|
|
2229
2864
|
"paddingRight": "{palette.size.size24}",
|
|
2230
|
-
"paddingTop": "{palette.size.
|
|
2865
|
+
"paddingTop": "{palette.size.size12}",
|
|
2231
2866
|
"shadow": "{system.shadow.none}",
|
|
2232
2867
|
"textAlign": "{system.flexJustifyContent.center}",
|
|
2233
2868
|
"width": "{system.size.none}"
|
|
@@ -2237,16 +2872,16 @@
|
|
|
2237
2872
|
"appearances": {},
|
|
2238
2873
|
"rules": [],
|
|
2239
2874
|
"tokens": {
|
|
2240
|
-
"backgroundColor": "{palette.color.
|
|
2241
|
-
"borderColor": "{
|
|
2242
|
-
"borderRadius": "{palette.radius.
|
|
2243
|
-
"borderWidth": "{palette.border.
|
|
2875
|
+
"backgroundColor": "{palette.color.white}",
|
|
2876
|
+
"borderColor": "{palette.color.silver}",
|
|
2877
|
+
"borderRadius": "{palette.radius.radius8}",
|
|
2878
|
+
"borderWidth": "{palette.border.border1}",
|
|
2244
2879
|
"flex": "{system.integer.1}",
|
|
2245
2880
|
"minWidth": "{system.size.none}",
|
|
2246
|
-
"paddingBottom": "{palette.size.
|
|
2247
|
-
"paddingLeft": "{palette.size.
|
|
2248
|
-
"paddingRight": "{palette.size.
|
|
2249
|
-
"paddingTop": "{palette.size.
|
|
2881
|
+
"paddingBottom": "{palette.size.size8}",
|
|
2882
|
+
"paddingLeft": "{palette.size.size12}",
|
|
2883
|
+
"paddingRight": "{palette.size.size12}",
|
|
2884
|
+
"paddingTop": "{palette.size.size8}",
|
|
2250
2885
|
"shadow": "{system.shadow.none}"
|
|
2251
2886
|
}
|
|
2252
2887
|
},
|
|
@@ -2316,7 +2951,7 @@
|
|
|
2316
2951
|
"hover": true
|
|
2317
2952
|
},
|
|
2318
2953
|
"tokens": {
|
|
2319
|
-
"backgroundColor": "{palette.color.
|
|
2954
|
+
"backgroundColor": "{palette.color.gallery}"
|
|
2320
2955
|
}
|
|
2321
2956
|
},
|
|
2322
2957
|
{
|
|
@@ -2324,7 +2959,7 @@
|
|
|
2324
2959
|
"focus": true
|
|
2325
2960
|
},
|
|
2326
2961
|
"tokens": {
|
|
2327
|
-
"backgroundColor": "{palette.color.
|
|
2962
|
+
"backgroundColor": "{palette.color.gallery}"
|
|
2328
2963
|
}
|
|
2329
2964
|
},
|
|
2330
2965
|
{
|
|
@@ -2332,7 +2967,8 @@
|
|
|
2332
2967
|
"pressed": true
|
|
2333
2968
|
},
|
|
2334
2969
|
"tokens": {
|
|
2335
|
-
"backgroundColor": "{palette.color.
|
|
2970
|
+
"backgroundColor": "{palette.color.silver}",
|
|
2971
|
+
"itemIconColor": "{palette.color.black}"
|
|
2336
2972
|
}
|
|
2337
2973
|
}
|
|
2338
2974
|
],
|
|
@@ -2340,25 +2976,26 @@
|
|
|
2340
2976
|
"backgroundColor": "{system.color.none}",
|
|
2341
2977
|
"dividerColor": "{palette.color.silver}",
|
|
2342
2978
|
"dividerSize": "{palette.border.border1}",
|
|
2343
|
-
"iconMarginTop": "{palette.size.
|
|
2979
|
+
"iconMarginTop": "{palette.size.size0}",
|
|
2344
2980
|
"interItemMargin": "{system.size.none}",
|
|
2345
2981
|
"interItemMarginWithDivider": "{system.size.none}",
|
|
2346
2982
|
"itemBulletColor": "{palette.color.flirt}",
|
|
2347
2983
|
"itemBulletContainerAlign": "{system.textAlign.center}",
|
|
2348
|
-
"itemBulletContainerWidth": "{palette.size.
|
|
2349
|
-
"itemBulletHeight": "{palette.size.
|
|
2350
|
-
"itemBulletWidth": "{palette.size.
|
|
2984
|
+
"itemBulletContainerWidth": "{palette.size.size0}",
|
|
2985
|
+
"itemBulletHeight": "{palette.size.size0}",
|
|
2986
|
+
"itemBulletWidth": "{palette.size.size0}",
|
|
2987
|
+
"itemFontColor": "{palette.color.black}",
|
|
2351
2988
|
"itemFontName": "{palette.fontName.StagSans}",
|
|
2352
2989
|
"itemFontSize": "{palette.fontSize.size16}",
|
|
2353
2990
|
"itemFontWeight": "{palette.fontWeight.weight600}",
|
|
2354
|
-
"itemIconColor": "{palette.color.
|
|
2355
|
-
"itemIconSize": "{palette.size.
|
|
2356
|
-
"itemLineHeight": "{palette.lineHeight.
|
|
2991
|
+
"itemIconColor": "{palette.color.mosque}",
|
|
2992
|
+
"itemIconSize": "{palette.size.size24}",
|
|
2993
|
+
"itemLineHeight": "{palette.lineHeight.multiply160}",
|
|
2357
2994
|
"listGutter": "{palette.size.size10}",
|
|
2358
|
-
"paddingBottom": "{palette.size.
|
|
2359
|
-
"paddingLeft": "{palette.size.
|
|
2360
|
-
"paddingRight": "{palette.size.
|
|
2361
|
-
"paddingTop": "{palette.size.
|
|
2995
|
+
"paddingBottom": "{palette.size.size12}",
|
|
2996
|
+
"paddingLeft": "{palette.size.size4}",
|
|
2997
|
+
"paddingRight": "{palette.size.size4}",
|
|
2998
|
+
"paddingTop": "{palette.size.size12}"
|
|
2362
2999
|
}
|
|
2363
3000
|
},
|
|
2364
3001
|
"Radio": {
|