@royaloperahouse/harmonic 0.13.1-g → 0.13.2-a
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/molecules/PromoWithTags/PromoWithTags.style.d.ts +271 -1
- package/dist/components/molecules/PromoWithTitle/PromoWithTitle.style.d.ts +271 -1
- package/dist/components/molecules/UpsellCard/UpsellCard.style.d.ts +272 -10
- package/dist/components/organisms/Carousels/Carousel/Carousel.style.d.ts +271 -1
- package/dist/components/organisms/UpsellSection/UpsellSection.style.d.ts +271 -1
- package/dist/harmonic.cjs.development.css +17 -3
- package/dist/harmonic.cjs.development.js +870 -868
- 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 +874 -872
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/upsell.d.ts +7 -15
- package/package.json +1 -1
package/dist/types/upsell.d.ts
CHANGED
|
@@ -68,24 +68,16 @@ export interface IUpsellCardsProps {
|
|
|
68
68
|
theme?: ThemeType;
|
|
69
69
|
}
|
|
70
70
|
export interface IUpsellSectionProps {
|
|
71
|
-
/**
|
|
72
|
-
* Upsell Section title
|
|
73
|
-
*/
|
|
71
|
+
/** Upsell Section title */
|
|
74
72
|
title?: string;
|
|
75
|
-
/**
|
|
76
|
-
* Richtext section
|
|
77
|
-
*/
|
|
73
|
+
/** Richtext section */
|
|
78
74
|
richText?: string;
|
|
79
|
-
/**
|
|
80
|
-
* CTA link. Eg. for sign in.
|
|
81
|
-
*/
|
|
75
|
+
/** CTA link. Eg. for sign in. */
|
|
82
76
|
link?: EditorialLink;
|
|
83
|
-
/**
|
|
84
|
-
* Array of upsellCards
|
|
85
|
-
*/
|
|
77
|
+
/** Array of upsellCards */
|
|
86
78
|
upsellCards?: IUpsellCardProps[];
|
|
87
|
-
/**
|
|
88
|
-
* Theme options
|
|
89
|
-
*/
|
|
79
|
+
/** Theme options */
|
|
90
80
|
theme?: ThemeType;
|
|
81
|
+
/** Custom CSS classes */
|
|
82
|
+
className?: string;
|
|
91
83
|
}
|