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