@royaloperahouse/chord 0.3.8 → 0.4.2
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 +19 -0
- package/README.md +2 -2
- package/dist/chord.cjs.development.js +1157 -431
- 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 +1136 -413
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/ControlledDropdown/ControlledDropdown.d.ts +4 -0
- package/dist/components/atoms/ControlledDropdown/ControlledDropdown.style.d.ts +7 -0
- package/dist/components/atoms/ControlledDropdown/index.d.ts +2 -0
- 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 +3 -3
- package/dist/components/molecules/Card/Card.style.d.ts +2 -2
- package/dist/components/molecules/ImageWithCaption/ImageWithCaption.d.ts +4 -0
- package/dist/components/molecules/ImageWithCaption/ImageWithCaption.style.d.ts +2 -0
- package/dist/components/molecules/ImageWithCaption/index.d.ts +2 -0
- package/dist/components/molecules/index.d.ts +3 -1
- package/dist/components/organisms/Carousel/Carousel.d.ts +5 -0
- package/dist/components/organisms/Carousel/Carousel.style.d.ts +5 -0
- package/dist/components/organisms/Carousel/index.d.ts +2 -0
- 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 +3 -1
- package/dist/index.d.ts +3 -3
- package/dist/styles/zIndexes.d.ts +4 -0
- package/dist/types/card.d.ts +11 -0
- package/dist/types/carousel.d.ts +98 -0
- package/dist/types/image.d.ts +15 -0
- package/dist/types/index.d.ts +3 -2
- package/dist/types/navigation.d.ts +18 -2
- package/dist/types/types.d.ts +82 -0
- package/package.json +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [0.4.2]
|
|
4
|
+
- Highlights Carousel Components
|
|
5
|
+
- Keyboard navigation fix for Navigation Component
|
|
6
|
+
|
|
7
|
+
## [0.4.1]
|
|
8
|
+
- Swiper included as dependency
|
|
9
|
+
- Fix for italics in Editorial, Card and PromoWithTitle components
|
|
10
|
+
- Extra Props for AnchorTapBar
|
|
11
|
+
|
|
12
|
+
## [0.4.0]
|
|
13
|
+
- Navigation Logo breaking change
|
|
14
|
+
- Colors enum exported as in types
|
|
15
|
+
|
|
16
|
+
## [0.3.9]
|
|
17
|
+
- Added Carousel Component
|
|
18
|
+
- Dropdowns overlap fix
|
|
19
|
+
- z-index fixes (for cards overlapping Anchor Tabs)
|
|
20
|
+
- Navigation menu alignment fix
|
|
21
|
+
|
|
3
22
|
## [0.3.8]
|
|
4
23
|
- Add possibility to configure GridItem for TextOnly component
|
|
5
24
|
- Rich Text Editor Styling 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, 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
|