@royaloperahouse/chord 0.3.9 → 0.4.3
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 +748 -340
- 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 +723 -315
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/ControlledDropdown/ControlledDropdown.style.d.ts +4 -1
- package/dist/components/atoms/Dropdown/Dropdown.style.d.ts +2 -2
- package/dist/components/atoms/Logo/Logo.d.ts +1 -1
- package/dist/components/atoms/Logo/Logo.style.d.ts +1 -6
- package/dist/components/atoms/Tab/Tab.d.ts +1 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/components/organisms/HighlightsCarousel/HighlightsCarousel.d.ts +5 -0
- package/dist/components/organisms/HighlightsCarousel/HighlightsCarousel.style.d.ts +10 -0
- package/dist/components/organisms/HighlightsCarousel/HighlightsCinema.d.ts +4 -0
- package/dist/components/organisms/HighlightsCarousel/HighlightsCore.d.ts +4 -0
- package/dist/components/organisms/HighlightsCarousel/HighlightsStream.d.ts +4 -0
- package/dist/components/organisms/HighlightsCarousel/index.d.ts +5 -0
- package/dist/components/organisms/Navigation/Navigation.d.ts +1 -1
- package/dist/components/organisms/index.d.ts +2 -1
- package/dist/index.d.ts +3 -3
- package/dist/types/carousel.d.ts +50 -0
- package/dist/types/index.d.ts +3 -2
- package/dist/types/navigation.d.ts +18 -2
- package/dist/types/types.d.ts +34 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [0.4.3]
|
|
4
|
+
- Prevent focus when navigation tab is clicked
|
|
5
|
+
|
|
6
|
+
## [0.4.2]
|
|
7
|
+
- Highlights Carousel Components
|
|
8
|
+
- Keyboard navigation fix for Navigation Component
|
|
9
|
+
|
|
10
|
+
## [0.4.1]
|
|
11
|
+
- Swiper included as dependency
|
|
12
|
+
- Fix for italics in Editorial, Card and PromoWithTitle components
|
|
13
|
+
- Extra Props for AnchorTapBar
|
|
14
|
+
|
|
15
|
+
## [0.4.0]
|
|
16
|
+
- Navigation Logo breaking change
|
|
17
|
+
- Colors enum exported as in types
|
|
18
|
+
|
|
3
19
|
## [0.3.9]
|
|
4
20
|
- Added Carousel Component
|
|
5
21
|
- Dropdowns overlap fix
|
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, Cards, CinemaBadge, Editorial, Footer, GlobalStyles, Grid, GridItem, Icon,
|
|
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
|
|
59
59
|
|
|
60
60
|
## Types
|
|
61
61
|
|
|
62
|
-
FooterData, INavigationProps, INavTopProps, ThemeType
|
|
62
|
+
CarouselType, Colors, FooterData, INavigationProps, INavTopProps, ThemeType
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
## Documentation
|