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