@royaloperahouse/chord 0.4.0 → 0.4.4
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 +15 -0
- package/README.md +2 -2
- package/dist/chord.cjs.development.js +706 -320
- 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 +681 -295
- 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/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/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 +2 -1
- package/dist/types/navigation.d.ts +10 -2
- package/dist/types/types.d.ts +22 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [0.4.4]
|
|
4
|
+
- AnchorTapBar a11y: added tabIndex to links
|
|
5
|
+
|
|
6
|
+
## [0.4.3]
|
|
7
|
+
- Prevent focus when navigation tab is clicked
|
|
8
|
+
|
|
9
|
+
## [0.4.2]
|
|
10
|
+
- Highlights Carousel Components
|
|
11
|
+
- Keyboard navigation fix for Navigation Component
|
|
12
|
+
|
|
13
|
+
## [0.4.1]
|
|
14
|
+
- Swiper included as dependency
|
|
15
|
+
- Fix for italics in Editorial, Card and PromoWithTitle components
|
|
16
|
+
- Extra Props for AnchorTapBar
|
|
17
|
+
|
|
3
18
|
## [0.4.0]
|
|
4
19
|
- Navigation Logo breaking change
|
|
5
20
|
- Colors enum exported as in types
|
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, Icon, ImageWithCaption,
|
|
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
|
-
Colors, FooterData, INavigationProps, INavTopProps, ThemeType
|
|
62
|
+
CarouselType, Colors, FooterData, INavigationProps, INavTopProps, ThemeType
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
## Documentation
|