carbon-custom-elements
Version:
A Carbon Design System variant that's as easy to use as native HTML elements, with no framework tax, no framework silo.
38 lines (33 loc) • 915 B
TypeScript
/**
* @license
*
* Copyright IBM Corp. 2019, 2020
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import { Component } from 'react';
interface ComponentProps {
/**
* The additional CSS class names for the container <div> of the element.
*/
containerClass?: string;
/**
* `true` if the modal should be open.
*/
open?: boolean;
/**
* Modal size.
*/
size?: string;
}
/**
* Modal.
* @element bx-modal
* @fires bx-modal-beingclosed
* The custom event fired before this modal is being closed upon a user gesture.
* Cancellation of this event stops the user-initiated action of closing this modal.
* @fires bx-modal-closed - The custom event fired after this modal is closed upon a user gesture.
*/
declare class BXModal extends Component<ComponentProps> {}
export default BXModal;