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