@royaloperahouse/harmonic 1.0.7-a → 1.0.7-b
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/CHANGELOG.md +3 -2
- package/dist/harmonic.cjs.development.js +3 -2
- 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 +3 -2
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -700,12 +700,12 @@ export interface IAccordionProps {
|
|
|
700
700
|
expandedStateIcon?: IIconProps;
|
|
701
701
|
/** Harmonic icon name and direction for collapsed state. Default is 'Expand' */
|
|
702
702
|
collapsedStateIcon?: IIconProps;
|
|
703
|
+
/** Components wrapped into the accordion that are always visible */
|
|
704
|
+
visibleStandfirst?: ReactNode;
|
|
703
705
|
/** Allows styling of ChildrenContainer, e.g. margin or padding */
|
|
704
706
|
childrenContainerStyle?: React.CSSProperties;
|
|
705
707
|
/** Allows title margin styling for cast sheets */
|
|
706
708
|
titleMargin?: string;
|
|
707
|
-
/** Components wrapped into the accordion that are always visible */
|
|
708
|
-
visibleStandfirst?: ReactNode;
|
|
709
709
|
}
|
|
710
710
|
export interface IAccordionsProps {
|
|
711
711
|
/** Array of Accordion component */
|