@royaloperahouse/harmonic 1.0.6-e → 1.0.6-g
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 +2 -0
- package/dist/components/molecules/Accordion/Accordion.style.d.ts +2 -1
- package/dist/harmonic.cjs.development.js +34 -25
- 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 +34 -25
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +5 -1
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -689,7 +689,9 @@ export interface IAccordionProps {
|
|
|
689
689
|
/** The component to be wrapped into the accordion */
|
|
690
690
|
children?: ReactNode;
|
|
691
691
|
/** Set if accordions are stacked */
|
|
692
|
-
|
|
692
|
+
showTopLine?: boolean;
|
|
693
|
+
/** Set if accordions are stacked */
|
|
694
|
+
showBottomLine?: boolean;
|
|
693
695
|
/** Set init open */
|
|
694
696
|
initOpen?: boolean;
|
|
695
697
|
/** Custom CSS classes */
|
|
@@ -698,6 +700,8 @@ export interface IAccordionProps {
|
|
|
698
700
|
expandedStateIcon?: IIconProps;
|
|
699
701
|
/** Harmonic icon name and direction for collapsed state. Default is 'Expand' */
|
|
700
702
|
collapsedStateIcon?: IIconProps;
|
|
703
|
+
/** Allows styling of ChildrenContainer, e.g. margin or padding */
|
|
704
|
+
childrenContainerStyle?: React.CSSProperties;
|
|
701
705
|
}
|
|
702
706
|
export interface IAccordionsProps {
|
|
703
707
|
/** Array of Accordion component */
|