@telus-uds/themes-community.theme-allium 1.2.0 → 2.0.1
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 +0 -0
- package/build/android/StickyNavigationBarTabs.json +0 -0
- package/build/android/schema.json +1032 -1032
- package/build/android/theme.json +1 -1
- package/build/ios/ContentCard.json +0 -0
- package/build/ios/StickyNavigationBarTabs.json +0 -0
- package/build/ios/schema.json +1032 -1032
- package/build/ios/theme.json +1 -1
- package/build/rn/ContentCard.js +3 -3
- package/build/rn/StickyNavigationBarTabs.js +4 -4
- package/build/rn/schema.json +1032 -1032
- package/build/rn/theme.js +5 -5
- package/build/web/ContentCard.js +1 -1
- package/build/web/StickyNavigationBarTabs.js +1 -1
- package/build/web/index.js +1 -1
- package/build/web/schema.json +1032 -1032
- package/build/web/theme.js +2 -2
- package/package.json +11 -2
package/build/ios/theme.json
CHANGED
package/build/rn/ContentCard.js
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Mon, 25 Nov 2024 16:23:41 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
module.exports = {
|
|
9
|
+
const theme = {
|
|
11
10
|
appearances: {
|
|
12
11
|
focus: { type: 'state', values: [ true, false ] },
|
|
13
12
|
hover: { type: 'state', values: [ true, false ] },
|
|
@@ -44,3 +43,4 @@ module.exports = {
|
|
|
44
43
|
shadow: null
|
|
45
44
|
}
|
|
46
45
|
}
|
|
46
|
+
export default theme
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Mon, 25 Nov 2024 16:23:41 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
module.exports = {
|
|
8
|
+
import PaletteIconLinkExternal from '@telus-uds/palette-allium/build/rn/icons/LinkExternal'
|
|
9
|
+
const theme = {
|
|
11
10
|
appearances: {
|
|
12
11
|
focus: {
|
|
13
12
|
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.",
|
|
@@ -78,3 +77,4 @@ module.exports = {
|
|
|
78
77
|
textLineStyle: 'solid'
|
|
79
78
|
}
|
|
80
79
|
}
|
|
80
|
+
export default theme
|