@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/rn/theme.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  *
3
3
  * Do not edit directly
4
- * Generated on Fri, 01 Dec 2023 20:56:07 GMT
4
+ * Generated on Mon, 08 Jan 2024 20:06:45 GMT
5
5
  *
6
6
  */
7
7
 
@@ -53,6 +53,6 @@ module.exports = {
53
53
  },
54
54
  metadata: {
55
55
  name: 'themes-community.theme-allium',
56
- themeTokensVersion: '2.47.0'
56
+ themeTokensVersion: '2.49.0'
57
57
  }
58
58
  }
@@ -0,0 +1,46 @@
1
+ /*
2
+ *
3
+ * Do not edit directly
4
+ * Generated on Mon, 08 Jan 2024 20:06:57 GMT
5
+ *
6
+ */
7
+
8
+
9
+ const theme = {
10
+ appearances: {
11
+ focus: { type: 'state', values: [ true, false ] },
12
+ hover: { type: 'state', values: [ true, false ] },
13
+ pressed: { type: 'state', values: [ true, false ] }
14
+ },
15
+ rules: [
16
+ { if: { hover: true }, tokens: { borderWidth: 2 } },
17
+ { if: { pressed: true }, tokens: { backgroundColor: '#f4f4f7' } },
18
+ {
19
+ if: { focus: true },
20
+ tokens: {
21
+ outerBorderColor: '#676e73',
22
+ outerBorderGap: 2,
23
+ outerBorderWidth: 2
24
+ }
25
+ }
26
+ ],
27
+ tokens: {
28
+ backgroundColor: '#ffffff',
29
+ borderColor: '#e3e6e8',
30
+ borderRadius: 6,
31
+ borderWidth: 1,
32
+ contentAlignItems: 'stretch',
33
+ contentFlexGrow: 0,
34
+ contentFlexShrink: 1,
35
+ contentJustifyContent: 'flex-start',
36
+ outerBorderColor: 'rgba(0, 0, 0, 0)',
37
+ outerBorderGap: 0,
38
+ outerBorderWidth: 0,
39
+ paddingBottom: 0,
40
+ paddingLeft: 0,
41
+ paddingRight: 0,
42
+ paddingTop: 0,
43
+ shadow: null
44
+ }
45
+ }
46
+ export default theme
@@ -0,0 +1,10 @@
1
+ /*
2
+ *
3
+ * Do not edit directly
4
+ * Generated on Mon, 08 Jan 2024 20:06:57 GMT
5
+ *
6
+ */
7
+
8
+
9
+ const theme = { appearances: {}, rules: [], tokens: {} }
10
+ export default theme
@@ -0,0 +1,4 @@
1
+ export { default as ContentCard } from './ContentCard'
2
+ export { default as StickyNavigationBar } from './StickyNavigationBar'
3
+ export const metadata = { name: 'themes-community.theme-allium', themeTokensVersion: '2.49.0'}
4
+ export { default } from './theme'