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