UNPKG

quarkd

Version:

Mobile UI Components built on Web Components.

26 lines (25 loc) 729 B
import { QuarkElement } from "quarkc"; import "@quarkd/icons/lib/close-o"; import "../overlay"; declare type MarketDialogParams = { zindex?: () => void; url: string; size?: boolean; }; export interface Props extends MarketDialogParams { open: boolean; } export interface CustomEvent { close: () => void; } declare class QuarkMarketDialog extends QuarkElement { url: string; size: string; open: boolean; dRemove: boolean; shouldComponentUpdate(propName: string, oldValue: string, newValue: string): boolean; closeIconClick: () => void; render(): any; } export default function MarketDialog(params: MarketDialogParams & CustomEvent): QuarkMarketDialog; export { QuarkMarketDialog };