@royaloperahouse/harmonic 0.2.3-h → 0.2.3-i
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/dist/components/Typography/utils.d.ts +3 -0
- package/dist/components/atoms/TextField/TextField.style.d.ts +0 -1
- package/dist/components/molecules/SignUpForm/SignUpForm.style.d.ts +2 -2
- package/dist/components/molecules/Swipe/helper.d.ts +0 -2
- package/dist/components/organisms/Carousels/HighlightsCarousel/components/SwipeCarousel.d.ts +0 -1
- package/dist/harmonic.cjs.development.css +259 -288
- package/dist/harmonic.cjs.development.js +177 -120
- 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 +201 -152
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/helpers/theme.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/styles/HarmonicThemeProvider/HarmonicThemeProvider.d.ts +0 -1
- package/dist/types/signUpForm.d.ts +0 -5
- package/package.json +1 -1
package/dist/helpers/theme.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ThemeType } from '../types';
|
|
2
|
-
export declare const themeToColor: (theme: ThemeType) => "primary-red" | "primary-black" | "
|
|
2
|
+
export declare const themeToColor: (theme: ThemeType) => "primary-red" | "primary-black" | "secondary-blue";
|
package/dist/index.d.ts
CHANGED
|
@@ -7,4 +7,5 @@ import { ModalWindow } from './components/organisms';
|
|
|
7
7
|
import AuxiliaryButton from './components/atoms/Buttons/Auxiliary/AuxiliaryButton';
|
|
8
8
|
import HarmonicThemeProvider from './styles/HarmonicThemeProvider';
|
|
9
9
|
import { HarmonicSize } from './types/typography';
|
|
10
|
-
|
|
10
|
+
import { HarmonicHeader, HarmonicSubtitle, BodyCopyHarmonic, HarmonicOverline, ButtonText, Caption, NavigationText } from './components/Typography';
|
|
11
|
+
export { Accordion, Accordions, AnnouncementBanner, AltHeader, AnchorTabBar, AuxiliaryButton, AuxiliaryNav, AspectRatio, BodyText, breakpoints, ButtonType, Card, Cards, CarouselType, Carousel, CinemaBadge, Colors, ContactCard, ContentSummary, ControlledDropdown, CreditListing, devices, Editorial, EditorialLink, Footer, GlobalStyles, Grid, GridItem, HarmonicSize, HarmonicThemeProvider, Header, HighlightsCarousel, HighlightsCarouselCinema, HighlightsCarouselCore, HighlightsCarouselStream, Icon, IconNameType, ImageAspectRatioWrapper, ImageWithCaption, Information, IInformationCTAProps, IInformationTitleProps, ITimerProps, IntegratedTimerProps, MinimalCarousel, MiniCard, ModalWindow, Navigation, Overline, PageHeadingCinema, PageHeadingCompact, PageHeadingCore, PageHeadingImpact, PageHeadingPanel, PageHeadingPromo, PageHeadingStream, Pagination, PasswordStrength, PeopleListing, PrimaryButton, Progress, PromoWithTags, PromoWithTitle, Radio, Radio2, RadioGroup, RadioGroup2, ReadMore, RotatorButtons, StatusBanner, SearchBar, SecondaryButton, SecondaryLogo, SectionSplitter, SectionTitle, Select, Select2, Select2Async, Sponsorship, StickyBar, Stepper, StreamBadge, Subtitle, Tab, Table, TabLink, Tabs, TertiaryButton, TextArea, TextField, TextFieldLegacy, TextLink, TextOnly, ThemeColor, ThemeProvider, ThemeType, TitleWithCTA, Tickbox, Tickbox2, TickboxMode, Timer, TypeTags, UpsellCard, UpsellSection, Quote, VideoControls, VideoWithControls, zIndexes, SignUpForm, HarmonicHeader, HarmonicSubtitle, BodyCopyHarmonic, HarmonicOverline, ButtonText, Caption, NavigationText, };
|
|
@@ -56,10 +56,6 @@ export interface ISignUpFormProps {
|
|
|
56
56
|
submitHandler: (data: SignUpRequestBody) => Promise<{
|
|
57
57
|
success: boolean;
|
|
58
58
|
}>;
|
|
59
|
-
/**
|
|
60
|
-
* Class Name
|
|
61
|
-
*/
|
|
62
|
-
className?: string;
|
|
63
59
|
}
|
|
64
60
|
export declare type SignUpFormComponentTitleProps = {
|
|
65
61
|
title: string;
|
|
@@ -80,6 +76,5 @@ export declare type SignUpFormComponentFormProps = Pick<ISignUpFormProps, 'ctaPr
|
|
|
80
76
|
setIsSuccess: Dispatch<SetStateAction<boolean>>;
|
|
81
77
|
formValues: FormValues;
|
|
82
78
|
setFormValues: Dispatch<SetStateAction<FormValues>>;
|
|
83
|
-
className?: string;
|
|
84
79
|
};
|
|
85
80
|
export {};
|