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