var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { Attribute, Directive, ElementRef, Input, Renderer } from '@angular/core';
import { Config } from '../../config/config';
import { Ion } from '../ion';
/**
* @name Label
* @description
* Labels are placed inside of an `ion-item` element and can be used
* to describe an `ion-input`, `ion-toggle`, `ion-checkbox`, and more.
*
* @property [fixed] - A persistent label that sits next the input.
* @property [floating] - A label that will float above the input if the input is empty or loses focus.
* @property [stacked] - A stacked label will always appear on top of the input.
*
* @usage
* ```html
*
* Username
*
*
*
*
* Website
*
*
*
*
* Email
*
*
*
*
* Phone
*
*
*
*
* Toggle
*
*
*
*
* Checkbox
*
*
* ```
*
* @demo /docs/demos/src/label/
* @see {@link ../../../../components#inputs Input Component Docs}
* @see {@link ../../input/Input Input API Docs}
*
*/
var Label = (function (_super) {
__extends(Label, _super);
function Label(config, elementRef, renderer, isFloating, isStacked, isFixed, isInset) {
var _this = _super.call(this, config, elementRef, renderer, 'label') || this;
_this.type = (isFloating === '' ? 'floating' : (isStacked === '' ? 'stacked' : (isFixed === '' ? 'fixed' : (isInset === '' ? 'inset' : null))));
return _this;
}
Object.defineProperty(Label.prototype, "id", {
/**
* @hidden
*/
get: function () {
return this._id;
},
set: function (val) {
this._id = val;
if (val) {
this.setElementAttribute('id', val);
}
},
enumerable: true,
configurable: true
});
Object.defineProperty(Label.prototype, "text", {
/**
* @hidden
*/
get: function () {
return this.getNativeElement().textContent || '';
},
enumerable: true,
configurable: true
});
Label.decorators = [
{ type: Directive, args: [{
selector: 'ion-label'
},] },
];
/** @nocollapse */
Label.ctorParameters = function () { return [
{ type: Config, },
{ type: ElementRef, },
{ type: Renderer, },
{ type: undefined, decorators: [{ type: Attribute, args: ['floating',] },] },
{ type: undefined, decorators: [{ type: Attribute, args: ['stacked',] },] },
{ type: undefined, decorators: [{ type: Attribute, args: ['fixed',] },] },
{ type: undefined, decorators: [{ type: Attribute, args: ['inset',] },] },
]; };
Label.propDecorators = {
'id': [{ type: Input },],
};
return Label;
}(Ion));
export { Label };
//# sourceMappingURL=label.js.map