@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.
- package/CHANGELOG.md +185 -6
- package/README.GIT +286 -0
- package/README.md +41 -258
- package/dist/components/atoms/ImageAspectRatioWrapper/ImageAspectRatioWrapper.d.ts +3 -2
- package/dist/components/atoms/ImageAspectRatioWrapper/ImageAspectRatioWrapper.style.d.ts +3 -0
- package/dist/components/atoms/SocialLinks/SocialLinks.d.ts +4 -0
- package/dist/components/atoms/SocialLinks/SocialLinks.style.d.ts +2 -0
- package/dist/components/atoms/SocialLinks/index.d.ts +2 -0
- package/dist/components/atoms/SponsorLogo/SponsorLogo.d.ts +1 -1
- package/dist/components/atoms/index.d.ts +2 -1
- package/dist/components/molecules/ImageWithCaption/ImageWithCaption.style.d.ts +2 -2
- package/dist/components/molecules/PolicyLinks/PolicyLinks.d.ts +3 -3
- package/dist/components/molecules/PolicyLinks/PolicyLinks.style.d.ts +1 -3
- package/dist/components/molecules/index.d.ts +2 -1
- package/dist/components/organisms/Footer/Footer.d.ts +2 -2
- package/dist/components/organisms/Footer/Footer.style.d.ts +5 -5
- package/dist/harmonic.cjs.development.css +1 -5
- package/dist/harmonic.cjs.development.js +898 -838
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +899 -839
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/helpers/devices.d.ts +6 -0
- package/dist/styles/themes.d.ts +32 -0
- package/dist/types/footer.d.ts +6 -0
- package/dist/types/image.d.ts +14 -4
- package/dist/types/types.d.ts +4 -0
- package/dist/types/typography.d.ts +1 -6
- 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,6 +1,6 @@
|
|
|
1
|
-
export declare const FooterSection: import("styled-components").StyledComponent<"
|
|
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
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
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>;
|