a zip code crypto-currency system good for red ONLY

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. (function (factory) {
  2. if (typeof module === "object" && typeof module.exports === "object") {
  3. var v = factory(require, exports);
  4. if (v !== undefined) module.exports = v;
  5. }
  6. else if (typeof define === "function" && define.amd) {
  7. define(["require", "exports", "@angular/core"], factory);
  8. }
  9. })(function (require, exports) {
  10. "use strict";
  11. Object.defineProperty(exports, "__esModule", { value: true });
  12. var core_1 = require("@angular/core");
  13. /**
  14. * @name Col
  15. * @module ionic
  16. * @description
  17. *
  18. * Columns are cellular components of the [grid](../Grid) system and go inside of a [row](../Row).
  19. * They will expand to fill their row. All content within a grid should go inside of a column.
  20. *
  21. * ## Column attributes
  22. *
  23. * By default, columns will stretch to fill the entire height of the row.
  24. * There are several attributes that can be added to a column to customize this behavior.
  25. *
  26. * | Property | Description |
  27. * |-----------------------|-------------------------------------------------------------------------------------------------------------|
  28. * | align-self-start | Adds `align-self: flex-start`. The column will be vertically aligned at the top. |
  29. * | align-self-center | Adds `align-self: center`. The column will be vertically aligned in the center. |
  30. * | align-self-end | Adds `align-self: flex-end`. The column will be vertically aligned at the bottom. |
  31. * | align-self-stretch | Adds `align-self: stretch`. The column will be stretched to take up the entire height of the row. |
  32. * | align-self-baseline | Adds `align-self: baseline`. The column will be vertically aligned at its baseline. |
  33. *
  34. *
  35. */
  36. var Col = (function () {
  37. function Col() {
  38. }
  39. Col.decorators = [
  40. { type: core_1.Directive, args: [{
  41. selector: 'ion-col, [ion-col]',
  42. host: {
  43. 'class': 'col'
  44. }
  45. },] },
  46. ];
  47. /** @nocollapse */
  48. Col.ctorParameters = function () { return []; };
  49. return Col;
  50. }());
  51. exports.Col = Col;
  52. });
  53. //# sourceMappingURL=col.js.map