123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
- import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
- import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
- import _inherits from 'babel-runtime/helpers/inherits';
-
-
- import onsElements from '../ons/elements';
- import BaseElement from './base/base-element';
-
-
-
-
-
- var RowElement = function (_BaseElement) {
- _inherits(RowElement, _BaseElement);
-
- function RowElement() {
- _classCallCheck(this, RowElement);
-
- return _possibleConstructorReturn(this, (RowElement.__proto__ || _Object$getPrototypeOf(RowElement)).apply(this, arguments));
- }
-
- return RowElement;
- }(BaseElement);
-
- export default RowElement;
-
-
- onsElements.Row = RowElement;
- customElements.define('ons-row', RowElement);
|