@comicrelief/component-library 7.9.1 → 7.10.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.
- package/dist/components/Molecules/CardDs/CardDs.js +3 -3
- package/dist/components/Molecules/CardDs/__snapshots__/CardDs.test.js.snap +2 -2
- package/dist/utils/whiteListed.js +1 -1
- package/package.json +1 -1
- package/src/components/Molecules/CardDs/CardDs.js +4 -4
- package/src/components/Molecules/CardDs/__snapshots__/CardDs.test.js.snap +2 -2
- package/src/utils/whiteListed.js +2 -1
|
@@ -45,7 +45,7 @@ var Container = _styledComponents.default.div.withConfig({
|
|
|
45
45
|
var Image = _styledComponents.default.div.withConfig({
|
|
46
46
|
displayName: "CardDs__Image",
|
|
47
47
|
componentId: "sc-mayd3d-1"
|
|
48
|
-
})(["height:auto;margin:0 -", " 0 ", ";img{border-radius:
|
|
48
|
+
})(["height:auto;margin:0 -", " 0 ", ";img{border-radius:", ";box-shadow:0 0 ", " rgba(0,0,0,0.15);}"], (0, _spacing.default)('m'), (0, _spacing.default)('m'), (0, _spacing.default)('md'), (0, _spacing.default)('md'));
|
|
49
49
|
|
|
50
50
|
var MediaLink = _styledComponents.default.a.withConfig({
|
|
51
51
|
displayName: "CardDs__MediaLink",
|
|
@@ -61,10 +61,10 @@ var MediaLink = _styledComponents.default.a.withConfig({
|
|
|
61
61
|
var Copy = _styledComponents.default.div.withConfig({
|
|
62
62
|
displayName: "CardDs__Copy",
|
|
63
63
|
componentId: "sc-mayd3d-3"
|
|
64
|
-
})(["padding:", ";", ";display:flex;flex-direction:column;border-radius:
|
|
64
|
+
})(["padding:", ";", ";display:flex;flex-direction:column;border-radius:", ";box-shadow:0 0 ", " rgba(0,0,0,0.15);background:", ";width:100%;@media ", "{height:100%;}", ";", ";"], (0, _spacing.default)('l'), function (_ref6) {
|
|
65
65
|
var hasLink = _ref6.hasLink;
|
|
66
66
|
return hasLink && "padding-bottom: ".concat((0, _spacing.default)('xl'));
|
|
67
|
-
}, function (_ref7) {
|
|
67
|
+
}, (0, _spacing.default)('md'), (0, _spacing.default)('md'), function (_ref7) {
|
|
68
68
|
var theme = _ref7.theme,
|
|
69
69
|
backgroundColor = _ref7.backgroundColor;
|
|
70
70
|
return theme.color(backgroundColor);
|
|
@@ -82,7 +82,7 @@ exports[`renders correctly 1`] = `
|
|
|
82
82
|
|
|
83
83
|
.c2 img {
|
|
84
84
|
border-radius: 1rem;
|
|
85
|
-
box-shadow:
|
|
85
|
+
box-shadow: 0 0 1rem rgba(0,0,0,0.15);
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
.c1 {
|
|
@@ -100,7 +100,7 @@ exports[`renders correctly 1`] = `
|
|
|
100
100
|
-ms-flex-direction: column;
|
|
101
101
|
flex-direction: column;
|
|
102
102
|
border-radius: 1rem;
|
|
103
|
-
box-shadow:
|
|
103
|
+
box-shadow: 0 0 1rem rgba(0,0,0,0.15);
|
|
104
104
|
background: #FFFFFF;
|
|
105
105
|
width: 100%;
|
|
106
106
|
z-index: 1;
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
var whiteList = ['https://giftaid.comicrelief.com', 'https://donation.comicrelief.com', 'https://www.comicrelief.com', 'https://www.sportrelief.com', 'https://app.beapplied.com/org/comic-relief'];
|
|
7
|
+
var whiteList = ['https://giftaid.comicrelief.com', 'https://donation.comicrelief.com', 'https://www.comicrelief.com', 'https://www.sportrelief.com', 'https://app.beapplied.com/org/comic-relief', 'http://stories.comicrelief.com'];
|
|
8
8
|
|
|
9
9
|
var whiteListed = function whiteListed(url) {
|
|
10
10
|
if (url !== undefined && url !== null && whiteList.some(function (v) {
|
package/package.json
CHANGED
|
@@ -27,8 +27,8 @@ const Image = styled.div`
|
|
|
27
27
|
margin: 0 -${spacing('m')} 0 ${spacing('m')};
|
|
28
28
|
|
|
29
29
|
img {
|
|
30
|
-
border-radius:
|
|
31
|
-
box-shadow:
|
|
30
|
+
border-radius: ${spacing('md')};
|
|
31
|
+
box-shadow: 0 0 ${spacing('md')} rgba(0, 0, 0, 0.15);
|
|
32
32
|
}
|
|
33
33
|
`;
|
|
34
34
|
|
|
@@ -47,8 +47,8 @@ const Copy = styled.div`
|
|
|
47
47
|
${({ hasLink }) => hasLink && `padding-bottom: ${spacing('xl')}`};
|
|
48
48
|
display: flex;
|
|
49
49
|
flex-direction: column;
|
|
50
|
-
border-radius:
|
|
51
|
-
box-shadow:
|
|
50
|
+
border-radius: ${spacing('md')};
|
|
51
|
+
box-shadow: 0 0 ${spacing('md')} rgba(0, 0, 0, 0.15);
|
|
52
52
|
background: ${({ theme, backgroundColor }) => theme.color(backgroundColor)};
|
|
53
53
|
width: 100%;
|
|
54
54
|
@media ${({ theme }) => theme.breakpoint('large')} {
|
|
@@ -82,7 +82,7 @@ exports[`renders correctly 1`] = `
|
|
|
82
82
|
|
|
83
83
|
.c2 img {
|
|
84
84
|
border-radius: 1rem;
|
|
85
|
-
box-shadow:
|
|
85
|
+
box-shadow: 0 0 1rem rgba(0,0,0,0.15);
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
.c1 {
|
|
@@ -100,7 +100,7 @@ exports[`renders correctly 1`] = `
|
|
|
100
100
|
-ms-flex-direction: column;
|
|
101
101
|
flex-direction: column;
|
|
102
102
|
border-radius: 1rem;
|
|
103
|
-
box-shadow:
|
|
103
|
+
box-shadow: 0 0 1rem rgba(0,0,0,0.15);
|
|
104
104
|
background: #FFFFFF;
|
|
105
105
|
width: 100%;
|
|
106
106
|
z-index: 1;
|
package/src/utils/whiteListed.js
CHANGED
|
@@ -3,7 +3,8 @@ const whiteList = [
|
|
|
3
3
|
'https://donation.comicrelief.com',
|
|
4
4
|
'https://www.comicrelief.com',
|
|
5
5
|
'https://www.sportrelief.com',
|
|
6
|
-
'https://app.beapplied.com/org/comic-relief'
|
|
6
|
+
'https://app.beapplied.com/org/comic-relief',
|
|
7
|
+
'http://stories.comicrelief.com'
|
|
7
8
|
];
|
|
8
9
|
|
|
9
10
|
const whiteListed = url => {
|