@comicrelief/component-library 8.48.0 → 8.48.1

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.
Files changed (29) hide show
  1. package/dist/components/Atoms/Input/Input.md +1 -0
  2. package/dist/components/Molecules/Countdown/Countdown.js +12 -5
  3. package/dist/components/Molecules/Countdown/Countdown.md +1 -1
  4. package/dist/components/Organisms/Header/Nav/Nav.js +1 -1
  5. package/dist/components/Organisms/Header/data/data-extended.js +22 -22
  6. package/dist/components/Organisms/Header/data/data-live.js +1 -1
  7. package/dist/components/Organisms/Header/data/data.js +2 -2
  8. package/dist/components/Organisms/Header2025/Header2025.js +2 -2
  9. package/dist/components/Organisms/Header2025/Header2025.md +2 -2
  10. package/dist/components/Organisms/Header2025/HeaderNav2025/HeaderNav2025.js +1 -1
  11. package/dist/components/Organisms/Header2025/data/data-extended.js +23 -23
  12. package/dist/components/Organisms/Header2025/data/data-live--minimal.js +1 -1
  13. package/dist/components/Organisms/Header2025/data/data-live.js +2 -2
  14. package/dist/components/Organisms/Header2025/data/data.js +13 -13
  15. package/package.json +1 -1
  16. package/src/components/Atoms/Input/Input.md +1 -0
  17. package/src/components/Molecules/Countdown/Countdown.js +12 -5
  18. package/src/components/Molecules/Countdown/Countdown.md +1 -1
  19. package/src/components/Organisms/Header/Nav/Nav.js +2 -1
  20. package/src/components/Organisms/Header/data/data-extended.js +22 -22
  21. package/src/components/Organisms/Header/data/data-live.js +1 -1
  22. package/src/components/Organisms/Header/data/data.js +2 -2
  23. package/src/components/Organisms/Header2025/Header2025.js +5 -3
  24. package/src/components/Organisms/Header2025/Header2025.md +2 -2
  25. package/src/components/Organisms/Header2025/HeaderNav2025/HeaderNav2025.js +7 -4
  26. package/src/components/Organisms/Header2025/data/data-extended.js +23 -23
  27. package/src/components/Organisms/Header2025/data/data-live--minimal.js +1 -1
  28. package/src/components/Organisms/Header2025/data/data-live.js +2 -2
  29. package/src/components/Organisms/Header2025/data/data.js +13 -13
@@ -141,6 +141,7 @@ const ItalicText = styled(Text).attrs({weight: 'normal'})`
141
141
  <>
142
142
  <h4>Input with Description:</h4>
143
143
  <Input
144
+ name="input-with-description"
144
145
  placeholder="I have a description"
145
146
  type="text"
146
147
  label="My Great Input"
@@ -17,6 +17,7 @@ const Countdown = _ref => {
17
17
  endMessage = null,
18
18
  introMessage = null
19
19
  } = _ref;
20
+ const [thisEndDate, setThisEndDate] = (0, _react.useState)(null);
20
21
  const [countdownHasEnded, setCountdownHasEnded] = (0, _react.useState)(false);
21
22
  const [countdownTime, setCountdownTime] = (0, _react.useState)({
22
23
  days: '00',
@@ -24,11 +25,14 @@ const Countdown = _ref => {
24
25
  minutes: '00',
25
26
  seconds: '00'
26
27
  });
27
- const countDownDate = (0, _moment.default)(endDate);
28
+ (0, _react.useEffect)(() => {
29
+ const isoEndDate = new Date(endDate).toISOString();
30
+ setThisEndDate((0, _moment.default)(isoEndDate));
31
+ }, [endDate]);
28
32
  (0, _react.useEffect)(() => {
29
33
  const interval = setInterval(() => {
30
34
  const now = (0, _moment.default)();
31
- const timeRemaining = (0, _moment.default)(countDownDate - now);
35
+ const timeRemaining = (0, _moment.default)(thisEndDate - now);
32
36
  const days = timeRemaining.format('DDD');
33
37
  const hours = timeRemaining.format('HH');
34
38
  const minutes = timeRemaining.format('mm');
@@ -39,13 +43,16 @@ const Countdown = _ref => {
39
43
  minutes,
40
44
  seconds
41
45
  });
42
- if (countDownDate.diff(now, 'seconds') < 1) {
46
+ if (thisEndDate.diff(now, 'seconds') < 1) {
47
+ clearInterval(interval);
43
48
  setCountdownHasEnded(true);
44
49
  }
45
50
  }, 1000);
46
51
  return () => clearInterval(interval);
47
- }, [countDownDate]);
48
- if (countdownHasEnded) return endMessage;
52
+ }, [thisEndDate]);
53
+ if (countdownHasEnded) {
54
+ return endMessage;
55
+ }
49
56
  return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, introMessage, /*#__PURE__*/_react.default.createElement(_Countdown.Wrapper, null, /*#__PURE__*/_react.default.createElement(_Countdown.Digits, null, /*#__PURE__*/_react.default.createElement(_Text.default, {
50
57
  color: color,
51
58
  family: "Anton",
@@ -5,5 +5,5 @@ import Text from '../../Atoms/Text/Text';
5
5
  const intro = <Text tag="h2" size="xl">Hello</Text>;
6
6
  const end = <Text tag="h2" size="xl">Bye</Text>;
7
7
 
8
- <Countdown endDate="Jan 22, 2021 24:00:00" endMessage={end} introMessage={intro}/>
8
+ <Countdown endDate="Jan 16, 2026 10:30:00" endMessage={end} introMessage={intro}/>
9
9
  ```
@@ -73,7 +73,7 @@ const MainNav = _ref => {
73
73
 
74
74
  /* Determine which field represents our url path */
75
75
  let thisUrl = (0, _navHelper.NavHelper)(thisFirstChild);
76
- const relNoopener = !(0, _allowListed.default)(thisUrl) && 'noopener';
76
+ const relNoopener = !(0, _allowListed.default)(thisUrl) ? 'noopener' : 'false';
77
77
  const hasSubMenu = group.links && group.links.length > 1;
78
78
  const hasPopUp = hasSubMenu ? 'true' : null;
79
79
  thisUrl = (0, _internalLinkHelper.InternalLinkHelper)(thisUrl);
@@ -39,25 +39,25 @@ var _default = exports.default = {
39
39
  id: 'group2',
40
40
  links: [{
41
41
  title: 'Red Nose Day',
42
- path: 'https://www.comicrelief.com/rednoseday/schools',
42
+ path: 'https://www.comicrelief.com/rednoseday/schools#1',
43
43
  internal: {
44
44
  type: 'ContentfulPageLandingPage'
45
45
  }
46
46
  }, {
47
47
  title: 'The New Red Nose',
48
- path: 'https://www.comicrelief.com/rednoseday/schools',
48
+ path: 'https://www.comicrelief.com/rednoseday/schools#2',
49
49
  internal: {
50
50
  type: 'ContentfulPageLandingPage'
51
51
  }
52
52
  }, {
53
53
  title: 'Schools',
54
- path: 'https://www.comicrelief.com/rednoseday/schools',
54
+ path: 'https://www.comicrelief.com/rednoseday/schools#3',
55
55
  internal: {
56
56
  type: 'ContentfulPageLandingPage'
57
57
  }
58
58
  }, {
59
59
  title: 'The Red Nose Day Nosey Awards',
60
- path: 'https://www.comicrelief.com/rednoseday/schools',
60
+ path: 'https://www.comicrelief.com/rednoseday/schools#4',
61
61
  internal: {
62
62
  type: 'ContentfulPageLandingPage'
63
63
  }
@@ -73,19 +73,19 @@ var _default = exports.default = {
73
73
  }
74
74
  }, {
75
75
  title: 'Our Funding Practice',
76
- path: 'https://www.comicrelief.com/our-legacy',
76
+ path: 'https://www.comicrelief.com/our-legacy#one',
77
77
  internal: {
78
78
  type: 'ContentfulPageLandingPage'
79
79
  }
80
80
  }, {
81
81
  title: 'Funding opportunities',
82
- path: 'https://www.comicrelief.com/our-legacy',
82
+ path: 'https://www.comicrelief.com/our-legacy#two',
83
83
  internal: {
84
84
  type: 'ContentfulPageLandingPage'
85
85
  }
86
86
  }, {
87
87
  title: 'Our Funding strategy',
88
- path: 'https://www.comicrelief.com/our-legacy',
88
+ path: 'https://www.comicrelief.com/our-legacy#three',
89
89
  internal: {
90
90
  type: 'ContentfulPageLandingPage'
91
91
  }
@@ -123,31 +123,31 @@ var _default = exports.default = {
123
123
  }
124
124
  }, {
125
125
  title: 'Do your own fundraising',
126
- url: 'https://www.comicrelief.com/404/',
126
+ url: 'https://www.comicrelief.com/404#4',
127
127
  internal: {
128
128
  type: 'ContentfulComponentLink'
129
129
  }
130
130
  }, {
131
131
  title: 'Regular Donations',
132
- url: 'https://www.comicrelief.com/404/',
132
+ url: 'https://www.comicrelief.com/404#5',
133
133
  internal: {
134
134
  type: 'ContentfulComponentLink'
135
135
  }
136
136
  }, {
137
137
  title: 'Run for Comic Relief',
138
- url: 'https://www.comicrelief.com/404/',
138
+ url: 'https://www.comicrelief.com/404#6',
139
139
  internal: {
140
140
  type: 'ContentfulComponentLink'
141
141
  }
142
142
  }, {
143
143
  title: 'How to pay in your fundraising money',
144
- url: 'https://www.comicrelief.com/404/',
144
+ url: 'https://www.comicrelief.com/404#2',
145
145
  internal: {
146
146
  type: 'ContentfulComponentLink'
147
147
  }
148
148
  }, {
149
149
  title: 'Partners',
150
- url: 'https://www.comicrelief.com/404/',
150
+ url: 'https://www.comicrelief.com/404#3',
151
151
  internal: {
152
152
  type: 'ContentfulComponentLink'
153
153
  }
@@ -163,31 +163,31 @@ var _default = exports.default = {
163
163
  }
164
164
  }, {
165
165
  title: 'Do your own fundraising',
166
- url: 'https://www.comicrelief.com/404/',
166
+ url: 'https://www.comicrelief.com/404#7',
167
167
  internal: {
168
168
  type: 'ContentfulComponentLink'
169
169
  }
170
170
  }, {
171
171
  title: 'Regular Donations',
172
- url: 'https://www.comicrelief.com/404/',
172
+ url: 'https://www.comicrelief.com/404#8',
173
173
  internal: {
174
174
  type: 'ContentfulComponentLink'
175
175
  }
176
176
  }, {
177
177
  title: 'Run for Comic Relief',
178
- url: 'https://www.comicrelief.com/404/',
178
+ url: 'https://www.comicrelief.com/404#9',
179
179
  internal: {
180
180
  type: 'ContentfulComponentLink'
181
181
  }
182
182
  }, {
183
183
  title: 'How to pay in your fundraising money',
184
- url: 'https://www.comicrelief.com/404/',
184
+ url: 'https://www.comicrelief.com/404#10',
185
185
  internal: {
186
186
  type: 'ContentfulComponentLink'
187
187
  }
188
188
  }, {
189
189
  title: 'Partners',
190
- url: 'https://www.comicrelief.com/404/',
190
+ url: 'https://www.comicrelief.com/404#11',
191
191
  internal: {
192
192
  type: 'ContentfulComponentLink'
193
193
  }
@@ -203,31 +203,31 @@ var _default = exports.default = {
203
203
  }
204
204
  }, {
205
205
  title: 'Do your own fundraising',
206
- url: 'https://www.comicrelief.com/404/',
206
+ url: 'https://www.comicrelief.com/404#12',
207
207
  internal: {
208
208
  type: 'ContentfulComponentLink'
209
209
  }
210
210
  }, {
211
211
  title: 'Regular Donations',
212
- url: 'https://www.comicrelief.com/404/',
212
+ url: 'https://www.comicrelief.com/404#13',
213
213
  internal: {
214
214
  type: 'ContentfulComponentLink'
215
215
  }
216
216
  }, {
217
217
  title: 'Run for Comic Relief',
218
- url: 'https://www.comicrelief.com/404/',
218
+ url: 'https://www.comicrelief.com/404#14',
219
219
  internal: {
220
220
  type: 'ContentfulComponentLink'
221
221
  }
222
222
  }, {
223
223
  title: 'How to pay in your fundraising money',
224
- url: 'https://www.comicrelief.com/404/',
224
+ url: 'https://www.comicrelief.com/404#15',
225
225
  internal: {
226
226
  type: 'ContentfulComponentLink'
227
227
  }
228
228
  }, {
229
229
  title: 'Partners',
230
- url: 'https://www.comicrelief.com/404/',
230
+ url: 'https://www.comicrelief.com/404#16',
231
231
  internal: {
232
232
  type: 'ContentfulComponentLink'
233
233
  }
@@ -21,7 +21,7 @@ var _default = exports.default = {
21
21
  id: 'group2',
22
22
  links: [{
23
23
  title: 'Red Nose Day',
24
- path: 'https://www.comicrelief.com/rednoseday/schools',
24
+ path: 'https://www.comicrelief.com/rednoseday/schools#5',
25
25
  internal: {
26
26
  type: 'ContentfulPageLandingPage'
27
27
  }
@@ -51,7 +51,7 @@ var _default = exports.default = {
51
51
  id: 'eaec51921-bbb3-5e8d-b966-c53fff34998b5',
52
52
  links: [{
53
53
  title: 'Single menu link',
54
- path: 'https://www.comicrelief.com/rednoseday/schools',
54
+ path: 'https://www.comicrelief.com/rednoseday/schools#6',
55
55
  internal: {
56
56
  type: 'ContentfulPageLandingPage'
57
57
  }
@@ -77,7 +77,7 @@ var _default = exports.default = {
77
77
  id: 'eaec5191-bbb3-5e8d-b966-c53fff34998b',
78
78
  links: [{
79
79
  title: 'Schools & youth',
80
- path: 'https://www.comicrelief.com/rednoseday/schools',
80
+ path: 'https://www.comicrelief.com/rednoseday/schools#7',
81
81
  internal: {
82
82
  type: 'ContentfulPageLandingPage'
83
83
  }
@@ -12,7 +12,7 @@ var _Header = require("./Header2025.style");
12
12
  const Header2025 = _ref => {
13
13
  let {
14
14
  navItems = {},
15
- metaIcons,
15
+ metaIcons = undefined,
16
16
  campaign = 'Comic Relief',
17
17
  donateButton = null,
18
18
  characterLimit = 60,
@@ -32,7 +32,7 @@ const Header2025 = _ref => {
32
32
  metaIcons: metaIcons,
33
33
  donateButton: donateButton,
34
34
  characterLimit: characterLimit
35
- }), /*#__PURE__*/_react.default.createElement(_Header.ButtonsAndIcons, null, /*#__PURE__*/_react.default.createElement(_Header.Header2025MetaIcons, {
35
+ }), /*#__PURE__*/_react.default.createElement(_Header.ButtonsAndIcons, null, metaIcons && /*#__PURE__*/_react.default.createElement(_Header.Header2025MetaIcons, {
36
36
  isHeader: true,
37
37
  "data-testid": "meta-icons--desktop"
38
38
  }, metaIcons), /*#__PURE__*/_react.default.createElement(_Header.DonateButtonWrapperTop, {
@@ -478,7 +478,7 @@ const [success, setSuccess] = React.useState(false);
478
478
 
479
479
  <>
480
480
  <Header2025
481
- showBoxShadow="true"
481
+ showBoxShadow
482
482
  characterLimit={50}
483
483
  navItems={data}
484
484
  rotate="true"
@@ -590,7 +590,7 @@ const [success, setSuccess] = React.useState(false);
590
590
 
591
591
  <>
592
592
  <Header2025
593
- showBoxShadow="true"
593
+ showBoxShadow
594
594
  characterLimit={50}
595
595
  navItems={data}
596
596
  rotate="true"
@@ -166,7 +166,7 @@ const HeaderNav2025 = _ref => {
166
166
  navHelper: _navHelper.NavHelper,
167
167
  allowListed: _allowListed.default,
168
168
  internalLinkHelper: _internalLinkHelper.InternalLinkHelper
169
- }) : null), /*#__PURE__*/_react.default.createElement(_HeaderNav.NavMetaIcons, {
169
+ }) : null), metaIcons && /*#__PURE__*/_react.default.createElement(_HeaderNav.NavMetaIcons, {
170
170
  isHeader: true,
171
171
  "data-testid": "meta-icons--mobile"
172
172
  }, metaIcons), /*#__PURE__*/_react.default.createElement(_HeaderNav.DonateButtonWrapperBottom, {
@@ -39,25 +39,25 @@ var _default = exports.default = {
39
39
  id: 'group2',
40
40
  links: [{
41
41
  title: 'Red Nose Day',
42
- path: 'https://www.comicrelief.com/rednoseday/schools',
42
+ path: '¢',
43
43
  internal: {
44
44
  type: 'ContentfulPageLandingPage'
45
45
  }
46
46
  }, {
47
47
  title: 'The New Red Nose',
48
- path: 'https://www.comicrelief.com/rednoseday/schools',
48
+ path: 'https://www.comicrelief.com/rednoseday/schools#8',
49
49
  internal: {
50
50
  type: 'ContentfulPageLandingPage'
51
51
  }
52
52
  }, {
53
53
  title: 'Schools',
54
- path: 'https://www.comicrelief.com/rednoseday/schools',
54
+ path: 'https://www.comicrelief.com/rednoseday/schools#9',
55
55
  internal: {
56
56
  type: 'ContentfulPageLandingPage'
57
57
  }
58
58
  }, {
59
59
  title: 'The Red Nose Day Nosey Awards',
60
- path: 'https://www.comicrelief.com/rednoseday/schools',
60
+ path: 'https://www.comicrelief.com/rednoseday/schools#10',
61
61
  internal: {
62
62
  type: 'ContentfulPageLandingPage'
63
63
  }
@@ -73,25 +73,25 @@ var _default = exports.default = {
73
73
  }
74
74
  }, {
75
75
  title: 'Our Funding Practice',
76
- path: 'https://www.comicrelief.com/our-legacy',
76
+ path: 'https://www.comicrelief.com/our-legacy#1',
77
77
  internal: {
78
78
  type: 'ContentfulPageLandingPage'
79
79
  }
80
80
  }, {
81
81
  title: 'Funding opportunities',
82
- path: 'https://www.comicrelief.com/our-legacy',
82
+ path: 'https://www.comicrelief.com/our-legacy#2',
83
83
  internal: {
84
84
  type: 'ContentfulPageLandingPage'
85
85
  }
86
86
  }, {
87
87
  title: 'Our Funding strategy',
88
- path: 'https://www.comicrelief.com/our-legacy',
88
+ path: 'https://www.comicrelief.com/our-legacy#3',
89
89
  internal: {
90
90
  type: 'ContentfulPageLandingPage'
91
91
  }
92
92
  }, {
93
93
  title: 'Managing your funding',
94
- path: 'https://www.comicrelief.com/our-legacy',
94
+ path: 'https://www.comicrelief.com/our-legacy#4',
95
95
  internal: {
96
96
  type: 'ContentfulPageLandingPage'
97
97
  }
@@ -123,31 +123,31 @@ var _default = exports.default = {
123
123
  }
124
124
  }, {
125
125
  title: 'Do your own fundraising',
126
- url: 'https://www.comicrelief.com/404/',
126
+ url: 'https://www.comicrelief.com/404#17',
127
127
  internal: {
128
128
  type: 'ContentfulComponentLink'
129
129
  }
130
130
  }, {
131
131
  title: 'Regular Donations',
132
- url: 'https://www.comicrelief.com/404/',
132
+ url: 'https://www.comicrelief.com/404#18',
133
133
  internal: {
134
134
  type: 'ContentfulComponentLink'
135
135
  }
136
136
  }, {
137
137
  title: 'Run for Comic Relief',
138
- url: 'https://www.comicrelief.com/404/',
138
+ url: 'https://www.comicrelief.com/404#19',
139
139
  internal: {
140
140
  type: 'ContentfulComponentLink'
141
141
  }
142
142
  }, {
143
143
  title: 'How to pay in your fundraising money',
144
- url: 'https://www.comicrelief.com/404/',
144
+ url: 'https://www.comicrelief.com/404#20',
145
145
  internal: {
146
146
  type: 'ContentfulComponentLink'
147
147
  }
148
148
  }, {
149
149
  title: 'Partners',
150
- url: 'https://www.comicrelief.com/404/',
150
+ url: 'https://www.comicrelief.com/404#21',
151
151
  internal: {
152
152
  type: 'ContentfulComponentLink'
153
153
  }
@@ -163,31 +163,31 @@ var _default = exports.default = {
163
163
  }
164
164
  }, {
165
165
  title: 'Do your own fundraising',
166
- url: 'https://www.comicrelief.com/404/',
166
+ url: 'https://www.comicrelief.com/404#21',
167
167
  internal: {
168
168
  type: 'ContentfulComponentLink'
169
169
  }
170
170
  }, {
171
171
  title: 'Regular Donations',
172
- url: 'https://www.comicrelief.com/404/',
172
+ url: 'https://www.comicrelief.com/404#22',
173
173
  internal: {
174
174
  type: 'ContentfulComponentLink'
175
175
  }
176
176
  }, {
177
177
  title: 'Run for Comic Relief',
178
- url: 'https://www.comicrelief.com/404/',
178
+ url: 'https://www.comicrelief.com/404#23',
179
179
  internal: {
180
180
  type: 'ContentfulComponentLink'
181
181
  }
182
182
  }, {
183
183
  title: 'How to pay in your fundraising money',
184
- url: 'https://www.comicrelief.com/404/',
184
+ url: 'https://www.comicrelief.com/404#24',
185
185
  internal: {
186
186
  type: 'ContentfulComponentLink'
187
187
  }
188
188
  }, {
189
189
  title: 'Partners',
190
- url: 'https://www.comicrelief.com/404/',
190
+ url: 'https://www.comicrelief.com/404#25',
191
191
  internal: {
192
192
  type: 'ContentfulComponentLink'
193
193
  }
@@ -203,31 +203,31 @@ var _default = exports.default = {
203
203
  }
204
204
  }, {
205
205
  title: 'Do your own fundraising',
206
- url: 'https://www.comicrelief.com/404/',
206
+ url: 'https://www.comicrelief.com/404#26',
207
207
  internal: {
208
208
  type: 'ContentfulComponentLink'
209
209
  }
210
210
  }, {
211
211
  title: 'Regular Donations',
212
- url: 'https://www.comicrelief.com/404/',
212
+ url: 'https://www.comicrelief.com/404#27',
213
213
  internal: {
214
214
  type: 'ContentfulComponentLink'
215
215
  }
216
216
  }, {
217
217
  title: 'Run for Comic Relief',
218
- url: 'https://www.comicrelief.com/404/',
218
+ url: 'https://www.comicrelief.com/404#28',
219
219
  internal: {
220
220
  type: 'ContentfulComponentLink'
221
221
  }
222
222
  }, {
223
223
  title: 'How to pay in your fundraising money',
224
- url: 'https://www.comicrelief.com/404/',
224
+ url: 'https://www.comicrelief.com/404#29',
225
225
  internal: {
226
226
  type: 'ContentfulComponentLink'
227
227
  }
228
228
  }, {
229
229
  title: 'Partners',
230
- url: 'https://www.comicrelief.com/404/',
230
+ url: 'https://www.comicrelief.com/404#30',
231
231
  internal: {
232
232
  type: 'ContentfulComponentLink'
233
233
  }
@@ -21,7 +21,7 @@ var _default = exports.default = {
21
21
  id: 'group2',
22
22
  links: [{
23
23
  title: 'Red Nose Day',
24
- path: 'https://www.comicrelief.com/rednoseday/schools',
24
+ path: 'https://www.comicrelief.com/rednoseday/schools#11',
25
25
  internal: {
26
26
  type: 'ContentfulPageLandingPage'
27
27
  }
@@ -21,7 +21,7 @@ var _default = exports.default = {
21
21
  id: 'group2',
22
22
  links: [{
23
23
  title: 'Red Nose Day',
24
- path: 'https://www.comicrelief.com/rednoseday/schools',
24
+ path: 'https://www.comicrelief.com/rednoseday/schools#12',
25
25
  internal: {
26
26
  type: 'ContentfulPageLandingPage'
27
27
  }
@@ -117,7 +117,7 @@ var _default = exports.default = {
117
117
  }
118
118
  }, {
119
119
  title: 'Partners',
120
- url: 'https://www.comicrelief.com/404/',
120
+ url: 'https://www.comicrelief.com/404#31',
121
121
  internal: {
122
122
  type: 'ContentfulComponentLink'
123
123
  }
@@ -39,25 +39,25 @@ var _default = exports.default = {
39
39
  id: 'group2',
40
40
  links: [{
41
41
  title: 'Red Nose Day',
42
- path: 'https://www.comicrelief.com/rednoseday/schools',
42
+ path: 'https://www.comicrelief.com/rednoseday/schools#13',
43
43
  internal: {
44
44
  type: 'ContentfulPageLandingPage'
45
45
  }
46
46
  }, {
47
47
  title: 'The New Red Nose',
48
- path: 'https://www.comicrelief.com/rednoseday/schools',
48
+ path: 'https://www.comicrelief.com/rednoseday/schools#14',
49
49
  internal: {
50
50
  type: 'ContentfulPageLandingPage'
51
51
  }
52
52
  }, {
53
53
  title: 'Schools',
54
- path: 'https://www.comicrelief.com/rednoseday/schools',
54
+ path: 'https://www.comicrelief.com/rednoseday/schools#15',
55
55
  internal: {
56
56
  type: 'ContentfulPageLandingPage'
57
57
  }
58
58
  }, {
59
59
  title: 'The Red Nose Day Nosey Awards',
60
- path: 'https://www.comicrelief.com/rednoseday/schools',
60
+ path: 'https://www.comicrelief.com/rednoseday/schools#16',
61
61
  internal: {
62
62
  type: 'ContentfulPageLandingPage'
63
63
  }
@@ -73,25 +73,25 @@ var _default = exports.default = {
73
73
  }
74
74
  }, {
75
75
  title: 'Our Funding Practice',
76
- path: 'https://www.comicrelief.com/our-legacy',
76
+ path: 'https://www.comicrelief.com/our-legacy#5',
77
77
  internal: {
78
78
  type: 'ContentfulPageLandingPage'
79
79
  }
80
80
  }, {
81
81
  title: 'Funding opportunities',
82
- path: 'https://www.comicrelief.com/our-legacy',
82
+ path: 'https://www.comicrelief.com/our-legacy#6',
83
83
  internal: {
84
84
  type: 'ContentfulPageLandingPage'
85
85
  }
86
86
  }, {
87
87
  title: 'Our Funding strategy',
88
- path: 'https://www.comicrelief.com/our-legacy',
88
+ path: 'https://www.comicrelief.com/our-legacy#7',
89
89
  internal: {
90
90
  type: 'ContentfulPageLandingPage'
91
91
  }
92
92
  }, {
93
93
  title: 'Managing your funding',
94
- path: 'https://www.comicrelief.com/our-legacy',
94
+ path: 'https://www.comicrelief.com/our-legacy#8',
95
95
  internal: {
96
96
  type: 'ContentfulPageLandingPage'
97
97
  }
@@ -123,31 +123,31 @@ var _default = exports.default = {
123
123
  }
124
124
  }, {
125
125
  title: 'Do your own fundraising',
126
- url: 'https://www.comicrelief.com/404/',
126
+ url: 'https://www.comicrelief.com/404#32',
127
127
  internal: {
128
128
  type: 'ContentfulComponentLink'
129
129
  }
130
130
  }, {
131
131
  title: 'Regular Donations',
132
- url: 'https://www.comicrelief.com/404/',
132
+ url: 'https://www.comicrelief.com/404#33',
133
133
  internal: {
134
134
  type: 'ContentfulComponentLink'
135
135
  }
136
136
  }, {
137
137
  title: 'Run for Comic Relief',
138
- url: 'https://www.comicrelief.com/404/',
138
+ url: 'https://www.comicrelief.com/404#34',
139
139
  internal: {
140
140
  type: 'ContentfulComponentLink'
141
141
  }
142
142
  }, {
143
143
  title: 'How to pay in your fundraising money',
144
- url: 'https://www.comicrelief.com/404/',
144
+ url: 'https://www.comicrelief.com/404#35',
145
145
  internal: {
146
146
  type: 'ContentfulComponentLink'
147
147
  }
148
148
  }, {
149
149
  title: 'Partners',
150
- url: 'https://www.comicrelief.com/404/',
150
+ url: 'https://www.comicrelief.com/404#36',
151
151
  internal: {
152
152
  type: 'ContentfulComponentLink'
153
153
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comicrelief/component-library",
3
3
  "author": "Comic Relief Engineering Team",
4
- "version": "8.48.0",
4
+ "version": "8.48.1",
5
5
  "main": "dist/index.js",
6
6
  "license": "ISC",
7
7
  "jest": {
@@ -141,6 +141,7 @@ const ItalicText = styled(Text).attrs({weight: 'normal'})`
141
141
  <>
142
142
  <h4>Input with Description:</h4>
143
143
  <Input
144
+ name="input-with-description"
144
145
  placeholder="I have a description"
145
146
  type="text"
146
147
  label="My Great Input"