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