@telus-uds/themes-community.theme-allium 0.1.47 → 0.1.49
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/ContentCard.json +87 -0
- package/build/android/StickyNavigationBar.json +5 -0
- package/build/android/schema.json +1139 -943
- package/build/android/theme.json +1 -1
- package/build/ios/ContentCard.json +87 -0
- package/build/ios/StickyNavigationBar.json +5 -0
- package/build/ios/schema.json +1139 -943
- package/build/ios/theme.json +1 -1
- package/build/rn/ContentCard.js +46 -0
- package/build/rn/StickyNavigationBar.js +10 -0
- package/build/rn/schema.json +1139 -943
- package/build/rn/theme.js +2 -2
- package/build/web/ContentCard.js +46 -0
- package/build/web/StickyNavigationBar.js +10 -0
- package/build/web/index.js +4 -0
- package/build/web/schema.json +18609 -0
- package/build/web/theme.js +58 -0
- package/package.json +2 -2
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"appearances": {
|
|
3
|
+
"focus": {
|
|
4
|
+
"type": "state",
|
|
5
|
+
"values": [true, false]
|
|
6
|
+
},
|
|
7
|
+
"hover": {
|
|
8
|
+
"type": "state",
|
|
9
|
+
"values": [true, false]
|
|
10
|
+
},
|
|
11
|
+
"pressed": {
|
|
12
|
+
"type": "state",
|
|
13
|
+
"values": [true, false]
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"rules": [
|
|
17
|
+
{
|
|
18
|
+
"if": {
|
|
19
|
+
"hover": true
|
|
20
|
+
},
|
|
21
|
+
"tokens": {
|
|
22
|
+
"borderWidth": 2
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"if": {
|
|
27
|
+
"pressed": true
|
|
28
|
+
},
|
|
29
|
+
"tokens": {
|
|
30
|
+
"backgroundColor": {
|
|
31
|
+
"red": 0.95686,
|
|
32
|
+
"green": 0.95686,
|
|
33
|
+
"blue": 0.96863,
|
|
34
|
+
"alpha": 1
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"if": {
|
|
40
|
+
"focus": true
|
|
41
|
+
},
|
|
42
|
+
"tokens": {
|
|
43
|
+
"outerBorderColor": {
|
|
44
|
+
"red": 0.40392,
|
|
45
|
+
"green": 0.43137,
|
|
46
|
+
"blue": 0.45098,
|
|
47
|
+
"alpha": 1
|
|
48
|
+
},
|
|
49
|
+
"outerBorderGap": 2,
|
|
50
|
+
"outerBorderWidth": 2
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"tokens": {
|
|
55
|
+
"backgroundColor": {
|
|
56
|
+
"red": 1,
|
|
57
|
+
"green": 1,
|
|
58
|
+
"blue": 1,
|
|
59
|
+
"alpha": 1
|
|
60
|
+
},
|
|
61
|
+
"borderColor": {
|
|
62
|
+
"red": 0.8902,
|
|
63
|
+
"green": 0.90196,
|
|
64
|
+
"blue": 0.9098,
|
|
65
|
+
"alpha": 1
|
|
66
|
+
},
|
|
67
|
+
"borderRadius": 6,
|
|
68
|
+
"borderWidth": 1,
|
|
69
|
+
"contentAlignItems": "stretch",
|
|
70
|
+
"contentFlexGrow": 0,
|
|
71
|
+
"contentFlexShrink": 1,
|
|
72
|
+
"contentJustifyContent": "flex-start",
|
|
73
|
+
"outerBorderColor": {
|
|
74
|
+
"red": 0,
|
|
75
|
+
"green": 0,
|
|
76
|
+
"blue": 0,
|
|
77
|
+
"alpha": 0
|
|
78
|
+
},
|
|
79
|
+
"outerBorderGap": 0,
|
|
80
|
+
"outerBorderWidth": 0,
|
|
81
|
+
"paddingBottom": 0,
|
|
82
|
+
"paddingLeft": 0,
|
|
83
|
+
"paddingRight": 0,
|
|
84
|
+
"paddingTop": 0,
|
|
85
|
+
"shadow": null
|
|
86
|
+
}
|
|
87
|
+
}
|