@selfdecode/sd-component-library 4.0.4 → 4.0.7

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.
@@ -8,6 +8,10 @@ export interface SublistAccordionProps {
8
8
  * Hidden content of the accordion. Should be wrapped inside the component.
9
9
  */
10
10
  children: React.ReactNode;
11
+ /**
12
+ * Height of the hidden content in pixels.
13
+ */
14
+ childrenHeight: number;
11
15
  /**
12
16
  * Number of entries in the accordion hidden content.
13
17
  */
@@ -21,10 +25,6 @@ export interface SublistAccordionProps {
21
25
  * (open/closed).
22
26
  */
23
27
  onChange?: (isOpen: boolean) => void;
24
- /**
25
- * Hash of the content. Accordion height will be recalculated when this hash changes.
26
- */
27
- contentHash?: string;
28
28
  /**
29
29
  * Optional text to override the default (x entries)
30
30
  */