@telus-uds/theme-allium 3.1.1 → 3.1.2
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/CHANGELOG.json +16 -1
- package/CHANGELOG.md +10 -2
- package/build/theme.js +10 -1
- package/package.json +1 -1
- package/theme.json +26 -0
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@telus-uds/theme-allium",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Tue, 17 May 2022 21:01:00 GMT",
|
|
6
|
+
"tag": "@telus-uds/theme-allium_v3.1.2",
|
|
7
|
+
"version": "3.1.2",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "alan.slater@nearform.com",
|
|
12
|
+
"package": "@telus-uds/theme-allium",
|
|
13
|
+
"commit": "292882154db8d38cf76bf5aa5539f52e28071924",
|
|
14
|
+
"comment": "Editted auto-generated change summary (does not include documentation changes) **inserted:** `components.RadioCard.rules.5.if.checked`, `components.RadioCard.rules.6.if.checked`, `components.RadioCard.rules.6.if.pressed`, `components.RadioCard.rules.6.tokens.borderColor`, `components.RadioCard.rules.7.if.checked`, `components.RadioCard.rules.7.if.hover`, `components.RadioCard.rules.7.tokens.borderColor`"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Thu, 28 Apr 2022 18:39:06 GMT",
|
|
6
21
|
"tag": "@telus-uds/theme-allium_v3.1.1",
|
|
7
22
|
"version": "3.1.1",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - @telus-uds/theme-allium
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 17 May 2022 21:01:00 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 3.1.2
|
|
8
|
+
|
|
9
|
+
Tue, 17 May 2022 21:01:00 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Editted auto-generated change summary (does not include documentation changes) **inserted:** `components.RadioCard.rules.5.if.checked`, `components.RadioCard.rules.6.if.checked`, `components.RadioCard.rules.6.if.pressed`, `components.RadioCard.rules.6.tokens.borderColor`, `components.RadioCard.rules.7.if.checked`, `components.RadioCard.rules.7.if.hover`, `components.RadioCard.rules.7.tokens.borderColor` (alan.slater@nearform.com)
|
|
14
|
+
|
|
7
15
|
## 3.1.1
|
|
8
16
|
|
|
9
|
-
Thu, 28 Apr 2022 18:
|
|
17
|
+
Thu, 28 Apr 2022 18:39:06 GMT
|
|
10
18
|
|
|
11
19
|
### Patches
|
|
12
20
|
|
package/build/theme.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Tue, 17 May 2022 20:59:58 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -1675,6 +1675,15 @@ module.exports = {
|
|
|
1675
1675
|
radioInputBorderColor: 'rgba(0, 0, 0, 0)'
|
|
1676
1676
|
}
|
|
1677
1677
|
},
|
|
1678
|
+
{ if: { checked: true }, tokens: { borderColor: '#7c53a5' } },
|
|
1679
|
+
{
|
|
1680
|
+
if: { checked: true, pressed: true },
|
|
1681
|
+
tokens: { borderColor: '#4b286d' }
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
if: { checked: true, hover: true },
|
|
1685
|
+
tokens: { borderColor: '#4b286d' }
|
|
1686
|
+
},
|
|
1678
1687
|
{
|
|
1679
1688
|
if: { error: true },
|
|
1680
1689
|
tokens: {
|
package/package.json
CHANGED
package/theme.json
CHANGED
|
@@ -2110,6 +2110,32 @@
|
|
|
2110
2110
|
"radioInputBorderColor": "{palette.color.transparent}"
|
|
2111
2111
|
}
|
|
2112
2112
|
},
|
|
2113
|
+
{
|
|
2114
|
+
"if": {
|
|
2115
|
+
"checked": true
|
|
2116
|
+
},
|
|
2117
|
+
"tokens": {
|
|
2118
|
+
"borderColor": "{palette.color.purpleDeluge}"
|
|
2119
|
+
}
|
|
2120
|
+
},
|
|
2121
|
+
{
|
|
2122
|
+
"if": {
|
|
2123
|
+
"checked": true,
|
|
2124
|
+
"pressed": true
|
|
2125
|
+
},
|
|
2126
|
+
"tokens": {
|
|
2127
|
+
"borderColor": "{palette.color.purpleTelus}"
|
|
2128
|
+
}
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"if": {
|
|
2132
|
+
"checked": true,
|
|
2133
|
+
"hover": true
|
|
2134
|
+
},
|
|
2135
|
+
"tokens": {
|
|
2136
|
+
"borderColor": "{palette.color.purpleTelus}"
|
|
2137
|
+
}
|
|
2138
|
+
},
|
|
2113
2139
|
{
|
|
2114
2140
|
"if": {
|
|
2115
2141
|
"error": true
|