@royaloperahouse/harmonic 0.1.9-a → 0.1.10-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/atoms/SponsorLogo/SponsorLogo.d.ts +1 -1
- package/dist/components/atoms/SponsorLogo/SponsorLogo.style.d.ts +1 -2
- package/dist/components/index.d.ts +2 -2
- package/dist/components/organisms/Footer/Footer.style.d.ts +0 -1
- package/dist/harmonic.cjs.development.css +1 -1
- package/dist/harmonic.cjs.development.js +252 -80
- 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 +253 -81
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/editorial.d.ts +3 -3
- package/dist/types/types.d.ts +0 -8
- package/package.json +1 -1
|
@@ -91,7 +91,7 @@ export interface IPromoWithTitleProps {
|
|
|
91
91
|
/**
|
|
92
92
|
* Text placed in the editorial component
|
|
93
93
|
*/
|
|
94
|
-
titleSize?: '
|
|
94
|
+
titleSize?: 'large' | 'medium';
|
|
95
95
|
/**
|
|
96
96
|
* Subtitle placed in the editorial component
|
|
97
97
|
*/
|
|
@@ -113,9 +113,9 @@ export interface IPromoWithTitleProps {
|
|
|
113
113
|
*/
|
|
114
114
|
links?: PromoLinks;
|
|
115
115
|
/**
|
|
116
|
-
* Semantic level of the title
|
|
116
|
+
* Semantic level of the promo title header - h2 or h3.
|
|
117
117
|
*/
|
|
118
|
-
|
|
118
|
+
titleHierarchy: 'h2' | 'h3';
|
|
119
119
|
/**
|
|
120
120
|
* Additional CSS class names to apply to component.
|
|
121
121
|
*/
|
package/dist/types/types.d.ts
CHANGED
|
@@ -372,10 +372,6 @@ export interface IGridItemProps extends StyledProps<any> {
|
|
|
372
372
|
columnSpanSmallDevice?: number;
|
|
373
373
|
}
|
|
374
374
|
export interface ISponsorLogoProps {
|
|
375
|
-
/**
|
|
376
|
-
* The sponsor logo image source
|
|
377
|
-
*/
|
|
378
|
-
children?: ReactNode;
|
|
379
375
|
/**
|
|
380
376
|
* Color for the logo
|
|
381
377
|
*/
|
|
@@ -388,10 +384,6 @@ export interface ISponsorLogoProps {
|
|
|
388
384
|
* Alternative text for the logo (used for accessibility)
|
|
389
385
|
*/
|
|
390
386
|
alt?: string;
|
|
391
|
-
/**
|
|
392
|
-
* S3 Image source
|
|
393
|
-
*/
|
|
394
|
-
imageSource?: string;
|
|
395
387
|
}
|
|
396
388
|
export interface ISponsorshipProps {
|
|
397
389
|
/**
|