@royaloperahouse/chord 0.7.0 → 0.7.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 +1 -1
- package/dist/chord.cjs.development.js +293 -279
- 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 +293 -281
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/index.d.ts +3 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/components/molecules/PeopleListing/PeopleListing.style.d.ts +0 -1
- package/dist/components/molecules/PeopleListing/Person.d.ts +7 -0
- package/dist/components/organisms/TitleWithCTA/TitleWithCTA.style.d.ts +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/types/types.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [0.7.4]
|
|
4
|
+
- Fix git README
|
|
5
|
+
|
|
6
|
+
## [0.7.3]
|
|
7
|
+
- Fix Styling in PeopleListing on Mobile
|
|
8
|
+
|
|
9
|
+
## [0.7.2]
|
|
10
|
+
- Add align center image in Editorial component
|
|
11
|
+
- Export ControlledDropdown component
|
|
12
|
+
|
|
13
|
+
## [0.7.1]
|
|
14
|
+
- Fix TitleWithCTA bug (visualization in two lines) in tablet
|
|
15
|
+
- Export TextLink component
|
|
16
|
+
- PeopleListing: custom person separator
|
|
17
|
+
|
|
3
18
|
## [0.7.0]
|
|
4
19
|
- PeopleListing: replace people prop by roles prop
|
|
5
20
|
|
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ 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, Tickbox, TitleWithCTA, ThemeProvider, TypeTags
|
|
58
|
+
Accordion, Accordions, AltHeader, AnchorTapBar, BodyText, Card, Cards, Carousel, CinemaBadge, ControlledDropdown, 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, Tab, TabLink, Tabs, TertiaryButton, TextLink, TextOnly, Tickbox, TitleWithCTA, ThemeProvider, TypeTags
|
|
59
59
|
|
|
60
60
|
## Types
|
|
61
61
|
|