@telus-uds/themes-community.theme-allium 1.2.0 → 2.0.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.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,13 +1,12 @@
1
1
  /*
2
2
  *
3
3
  * Do not edit directly
4
- * Generated on Thu, 31 Oct 2024 05:01:06 GMT
4
+ * Generated on Fri, 22 Nov 2024 23:14:06 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 Thu, 31 Oct 2024 05:01:06 GMT
4
+ * Generated on Fri, 22 Nov 2024 23:14:06 GMT
5
5
  *
6
6
  */
7
7
 
8
- const PaletteIconLinkExternal = require('@telus-uds/palette-allium/build/rn/icons/LinkExternal')
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
File without changes
package/build/rn/theme.js CHANGED
@@ -1,13 +1,12 @@
1
1
  /*
2
2
  *
3
3
  * Do not edit directly
4
- * Generated on Thu, 31 Oct 2024 05:01:06 GMT
4
+ * Generated on Fri, 22 Nov 2024 23:14:06 GMT
5
5
  *
6
6
  */
7
7
 
8
- const PaletteIconLinkExternal = require('@telus-uds/palette-allium/build/rn/icons/LinkExternal')
9
-
10
- module.exports = {
8
+ import PaletteIconLinkExternal from '@telus-uds/palette-allium/build/rn/icons/LinkExternal'
9
+ const theme = {
11
10
  components: {
12
11
  ContentCard: {
13
12
  appearances: {
@@ -126,3 +125,4 @@ module.exports = {
126
125
  themeTokensVersion: '2.66.0'
127
126
  }
128
127
  }
128
+ export default theme
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  *
3
3
  * Do not edit directly
4
- * Generated on Thu, 31 Oct 2024 05:01:23 GMT
4
+ * Generated on Fri, 22 Nov 2024 23:14:07 GMT
5
5
  *
6
6
  */
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  *
3
3
  * Do not edit directly
4
- * Generated on Thu, 31 Oct 2024 05:01:23 GMT
4
+ * Generated on Fri, 22 Nov 2024 23:14:07 GMT
5
5
  *
6
6
  */
7
7
 
File without changes
File without changes
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  *
3
3
  * Do not edit directly
4
- * Generated on Thu, 31 Oct 2024 05:01:23 GMT
4
+ * Generated on Fri, 22 Nov 2024 23:14:07 GMT
5
5
  *
6
6
  */
7
7
 
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "author": "TELUS Digital",
3
+ "type": "module",
3
4
  "bugs": {
4
5
  "url": "https://github.com/telus/universal-design-system/issues"
5
6
  },
6
7
  "description": "Sample theme",
7
8
  "devDependencies": {
8
9
  "@telus-uds/palette-allium": "*",
9
- "@telus-uds/system-theme-tokens": "^2.66.0"
10
+ "@telus-uds/system-theme-tokens": "^3.0.0"
10
11
  },
11
12
  "files": [
12
13
  "build",
@@ -15,6 +16,14 @@
15
16
  "homepage": "https://github.com/telus/universal-design-system#readme",
16
17
  "license": "MIT",
17
18
  "main": "build/rn/theme.js",
19
+ "exports": {
20
+ ".": {
21
+ "import": "./build/rn/theme.js",
22
+ "default": "./build/rn/theme.js"
23
+ },
24
+ "./package.json": "./package.json",
25
+ "./build/*": "./build/*"
26
+ },
18
27
  "name": "@telus-uds/themes-community.theme-allium",
19
28
  "repository": {
20
29
  "type": "git",
@@ -25,5 +34,5 @@
25
34
  "build": "UDS_PALETTE=@telus-uds/palette-allium system-tokens-build-subtheme",
26
35
  "dev": "nodemon -w src -x 'npm run build'"
27
36
  },
28
- "version": "1.2.0"
37
+ "version": "2.0.0"
29
38
  }