@telus-uds/components-community.content-card 4.0.0-alpha.0 → 4.0.0-alpha.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.md CHANGED
@@ -1,12 +1,48 @@
1
1
  # Change Log - @telus-uds/components-community.content-card
2
2
 
3
- This log was last generated on Fri, 20 Mar 2026 02:26:39 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 17 Apr 2026 23:54:33 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 4.0.0-alpha.2
8
+
9
+ Fri, 17 Apr 2026 23:54:33 GMT
10
+
11
+ ### Patches
12
+
13
+ - Bump @telus-uds/components-base to v4.0.0-alpha.2
14
+ - Bump @telus-uds/system-theme-tokens to v5.0.0-alpha.2
15
+
16
+ ## 3.2.22
17
+
18
+ Thu, 16 Apr 2026 21:04:34 GMT
19
+
20
+ ### Patches
21
+
22
+ - Bump @telus-uds/components-base to v3.30.0
23
+ - Bump @telus-uds/system-theme-tokens to v4.21.0
24
+
25
+ ## 4.0.0-alpha.1
26
+
27
+ Fri, 10 Apr 2026 17:20:02 GMT
28
+
29
+ ### Major changes
30
+
31
+ - `Card`: update alternative to feature2 style variant (sergio.ramirez@telus.com)
32
+ - Bump @telus-uds/components-base to v4.0.0-alpha.1
33
+ - Bump @telus-uds/system-theme-tokens to v5.0.0-alpha.1
34
+
35
+ ## 3.2.21
36
+
37
+ Mon, 06 Apr 2026 21:25:56 GMT
38
+
39
+ ### Patches
40
+
41
+ - Bump @telus-uds/components-base to v3.29.1
42
+
7
43
  ## 4.0.0-alpha.0
8
44
 
9
- Fri, 20 Mar 2026 02:26:39 GMT
45
+ Fri, 20 Mar 2026 00:57:29 GMT
10
46
 
11
47
  ### Major changes
12
48
 
package/jest.config.cjs CHANGED
@@ -8,7 +8,10 @@ module.exports = {
8
8
  color: 'blue'
9
9
  },
10
10
  testEnvironment: 'jsdom',
11
- setupFiles: preset.setupFiles,
11
+ setupFiles: [
12
+ ...preset.setupFiles.filter((file) => !file.match(/[\\/]react-native[\\/]jest[\\/]/)),
13
+ '<rootDir>/../../__tests__/jest-jsdom-fix.js'
14
+ ],
12
15
  transform: {
13
16
  '.(js|jsx)$': ['babel-jest', { cwd: __dirname }]
14
17
  },
package/package.json CHANGED
@@ -6,11 +6,11 @@
6
6
  "dependencies": {
7
7
  "prop-types": "^15.7.2",
8
8
  "react-native": "^0.81.0",
9
- "@telus-uds/components-base": "^4.0.0-alpha.0"
9
+ "@telus-uds/components-base": "^4.0.0-alpha.2"
10
10
  },
11
11
  "devDependencies": {
12
12
  "@telus-uds/browserslist-config": "^1.0.5",
13
- "@telus-uds/system-theme-tokens": "^5.0.0-alpha.0",
13
+ "@telus-uds/system-theme-tokens": "^5.0.0-alpha.2",
14
14
  "@testing-library/react-native": "^13.3.3",
15
15
  "babel-plugin-react-native-web": "^0.21.2",
16
16
  "babel-plugin-styled-components": "^2.0.6",
@@ -44,5 +44,5 @@
44
44
  "standard-engine": {
45
45
  "skip": true
46
46
  },
47
- "version": "4.0.0-alpha.0"
47
+ "version": "4.0.0-alpha.2"
48
48
  }