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