/** * @class Ext.ActionSheet * @extend Ext.Sheet * @alias widget.actionsheet * * ActionSheet is a `Sheet` that is docked at the bottom of the screen by default. * * @example packages=[reactor] * import React, { Component } from 'react'; * import { Container, ActionSheet, Button } from '@extjs/ext-react'; * * export default class MyExample extends Component { * render() { * return ( * <Container> * <ActionSheet displayed> * <Button ui="decline" text="Delete Draft"/> * <Button text="Save Draft"/> * <Button text="Cancel"/> * </ActionSheet> * </Container> * ) * } * } * */ /** * @cfg {Boolean} [left=0] * @inheritdoc */ /** * @cfg {Boolean} [right=0] * @inheritdoc */ /** * @cfg {Boolean} [bottom=0] * @inheritdoc */ /** * @cfg {Number/String} [height='auto'] * @inheritdoc */ /** * @cfg {String} [defaultType=button] * @inheritdoc */