import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of'; import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; import _createClass from 'babel-runtime/helpers/createClass'; import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn'; import _inherits from 'babel-runtime/helpers/inherits'; /* Copyright 2013-2015 ASIAL CORPORATION Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import onsElements from '../../ons/elements'; import util from '../../ons/util'; import autoStyle from '../../ons/autostyle'; import ModifierUtil from '../../ons/internal/modifier-util'; import AnimatorFactory from '../../ons/internal/animator-factory'; import { AlertDialogAnimator, IOSAlertDialogAnimator, AndroidAlertDialogAnimator } from './animator'; import platform from '../../ons/platform'; import BaseDialogElement from '../base/base-dialog'; import contentReady from '../../ons/content-ready'; var scheme = { '.alert-dialog': 'alert-dialog--*', '.alert-dialog-container': 'alert-dialog-container--*', '.alert-dialog-title': 'alert-dialog-title--*', '.alert-dialog-content': 'alert-dialog-content--*', '.alert-dialog-footer': 'alert-dialog-footer--*', '.alert-dialog-footer--rowfooter': 'alert-dialog-footer--rowfooter--*', '.alert-dialog-button--rowfooter': 'alert-dialog-button--rowfooter--*', '.alert-dialog-button--primal': 'alert-dialog-button--primal--*', '.alert-dialog-button': 'alert-dialog-button--*', 'ons-alert-dialog-button': 'alert-dialog-button--*', '.alert-dialog-mask': 'alert-dialog-mask--*', '.text-input': 'text-input--*' }; var _animatorDict = { 'none': AlertDialogAnimator, 'default': function _default() { return platform.isAndroid() ? AndroidAlertDialogAnimator : IOSAlertDialogAnimator; }, 'fade': function fade() { return platform.isAndroid() ? AndroidAlertDialogAnimator : IOSAlertDialogAnimator; } }; /** * @element ons-alert-dialog * @category dialog * @description * [en] * Alert dialog that is displayed on top of the current screen. Useful for displaying questions, warnings or error messages to the user. The title, content and buttons can be easily customized and it will automatically switch style based on the platform. * * To use the element it can either be attached directly to the `` element or dynamically created from a template using the `ons.createAlertDialog(template)` utility function and the `