cfd-react-components
Advanced tools
Comparing version 1.1.2 to 1.1.3
/// <reference types="react" /> | ||
export default function LayoutFooter({ children, height }: { | ||
export default function LayoutFooter({ children, height, className }: { | ||
children: JSX.Element; | ||
height: number; | ||
height: string; | ||
className: string; | ||
}): JSX.Element; |
/// <reference types="react" /> | ||
export default function LayoutHeader({ children, height }: { | ||
export default function LayoutHeader({ children, height, className }: { | ||
children: JSX.Element; | ||
height: number; | ||
height: string; | ||
className: string; | ||
}): JSX.Element; |
/// <reference types="react" /> | ||
export default function QueryMenu({ children, width }: { | ||
export default function QueryMenu({ children, width, className }: { | ||
children: JSX.Element; | ||
width: number; | ||
width: string; | ||
className: string; | ||
}): JSX.Element; |
/// <reference types="react" /> | ||
export default function VisualizationViewport({ children, }: { | ||
export default function VisualizationViewport({ children, className, }: { | ||
children: JSX.Element; | ||
className: string; | ||
}): JSX.Element; |
/// <reference types="react" /> | ||
export default function LayoutFooter({ children, height }: { | ||
export default function LayoutFooter({ children, height, className }: { | ||
children: JSX.Element; | ||
height: number; | ||
height: string; | ||
className: string; | ||
}): JSX.Element; |
/// <reference types="react" /> | ||
export default function LayoutHeader({ children, height }: { | ||
export default function LayoutHeader({ children, height, className }: { | ||
children: JSX.Element; | ||
height: number; | ||
height: string; | ||
className: string; | ||
}): JSX.Element; |
/// <reference types="react" /> | ||
export default function QueryMenu({ children, width }: { | ||
export default function QueryMenu({ children, width, className }: { | ||
children: JSX.Element; | ||
width: number; | ||
width: string; | ||
className: string; | ||
}): JSX.Element; |
/// <reference types="react" /> | ||
export default function VisualizationViewport({ children, }: { | ||
export default function VisualizationViewport({ children, className, }: { | ||
children: JSX.Element; | ||
className: string; | ||
}): JSX.Element; |
@@ -78,21 +78,25 @@ /// <reference types="react" /> | ||
declare function LayoutFooter({ children, height }: { | ||
declare function LayoutFooter({ children, height, className }: { | ||
children: JSX.Element; | ||
height: number; | ||
height: string; | ||
className: string; | ||
}): JSX.Element; | ||
declare function LayoutHeader({ children, height }: { | ||
declare function LayoutHeader({ children, height, className }: { | ||
children: JSX.Element; | ||
height: number; | ||
height: string; | ||
className: string; | ||
}): JSX.Element; | ||
declare function QueryMenu({ children, width }: { | ||
declare function QueryMenu({ children, width, className }: { | ||
children: JSX.Element; | ||
width: number; | ||
width: string; | ||
className: string; | ||
}): JSX.Element; | ||
declare function VisualizationViewport({ children, }: { | ||
declare function VisualizationViewport({ children, className, }: { | ||
children: JSX.Element; | ||
className: string; | ||
}): JSX.Element; | ||
export { Accordion, AccordionDetails, AccordionHeader, Checkbox, Form, FormLabel, Label, LayoutFooter, LayoutHeader, MenuItem, QueryMenu, Select, VisualizationViewport }; |
{ | ||
"name": "cfd-react-components", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "A re-usable React component library for projects at the Center for Design at Northeastern University", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is too big to display
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 not supported yet
570774
5220