a zip code crypto-currency system good for red ONLY

col.js 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import { Directive } from '@angular/core';
  2. /**
  3. * @name Col
  4. * @module ionic
  5. * @description
  6. *
  7. * Columns are cellular components of the [grid](../Grid) system and go inside of a [row](../Row).
  8. * They will expand to fill their row. All content within a grid should go inside of a column.
  9. *
  10. * ## Column attributes
  11. *
  12. * By default, columns will stretch to fill the entire height of the row.
  13. * There are several attributes that can be added to a column to customize this behavior.
  14. *
  15. * | Property | Description |
  16. * |-----------------------|-------------------------------------------------------------------------------------------------------------|
  17. * | align-self-start | Adds `align-self: flex-start`. The column will be vertically aligned at the top. |
  18. * | align-self-center | Adds `align-self: center`. The column will be vertically aligned in the center. |
  19. * | align-self-end | Adds `align-self: flex-end`. The column will be vertically aligned at the bottom. |
  20. * | align-self-stretch | Adds `align-self: stretch`. The column will be stretched to take up the entire height of the row. |
  21. * | align-self-baseline | Adds `align-self: baseline`. The column will be vertically aligned at its baseline. |
  22. *
  23. *
  24. */
  25. var Col = (function () {
  26. function Col() {
  27. }
  28. Col.decorators = [
  29. { type: Directive, args: [{
  30. selector: 'ion-col, [ion-col]',
  31. host: {
  32. 'class': 'col'
  33. }
  34. },] },
  35. ];
  36. /** @nocollapse */
  37. Col.ctorParameters = function () { return []; };
  38. return Col;
  39. }());
  40. export { Col };
  41. //# sourceMappingURL=col.js.map