@royaloperahouse/chord 0.3.5 → 0.3.6

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.
Files changed (35) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/README.md +1 -1
  3. package/dist/chord.cjs.development.js +539 -257
  4. package/dist/chord.cjs.development.js.map +1 -1
  5. package/dist/chord.cjs.production.min.js +1 -1
  6. package/dist/chord.cjs.production.min.js.map +1 -1
  7. package/dist/chord.esm.js +533 -258
  8. package/dist/chord.esm.js.map +1 -1
  9. package/dist/components/atoms/Badge/Badge.style.d.ts +2 -0
  10. package/dist/components/atoms/Badge/CinemaBadge.d.ts +4 -0
  11. package/dist/components/atoms/Badge/StreamBadge.d.ts +4 -0
  12. package/dist/components/atoms/Badge/index.d.ts +3 -0
  13. package/dist/components/atoms/SecondaryLogo/SecodaryLogo.style.d.ts +2 -0
  14. package/dist/components/atoms/SecondaryLogo/SecondaryLogo.d.ts +4 -0
  15. package/dist/components/atoms/SecondaryLogo/index.d.ts +2 -0
  16. package/dist/components/atoms/index.d.ts +3 -1
  17. package/dist/components/index.d.ts +3 -3
  18. package/dist/components/molecules/PageHeading/Cinema/Cinema.d.ts +4 -0
  19. package/dist/components/molecules/PageHeading/Cinema/index.d.ts +2 -0
  20. package/dist/components/molecules/PageHeading/Core/Core.d.ts +4 -0
  21. package/dist/components/molecules/PageHeading/Core/index.d.ts +2 -0
  22. package/dist/components/molecules/PageHeading/Impact/Impact.d.ts +4 -0
  23. package/dist/components/molecules/PageHeading/Impact/Impact.style.d.ts +8 -0
  24. package/dist/components/molecules/PageHeading/Impact/index.d.ts +2 -0
  25. package/dist/components/molecules/PageHeading/PageHeading.d.ts +4 -0
  26. package/dist/components/molecules/PageHeading/PageHeading.style.d.ts +7 -0
  27. package/dist/components/molecules/PageHeading/Stream/Stream.d.ts +4 -0
  28. package/dist/components/molecules/PageHeading/Stream/index.d.ts +2 -0
  29. package/dist/components/molecules/PageHeading/index.d.ts +5 -0
  30. package/dist/components/molecules/index.d.ts +2 -1
  31. package/dist/index.d.ts +2 -2
  32. package/dist/styles/themes.d.ts +84 -0
  33. package/dist/types/editorial.d.ts +72 -3
  34. package/dist/types/types.d.ts +12 -0
  35. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## [0.3.6]
4
+ - PageHeading Component
5
+ - SectionTitle multiline fix
6
+
3
7
  ## [0.3.5]
4
8
  - Fix for Searchbox border on iOS
5
9
  - Fix for Accordion - Mobile Styling Issue
package/README.md CHANGED
@@ -55,7 +55,7 @@ const App = ({ children }: InnerProps): React.ReactElement => (
55
55
 
56
56
  ## Components
57
57
 
58
- Accordion, Accordions, AnchorTapBar, Cards, Editorial, Footer, GlobalStyles, Grid, GridItem, Icon, Heading, Navigation, PeopleListing, PrimaryButton, PromoWithTitle, RotatorButtons, SecondaryButton, SectionSplitter, SectionTitle, Sponsorship, TabLink, Tabs, TertiaryButton, TextOnly, ThemeProvider, TypeTags
58
+ Accordion, Accordions, AnchorTapBar, Cards, Editorial, Footer, GlobalStyles, Grid, GridItem, Icon, Heading, Navigation, PageHeading,PeopleListing, PrimaryButton, PromoWithTitle, RotatorButtons, SecondaryButton, SectionSplitter, SectionTitle, Sponsorship, TabLink, Tabs, TertiaryButton, TextOnly, ThemeProvider, TypeTags
59
59
 
60
60
  ## Types
61
61