@raona/components
Version:
React components used at Raona to work with SPFx
14 lines (13 loc) • 519 B
TypeScript
import { RefObject } from "react";
/**
* Set the section of webparts to full width,
* @param carouselRef - ReactRef
*/
export declare function setFullWidth(carouselRef: RefObject<HTMLDivElement>): void;
/**
* Set the section of webparts to full width,
* @param carouselRef - ReactRef
* @param classToMatch - Class to search for
* @param className - Class to add
*/
export declare function setFullWidth_webpart(carouselRef: RefObject<HTMLDivElement>, classToMatch: string, className: string): void;