@royaloperahouse/harmonic 0.1.1-d → 0.1.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 (30) hide show
  1. package/CHANGELOG.md +185 -6
  2. package/README.GIT +286 -0
  3. package/README.md +41 -258
  4. package/dist/components/atoms/ImageAspectRatioWrapper/ImageAspectRatioWrapper.d.ts +3 -2
  5. package/dist/components/atoms/ImageAspectRatioWrapper/ImageAspectRatioWrapper.style.d.ts +3 -0
  6. package/dist/components/atoms/SocialLinks/SocialLinks.d.ts +4 -0
  7. package/dist/components/atoms/SocialLinks/SocialLinks.style.d.ts +2 -0
  8. package/dist/components/atoms/SocialLinks/index.d.ts +2 -0
  9. package/dist/components/atoms/SponsorLogo/SponsorLogo.d.ts +1 -1
  10. package/dist/components/atoms/index.d.ts +2 -1
  11. package/dist/components/molecules/ImageWithCaption/ImageWithCaption.style.d.ts +2 -2
  12. package/dist/components/molecules/PolicyLinks/PolicyLinks.d.ts +3 -3
  13. package/dist/components/molecules/PolicyLinks/PolicyLinks.style.d.ts +1 -3
  14. package/dist/components/molecules/index.d.ts +2 -1
  15. package/dist/components/organisms/Footer/Footer.d.ts +2 -2
  16. package/dist/components/organisms/Footer/Footer.style.d.ts +5 -5
  17. package/dist/harmonic.cjs.development.css +1 -5
  18. package/dist/harmonic.cjs.development.js +898 -838
  19. package/dist/harmonic.cjs.development.js.map +1 -1
  20. package/dist/harmonic.cjs.production.min.js +1 -1
  21. package/dist/harmonic.cjs.production.min.js.map +1 -1
  22. package/dist/harmonic.esm.js +899 -839
  23. package/dist/harmonic.esm.js.map +1 -1
  24. package/dist/helpers/devices.d.ts +6 -0
  25. package/dist/styles/themes.d.ts +32 -0
  26. package/dist/types/footer.d.ts +6 -0
  27. package/dist/types/image.d.ts +14 -4
  28. package/dist/types/types.d.ts +4 -0
  29. package/dist/types/typography.d.ts +1 -6
  30. package/package.json +2 -2
@@ -10,6 +10,7 @@ import Information from './Information';
10
10
  import { PageHeadingCinema, PageHeadingCore, PageHeadingImpact, PageHeadingPanel, PageHeadingStream, PageHeadingCompact } from './PageHeading';
11
11
  import Pagination from './Pagination';
12
12
  import { PeopleListing, CreditListing } from './PeopleListing';
13
+ import PolicyLinks from './PolicyLinks';
13
14
  import PromoWithTags from './PromoWithTags';
14
15
  import PromoWithTitle from './PromoWithTitle';
15
16
  import RadioGroup from './RadioGroup';
@@ -31,4 +32,4 @@ import AuxiliaryNav from './AuxiliaryNav';
31
32
  import PasswordStrength from './PasswordStrength';
32
33
  import Table from './Table';
33
34
  import VideoWithControls from './VideoWithControls';
34
- export { Accordion, Accordions, AnnouncementBanner, AuxiliaryNav, Card, Cards, ContactCard, ContentSummary, CreditListing, Editorial, ImageWithCaption, Information, MiniCard, PageHeadingCinema, PageHeadingCompact, PageHeadingCore, PageHeadingImpact, PageHeadingPanel, PageHeadingStream, PasswordStrength, Pagination, PeopleListing, PromoWithTags, PromoWithTitle, RadioGroup, RadioGroup2, ReadMore, Quote, StatusBanner, SectionTitle, SearchBar, Select, Select2, Select2Async, Tabs, Table, TextOnly, UpsellCard, VideoWithControls, };
35
+ export { Accordion, Accordions, AnnouncementBanner, AuxiliaryNav, Card, Cards, ContactCard, ContentSummary, CreditListing, Editorial, ImageWithCaption, Information, MiniCard, PageHeadingCinema, PageHeadingCompact, PageHeadingCore, PageHeadingImpact, PageHeadingPanel, PageHeadingStream, PasswordStrength, Pagination, PeopleListing, PolicyLinks, PromoWithTags, PromoWithTitle, RadioGroup, RadioGroup2, ReadMore, Quote, StatusBanner, SectionTitle, SearchBar, Select, Select2, Select2Async, Tabs, Table, TextOnly, UpsellCard, VideoWithControls, };
@@ -1,4 +1,4 @@
1
- import { FunctionComponent } from 'react';
1
+ import React from 'react';
2
2
  import { IFooterProps } from '../../../types/footer';
3
- declare const Footer: FunctionComponent<IFooterProps>;
3
+ declare const Footer: React.FC<IFooterProps>;
4
4
  export default Footer;
@@ -1,6 +1,6 @@
1
- export declare const FooterSection: import("styled-components").StyledComponent<"section", any, {}, never>;
1
+ export declare const FooterSection: import("styled-components").StyledComponent<"footer", any, {}, never>;
2
2
  export declare const FooterContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
3
- export declare const PolicyLinksRow: import("styled-components").StyledComponent<"div", any, {}, never>;
4
- export declare const ContactNewsletterRow: import("styled-components").StyledComponent<"div", any, {}, never>;
5
- export declare const ArtsLogoRow: import("styled-components").StyledComponent<"div", any, {}, never>;
6
- export declare const AdditionalInfo: import("styled-components").StyledComponent<"p", any, {}, never>;
3
+ export declare const PolicyLinksSection: import("styled-components").StyledComponent<"div", any, {}, never>;
4
+ export declare const SocialAndNewsletterSection: import("styled-components").StyledComponent<"div", any, {}, never>;
5
+ export declare const LogoAndDescriptionSection: import("styled-components").StyledComponent<"div", any, {}, never>;
6
+ export declare const NewsletterBodyTextWrapper: import("styled-components").StyledComponent<({ level, children, tag }: import("../../../types/typography").IBodyTextProps) => import("react").JSX.Element, any, {}, never>;
@@ -237,10 +237,6 @@
237
237
  font-size: 17px;
238
238
  font-weight: 500;
239
239
  text-transform: uppercase;
240
+ letter-spacing: 0.4px;
240
241
  line-height: 17px;
241
-
242
- @media (max-width: 600px) {
243
- font-size: 14px;
244
- line-height: 17px;
245
- }
246
242
  }