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