[
  {
    "tags": [
      {
        "type": "component",
        "string": "navbar-section",
        "html": "<p>navbar-section</p>"
      },
      {
        "type": "param",
        "string": "{pseudo} left",
        "name": "left",
        "description": "",
        "types": [
          "pseudo"
        ],
        "typesDescription": "<a href=\"pseudo.html\">pseudo</a>",
        "optional": false,
        "nullable": false,
        "nonNullable": false,
        "variable": false,
        "html": "<p>{pseudo} left</p>"
      },
      {
        "type": "param",
        "string": "{pseudo} right",
        "name": "right",
        "description": "",
        "types": [
          "pseudo"
        ],
        "typesDescription": "<a href=\"pseudo.html\">pseudo</a>",
        "optional": false,
        "nullable": false,
        "nonNullable": false,
        "variable": false,
        "html": "<p>{pseudo} right</p>"
      },
      {
        "type": "param",
        "string": "{pseudo} center",
        "name": "center",
        "description": "",
        "types": [
          "pseudo"
        ],
        "typesDescription": "<a href=\"pseudo.html\">pseudo</a>",
        "optional": false,
        "nullable": false,
        "nonNullable": false,
        "variable": false,
        "html": "<p>{pseudo} center</p>"
      },
      {
        "type": "section.usage",
        "string": "",
        "html": ""
      },
      {
        "type": "usage.title",
        "string": "Usage",
        "html": "<p>Usage</p>"
      },
      {
        "type": "usage.description",
        "string": "A navbar-section is a slot that can be left, right or center.",
        "html": "<p>A navbar-section is a slot that can be left, right or center.</p>"
      },
      {
        "type": "usage.examples.Left",
        "string": "aire-navbar\n navbar-section(left)\n   navbar-item Left",
        "html": "<p>aire-navbar<br />\nnavbar-section(left)<br />\nnavbar-item Left</p>"
      },
      {
        "type": "usage.examples.Right",
        "string": "aire-navbar\n navbar-section(right)\n   navbar-item Center",
        "html": "<p>aire-navbar<br />\nnavbar-section(right)<br />\nnavbar-item Center</p>"
      },
      {
        "type": "usage.examples.Center",
        "string": "aire-navbar\n navbar-section(center)\n   navbar-item Center",
        "html": "<p>aire-navbar<br />\nnavbar-section(center)<br />\nnavbar-item Center</p>"
      },
      {
        "type": "usage.examples.Multiple",
        "string": "aire-navbar\n navbar-section(left)\n   navbar-item Left\n navbar-section(center)\n   navbar-item Center\n navbar-section(right)\n   navbar-item right",
        "html": "<p>aire-navbar<br />\nnavbar-section(left)<br />\nnavbar-item Left<br />\nnavbar-section(center)<br />\nnavbar-item Center<br />\nnavbar-section(right)<br />\nnavbar-item right</p>"
      }
    ],
    "description": {
      "full": "<p>The navbar-section aligns and organizes navbar items</p>",
      "summary": "<p>The navbar-section aligns and organizes navbar items</p>",
      "body": ""
    },
    "isPrivate": false,
    "isConstructor": false,
    "isClass": false,
    "isEvent": false,
    "ignore": false,
    "line": 5,
    "codeStart": 46,
    "code": "@inject(DOM.Element)\n@customElement('navbar-section')\nexport class AireNavbarSection {\n\n  constructor(private el:Element) {\n\n  }\n\n  attached() {\n    dom.decorate(this.el, \"left\", \"uk-navbar-left\");\n    dom.decorate(this.el, \"right\", \"uk-navbar-right\");\n    dom.decorate(this.el, \"center\", \"uk-navbar-center\");\n  }\n\n\n}",
    "ctx": false
  }
]