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