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