@dfds-ui/react-components 2.0.14 → 2.0.15
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/accordion/Accordion.d.ts +4 -0
- package/accordion/Accordion.js +8 -8
- package/assertions/banner/BannerAction.d.ts +5 -1
- package/assertions/banner/BannerAction.js +4 -4
- package/cjs/accordion/Accordion.d.ts +4 -0
- package/cjs/accordion/Accordion.js +8 -8
- package/cjs/assertions/banner/BannerAction.d.ts +5 -1
- package/cjs/assertions/banner/BannerAction.js +4 -4
- package/package.json +9 -9
package/accordion/Accordion.d.ts
CHANGED
|
@@ -92,6 +92,10 @@ export declare type AccordionProps = {
|
|
|
92
92
|
* Hide the Divider (the grey line under the header)
|
|
93
93
|
*/
|
|
94
94
|
hideDivider?: boolean;
|
|
95
|
+
/**
|
|
96
|
+
* Updates component with children prop accordingly to the @types update
|
|
97
|
+
*/
|
|
98
|
+
children?: ReactNode;
|
|
95
99
|
};
|
|
96
100
|
export declare const Accordion: React.FunctionComponent<AccordionProps>;
|
|
97
101
|
export default Accordion;
|