@royaloperahouse/harmonic 1.0.6-e → 1.0.6-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/CHANGELOG.md +2 -0
- package/dist/components/molecules/Accordion/Accordion.style.d.ts +2 -1
- package/dist/harmonic.cjs.development.js +28 -21
- 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 +28 -21
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +3 -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 */
|