@telus-uds/components-community.content-card 3.2.19 → 3.2.21
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 +17 -1
- package/jest.config.cjs +4 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
# Change Log - @telus-uds/components-community.content-card
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Mon, 06 Apr 2026 21:25:56 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 3.2.21
|
|
8
|
+
|
|
9
|
+
Mon, 06 Apr 2026 21:25:56 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Bump @telus-uds/components-base to v3.29.1
|
|
14
|
+
|
|
15
|
+
## 3.2.20
|
|
16
|
+
|
|
17
|
+
Fri, 13 Mar 2026 20:33:41 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Bump @telus-uds/components-base to v3.29.0
|
|
22
|
+
|
|
7
23
|
## 3.2.19
|
|
8
24
|
|
|
9
25
|
Tue, 03 Mar 2026 23:02:55 GMT
|
package/jest.config.cjs
CHANGED
|
@@ -8,7 +8,10 @@ module.exports = {
|
|
|
8
8
|
color: 'blue'
|
|
9
9
|
},
|
|
10
10
|
testEnvironment: 'jsdom',
|
|
11
|
-
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,7 +6,7 @@
|
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"prop-types": "^15.7.2",
|
|
8
8
|
"react-native": "^0.74.5",
|
|
9
|
-
"@telus-uds/components-base": "^3.
|
|
9
|
+
"@telus-uds/components-base": "^3.29.1"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@telus-uds/browserslist-config": "^1.0.5",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"standard-engine": {
|
|
45
45
|
"skip": true
|
|
46
46
|
},
|
|
47
|
-
"version": "3.2.
|
|
47
|
+
"version": "3.2.21"
|
|
48
48
|
}
|