@telus-uds/theme-allium 4.5.0 → 4.6.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 +1033 -942
- package/build/android/theme.json +179 -67
- package/build/ios/schema.json +1033 -942
- package/build/ios/theme.json +179 -67
- package/build/rn/schema.json +1033 -942
- package/build/rn/theme.js +206 -104
- package/package.json +5 -5
- package/theme.json +144 -27
package/build/rn/theme.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Wed, 21 Jun 2023 20:32:18 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -432,13 +432,13 @@ module.exports = {
|
|
|
432
432
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
433
433
|
platforms: [ 'rn' ],
|
|
434
434
|
type: 'state',
|
|
435
|
-
values: [ true ]
|
|
435
|
+
values: [ true, false ]
|
|
436
436
|
},
|
|
437
437
|
hover: {
|
|
438
438
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
439
439
|
platforms: [ 'rn' ],
|
|
440
440
|
type: 'state',
|
|
441
|
-
values: [ true ]
|
|
441
|
+
values: [ true, false ]
|
|
442
442
|
},
|
|
443
443
|
inactive: {
|
|
444
444
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -453,7 +453,7 @@ module.exports = {
|
|
|
453
453
|
pressed: {
|
|
454
454
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
455
455
|
type: 'state',
|
|
456
|
-
values: [ true ]
|
|
456
|
+
values: [ true, false ]
|
|
457
457
|
},
|
|
458
458
|
priority: {
|
|
459
459
|
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.',
|
|
@@ -741,13 +741,13 @@ module.exports = {
|
|
|
741
741
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
742
742
|
platforms: [ 'rn' ],
|
|
743
743
|
type: 'state',
|
|
744
|
-
values: [ true ]
|
|
744
|
+
values: [ true, false ]
|
|
745
745
|
},
|
|
746
746
|
hover: {
|
|
747
747
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
748
748
|
platforms: [ 'rn' ],
|
|
749
749
|
type: 'state',
|
|
750
|
-
values: [ true ]
|
|
750
|
+
values: [ true, false ]
|
|
751
751
|
},
|
|
752
752
|
inactive: {
|
|
753
753
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -762,7 +762,7 @@ module.exports = {
|
|
|
762
762
|
pressed: {
|
|
763
763
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
764
764
|
type: 'state',
|
|
765
|
-
values: [ true ]
|
|
765
|
+
values: [ true, false ]
|
|
766
766
|
},
|
|
767
767
|
selected: {
|
|
768
768
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -893,13 +893,13 @@ module.exports = {
|
|
|
893
893
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
894
894
|
platforms: [ 'rn' ],
|
|
895
895
|
type: 'state',
|
|
896
|
-
values: [ true ]
|
|
896
|
+
values: [ true, false ]
|
|
897
897
|
},
|
|
898
898
|
hover: {
|
|
899
899
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
900
900
|
platforms: [ 'rn' ],
|
|
901
901
|
type: 'state',
|
|
902
|
-
values: [ true ]
|
|
902
|
+
values: [ true, false ]
|
|
903
903
|
},
|
|
904
904
|
iconPosition: {
|
|
905
905
|
description: 'Theme styles to be applied to icon links depending on where the icon is in relation to the link text',
|
|
@@ -914,7 +914,7 @@ module.exports = {
|
|
|
914
914
|
pressed: {
|
|
915
915
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
916
916
|
type: 'state',
|
|
917
|
-
values: [ true ]
|
|
917
|
+
values: [ true, false ]
|
|
918
918
|
},
|
|
919
919
|
selected: {
|
|
920
920
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -1183,13 +1183,13 @@ module.exports = {
|
|
|
1183
1183
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1184
1184
|
platforms: [ 'rn' ],
|
|
1185
1185
|
type: 'state',
|
|
1186
|
-
values: [ true ]
|
|
1186
|
+
values: [ true, false ]
|
|
1187
1187
|
},
|
|
1188
1188
|
hover: {
|
|
1189
1189
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1190
1190
|
platforms: [ 'rn' ],
|
|
1191
1191
|
type: 'state',
|
|
1192
|
-
values: [ true ]
|
|
1192
|
+
values: [ true, false ]
|
|
1193
1193
|
},
|
|
1194
1194
|
inactive: {
|
|
1195
1195
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -1200,7 +1200,7 @@ module.exports = {
|
|
|
1200
1200
|
pressed: {
|
|
1201
1201
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
1202
1202
|
type: 'state',
|
|
1203
|
-
values: [ true ]
|
|
1203
|
+
values: [ true, false ]
|
|
1204
1204
|
},
|
|
1205
1205
|
selected: {
|
|
1206
1206
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -1329,13 +1329,13 @@ module.exports = {
|
|
|
1329
1329
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1330
1330
|
platforms: [ 'rn' ],
|
|
1331
1331
|
type: 'state',
|
|
1332
|
-
values: [ true ]
|
|
1332
|
+
values: [ true, false ]
|
|
1333
1333
|
},
|
|
1334
1334
|
hover: {
|
|
1335
1335
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1336
1336
|
platforms: [ 'rn' ],
|
|
1337
1337
|
type: 'state',
|
|
1338
|
-
values: [ true ]
|
|
1338
|
+
values: [ true, false ]
|
|
1339
1339
|
},
|
|
1340
1340
|
inactive: {
|
|
1341
1341
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -1410,13 +1410,13 @@ module.exports = {
|
|
|
1410
1410
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1411
1411
|
platforms: [ 'rn' ],
|
|
1412
1412
|
type: 'state',
|
|
1413
|
-
values: [ true ]
|
|
1413
|
+
values: [ true, false ]
|
|
1414
1414
|
},
|
|
1415
1415
|
inverse: { type: 'variant', values: [ true ] },
|
|
1416
1416
|
pressed: {
|
|
1417
1417
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
1418
1418
|
type: 'state',
|
|
1419
|
-
values: [ true ]
|
|
1419
|
+
values: [ true, false ]
|
|
1420
1420
|
},
|
|
1421
1421
|
size: {
|
|
1422
1422
|
description: 'Sets the size of the text and icon; these variants are shared with ChevronLink',
|
|
@@ -1895,18 +1895,18 @@ module.exports = {
|
|
|
1895
1895
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1896
1896
|
platforms: [ 'rn' ],
|
|
1897
1897
|
type: 'state',
|
|
1898
|
-
values: [ true ]
|
|
1898
|
+
values: [ true, false ]
|
|
1899
1899
|
},
|
|
1900
1900
|
hover: {
|
|
1901
1901
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1902
1902
|
platforms: [ 'rn' ],
|
|
1903
1903
|
type: 'state',
|
|
1904
|
-
values: [ true ]
|
|
1904
|
+
values: [ true, false ]
|
|
1905
1905
|
},
|
|
1906
1906
|
pressed: {
|
|
1907
1907
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
1908
1908
|
type: 'state',
|
|
1909
|
-
values: [ true ]
|
|
1909
|
+
values: [ true, false ]
|
|
1910
1910
|
}
|
|
1911
1911
|
},
|
|
1912
1912
|
rules: [
|
|
@@ -2003,13 +2003,13 @@ module.exports = {
|
|
|
2003
2003
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
2004
2004
|
platforms: [ 'rn' ],
|
|
2005
2005
|
type: 'state',
|
|
2006
|
-
values: [ true ]
|
|
2006
|
+
values: [ true, false ]
|
|
2007
2007
|
},
|
|
2008
2008
|
hover: {
|
|
2009
2009
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
2010
2010
|
platforms: [ 'rn' ],
|
|
2011
2011
|
type: 'state',
|
|
2012
|
-
values: [ true ]
|
|
2012
|
+
values: [ true, false ]
|
|
2013
2013
|
},
|
|
2014
2014
|
inactive: {
|
|
2015
2015
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -2029,7 +2029,7 @@ module.exports = {
|
|
|
2029
2029
|
pressed: {
|
|
2030
2030
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
2031
2031
|
type: 'state',
|
|
2032
|
-
values: [ true ]
|
|
2032
|
+
values: [ true, false ]
|
|
2033
2033
|
},
|
|
2034
2034
|
raised: {
|
|
2035
2035
|
description: 'Uses shadow and background colour to appear raised above the page',
|
|
@@ -2305,13 +2305,13 @@ module.exports = {
|
|
|
2305
2305
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
2306
2306
|
platforms: [ 'rn' ],
|
|
2307
2307
|
type: 'state',
|
|
2308
|
-
values: [ true ]
|
|
2308
|
+
values: [ true, false ]
|
|
2309
2309
|
},
|
|
2310
2310
|
hover: {
|
|
2311
2311
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
2312
2312
|
platforms: [ 'rn' ],
|
|
2313
2313
|
type: 'state',
|
|
2314
|
-
values: [ true ]
|
|
2314
|
+
values: [ true, false ]
|
|
2315
2315
|
},
|
|
2316
2316
|
iconPosition: {
|
|
2317
2317
|
description: 'Theme styles to be applied to icon links depending on where the icon is in relation to the link text',
|
|
@@ -2331,7 +2331,7 @@ module.exports = {
|
|
|
2331
2331
|
pressed: {
|
|
2332
2332
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
2333
2333
|
type: 'state',
|
|
2334
|
-
values: [ true ]
|
|
2334
|
+
values: [ true, false ]
|
|
2335
2335
|
},
|
|
2336
2336
|
size: {
|
|
2337
2337
|
description: 'Text sizes for block links; similar but not always identical to Typography sizes.',
|
|
@@ -2503,12 +2503,12 @@ module.exports = {
|
|
|
2503
2503
|
listGutter: 16
|
|
2504
2504
|
}
|
|
2505
2505
|
},
|
|
2506
|
-
|
|
2506
|
+
Listbox: {
|
|
2507
2507
|
appearances: {
|
|
2508
2508
|
current: {
|
|
2509
2509
|
description: 'When the current item is selected',
|
|
2510
2510
|
type: 'state',
|
|
2511
|
-
values: [ true ]
|
|
2511
|
+
values: [ true, false ]
|
|
2512
2512
|
},
|
|
2513
2513
|
expanded: {
|
|
2514
2514
|
description: 'Applies when an ExpandCollapse panel is open and the content inside is visible',
|
|
@@ -2519,37 +2519,57 @@ module.exports = {
|
|
|
2519
2519
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
2520
2520
|
platforms: [ 'rn' ],
|
|
2521
2521
|
type: 'state',
|
|
2522
|
-
values: [ true ]
|
|
2522
|
+
values: [ true, false ]
|
|
2523
2523
|
},
|
|
2524
2524
|
hover: {
|
|
2525
2525
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
2526
2526
|
platforms: [ 'rn' ],
|
|
2527
2527
|
type: 'state',
|
|
2528
|
-
values: [ true ]
|
|
2528
|
+
values: [ true, false ]
|
|
2529
2529
|
},
|
|
2530
2530
|
isChild: {
|
|
2531
2531
|
description: 'when the item is child of another child',
|
|
2532
2532
|
type: 'state',
|
|
2533
|
-
values: [ true ]
|
|
2533
|
+
values: [ true, false ]
|
|
2534
2534
|
},
|
|
2535
2535
|
pressed: {
|
|
2536
2536
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
2537
2537
|
type: 'state',
|
|
2538
|
-
values: [ true ]
|
|
2538
|
+
values: [ true, false ]
|
|
2539
2539
|
}
|
|
2540
2540
|
},
|
|
2541
2541
|
rules: [
|
|
2542
2542
|
{
|
|
2543
|
-
if: { pressed: true },
|
|
2544
|
-
tokens: {
|
|
2543
|
+
if: { focus: true, hover: true, pressed: true },
|
|
2544
|
+
tokens: {
|
|
2545
|
+
groupBackgroundColor: '#e3e6e8',
|
|
2546
|
+
groupBorderColor: 'rgba(0, 0, 0, 0)',
|
|
2547
|
+
groupColor: '#676e73',
|
|
2548
|
+
itemBackgroundColor: '#e3e6e8',
|
|
2549
|
+
itemColor: '#676e73'
|
|
2550
|
+
}
|
|
2545
2551
|
},
|
|
2546
2552
|
{
|
|
2547
|
-
if: { hover: true },
|
|
2548
|
-
tokens: {
|
|
2553
|
+
if: { focus: false, hover: true, pressed: false },
|
|
2554
|
+
tokens: {
|
|
2555
|
+
groupBackgroundColor: '#f4f4f7',
|
|
2556
|
+
groupColor: '#4b286d',
|
|
2557
|
+
itemBackgroundColor: '#f4f4f7',
|
|
2558
|
+
itemColor: '#4b286d'
|
|
2559
|
+
}
|
|
2549
2560
|
},
|
|
2550
2561
|
{
|
|
2551
|
-
if: { focus: true },
|
|
2552
|
-
tokens: {
|
|
2562
|
+
if: { focus: true, pressed: false },
|
|
2563
|
+
tokens: {
|
|
2564
|
+
groupBorderColor: '#4b286d',
|
|
2565
|
+
groupBorderWidth: 1,
|
|
2566
|
+
groupColor: '#4b286d',
|
|
2567
|
+
itemBorderBottomColor: '#4b286d',
|
|
2568
|
+
itemBorderLeftColor: '#4b286d',
|
|
2569
|
+
itemBorderRightColor: '#4b286d',
|
|
2570
|
+
itemBorderTopColor: '#4b286d',
|
|
2571
|
+
itemColor: '#4b286d'
|
|
2572
|
+
}
|
|
2553
2573
|
},
|
|
2554
2574
|
{
|
|
2555
2575
|
if: { expanded: true },
|
|
@@ -2560,44 +2580,107 @@ module.exports = {
|
|
|
2560
2580
|
tokens: {
|
|
2561
2581
|
groupColor: '#4b286d',
|
|
2562
2582
|
groupFontName: 'HelveticaNow',
|
|
2583
|
+
groupFontWeight: '700',
|
|
2584
|
+
itemColor: '#4b286d',
|
|
2585
|
+
itemPaddingBottom: 12,
|
|
2586
|
+
itemPaddingLeft: 16,
|
|
2587
|
+
itemPaddingRight: 16,
|
|
2588
|
+
itemPaddingTop: 12
|
|
2589
|
+
}
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
if: { current: true, pressed: true },
|
|
2593
|
+
tokens: {
|
|
2594
|
+
groupBackgroundColor: '#e3e6e8',
|
|
2595
|
+
groupBorderWidth: 0,
|
|
2596
|
+
groupColor: '#676e73',
|
|
2597
|
+
groupFontName: 'HelveticaNow',
|
|
2563
2598
|
groupFontWeight: '700'
|
|
2564
2599
|
}
|
|
2565
2600
|
},
|
|
2566
2601
|
{
|
|
2567
2602
|
if: { isChild: true },
|
|
2568
|
-
tokens: {
|
|
2603
|
+
tokens: {
|
|
2604
|
+
itemBorderBottomWidth: 0,
|
|
2605
|
+
itemBorderLeftColor: '#e3e6e8',
|
|
2606
|
+
itemBorderLeftWidth: 4,
|
|
2607
|
+
itemBorderTopWidth: 0
|
|
2608
|
+
}
|
|
2609
|
+
},
|
|
2610
|
+
{
|
|
2611
|
+
if: { focus: true, isChild: true },
|
|
2612
|
+
tokens: {
|
|
2613
|
+
itemBorderBottomColor: '#4b286d',
|
|
2614
|
+
itemBorderBottomWidth: 1,
|
|
2615
|
+
itemBorderLeftColor: '#4b286d',
|
|
2616
|
+
itemBorderRightColor: '#4b286d',
|
|
2617
|
+
itemBorderRightWidth: 1,
|
|
2618
|
+
itemBorderTopColor: '#4b286d',
|
|
2619
|
+
itemBorderTopWidth: 1
|
|
2620
|
+
}
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
if: { hover: true, isChild: true },
|
|
2624
|
+
tokens: { itemBorderLeftColor: '#4b286d' }
|
|
2625
|
+
},
|
|
2626
|
+
{
|
|
2627
|
+
if: { current: true, isChild: true },
|
|
2628
|
+
tokens: { itemBorderLeftColor: '#4b286d' }
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
if: { current: true, pressed: true },
|
|
2632
|
+
tokens: { itemColor: '#676e73' }
|
|
2633
|
+
},
|
|
2634
|
+
{
|
|
2635
|
+
if: { isChild: true, pressed: true },
|
|
2636
|
+
tokens: {
|
|
2637
|
+
itemBorderBottomWidth: 0,
|
|
2638
|
+
itemBorderLeftColor: '#676e73',
|
|
2639
|
+
itemBorderTopWidth: 0
|
|
2640
|
+
}
|
|
2569
2641
|
}
|
|
2570
2642
|
],
|
|
2571
2643
|
tokens: {
|
|
2572
2644
|
groupBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
2573
|
-
groupBorderColor: '
|
|
2574
|
-
groupBorderRadius:
|
|
2645
|
+
groupBorderColor: 'rgba(0, 0, 0, 0)',
|
|
2646
|
+
groupBorderRadius: 0,
|
|
2575
2647
|
groupBorderWidth: 1,
|
|
2576
2648
|
groupColor: '#414547',
|
|
2577
2649
|
groupFontName: 'HelveticaNow',
|
|
2578
2650
|
groupFontSize: 14,
|
|
2579
2651
|
groupFontWeight: '400',
|
|
2652
|
+
groupHeight: 40,
|
|
2580
2653
|
groupIcon: PaletteIconCaretDown,
|
|
2581
2654
|
groupPaddingBottom: 12,
|
|
2582
2655
|
groupPaddingLeft: 16,
|
|
2583
2656
|
groupPaddingRight: 16,
|
|
2584
2657
|
groupPaddingTop: 12,
|
|
2585
2658
|
itemBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2659
|
+
itemBorderBottomColor: 'rgba(0, 0, 0, 0)',
|
|
2660
|
+
itemBorderBottomWidth: 1,
|
|
2661
|
+
itemBorderLeftColor: 'rgba(0, 0, 0, 0)',
|
|
2662
|
+
itemBorderLeftWidth: 1,
|
|
2663
|
+
itemBorderRadius: 0,
|
|
2664
|
+
itemBorderRightColor: 'rgba(0, 0, 0, 0)',
|
|
2665
|
+
itemBorderRightWidth: 1,
|
|
2666
|
+
itemBorderTopColor: 'rgba(0, 0, 0, 0)',
|
|
2667
|
+
itemBorderTopWidth: 1,
|
|
2668
|
+
itemBorderWidth: 1,
|
|
2669
|
+
itemColor: '#414547',
|
|
2591
2670
|
itemDisplay: false,
|
|
2592
2671
|
itemFontName: 'HelveticaNow',
|
|
2593
2672
|
itemFontSize: 14,
|
|
2594
2673
|
itemFontWeight: '700',
|
|
2674
|
+
itemHeight: 40,
|
|
2595
2675
|
itemOutline: 0,
|
|
2596
2676
|
itemPaddingBottom: 12,
|
|
2597
2677
|
itemPaddingLeft: 16,
|
|
2598
2678
|
itemPaddingRight: 16,
|
|
2599
2679
|
itemPaddingTop: 12,
|
|
2600
2680
|
itemTextDecoration: 'none',
|
|
2681
|
+
lineHeight: 1.14285714286,
|
|
2682
|
+
minHeight: '100%',
|
|
2683
|
+
minWidth: 288,
|
|
2601
2684
|
shadow: {
|
|
2602
2685
|
blur: 8,
|
|
2603
2686
|
color: 'rgba(0, 0, 0, 0.1)',
|
|
@@ -2803,18 +2886,18 @@ module.exports = {
|
|
|
2803
2886
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
2804
2887
|
platforms: [ 'rn' ],
|
|
2805
2888
|
type: 'state',
|
|
2806
|
-
values: [ true ]
|
|
2889
|
+
values: [ true, false ]
|
|
2807
2890
|
},
|
|
2808
2891
|
hover: {
|
|
2809
2892
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
2810
2893
|
platforms: [ 'rn' ],
|
|
2811
2894
|
type: 'state',
|
|
2812
|
-
values: [ true ]
|
|
2895
|
+
values: [ true, false ]
|
|
2813
2896
|
},
|
|
2814
2897
|
pressed: {
|
|
2815
2898
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
2816
2899
|
type: 'state',
|
|
2817
|
-
values: [ true ]
|
|
2900
|
+
values: [ true, false ]
|
|
2818
2901
|
},
|
|
2819
2902
|
selected: {
|
|
2820
2903
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -3084,18 +3167,18 @@ module.exports = {
|
|
|
3084
3167
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3085
3168
|
platforms: [ 'rn' ],
|
|
3086
3169
|
type: 'state',
|
|
3087
|
-
values: [ true ]
|
|
3170
|
+
values: [ true, false ]
|
|
3088
3171
|
},
|
|
3089
3172
|
hover: {
|
|
3090
3173
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3091
3174
|
platforms: [ 'rn' ],
|
|
3092
3175
|
type: 'state',
|
|
3093
|
-
values: [ true ]
|
|
3176
|
+
values: [ true, false ]
|
|
3094
3177
|
},
|
|
3095
3178
|
pressed: {
|
|
3096
3179
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3097
3180
|
type: 'state',
|
|
3098
|
-
values: [ true ]
|
|
3181
|
+
values: [ true, false ]
|
|
3099
3182
|
},
|
|
3100
3183
|
selected: {
|
|
3101
3184
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -3173,18 +3256,18 @@ module.exports = {
|
|
|
3173
3256
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3174
3257
|
platforms: [ 'rn' ],
|
|
3175
3258
|
type: 'state',
|
|
3176
|
-
values: [ true ]
|
|
3259
|
+
values: [ true, false ]
|
|
3177
3260
|
},
|
|
3178
3261
|
hover: {
|
|
3179
3262
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3180
3263
|
platforms: [ 'rn' ],
|
|
3181
3264
|
type: 'state',
|
|
3182
|
-
values: [ true ]
|
|
3265
|
+
values: [ true, false ]
|
|
3183
3266
|
},
|
|
3184
3267
|
pressed: {
|
|
3185
3268
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3186
3269
|
type: 'state',
|
|
3187
|
-
values: [ true ]
|
|
3270
|
+
values: [ true, false ]
|
|
3188
3271
|
},
|
|
3189
3272
|
selected: {
|
|
3190
3273
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -3278,19 +3361,19 @@ module.exports = {
|
|
|
3278
3361
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3279
3362
|
platforms: [ 'rn' ],
|
|
3280
3363
|
type: 'state',
|
|
3281
|
-
values: [ true ]
|
|
3364
|
+
values: [ true, false ]
|
|
3282
3365
|
},
|
|
3283
3366
|
hover: {
|
|
3284
3367
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3285
3368
|
platforms: [ 'rn' ],
|
|
3286
3369
|
type: 'state',
|
|
3287
|
-
values: [ true ]
|
|
3370
|
+
values: [ true, false ]
|
|
3288
3371
|
},
|
|
3289
3372
|
pressed: {
|
|
3290
3373
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3291
3374
|
platforms: [ 'rn' ],
|
|
3292
3375
|
type: 'state',
|
|
3293
|
-
values: [ true ]
|
|
3376
|
+
values: [ true, false ]
|
|
3294
3377
|
}
|
|
3295
3378
|
},
|
|
3296
3379
|
rules: [
|
|
@@ -3544,18 +3627,18 @@ module.exports = {
|
|
|
3544
3627
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3545
3628
|
platforms: [ 'rn' ],
|
|
3546
3629
|
type: 'state',
|
|
3547
|
-
values: [ true ]
|
|
3630
|
+
values: [ true, false ]
|
|
3548
3631
|
},
|
|
3549
3632
|
hover: {
|
|
3550
3633
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3551
3634
|
platforms: [ 'rn' ],
|
|
3552
3635
|
type: 'state',
|
|
3553
|
-
values: [ true ]
|
|
3636
|
+
values: [ true, false ]
|
|
3554
3637
|
},
|
|
3555
3638
|
pressed: {
|
|
3556
3639
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3557
3640
|
type: 'state',
|
|
3558
|
-
values: [ true ]
|
|
3641
|
+
values: [ true, false ]
|
|
3559
3642
|
}
|
|
3560
3643
|
},
|
|
3561
3644
|
rules: [
|
|
@@ -3631,18 +3714,18 @@ module.exports = {
|
|
|
3631
3714
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3632
3715
|
platforms: [ 'rn' ],
|
|
3633
3716
|
type: 'state',
|
|
3634
|
-
values: [ true ]
|
|
3717
|
+
values: [ true, false ]
|
|
3635
3718
|
},
|
|
3636
3719
|
hover: {
|
|
3637
3720
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3638
3721
|
platforms: [ 'rn' ],
|
|
3639
3722
|
type: 'state',
|
|
3640
|
-
values: [ true ]
|
|
3723
|
+
values: [ true, false ]
|
|
3641
3724
|
},
|
|
3642
3725
|
pressed: {
|
|
3643
3726
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3644
3727
|
type: 'state',
|
|
3645
|
-
values: [ true ]
|
|
3728
|
+
values: [ true, false ]
|
|
3646
3729
|
},
|
|
3647
3730
|
viewport: {
|
|
3648
3731
|
description: 'The size label for the current screen viewport based on the current screen width',
|
|
@@ -3702,18 +3785,18 @@ module.exports = {
|
|
|
3702
3785
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3703
3786
|
platforms: [ 'rn' ],
|
|
3704
3787
|
type: 'state',
|
|
3705
|
-
values: [ true ]
|
|
3788
|
+
values: [ true, false ]
|
|
3706
3789
|
},
|
|
3707
3790
|
hover: {
|
|
3708
3791
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3709
3792
|
platforms: [ 'rn' ],
|
|
3710
3793
|
type: 'state',
|
|
3711
|
-
values: [ true ]
|
|
3794
|
+
values: [ true, false ]
|
|
3712
3795
|
},
|
|
3713
3796
|
pressed: {
|
|
3714
3797
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3715
3798
|
type: 'state',
|
|
3716
|
-
values: [ true ]
|
|
3799
|
+
values: [ true, false ]
|
|
3717
3800
|
}
|
|
3718
3801
|
},
|
|
3719
3802
|
rules: [
|
|
@@ -3762,13 +3845,13 @@ module.exports = {
|
|
|
3762
3845
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3763
3846
|
platforms: [ 'rn' ],
|
|
3764
3847
|
type: 'state',
|
|
3765
|
-
values: [ true ]
|
|
3848
|
+
values: [ true, false ]
|
|
3766
3849
|
},
|
|
3767
3850
|
hover: {
|
|
3768
3851
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3769
3852
|
platforms: [ 'rn' ],
|
|
3770
3853
|
type: 'state',
|
|
3771
|
-
values: [ true ]
|
|
3854
|
+
values: [ true, false ]
|
|
3772
3855
|
},
|
|
3773
3856
|
inactive: {
|
|
3774
3857
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -3849,13 +3932,13 @@ module.exports = {
|
|
|
3849
3932
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3850
3933
|
platforms: [ 'rn' ],
|
|
3851
3934
|
type: 'state',
|
|
3852
|
-
values: [ true ]
|
|
3935
|
+
values: [ true, false ]
|
|
3853
3936
|
},
|
|
3854
3937
|
hover: {
|
|
3855
3938
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3856
3939
|
platforms: [ 'rn' ],
|
|
3857
3940
|
type: 'state',
|
|
3858
|
-
values: [ true ]
|
|
3941
|
+
values: [ true, false ]
|
|
3859
3942
|
},
|
|
3860
3943
|
inactive: {
|
|
3861
3944
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -3865,7 +3948,7 @@ module.exports = {
|
|
|
3865
3948
|
pressed: {
|
|
3866
3949
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3867
3950
|
type: 'state',
|
|
3868
|
-
values: [ true ]
|
|
3951
|
+
values: [ true, false ]
|
|
3869
3952
|
},
|
|
3870
3953
|
viewport: {
|
|
3871
3954
|
description: 'The size label for the current screen viewport based on the current screen width',
|
|
@@ -4094,7 +4177,7 @@ module.exports = {
|
|
|
4094
4177
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4095
4178
|
platforms: [ 'rn' ],
|
|
4096
4179
|
type: 'state',
|
|
4097
|
-
values: [ true ]
|
|
4180
|
+
values: [ true, false ]
|
|
4098
4181
|
},
|
|
4099
4182
|
inactive: {
|
|
4100
4183
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -4155,13 +4238,13 @@ module.exports = {
|
|
|
4155
4238
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
4156
4239
|
platforms: [ 'rn' ],
|
|
4157
4240
|
type: 'state',
|
|
4158
|
-
values: [ true ]
|
|
4241
|
+
values: [ true, false ]
|
|
4159
4242
|
},
|
|
4160
4243
|
hover: {
|
|
4161
4244
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4162
4245
|
platforms: [ 'rn' ],
|
|
4163
4246
|
type: 'state',
|
|
4164
|
-
values: [ true ]
|
|
4247
|
+
values: [ true, false ]
|
|
4165
4248
|
},
|
|
4166
4249
|
inactive: {
|
|
4167
4250
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -4171,7 +4254,7 @@ module.exports = {
|
|
|
4171
4254
|
pressed: {
|
|
4172
4255
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4173
4256
|
type: 'state',
|
|
4174
|
-
values: [ true ]
|
|
4257
|
+
values: [ true, false ]
|
|
4175
4258
|
},
|
|
4176
4259
|
priority: { description: '', type: 'variant', values: [ 'high' ] }
|
|
4177
4260
|
},
|
|
@@ -4247,7 +4330,7 @@ module.exports = {
|
|
|
4247
4330
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4248
4331
|
platforms: [ 'rn' ],
|
|
4249
4332
|
type: 'state',
|
|
4250
|
-
values: [ true ]
|
|
4333
|
+
values: [ true, false ]
|
|
4251
4334
|
},
|
|
4252
4335
|
inactive: {
|
|
4253
4336
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -4344,13 +4427,13 @@ module.exports = {
|
|
|
4344
4427
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
4345
4428
|
platforms: [ 'rn' ],
|
|
4346
4429
|
type: 'state',
|
|
4347
|
-
values: [ true ]
|
|
4430
|
+
values: [ true, false ]
|
|
4348
4431
|
},
|
|
4349
4432
|
hover: {
|
|
4350
4433
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4351
4434
|
platforms: [ 'rn' ],
|
|
4352
4435
|
type: 'state',
|
|
4353
|
-
values: [ true ]
|
|
4436
|
+
values: [ true, false ]
|
|
4354
4437
|
},
|
|
4355
4438
|
type: {
|
|
4356
4439
|
description: '`parent` being the toggle button for an ItemsGroup, and `child` an element of the ItemGroup',
|
|
@@ -4517,7 +4600,7 @@ module.exports = {
|
|
|
4517
4600
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4518
4601
|
platforms: [ 'rn' ],
|
|
4519
4602
|
type: 'state',
|
|
4520
|
-
values: [ true ]
|
|
4603
|
+
values: [ true, false ]
|
|
4521
4604
|
}
|
|
4522
4605
|
},
|
|
4523
4606
|
rules: [
|
|
@@ -4539,7 +4622,7 @@ module.exports = {
|
|
|
4539
4622
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4540
4623
|
platforms: [ 'rn' ],
|
|
4541
4624
|
type: 'state',
|
|
4542
|
-
values: [ true ]
|
|
4625
|
+
values: [ true, false ]
|
|
4543
4626
|
}
|
|
4544
4627
|
},
|
|
4545
4628
|
rules: [
|
|
@@ -4562,6 +4645,8 @@ module.exports = {
|
|
|
4562
4645
|
buttonPaddingRight: 16,
|
|
4563
4646
|
buttonRadius: 32,
|
|
4564
4647
|
detailsContainerPadding: 8,
|
|
4648
|
+
labelFontName: 'HelveticaNow',
|
|
4649
|
+
labelFontWeight: '700',
|
|
4565
4650
|
playIcon: PaletteIconPlaySolid,
|
|
4566
4651
|
playIconColor: '#ffffff',
|
|
4567
4652
|
playIconContainerBackground: '#2b8000'
|
|
@@ -4670,18 +4755,18 @@ module.exports = {
|
|
|
4670
4755
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
4671
4756
|
platforms: [ 'rn' ],
|
|
4672
4757
|
type: 'state',
|
|
4673
|
-
values: [ true ]
|
|
4758
|
+
values: [ true, false ]
|
|
4674
4759
|
},
|
|
4675
4760
|
hover: {
|
|
4676
4761
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4677
4762
|
platforms: [ 'rn' ],
|
|
4678
4763
|
type: 'state',
|
|
4679
|
-
values: [ true ]
|
|
4764
|
+
values: [ true, false ]
|
|
4680
4765
|
},
|
|
4681
4766
|
pressed: {
|
|
4682
4767
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4683
4768
|
type: 'state',
|
|
4684
|
-
values: [ true ]
|
|
4769
|
+
values: [ true, false ]
|
|
4685
4770
|
}
|
|
4686
4771
|
},
|
|
4687
4772
|
rules: [
|
|
@@ -4783,23 +4868,23 @@ module.exports = {
|
|
|
4783
4868
|
focus: {
|
|
4784
4869
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4785
4870
|
type: 'state',
|
|
4786
|
-
values: [ true ]
|
|
4871
|
+
values: [ true, false ]
|
|
4787
4872
|
},
|
|
4788
4873
|
hover: {
|
|
4789
4874
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4790
4875
|
type: 'state',
|
|
4791
|
-
values: [ true ]
|
|
4876
|
+
values: [ true, false ]
|
|
4792
4877
|
},
|
|
4793
4878
|
inverse: { type: 'variant', values: [ true ] },
|
|
4794
4879
|
pressed: {
|
|
4795
4880
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4796
4881
|
type: 'state',
|
|
4797
|
-
values: [ true ]
|
|
4882
|
+
values: [ true, false ]
|
|
4798
4883
|
},
|
|
4799
4884
|
selected: {
|
|
4800
4885
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4801
4886
|
type: 'state',
|
|
4802
|
-
values: [ true ]
|
|
4887
|
+
values: [ true, false ]
|
|
4803
4888
|
}
|
|
4804
4889
|
},
|
|
4805
4890
|
rules: [
|
|
@@ -4914,13 +4999,13 @@ module.exports = {
|
|
|
4914
4999
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
4915
5000
|
platforms: [ 'rn' ],
|
|
4916
5001
|
type: 'state',
|
|
4917
|
-
values: [ true ]
|
|
5002
|
+
values: [ true, false ]
|
|
4918
5003
|
},
|
|
4919
5004
|
hover: {
|
|
4920
5005
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4921
5006
|
platforms: [ 'rn' ],
|
|
4922
5007
|
type: 'state',
|
|
4923
|
-
values: [ true ]
|
|
5008
|
+
values: [ true, false ]
|
|
4924
5009
|
},
|
|
4925
5010
|
inactive: {
|
|
4926
5011
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -4930,7 +5015,7 @@ module.exports = {
|
|
|
4930
5015
|
pressed: {
|
|
4931
5016
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4932
5017
|
type: 'state',
|
|
4933
|
-
values: [ true ]
|
|
5018
|
+
values: [ true, false ]
|
|
4934
5019
|
},
|
|
4935
5020
|
selected: {
|
|
4936
5021
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -5118,7 +5203,7 @@ module.exports = {
|
|
|
5118
5203
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
5119
5204
|
platforms: [ 'rn' ],
|
|
5120
5205
|
type: 'state',
|
|
5121
|
-
values: [ true ]
|
|
5206
|
+
values: [ true, false ]
|
|
5122
5207
|
},
|
|
5123
5208
|
inactive: {
|
|
5124
5209
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -5236,7 +5321,7 @@ module.exports = {
|
|
|
5236
5321
|
connectorWidth: 1,
|
|
5237
5322
|
dotBorderWidth: 1,
|
|
5238
5323
|
dotColor: '#ffffff',
|
|
5239
|
-
dotWidth:
|
|
5324
|
+
dotWidth: 14,
|
|
5240
5325
|
itemContentFlexSize: 1,
|
|
5241
5326
|
itemContentMarginBottom: 32,
|
|
5242
5327
|
itemContentMarginRight: 0,
|
|
@@ -5247,6 +5332,7 @@ module.exports = {
|
|
|
5247
5332
|
lineItemMarginBottom: 0,
|
|
5248
5333
|
lineItemMarginRight: 24,
|
|
5249
5334
|
timelineColor: '#676e73',
|
|
5335
|
+
timelineConnectorColor: '#676e73',
|
|
5250
5336
|
timelineContainerDirection: 'column'
|
|
5251
5337
|
}
|
|
5252
5338
|
},
|
|
@@ -5292,13 +5378,13 @@ module.exports = {
|
|
|
5292
5378
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
5293
5379
|
platforms: [ 'rn' ],
|
|
5294
5380
|
type: 'state',
|
|
5295
|
-
values: [ true ]
|
|
5381
|
+
values: [ true, false ]
|
|
5296
5382
|
},
|
|
5297
5383
|
hover: {
|
|
5298
5384
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
5299
5385
|
platforms: [ 'rn' ],
|
|
5300
5386
|
type: 'state',
|
|
5301
|
-
values: [ true ]
|
|
5387
|
+
values: [ true, false ]
|
|
5302
5388
|
},
|
|
5303
5389
|
inactive: {
|
|
5304
5390
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -5308,7 +5394,7 @@ module.exports = {
|
|
|
5308
5394
|
pressed: {
|
|
5309
5395
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
5310
5396
|
type: 'state',
|
|
5311
|
-
values: [ true ]
|
|
5397
|
+
values: [ true, false ]
|
|
5312
5398
|
},
|
|
5313
5399
|
selected: {
|
|
5314
5400
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -5481,19 +5567,19 @@ module.exports = {
|
|
|
5481
5567
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
5482
5568
|
platforms: [ 'rn' ],
|
|
5483
5569
|
type: 'state',
|
|
5484
|
-
values: [ true ]
|
|
5570
|
+
values: [ true, false ]
|
|
5485
5571
|
},
|
|
5486
5572
|
hover: {
|
|
5487
5573
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
5488
5574
|
platforms: [ 'rn' ],
|
|
5489
5575
|
type: 'state',
|
|
5490
|
-
values: [ true ]
|
|
5576
|
+
values: [ true, false ]
|
|
5491
5577
|
},
|
|
5492
5578
|
inverse: { type: 'variant', values: [ true ] },
|
|
5493
5579
|
pressed: {
|
|
5494
5580
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
5495
5581
|
type: 'state',
|
|
5496
|
-
values: [ true ]
|
|
5582
|
+
values: [ true, false ]
|
|
5497
5583
|
}
|
|
5498
5584
|
},
|
|
5499
5585
|
rules: [
|
|
@@ -5860,10 +5946,28 @@ module.exports = {
|
|
|
5860
5946
|
},
|
|
5861
5947
|
VideoButton: { appearances: {}, rules: [], tokens: { color: '#ffffff' } },
|
|
5862
5948
|
VideoControlBar: {
|
|
5863
|
-
appearances: {
|
|
5864
|
-
|
|
5949
|
+
appearances: {
|
|
5950
|
+
viewport: {
|
|
5951
|
+
description: 'The size label for the current screen viewport based on the current screen width',
|
|
5952
|
+
type: 'state',
|
|
5953
|
+
values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
|
|
5954
|
+
}
|
|
5955
|
+
},
|
|
5956
|
+
rules: [
|
|
5957
|
+
{
|
|
5958
|
+
if: { viewport: [ 'xs', 'sm' ] },
|
|
5959
|
+
tokens: {
|
|
5960
|
+
height: 40,
|
|
5961
|
+
paddingBottom: 8,
|
|
5962
|
+
paddingLeft: 16,
|
|
5963
|
+
paddingRight: 16,
|
|
5964
|
+
paddingTop: 8
|
|
5965
|
+
}
|
|
5966
|
+
}
|
|
5967
|
+
],
|
|
5865
5968
|
tokens: {
|
|
5866
5969
|
captionsIcon: PaletteIconClosedCaptions,
|
|
5970
|
+
height: 56,
|
|
5867
5971
|
maximizeIcon: PaletteIconFullscreenExpand,
|
|
5868
5972
|
menuBottom: 64,
|
|
5869
5973
|
menuMarginLeft: 16,
|
|
@@ -5871,9 +5975,7 @@ module.exports = {
|
|
|
5871
5975
|
minimizeIcon: PaletteIconFullscreenMinimize,
|
|
5872
5976
|
paddingBottom: 16,
|
|
5873
5977
|
paddingLeft: 48,
|
|
5874
|
-
paddingLeftCompactMode: 16,
|
|
5875
5978
|
paddingRight: 48,
|
|
5876
|
-
paddingRightCompactMode: 16,
|
|
5877
5979
|
paddingTop: 16,
|
|
5878
5980
|
settingsIcon: PaletteIconSettingsSolid
|
|
5879
5981
|
}
|
|
@@ -6040,5 +6142,5 @@ module.exports = {
|
|
|
6040
6142
|
tokens: { size: 96 }
|
|
6041
6143
|
}
|
|
6042
6144
|
},
|
|
6043
|
-
metadata: { name: 'theme-allium', themeTokensVersion: '2.
|
|
6145
|
+
metadata: { name: 'theme-allium', themeTokensVersion: '2.35.0' }
|
|
6044
6146
|
}
|