Axinom Mosaic Libraries
    Preparing search index...

    Interface ModalProps

    interface ModalProps {
        className?: string;
        isShown: boolean;
        onBackDropClicked?: () => void;
        onClose?: () => void;
        onOpen?: () => void;
        paddingBottom?: string;
        paddingLeft?: string;
        paddingRight?: string;
        paddingTop?: string;
        width?: string;
        zIndex?: string;
    }
    Index

    Properties

    className?: string

    CSS Class name for additional styles

    isShown: boolean

    Whether the Modal is shown or not

    onBackDropClicked?: () => void

    Callback to emit when the back-drop has been clicked

    onClose?: () => void

    Callback to emit when the when the modal is unmounted

    onOpen?: () => void

    Callback to emit when the modal is mounted

    paddingBottom?: string

    Bottom padding (default: '20px')

    paddingLeft?: string

    Left padding (default: '20px')

    paddingRight?: string

    Right padding (default: '20px')

    paddingTop?: string

    Top padding (default: '70px')

    width?: string

    Modal width (default: undefined)

    zIndex?: string

    z-index value (default: '9999')