a zip code crypto-currency system good for red ONLY

list-header.js 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. var __extends = (this && this.__extends) || (function () {
  2. var extendStatics = Object.setPrototypeOf ||
  3. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  4. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  5. return function (d, b) {
  6. extendStatics(d, b);
  7. function __() { this.constructor = d; }
  8. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  9. };
  10. })();
  11. import { Attribute, Directive, ElementRef, Renderer } from '@angular/core';
  12. import { Config } from '../../config/config';
  13. import { Ion } from '../ion';
  14. /**
  15. * @hidden
  16. */
  17. var ListHeader = (function (_super) {
  18. __extends(ListHeader, _super);
  19. function ListHeader(config, renderer, elementRef, _id) {
  20. var _this = _super.call(this, config, elementRef, renderer, 'list-header') || this;
  21. _this._id = _id;
  22. return _this;
  23. }
  24. Object.defineProperty(ListHeader.prototype, "id", {
  25. get: function () {
  26. return this._id;
  27. },
  28. set: function (val) {
  29. this._id = val;
  30. this.setElementAttribute('id', val);
  31. },
  32. enumerable: true,
  33. configurable: true
  34. });
  35. ListHeader.decorators = [
  36. { type: Directive, args: [{
  37. selector: 'ion-list-header'
  38. },] },
  39. ];
  40. /** @nocollapse */
  41. ListHeader.ctorParameters = function () { return [
  42. { type: Config, },
  43. { type: Renderer, },
  44. { type: ElementRef, },
  45. { type: undefined, decorators: [{ type: Attribute, args: ['id',] },] },
  46. ]; };
  47. return ListHeader;
  48. }(Ion));
  49. export { ListHeader };
  50. //# sourceMappingURL=list-header.js.map