@royaloperahouse/chord 0.7.441 → 0.9.0
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 +22 -0
- package/dist/chord.cjs.development.js +477 -191
- 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 +485 -198
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/components/molecules/Card/Card.style.d.ts +3 -1
- package/dist/components/molecules/Information/InfoCta.d.ts +4 -0
- package/dist/components/molecules/Information/Information.d.ts +4 -0
- package/dist/components/molecules/Information/Information.style.d.ts +10 -0
- package/dist/components/molecules/Information/index.d.ts +2 -0
- package/dist/components/molecules/PromoWithTags/PromoWithTags.style.d.ts +5 -1
- package/dist/components/molecules/index.d.ts +2 -1
- package/dist/components/organisms/HighlightsCarousel/HighlightsCarousel.style.d.ts +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/types/buttonTypes.d.ts +5 -0
- package/dist/types/card.d.ts +13 -2
- package/dist/types/carousel.d.ts +1 -1
- package/dist/types/editorial.d.ts +16 -3
- package/dist/types/index.d.ts +3 -1
- package/dist/types/information.d.ts +85 -0
- package/dist/types/types.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [0.9.0]
|
|
4
|
+
- PromoWithTags: Add margin under ExtraContent iframe
|
|
5
|
+
|
|
6
|
+
## [0.8.0]
|
|
7
|
+
- Card component: buttons are aligned by height
|
|
8
|
+
- Highlight carousel: added possibility to display two CTAs
|
|
9
|
+
|
|
10
|
+
## [0.7.49]
|
|
11
|
+
- Change button behaviour on stream and DED pages
|
|
12
|
+
|
|
13
|
+
## [0.7.48]
|
|
14
|
+
- Add background themes to Information component
|
|
15
|
+
|
|
16
|
+
## [0.7.47]
|
|
17
|
+
- PromoWithTags: Swap Content & ExtraContent divs to correct keyboard tab order
|
|
18
|
+
|
|
19
|
+
## [0.7.46]
|
|
20
|
+
- Information: Add new Information component
|
|
21
|
+
|
|
22
|
+
## [0.7.45]
|
|
23
|
+
- PromoWithTags: extend the component to handle extra content
|
|
24
|
+
|
|
3
25
|
## [0.7.441]
|
|
4
26
|
- PageHeading: increase max line height for mobile devices
|
|
5
27
|
|