@royaloperahouse/chord 2.2.7 → 2.2.8-a-chord-development
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 +213 -7
- package/README.md +250 -40
- package/dist/chord.cjs.development.js +855 -449
- package/dist/chord.cjs.development.js.map +1 -1
- package/dist/chord.cjs.production.min.js +1 -1
- package/dist/chord.cjs.production.min.js.map +1 -1
- package/dist/chord.esm.js +852 -450
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/Buttons/Auxiliary/AuxiliaryButton.d.ts +4 -0
- package/dist/components/atoms/Buttons/Auxiliary/AuxiliaryButton.style.d.ts +4 -0
- package/dist/components/atoms/Icons/SvgIcons/12px/Expand.svg.d.ts +4 -0
- package/dist/components/atoms/Icons/SvgIcons/Utility/Remove.svg.d.ts +4 -0
- package/dist/components/atoms/Icons/SvgIcons/index.d.ts +2 -0
- package/dist/components/atoms/Radio/Radio.d.ts +3 -0
- package/dist/components/atoms/Radio2/Radio2.d.ts +23 -0
- package/dist/components/atoms/Radio2/Radio2.style.d.ts +7 -0
- package/dist/components/atoms/Radio2/index.d.ts +2 -0
- package/dist/components/atoms/Tickbox/Tickbox.d.ts +3 -0
- package/dist/components/atoms/Tickbox2/Tickbox2.d.ts +23 -0
- package/dist/components/atoms/Tickbox2/Tickbox2.style.d.ts +7 -0
- package/dist/components/atoms/Tickbox2/index.d.ts +2 -0
- package/dist/components/atoms/index.d.ts +3 -1
- package/dist/components/index.d.ts +3 -3
- package/dist/components/molecules/Card/Card.style.d.ts +2 -0
- package/dist/components/molecules/PageHeading/index.d.ts +1 -1
- package/dist/components/molecules/PeopleListing/CreditListing/CreditListing.style.d.ts +1 -0
- package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +3 -0
- package/dist/components/molecules/RadioGroup2/RadioGroup2.d.ts +38 -0
- package/dist/components/molecules/RadioGroup2/RadioGroup2.style.d.ts +4 -0
- package/dist/components/molecules/RadioGroup2/index.d.ts +2 -0
- package/dist/components/molecules/index.d.ts +3 -2
- package/dist/index.d.ts +4 -2
- package/dist/styles/themes.d.ts +20 -12
- package/dist/types/buttonTypes.d.ts +14 -0
- package/dist/types/card.d.ts +9 -1
- package/dist/types/formTypes.d.ts +125 -10
- package/dist/types/index.d.ts +2 -2
- package/dist/types/passwordStrength.d.ts +6 -6
- package/package.json +2 -2
- package/README.GIT +0 -277
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## [2.2.8]
|
|
2
|
+
- Add Auxiliary button component and extend cards with it
|
|
3
|
+
|
|
1
4
|
## [2.2.7]
|
|
2
5
|
- Add new seat-type icons
|
|
3
6
|
|
|
@@ -22,121 +25,172 @@
|
|
|
22
25
|
- Read More Component
|
|
23
26
|
|
|
24
27
|
## [2.2.0]
|
|
28
|
+
|
|
25
29
|
- Fix Grid bug introduced in 2.1.9
|
|
26
30
|
|
|
27
31
|
## [2.1.10]
|
|
32
|
+
|
|
28
33
|
- Add missing export for `CreditListing`
|
|
29
34
|
|
|
30
35
|
## [2.1.9]
|
|
36
|
+
|
|
31
37
|
- Add Credit Listing
|
|
32
38
|
|
|
33
39
|
## [2.1.8]
|
|
40
|
+
|
|
34
41
|
- Add Branding Link to Compact Header
|
|
35
42
|
|
|
36
43
|
## [2.1.7]
|
|
44
|
+
|
|
37
45
|
- Footer updates
|
|
38
46
|
|
|
39
47
|
## [2.1.6]
|
|
48
|
+
|
|
40
49
|
- Add X logo
|
|
41
50
|
|
|
42
51
|
## [2.1.5]
|
|
43
|
-
|
|
52
|
+
|
|
53
|
+
- Patch search bar hidden fix
|
|
44
54
|
|
|
45
55
|
## [2.1.4]
|
|
56
|
+
|
|
46
57
|
- Fix screenreader accessibility for accordions
|
|
47
58
|
|
|
48
59
|
## [2.1.3]
|
|
60
|
+
|
|
49
61
|
- Navigation: make links links
|
|
50
62
|
- Clear testing errors
|
|
51
63
|
|
|
52
64
|
## [2.1.2]
|
|
65
|
+
|
|
53
66
|
- TextField: include optional width param
|
|
54
67
|
|
|
55
68
|
## [2.1.1]
|
|
69
|
+
|
|
56
70
|
- AnchorTabBar: change grid, to move tabs to the center
|
|
57
71
|
|
|
58
72
|
## [2.1.0]
|
|
73
|
+
|
|
59
74
|
- Convert Pagination to href instead of React Router Link
|
|
60
75
|
|
|
61
76
|
## [2.0.0]
|
|
77
|
+
|
|
62
78
|
- Remove swiper dependency
|
|
79
|
+
|
|
63
80
|
## [1.28.0]
|
|
81
|
+
|
|
64
82
|
- Add new RadioGroup component
|
|
65
83
|
- Progress: add the steps
|
|
66
84
|
- Compact header: hide CTA if the prop is undefined
|
|
67
85
|
- Compact header: change highlight color for Stream variant
|
|
68
86
|
|
|
69
87
|
## [1.27.1]
|
|
88
|
+
|
|
70
89
|
- Fixed failing test on timer component
|
|
71
90
|
|
|
72
91
|
## [1.27.0]
|
|
92
|
+
|
|
73
93
|
- ContentSummary component can now be configured to be fully clickable
|
|
74
94
|
|
|
75
95
|
## [1.26.0]
|
|
96
|
+
|
|
76
97
|
- MiniCard and MinimalCarousel: add new components
|
|
77
98
|
|
|
78
99
|
## [1.25.2]
|
|
100
|
+
|
|
79
101
|
- Now clicking on the gray overlay closes the search bar
|
|
80
102
|
|
|
81
103
|
## [1.25.1]
|
|
104
|
+
|
|
82
105
|
- Stepper: Properly export component
|
|
83
106
|
|
|
84
107
|
## [1.25.0]
|
|
108
|
+
|
|
85
109
|
- Stepper: Add Stepper component
|
|
86
110
|
|
|
87
111
|
## [1.24.2]
|
|
112
|
+
|
|
88
113
|
- Increase Upsell Card Flag character limit to 30
|
|
89
114
|
|
|
90
115
|
## [1.24.1]
|
|
116
|
+
|
|
91
117
|
- Include link field to Upsell Cards
|
|
92
118
|
|
|
93
119
|
## [1.24.0]
|
|
120
|
+
|
|
94
121
|
- Implement Upsell Section & Upsell Cards
|
|
95
122
|
|
|
123
|
+
## [1.23.2-b]
|
|
124
|
+
|
|
125
|
+
- Add Stepper component
|
|
126
|
+
- Fix solo negative sign NaN bug
|
|
127
|
+
-
|
|
128
|
+
|
|
96
129
|
## [1.23.2]
|
|
130
|
+
|
|
97
131
|
- Fix BrandingStyle not showing bug
|
|
98
132
|
|
|
99
133
|
## [1.23.1]
|
|
134
|
+
|
|
100
135
|
- Fix enum on BrandingStyle
|
|
101
136
|
|
|
102
137
|
## [1.23.0]
|
|
138
|
+
|
|
103
139
|
- Re-enabled compact header on iOS
|
|
104
140
|
|
|
105
141
|
## [1.22.0]
|
|
142
|
+
|
|
106
143
|
- TextArea: Added new TextArea component
|
|
107
144
|
- TickBox: Added disabled and error states
|
|
108
145
|
|
|
109
146
|
## [1.21.1]
|
|
110
|
-
|
|
147
|
+
|
|
148
|
+
- Compact PageHeading: Refactored to support iOS devices
|
|
111
149
|
|
|
112
150
|
## [1.21.0]
|
|
151
|
+
|
|
113
152
|
- TextLogo: add new component
|
|
114
153
|
- Compact PageHeading: swap logo with TextLogo to fix iOS issues
|
|
115
154
|
|
|
155
|
+
## [1.20.2-a]
|
|
156
|
+
|
|
157
|
+
- Made select state reset behaviour opt-in
|
|
158
|
+
|
|
116
159
|
## [1.20.2]
|
|
160
|
+
|
|
117
161
|
- Card: change cursor to default for cards without buttons
|
|
118
162
|
- HighlightsCarousel: hide button in case there are no text for them
|
|
119
163
|
|
|
120
164
|
## [1.20.1]
|
|
165
|
+
|
|
121
166
|
- Reset the select component's selected value to the first option if options change
|
|
122
167
|
|
|
123
168
|
## [1.20.0]
|
|
169
|
+
|
|
124
170
|
- Tickbox: Add black-on-white option
|
|
171
|
+
|
|
125
172
|
## [1.19.0]
|
|
173
|
+
|
|
126
174
|
- Add timer to navigation basket
|
|
175
|
+
|
|
127
176
|
## [1.18.3]
|
|
177
|
+
|
|
128
178
|
- iOS devices show image instead of video for Compact PageHeading
|
|
129
179
|
|
|
130
180
|
## [1.18.1-2]
|
|
181
|
+
|
|
131
182
|
- Fix iOS exception on VideoControls
|
|
132
183
|
|
|
133
184
|
## [1.18.0]
|
|
185
|
+
|
|
134
186
|
- Add Compact PageHeading component
|
|
135
187
|
|
|
136
188
|
## [1.17.0]
|
|
189
|
+
|
|
137
190
|
- Add Page Heading Panel variant
|
|
138
191
|
|
|
139
192
|
## [1.16.0]
|
|
193
|
+
|
|
140
194
|
- Implemented a new Timer component
|
|
141
195
|
- Progress: extended the component, added it to Storybook
|
|
142
196
|
- PromoWithTags: added Timer component
|
|
@@ -145,290 +199,423 @@
|
|
|
145
199
|
- Card: added label
|
|
146
200
|
|
|
147
201
|
## [1.15.1]
|
|
202
|
+
|
|
148
203
|
- Change to pagination component to align page numbers with URL numbers.
|
|
149
204
|
|
|
150
205
|
## [1.15.0]
|
|
151
|
-
|
|
206
|
+
|
|
207
|
+
- Add Compact PageHeading component
|
|
152
208
|
|
|
153
209
|
## [1.14.0]
|
|
210
|
+
|
|
154
211
|
- Added standfirst functionality to Accordion/ Accordions component and theme for Schools Platform
|
|
155
212
|
|
|
156
213
|
## [1.13.2]
|
|
214
|
+
|
|
157
215
|
- Add styled-components to dev-dependencies, to fix issues with tests that appear after adding the new styled components
|
|
158
216
|
|
|
159
217
|
## [1.13.1]
|
|
218
|
+
|
|
160
219
|
- AnchorTabBar: fix the issues on mobile devices that are related to scroll/stickiness
|
|
161
220
|
|
|
162
221
|
## [1.13.0]
|
|
222
|
+
|
|
163
223
|
- Implemented a new TextField component
|
|
164
224
|
|
|
165
225
|
## [1.12.4]
|
|
226
|
+
|
|
166
227
|
- Search: change copy
|
|
167
228
|
|
|
168
229
|
## [1.12.0]
|
|
230
|
+
|
|
169
231
|
- Search: Extend ContentSummary and SearchBar components to support new search results
|
|
170
232
|
|
|
233
|
+
## [1.11.0-a]
|
|
234
|
+
|
|
235
|
+
- Pagination: add new component
|
|
236
|
+
|
|
171
237
|
## [1.11.0]
|
|
238
|
+
|
|
172
239
|
- Carousels: Rewrite logic that cuts description, to support older browsers
|
|
173
240
|
|
|
241
|
+
## [1.10.0-a]
|
|
242
|
+
|
|
243
|
+
- ContentSummary: make image clickable
|
|
244
|
+
|
|
174
245
|
## [1.10.0]
|
|
246
|
+
|
|
175
247
|
- PageHeadingImpact: Replace CSS background-image with HTML image element
|
|
176
248
|
|
|
177
249
|
## [1.9.0]
|
|
250
|
+
|
|
178
251
|
- Card: Add a new prop for the hover line color
|
|
179
252
|
|
|
253
|
+
## [1.9.0-c]
|
|
254
|
+
|
|
255
|
+
- ContentSummary: make image clickable
|
|
256
|
+
|
|
257
|
+
## [1.9.0-b]
|
|
258
|
+
|
|
259
|
+
- ContentSummary: change image size
|
|
260
|
+
- SearchBar: Export component
|
|
261
|
+
|
|
262
|
+
## [1.9.0-a]
|
|
263
|
+
|
|
264
|
+
- ContentSummary: change image props
|
|
265
|
+
|
|
266
|
+
## [1.9.0]
|
|
267
|
+
|
|
268
|
+
- Card: Add a new prop for the hover line color
|
|
269
|
+
|
|
270
|
+
## [1.8.1-h]
|
|
271
|
+
|
|
272
|
+
- ContentSummary: add exports
|
|
273
|
+
|
|
274
|
+
## [1.8.1-g]
|
|
275
|
+
|
|
276
|
+
- ContentSummary: refactor
|
|
277
|
+
|
|
278
|
+
## [1.8.1-f]
|
|
279
|
+
|
|
280
|
+
- ContentSummary: update conditional rendering
|
|
281
|
+
|
|
282
|
+
## [1.8.1-c]
|
|
283
|
+
|
|
284
|
+
- ContentSummary: update for Search results
|
|
285
|
+
- ContentSummarySection: remove
|
|
286
|
+
|
|
287
|
+
## [1.8.1-b]
|
|
288
|
+
|
|
289
|
+
- Card: add new prop for the line color on hover
|
|
290
|
+
|
|
180
291
|
## [1.8.0]
|
|
292
|
+
|
|
181
293
|
- SearchBar: Disable
|
|
182
294
|
|
|
183
295
|
## [1.7.2]
|
|
296
|
+
|
|
184
297
|
- Add imageAltText to Card component
|
|
185
298
|
|
|
186
299
|
## [1.7.0]
|
|
300
|
+
|
|
187
301
|
- Add new ContentSummary component
|
|
188
302
|
- Add new ContentSummarySection component
|
|
189
303
|
- Add Content Summary Section and individual Content Summaries
|
|
190
304
|
|
|
191
305
|
## [1.6.3]
|
|
306
|
+
|
|
192
307
|
- Add exports for zIndexes
|
|
193
308
|
|
|
194
309
|
## [1.6.2]
|
|
195
|
-
|
|
310
|
+
|
|
311
|
+
- ImpactHeader: add alt text for sponsors logo custom image
|
|
196
312
|
|
|
197
313
|
## [1.6.1]
|
|
314
|
+
|
|
198
315
|
- PageHeadingHighlight component: update exports
|
|
199
316
|
|
|
200
317
|
## [1.6.0]
|
|
318
|
+
|
|
201
319
|
- Add new PageHeadingHighlight component
|
|
202
320
|
|
|
203
321
|
## [1.5.0]
|
|
322
|
+
|
|
204
323
|
- PageHeading: decrease header height when title is not available
|
|
205
324
|
|
|
206
325
|
## [1.4.0]
|
|
326
|
+
|
|
207
327
|
- ImpactHeader: make it possible to pass custom image as a sponsor logo
|
|
208
328
|
|
|
209
329
|
## [1.3.1]
|
|
330
|
+
|
|
210
331
|
- Enable reduced size textLinks on PromoWithTags/asCard
|
|
211
332
|
|
|
212
333
|
## [1.3.0]
|
|
334
|
+
|
|
213
335
|
- Add Static Actvivity Cards as PromoWithTags variant
|
|
214
336
|
|
|
215
337
|
## [1.2.0]
|
|
216
|
-
|
|
338
|
+
|
|
339
|
+
- Card: buttons do not change position on mobiles;
|
|
217
340
|
|
|
218
341
|
## [1.1.0]
|
|
342
|
+
|
|
219
343
|
- TitleWithCTA: fix cases with a long title
|
|
220
344
|
- Card: add pointer cursor to container
|
|
221
345
|
|
|
222
346
|
## [0.9.0]
|
|
347
|
+
|
|
223
348
|
- PromoWithTags: Add margin under ExtraContent iframe
|
|
224
349
|
|
|
225
350
|
## [0.8.0]
|
|
351
|
+
|
|
226
352
|
- Card component: buttons are aligned by height
|
|
227
353
|
- Highlight carousel: added possibility to display two CTAs
|
|
228
354
|
|
|
229
355
|
## [0.7.50]
|
|
356
|
+
|
|
230
357
|
- Add Static Actvivity Cards
|
|
231
358
|
|
|
232
359
|
## [0.7.49]
|
|
360
|
+
|
|
233
361
|
- Change button behaviour on stream and DED pages
|
|
234
362
|
|
|
235
363
|
## [0.7.48]
|
|
364
|
+
|
|
236
365
|
- Add background themes to Information component
|
|
237
366
|
|
|
238
367
|
## [0.7.47]
|
|
368
|
+
|
|
239
369
|
- PromoWithTags: Swap Content & ExtraContent divs to correct keyboard tab order
|
|
240
370
|
|
|
241
371
|
## [0.7.46]
|
|
372
|
+
|
|
242
373
|
- Information: Add new Information component
|
|
243
374
|
|
|
244
375
|
## [0.7.45]
|
|
376
|
+
|
|
245
377
|
- PromoWithTags: extend the component to handle extra content
|
|
246
378
|
|
|
247
379
|
## [0.7.441]
|
|
380
|
+
|
|
248
381
|
- PageHeading: increase max line height for mobile devices
|
|
249
382
|
|
|
250
383
|
## [0.7.44]
|
|
384
|
+
|
|
251
385
|
- PromoWithTags, PromoWithTitle: change grid for text content on tablet view
|
|
252
386
|
|
|
253
387
|
## [0.7.43]
|
|
388
|
+
|
|
254
389
|
- AnchorTabBar: fix the typo in the name of the component
|
|
255
390
|
- PromoWithTags: increase spacing between tags and body text
|
|
256
391
|
- PromoWithTags: change prop name for subtags
|
|
257
392
|
|
|
258
393
|
## [0.7.42]
|
|
394
|
+
|
|
259
395
|
- Livechat: Add more branded fields
|
|
260
396
|
|
|
261
397
|
## [0.7.41]
|
|
398
|
+
|
|
262
399
|
- PromoWithTags: convert the checks value to boolean
|
|
263
400
|
|
|
264
401
|
## [0.7.40]
|
|
402
|
+
|
|
265
403
|
- Add new PromoWithTags component
|
|
266
404
|
- StickyBar: remove bottom border for mobile viewport
|
|
267
405
|
|
|
268
406
|
## [0.7.39]
|
|
407
|
+
|
|
269
408
|
- Livechat: restyling
|
|
270
409
|
|
|
271
410
|
## [0.7.38]
|
|
411
|
+
|
|
272
412
|
- PromoWithTitle: add styles for headings
|
|
273
413
|
|
|
274
414
|
## [0.7.37]
|
|
415
|
+
|
|
275
416
|
- Tabs: Fix nav item spacing for large desktop displays
|
|
276
417
|
|
|
277
418
|
## [0.7.36]
|
|
278
|
-
|
|
419
|
+
|
|
420
|
+
- Update PromowithTitle component with tags and change highlight color for text and title in Stream Header
|
|
279
421
|
|
|
280
422
|
## [0.7.35]
|
|
423
|
+
|
|
281
424
|
- Add new StickyBar component
|
|
282
425
|
|
|
283
426
|
## [0.7.34]
|
|
427
|
+
|
|
284
428
|
- Tabs: Left-align last dropdown menu in the navigation bar
|
|
285
429
|
|
|
286
430
|
## [0.7.33]
|
|
431
|
+
|
|
287
432
|
- Livechat: add Talkdesk Livechat injection component
|
|
288
433
|
|
|
289
434
|
## [0.7.32]
|
|
435
|
+
|
|
290
436
|
- Carousels: extend character limit for description
|
|
291
437
|
|
|
292
438
|
## [0.7.31]
|
|
439
|
+
|
|
293
440
|
- Card: add image alt text as a prop
|
|
294
441
|
|
|
295
442
|
## [0.7.30]
|
|
443
|
+
|
|
296
444
|
- Navigation: add possibility to pass basket link as prop
|
|
297
445
|
|
|
298
446
|
## [0.7.29]
|
|
447
|
+
|
|
299
448
|
- TextOnly: change spacing for the headings
|
|
300
449
|
|
|
301
450
|
## [0.7.28]
|
|
451
|
+
|
|
302
452
|
- Order PeopleListing component by presence of headshot
|
|
303
453
|
- Show four listings per row on large desktop
|
|
304
454
|
|
|
305
455
|
## [0.7.27]
|
|
456
|
+
|
|
306
457
|
- Extend ContactCard capabilities
|
|
307
458
|
- Extend Tertiary Button text length
|
|
308
459
|
|
|
309
460
|
## [0.7.26]
|
|
461
|
+
|
|
310
462
|
- Add storybook-deployer package
|
|
311
463
|
- Update README with instructions for deployment
|
|
312
464
|
|
|
313
465
|
## [0.7.25]
|
|
466
|
+
|
|
314
467
|
- PeopleListing: add headshot
|
|
315
468
|
|
|
316
469
|
## [0.7.24]
|
|
470
|
+
|
|
317
471
|
- Add new ContactCard component
|
|
318
472
|
|
|
319
473
|
## [0.7.23]
|
|
474
|
+
|
|
320
475
|
- Accordion: make accordion keyboard-navigable
|
|
321
476
|
|
|
322
477
|
## [0.7.22]
|
|
478
|
+
|
|
323
479
|
- Add new AnnouncementBanner component
|
|
324
480
|
|
|
325
481
|
## [0.7.21]
|
|
482
|
+
|
|
326
483
|
- PageHeading: add a possibility to handle bold and italic in text
|
|
327
484
|
- Header-2: fix font size and line-height
|
|
328
485
|
|
|
329
486
|
## [0.7.20]
|
|
487
|
+
|
|
330
488
|
- TextOnly: fix spacing between the elements
|
|
331
489
|
|
|
332
490
|
## [0.7.19]
|
|
491
|
+
|
|
333
492
|
- TextOnly: extend styles for embedded headers and links
|
|
334
493
|
|
|
335
494
|
## [0.7.18]
|
|
495
|
+
|
|
336
496
|
- Quote: fix qoute signs
|
|
337
497
|
|
|
338
498
|
## [0.7.17]
|
|
499
|
+
|
|
339
500
|
- Add new Quote component
|
|
340
501
|
|
|
341
502
|
## [0.7.16]
|
|
503
|
+
|
|
342
504
|
- Card: fix title font size for tablet
|
|
343
505
|
|
|
344
506
|
## [0.7.15]
|
|
507
|
+
|
|
345
508
|
- Tickbox: fix keyboard key value
|
|
346
509
|
|
|
347
510
|
## [0.7.14]
|
|
511
|
+
|
|
348
512
|
- Fix keyboard accessibility for Tickbox
|
|
349
513
|
|
|
350
514
|
## [0.7.13]
|
|
515
|
+
|
|
351
516
|
- Fix Carousel Card typography
|
|
352
517
|
- Fix Impact Header Grid
|
|
353
518
|
- Fix Footer Grid
|
|
354
519
|
- Add additional font sizes for tablet
|
|
355
520
|
|
|
356
521
|
## [0.7.12]
|
|
522
|
+
|
|
357
523
|
- Tickbox: fixed issue with component's state updating
|
|
358
524
|
|
|
359
525
|
## [0.7.11]
|
|
526
|
+
|
|
360
527
|
- PromoWithTitle: align image vertically
|
|
361
528
|
|
|
362
529
|
## [0.7.10]
|
|
530
|
+
|
|
363
531
|
- Theme: increases font size
|
|
364
532
|
|
|
365
533
|
## [0.7.9]
|
|
534
|
+
|
|
366
535
|
- Impact: fix sponsor click and font size on mobile
|
|
367
536
|
- Carousel: add buttons to tablet
|
|
368
537
|
- Navigation: position fixed when menu is open on mobile
|
|
369
538
|
- Highlight Carousel: add html text to short description
|
|
370
539
|
|
|
371
540
|
## [0.7.8]
|
|
541
|
+
|
|
372
542
|
- TitleWithCTA: add message prop
|
|
373
543
|
|
|
374
544
|
## [0.7.7]
|
|
545
|
+
|
|
375
546
|
- Tabs: close dropdown when it is clicked twice
|
|
376
547
|
|
|
377
548
|
## [0.7.6]
|
|
549
|
+
|
|
378
550
|
- Add new initOpen prop to Accordion component
|
|
379
551
|
|
|
380
552
|
## [0.7.5]
|
|
553
|
+
|
|
381
554
|
- Fix Styling in PeopleListing on Desktop
|
|
382
555
|
|
|
383
556
|
## [0.7.4]
|
|
557
|
+
|
|
384
558
|
- Fix git README
|
|
385
559
|
|
|
386
560
|
## [0.7.3]
|
|
561
|
+
|
|
387
562
|
- Fix Styling in PeopleListing on Mobile
|
|
388
563
|
|
|
389
564
|
## [0.7.2]
|
|
565
|
+
|
|
390
566
|
- Add align center image in Editorial component
|
|
391
567
|
- Export ControlledDropdown component
|
|
392
568
|
|
|
393
569
|
## [0.7.1]
|
|
570
|
+
|
|
394
571
|
- Fix TitleWithCTA bug (visualization in two lines) in tablet
|
|
395
572
|
- Export TextLink component
|
|
396
573
|
- PeopleListing: custom person separator
|
|
397
574
|
|
|
398
575
|
## [0.7.0]
|
|
576
|
+
|
|
399
577
|
- PeopleListing: replace people prop by roles prop
|
|
400
578
|
|
|
401
579
|
## [0.6.0]
|
|
580
|
+
|
|
402
581
|
- Refactor the AnchorTabBar to separate page title and buttons
|
|
403
582
|
- Add new TitleWithCTA component
|
|
404
583
|
- Export Tab component
|
|
405
584
|
|
|
406
585
|
## [0.5.11]
|
|
586
|
+
|
|
407
587
|
- Add Tickbox component and TickboxMode enum
|
|
408
588
|
- PageHeading: fix typography
|
|
409
589
|
|
|
410
590
|
## [0.5.10]
|
|
591
|
+
|
|
411
592
|
- Highlights Carousel: tablet layout improvements
|
|
412
593
|
- Navigation improvements for small desktops.
|
|
413
594
|
- Hide Rotator Buttons in the Hihghlight Carousel when there is only one event
|
|
414
595
|
|
|
415
596
|
## [0.5.9]
|
|
597
|
+
|
|
416
598
|
- Reduce tablet grid margin from 50px to 32px.
|
|
417
599
|
- Add alternative to aspect-ratio css attribute.
|
|
418
600
|
|
|
419
601
|
## [0.5.8]
|
|
602
|
+
|
|
420
603
|
- PromoWithTitle links style
|
|
421
604
|
|
|
422
605
|
## [0.5.7]
|
|
606
|
+
|
|
423
607
|
- Added Star icon to Iconography
|
|
424
608
|
|
|
425
609
|
## [0.5.6]
|
|
610
|
+
|
|
426
611
|
- Added Favourite and Favourite Full icons to Iconography
|
|
427
612
|
|
|
428
613
|
## [0.5.5]
|
|
614
|
+
|
|
429
615
|
- Export ImageAspectRatioWrapper component and AspectRatio enum
|
|
430
616
|
|
|
431
617
|
## [0.5.4]
|
|
618
|
+
|
|
432
619
|
- Fix Card typography
|
|
433
620
|
- Fix Carousel title typography
|
|
434
621
|
- Fix Image Carousel size
|
|
@@ -437,51 +624,63 @@
|
|
|
437
624
|
- Fix Anchor bar internal navigation
|
|
438
625
|
|
|
439
626
|
## [0.5.3]
|
|
627
|
+
|
|
440
628
|
- Handle keyboard events using key attribute
|
|
441
629
|
|
|
442
630
|
## [0.5.2]
|
|
631
|
+
|
|
443
632
|
- Highlights Carousel: info change swiping slide
|
|
444
633
|
- Fix RotatorButtons a11y
|
|
445
634
|
|
|
446
635
|
## [0.5.1]
|
|
636
|
+
|
|
447
637
|
- Highlights Carousel: fix box-sizing
|
|
448
638
|
|
|
449
639
|
## [0.5.0]
|
|
640
|
+
|
|
450
641
|
- Highlights Carousel: new slides props (breaking change)
|
|
451
642
|
- Fix in PageHeadingImpact image
|
|
452
643
|
|
|
453
644
|
## [0.4.4]
|
|
645
|
+
|
|
454
646
|
- AnchorTabBar a11y: added tabIndex to links
|
|
455
647
|
|
|
456
648
|
## [0.4.3]
|
|
649
|
+
|
|
457
650
|
- Prevent focus when navigation tab is clicked
|
|
458
651
|
|
|
459
652
|
## [0.4.2]
|
|
653
|
+
|
|
460
654
|
- Highlights Carousel Components
|
|
461
655
|
- Keyboard navigation fix for Navigation Component
|
|
462
656
|
|
|
463
657
|
## [0.4.1]
|
|
658
|
+
|
|
464
659
|
- Swiper included as dependency
|
|
465
660
|
- Fix for italics in Editorial, Card and PromoWithTitle components
|
|
466
661
|
- Extra Props for AnchorTabBar
|
|
467
662
|
|
|
468
663
|
## [0.4.0]
|
|
664
|
+
|
|
469
665
|
- Navigation Logo breaking change
|
|
470
666
|
- Colors enum exported as in types
|
|
471
667
|
|
|
472
668
|
## [0.3.9]
|
|
669
|
+
|
|
473
670
|
- Added Carousel Component
|
|
474
671
|
- Dropdowns overlap fix
|
|
475
672
|
- z-index fixes (for cards overlapping Anchor Tabs)
|
|
476
673
|
- Navigation menu alignment fix
|
|
477
674
|
|
|
478
675
|
## [0.3.8]
|
|
676
|
+
|
|
479
677
|
- Add possibility to configure GridItem for TextOnly component
|
|
480
678
|
- Rich Text Editor Styling fix
|
|
481
679
|
- Tweaks to Button layout for components
|
|
482
680
|
- Anchor navigation arrows fix
|
|
483
681
|
|
|
484
682
|
## [0.3.7]
|
|
683
|
+
|
|
485
684
|
- Typography change for Subtitle 2
|
|
486
685
|
- AltHeader, BodyText, Header, Overline and Subtitle Components
|
|
487
686
|
- REMOVED Heading Component - replaced by Header Component
|
|
@@ -489,22 +688,26 @@
|
|
|
489
688
|
- made 'devices' public
|
|
490
689
|
|
|
491
690
|
## [0.3.6]
|
|
691
|
+
|
|
492
692
|
- PageHeading Component
|
|
493
693
|
- SectionTitle multiline fix
|
|
494
694
|
|
|
495
695
|
## [0.3.5]
|
|
696
|
+
|
|
496
697
|
- Fix for Searchbox border on iOS
|
|
497
698
|
- Fix for Accordion - Mobile Styling Issue
|
|
498
699
|
- Fix for Card Component - Styling Issues
|
|
499
700
|
- Change in Search layout
|
|
500
701
|
|
|
501
702
|
## [0.3.4]
|
|
703
|
+
|
|
502
704
|
- Added Rotator Buttons
|
|
503
705
|
- General Gotham SSm A & B font setup fixes
|
|
504
706
|
- Fix for Footer font and size in mobile view
|
|
505
707
|
- Subtitles 2 typography changes
|
|
506
708
|
|
|
507
709
|
## [0.3.3]
|
|
710
|
+
|
|
508
711
|
- Added AnchorTabBar Component
|
|
509
712
|
- Added Accordion Component
|
|
510
713
|
- Added Card Component
|
|
@@ -512,10 +715,13 @@
|
|
|
512
715
|
- Fix for Navigation Search font and mobile view
|
|
513
716
|
|
|
514
717
|
## [0.3.0]
|
|
718
|
+
|
|
515
719
|
- Design system project renamed and moved to chord
|
|
516
720
|
|
|
517
721
|
## [0.2.0]
|
|
518
|
-
|
|
722
|
+
|
|
723
|
+
- public NPM Library
|
|
519
724
|
|
|
520
725
|
## [0.1.0]
|
|
726
|
+
|
|
521
727
|
- Initial version
|