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 __());
};
})();
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports", "@angular/core", "../../config/config", "../ion"], factory);
}
})(function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var core_1 = require("@angular/core");
var config_1 = require("../../config/config");
var ion_1 = require("../ion");
/**
* @name Chip
* @module ionic
* @description
* Chips represent complex entities in small blocks, such as a contact.
*
*
* @usage
*
* ```html
*
* Default
*
*
*
* Secondary Label
*
*
*
* Secondary w/ Dark label
*
*
*
* Danger
*
*
*
*
* Default
*
*
*
*
* Default
*
*
*
*
*
*
* Default
*
* ```
*
*
* @advanced
*
* ```html
*
* Default
*
*
*
*
*
* With Icon
*
*
*
*
*
*
*
* With Avatar
*
*
* ```
*
* ```ts
* @Component({
* templateUrl: 'main.html'
* })
* class E2EPage {
* delete(chip: Element) {
* chip.remove();
* }
* }
* ```
*
* @demo /docs/demos/src/chip/
**/
var Chip = (function (_super) {
__extends(Chip, _super);
function Chip(config, elementRef, renderer) {
return _super.call(this, config, elementRef, renderer, 'chip') || this;
}
Chip.decorators = [
{ type: core_1.Directive, args: [{
selector: 'ion-chip'
},] },
];
/** @nocollapse */
Chip.ctorParameters = function () { return [
{ type: config_1.Config, },
{ type: core_1.ElementRef, },
{ type: core_1.Renderer, },
]; };
return Chip;
}(ion_1.Ion));
exports.Chip = Chip;
});
//# sourceMappingURL=chip.js.map