@royaloperahouse/harmonic 0.7.1-d → 0.7.1-e
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/ContentSummary/ContentSummary.d.ts +1 -1
- package/dist/components/molecules/ContentSummary/ContentSummary.style.d.ts +1 -1
- package/dist/harmonic.cjs.development.js +23 -22
- 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 +23 -22
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/editorial.d.ts +7 -3
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { StyledProps } from 'styled-components';
|
|
|
3
3
|
import { ButtonType } from './buttonTypes';
|
|
4
4
|
import { DirectionType, IconNameType } from './iconTypes';
|
|
5
5
|
import { IVideoWithControlsSettings, ThemeColor, ThemeType } from './types';
|
|
6
|
-
import { HarmonicSize, HeaderHierarchy
|
|
6
|
+
import { HarmonicSize, HeaderHierarchy } from './typography';
|
|
7
7
|
export interface IEditorialProps {
|
|
8
8
|
/**
|
|
9
9
|
* Text placed in the editorial component
|
|
@@ -263,9 +263,13 @@ export interface IContentSummaryProps {
|
|
|
263
263
|
*/
|
|
264
264
|
fullyClickable?: boolean;
|
|
265
265
|
/**
|
|
266
|
-
* The
|
|
266
|
+
* The semantic header level for the component
|
|
267
267
|
*/
|
|
268
|
-
|
|
268
|
+
headerSemanticLevel?: HeaderHierarchy;
|
|
269
|
+
/**
|
|
270
|
+
* The component's class name
|
|
271
|
+
*/
|
|
272
|
+
className?: string;
|
|
269
273
|
}
|
|
270
274
|
export interface IPanelHeadingProps {
|
|
271
275
|
/**
|