@royaloperahouse/chord 0.3.6 → 0.4.0

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 (46) hide show
  1. package/CHANGELOG.md +41 -18
  2. package/README.md +2 -2
  3. package/dist/chord.cjs.development.js +1132 -420
  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 +1125 -421
  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/atoms/TypeTags/TypeTags.style.d.ts +0 -1
  15. package/dist/components/atoms/Typography/Typography.d.ts +7 -0
  16. package/dist/components/atoms/Typography/Typography.style.d.ts +3 -0
  17. package/dist/components/atoms/Typography/index.d.ts +2 -0
  18. package/dist/components/atoms/index.d.ts +2 -2
  19. package/dist/components/index.d.ts +4 -4
  20. package/dist/components/molecules/Accordion/Accordion.style.d.ts +2 -2
  21. package/dist/components/molecules/Card/Card.style.d.ts +3 -2
  22. package/dist/components/molecules/ImageWithCaption/ImageWithCaption.d.ts +4 -0
  23. package/dist/components/molecules/ImageWithCaption/ImageWithCaption.style.d.ts +2 -0
  24. package/dist/components/molecules/ImageWithCaption/index.d.ts +2 -0
  25. package/dist/components/molecules/PromoWithTitle/PromoWithTitle.style.d.ts +1 -1
  26. package/dist/components/molecules/index.d.ts +3 -1
  27. package/dist/components/organisms/Carousel/Carousel.d.ts +5 -0
  28. package/dist/components/organisms/Carousel/Carousel.style.d.ts +5 -0
  29. package/dist/components/organisms/Carousel/index.d.ts +2 -0
  30. package/dist/components/organisms/Navigation/Navigation.d.ts +1 -1
  31. package/dist/components/organisms/index.d.ts +2 -1
  32. package/dist/index.d.ts +3 -2
  33. package/dist/styles/themes.d.ts +168 -24
  34. package/dist/styles/zIndexes.d.ts +4 -0
  35. package/dist/types/card.d.ts +28 -3
  36. package/dist/types/carousel.d.ts +48 -0
  37. package/dist/types/editorial.d.ts +9 -1
  38. package/dist/types/image.d.ts +15 -0
  39. package/dist/types/index.d.ts +2 -2
  40. package/dist/types/navigation.d.ts +8 -0
  41. package/dist/types/types.d.ts +79 -18
  42. package/dist/types/typography.d.ts +73 -0
  43. package/package.json +4 -1
  44. package/dist/components/atoms/Heading/Heading.d.ts +0 -3
  45. package/dist/components/atoms/Heading/Heading.style.d.ts +0 -3
  46. package/dist/components/atoms/Heading/index.d.ts +0 -2
package/CHANGELOG.md CHANGED
@@ -1,33 +1,56 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## [0.4.0]
4
+ - Navigation Logo breaking change
5
+ - Colors enum exported as in types
6
+
7
+ ## [0.3.9]
8
+ - Added Carousel Component
9
+ - Dropdowns overlap fix
10
+ - z-index fixes (for cards overlapping Anchor Tabs)
11
+ - Navigation menu alignment fix
12
+
13
+ ## [0.3.8]
14
+ - Add possibility to configure GridItem for TextOnly component
15
+ - Rich Text Editor Styling fix
16
+ - Tweaks to Button layout for components
17
+ - Anchor navigation arrows fix
18
+
19
+ ## [0.3.7]
20
+ - Typography change for Subtitle 2
21
+ - AltHeader, BodyText, Header, Overline and Subtitle Components
22
+ - REMOVED Heading Component - replaced by Header Component
23
+ - Accordion Component able to support other components as content
24
+ - made 'devices' public
25
+
3
26
  ## [0.3.6]
4
- - PageHeading Component
5
- - SectionTitle multiline fix
27
+ - PageHeading Component
28
+ - SectionTitle multiline fix
6
29
 
7
30
  ## [0.3.5]
8
- - Fix for Searchbox border on iOS
9
- - Fix for Accordion - Mobile Styling Issue
10
- - Fix for Card Component - Styling Issues
11
- - Change in Search layout
31
+ - Fix for Searchbox border on iOS
32
+ - Fix for Accordion - Mobile Styling Issue
33
+ - Fix for Card Component - Styling Issues
34
+ - Change in Search layout
12
35
 
13
36
  ## [0.3.4]
14
- - Added Rotator Buttons
15
- - General Gotham SSm A & B font setup fixes
16
- - Fix for Footer font and size in mobile view
17
- - Subtitles 2 typography changes
37
+ - Added Rotator Buttons
38
+ - General Gotham SSm A & B font setup fixes
39
+ - Fix for Footer font and size in mobile view
40
+ - Subtitles 2 typography changes
18
41
 
19
42
  ## [0.3.3]
20
- - Added AnchorTapBar Component
21
- - Added Accordion Component
22
- - Added Card Component
23
- - Fixes to fonts setup
24
- - Fix for Navigation Search font and mobile view
43
+ - Added AnchorTapBar Component
44
+ - Added Accordion Component
45
+ - Added Card Component
46
+ - Fixes to fonts setup
47
+ - Fix for Navigation Search font and mobile view
25
48
 
26
49
  ## [0.3.0]
27
- - Design system project renamed and moved to chord
50
+ - Design system project renamed and moved to chord
28
51
 
29
52
  ## [0.2.0]
30
- - public NPM Library
53
+ - public NPM Library
31
54
 
32
55
  ## [0.1.0]
33
- - Initial version
56
+ - 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, 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
58
+ Accordion, Accordions, AltHeader, AnchorTapBar, BodyText, Card, Cards, Carousel, CinemaBadge, 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