Comparing version 2.0.10 to 2.0.11
import React from 'react'; | ||
interface AccordionItemPropTypes { | ||
disabled?: boolean; | ||
expanded?: boolean; | ||
title: string; | ||
children: React.ReactNode; | ||
} | ||
declare const AccordionItem: React.FC<AccordionItemPropTypes>; | ||
import { AccordionItem } from './Item'; | ||
interface AccordionProps { | ||
disabled?: number[]; | ||
expanded?: number[]; | ||
multi?: boolean; | ||
className?: string; | ||
children: React.ReactElement<AccordionItemPropTypes>[]; | ||
children: React.ReactNode; | ||
ref?: React.RefObject<AccordionRefObject>; | ||
@@ -22,4 +18,4 @@ } | ||
} | ||
declare const Accordion: React.ForwardRefExoticComponent<Pick<AccordionProps, "multi" | "className" | "children"> & React.RefAttributes<AccordionRefObject>>; | ||
declare const Accordion: React.ForwardRefExoticComponent<Pick<AccordionProps, "disabled" | "expanded" | "multi" | "className" | "children"> & React.RefAttributes<AccordionRefObject>>; | ||
export { AccordionItem, Accordion }; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "oah-ui", | ||
"version": "2.0.10", | ||
"version": "2.0.11", | ||
"description": "React Styled Components with bootstrap grid system", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.cjs.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
187
1140727
14090