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