apphouse
Version:
Component library for React that uses observable state management and theme-able components.
83 lines (82 loc) • 1.73 kB
TypeScript
/// <reference types="react" />
export interface PopupType {
/**
* Any other data that you might want to pass to the popup
*/
data: any;
/**
* The id of the Popup UI Element
*/
uiid: string;
/**
* The index of the popup in the stack
*/
index: number;
/**
* Whether the popup is active or not
*/
active: boolean;
/**
* The title of the popup
*/
title?: string;
/**
* Unique id of the popup
*/
id: string;
/**
* The popup component to render
*/
popup?: JSX.Element;
/**
* The function to call when the popup is closed
* @optional
*/
onClose?: () => void;
}
/**
* A Popup is a model for the popup component
* This model allows you to show a popup
* from anywhere in the app simply calling openPopup() from the
* app in the store
*/
export declare class Popup {
/**
* Any other data that you might want to pass to the popup
*/
data: any;
/**
* The id of the Popup UI Element
* it must be unique to the popup
*/
uiid: string;
/**
* The index of the popup in the stack
*/
index: number;
/**
* Whether the popup is active or not
*/
active: boolean;
/**
* The title of the popup
*/
title?: string;
/**
* Unique id of the popup
*/
id: string;
/**
* The popup component to render
*/
popup?: JSX.Element;
/**
* The function to call when the popup is closed
* @optional
*/
onClose?: () => void;
constructor(props: PopupType);
setActive: () => void;
setInactive: () => void;
setPopup: (popup: JSX.Element) => void;
}