@mikezimm/fps-core-v7
Version:
Library of reusable core interfaces, types and constants migrated from fps-library-v2
25 lines • 1.03 kB
TypeScript
/**
* 2024-09-07: Migrated to SAME FOLDER in fps-core-v7\src\components\molecules\FullPageBackGround\interfaces...
*/
export type IFullBackgroundMode = 'Auto' | 'Partial' | false;
export type IFullPageOverlayColor = 'Black' | 'White';
export declare const FullPageOverlayColors: IFullPageOverlayColor[];
export type IFPSFullPageImageFit = 'Original' | 'Layout2';
export declare const FullPageImageFitStrings: IFPSFullPageImageFit[];
export interface IFPSPageBGWPProps {
fullPageImage: string;
fullPageImageFilter: string;
fullPageScrollable: boolean;
defaultWhiteText: boolean;
whiteRefreshTip: string;
fullPageOverlayOpacity: number;
fullPageOverlayColor: IFullPageOverlayColor;
defaultWPBack: string;
defaultWPBordRad: boolean;
fullPageImageFit: IFPSFullPageImageFit;
_allowFullPageBG: IFullBackgroundMode;
_FPSId: string;
enableTabs: boolean;
}
export declare const changeFullBackground: string[];
//# sourceMappingURL=IFPSPageBGWPProps.d.ts.map