@royaloperahouse/chord 0.3.7 → 0.4.1

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 +39 -18
  2. package/README.md +2 -2
  3. package/dist/chord.cjs.development.js +607 -177
  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 +585 -156
  8. package/dist/chord.esm.js.map +1 -1
  9. package/dist/components/atoms/ControlledDropdown/ControlledDropdown.d.ts +4 -0
  10. package/dist/components/atoms/ControlledDropdown/ControlledDropdown.style.d.ts +4 -0
  11. package/dist/components/atoms/ControlledDropdown/index.d.ts +2 -0
  12. package/dist/components/atoms/Logo/Logo.d.ts +1 -1
  13. package/dist/components/atoms/Logo/Logo.style.d.ts +1 -6
  14. package/dist/components/index.d.ts +3 -3
  15. package/dist/components/molecules/Card/Card.style.d.ts +3 -2
  16. package/dist/components/molecules/ImageWithCaption/ImageWithCaption.d.ts +4 -0
  17. package/dist/components/molecules/ImageWithCaption/ImageWithCaption.style.d.ts +2 -0
  18. package/dist/components/molecules/ImageWithCaption/index.d.ts +2 -0
  19. package/dist/components/molecules/PromoWithTitle/PromoWithTitle.style.d.ts +1 -1
  20. package/dist/components/molecules/index.d.ts +3 -1
  21. package/dist/components/organisms/Carousel/Carousel.d.ts +5 -0
  22. package/dist/components/organisms/Carousel/Carousel.style.d.ts +5 -0
  23. package/dist/components/organisms/Carousel/index.d.ts +2 -0
  24. package/dist/components/organisms/Navigation/Navigation.d.ts +1 -1
  25. package/dist/components/organisms/index.d.ts +2 -1
  26. package/dist/index.d.ts +3 -3
  27. package/dist/styles/zIndexes.d.ts +4 -0
  28. package/dist/types/card.d.ts +28 -3
  29. package/dist/types/carousel.d.ts +48 -0
  30. package/dist/types/editorial.d.ts +9 -1
  31. package/dist/types/image.d.ts +15 -0
  32. package/dist/types/index.d.ts +2 -2
  33. package/dist/types/navigation.d.ts +16 -0
  34. package/dist/types/types.d.ts +76 -0
  35. package/package.json +6 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## [0.4.1]
4
+ - Swiper included as dependency
5
+ - Fix for italics in Editorial, Card and PromoWithTitle components
6
+ - Extra Props for AnchorTapBar
7
+
8
+ ## [0.4.0]
9
+ - Navigation Logo breaking change
10
+ - Colors enum exported as in types
11
+
12
+ ## [0.3.9]
13
+ - Added Carousel Component
14
+ - Dropdowns overlap fix
15
+ - z-index fixes (for cards overlapping Anchor Tabs)
16
+ - Navigation menu alignment fix
17
+
18
+ ## [0.3.8]
19
+ - Add possibility to configure GridItem for TextOnly component
20
+ - Rich Text Editor Styling fix
21
+ - Tweaks to Button layout for components
22
+ - Anchor navigation arrows fix
23
+
3
24
  ## [0.3.7]
4
25
  - Typography change for Subtitle 2
5
26
  - AltHeader, BodyText, Header, Overline and Subtitle Components
@@ -8,33 +29,33 @@
8
29
  - made 'devices' public
9
30
 
10
31
  ## [0.3.6]
11
- - PageHeading Component
12
- - SectionTitle multiline fix
32
+ - PageHeading Component
33
+ - SectionTitle multiline fix
13
34
 
14
35
  ## [0.3.5]
15
- - Fix for Searchbox border on iOS
16
- - Fix for Accordion - Mobile Styling Issue
17
- - Fix for Card Component - Styling Issues
18
- - Change in Search layout
36
+ - Fix for Searchbox border on iOS
37
+ - Fix for Accordion - Mobile Styling Issue
38
+ - Fix for Card Component - Styling Issues
39
+ - Change in Search layout
19
40
 
20
41
  ## [0.3.4]
21
- - Added Rotator Buttons
22
- - General Gotham SSm A & B font setup fixes
23
- - Fix for Footer font and size in mobile view
24
- - Subtitles 2 typography changes
42
+ - Added Rotator Buttons
43
+ - General Gotham SSm A & B font setup fixes
44
+ - Fix for Footer font and size in mobile view
45
+ - Subtitles 2 typography changes
25
46
 
26
47
  ## [0.3.3]
27
- - Added AnchorTapBar Component
28
- - Added Accordion Component
29
- - Added Card Component
30
- - Fixes to fonts setup
31
- - Fix for Navigation Search font and mobile view
48
+ - Added AnchorTapBar Component
49
+ - Added Accordion Component
50
+ - Added Card Component
51
+ - Fixes to fonts setup
52
+ - Fix for Navigation Search font and mobile view
32
53
 
33
54
  ## [0.3.0]
34
- - Design system project renamed and moved to chord
55
+ - Design system project renamed and moved to chord
35
56
 
36
57
  ## [0.2.0]
37
- - public NPM Library
58
+ - public NPM Library
38
59
 
39
60
  ## [0.1.0]
40
- - Initial version
61
+ - Initial version
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, Header, Overline,Navigation, PageHeading, PeopleListing, PrimaryButton, PromoWithTitle, RotatorButtons, SecondaryButton, SectionSplitter, SectionTitle, Sponsorship, Subtitle, TabLink, Tabs, TertiaryButton, TextOnly, ThemeProvider, TypeTags
58
+ Accordion, Accordions, AltHeader, AnchorTapBar, BodyText, Card, Cards, Carousel, CinemaBadge, Colors, devices, Editorial, Footer, GlobalStyles, Grid, GridItem, Icon, ImageWithCaption, Header, Navigation, Overline, PageHeadingCinema, PageHeadingCore, PageHeadingImpact, PageHeadingStream, PeopleListing, PrimaryButton, PromoWithTitle, RotatorButtons, SecondaryButton, SecondaryLogo, SectionSplitter, SectionTitle, Sponsorship, StreamBadge, Subtitle, TabLink, Tabs, TertiaryButton, TextOnly, ThemeProvider, ThemeType, TypeTags
59
59
 
60
60
  ## Types
61
61
 
62
- FooterData, INavigationProps, INavTopProps, ThemeType
62
+ Colors, FooterData, INavigationProps, INavTopProps, ThemeType
63
63
 
64
64
 
65
65
  ## Documentation