@royaloperahouse/chord 0.5.7 → 0.5.11
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 +16 -0
- package/README.md +2 -2
- package/dist/chord.cjs.development.js +386 -244
- 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 +389 -246
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/Tickbox/Tickbox.d.ts +4 -0
- package/dist/components/atoms/Tickbox/Tickbox.style.d.ts +4 -0
- package/dist/components/atoms/Tickbox/index.d.ts +2 -0
- package/dist/components/atoms/index.d.ts +2 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/components/molecules/ImageWithCaption/ImageWithCaption.style.d.ts +2 -1
- package/dist/components/organisms/Navigation/Navigation.style.d.ts +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/types/image.d.ts +23 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/tickbox.d.ts +40 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [0.5.11]
|
|
4
|
+
- Add Tickbox component and TickboxMode enum
|
|
5
|
+
- PageHeading: fix typography
|
|
6
|
+
|
|
7
|
+
## [0.5.10]
|
|
8
|
+
- Highlights Carousel: tablet layout improvements
|
|
9
|
+
- Navigation improvements for small desktops.
|
|
10
|
+
- Hide Rotator Buttons in the Hihghlight Carousel when there is only one event
|
|
11
|
+
|
|
12
|
+
## [0.5.9]
|
|
13
|
+
- Reduce tablet grid margin from 50px to 32px.
|
|
14
|
+
- Add alternative to aspect-ratio css attribute.
|
|
15
|
+
|
|
16
|
+
## [0.5.8]
|
|
17
|
+
- PromoWithTitle links style
|
|
18
|
+
|
|
3
19
|
## [0.5.7]
|
|
4
20
|
- Added Star icon to Iconography
|
|
5
21
|
|
package/README.md
CHANGED
|
@@ -55,11 +55,11 @@ const App = ({ children }: InnerProps): React.ReactElement => (
|
|
|
55
55
|
|
|
56
56
|
## Components
|
|
57
57
|
|
|
58
|
-
Accordion, Accordions, AltHeader, AnchorTapBar, BodyText, Card, Cards, Carousel, CinemaBadge, devices, Editorial, Footer, GlobalStyles, Grid, GridItem, Header, HighlightsCarousel, HighlightsCarouselCinema, HighlightsCarouselCore, HighlightsCarouselStream, Icon, ImageWithCaption, Navigation, Overline, PageHeadingCinema, PageHeadingCore, PageHeadingImpact, PageHeadingStream, PeopleListing, PrimaryButton, PromoWithTitle, RotatorButtons, SecondaryButton, SecondaryLogo, SectionSplitter, SectionTitle, Sponsorship, StreamBadge, Subtitle, TabLink, Tabs, TertiaryButton, TextOnly, ThemeProvider, TypeTags
|
|
58
|
+
Accordion, Accordions, AltHeader, AnchorTapBar, BodyText, Card, Cards, Carousel, CinemaBadge, devices, Editorial, Footer, GlobalStyles, Grid, GridItem, Header, HighlightsCarousel, HighlightsCarouselCinema, HighlightsCarouselCore, HighlightsCarouselStream, Icon, ImageWithCaption, Navigation, Overline, PageHeadingCinema, PageHeadingCore, PageHeadingImpact, PageHeadingStream, PeopleListing, PrimaryButton, PromoWithTitle, RotatorButtons, SecondaryButton, SecondaryLogo, SectionSplitter, SectionTitle, Sponsorship, StreamBadge, Subtitle, TabLink, Tabs, TertiaryButton, TextOnly, Tickbox, ThemeProvider, TypeTags
|
|
59
59
|
|
|
60
60
|
## Types
|
|
61
61
|
|
|
62
|
-
CarouselType, Colors, FooterData, INavigationProps, INavTopProps, ThemeType
|
|
62
|
+
AspectRatio, CarouselType, Colors, FooterData, INavigationProps, INavTopProps, TickboxMode, ThemeType
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
## Documentation
|