@royaloperahouse/harmonic 0.11.0-e → 0.11.0-f
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/SectionTitle/SectionTitle.d.ts +1 -1
- package/dist/harmonic.cjs.development.js +24 -17
- 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 +24 -17
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +5 -13
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -493,22 +493,14 @@ export interface IBodyContentProps {
|
|
|
493
493
|
}
|
|
494
494
|
export declare type SectionTitleSize = 'small' | 'large';
|
|
495
495
|
export interface ISectionTitleProps {
|
|
496
|
-
/**
|
|
497
|
-
* Title to display.
|
|
498
|
-
*/
|
|
496
|
+
/** Title to display. */
|
|
499
497
|
title: string;
|
|
500
|
-
/**
|
|
501
|
-
* Size of title to display - by default small, which renders as an H2 (and large is an H1).
|
|
502
|
-
*/
|
|
498
|
+
/** Size of title to display - by default small, which renders as an H2 (and large is an H1). */
|
|
503
499
|
size?: SectionTitleSize;
|
|
504
|
-
/**
|
|
505
|
-
* Optional description that can be rendered below the title.
|
|
506
|
-
*/
|
|
500
|
+
/** Optional description that can be rendered below the title. */
|
|
507
501
|
description?: string;
|
|
508
|
-
/**
|
|
509
|
-
|
|
510
|
-
*/
|
|
511
|
-
semanticLevel?: TypographyLevel;
|
|
502
|
+
/** Custom CSS classes */
|
|
503
|
+
className?: string;
|
|
512
504
|
}
|
|
513
505
|
export interface ILogosProps {
|
|
514
506
|
/**
|