{
  "$schema": "../../schemas/component-contract.schema.json",
  "name": "steps",
  "category": "navigation",
  "status": "stable",
  "kind": "custom-element",
  "tagName": "blora-steps",
  "since": "2.0.0",
  "requiresJavaScript": true,
  "formAssociated": false,
  "attributes": {
    "current": {
      "type": "number",
      "default": 0
    },
    "clickable": {
      "type": "boolean",
      "default": true
    }
  },
  "properties": {
    "current": {
      "type": "number"
    }
  },
  "methods": {
    "setCurrent": {
      "signature": "(index: number) => void"
    }
  },
  "events": {
    "blora-steps-change": {
      "detail": "{ index: number }",
      "bubbles": true,
      "composed": false
    }
  },
  "classes": {
    "blora-steps": "Root container.",
    "blora-step": "Single step item.",
    "blora-step__head": "Icon wrapper.",
    "blora-step__icon": "Step number/icon circle.",
    "blora-step__line": "Connector line between steps.",
    "blora-step__title": "Step title.",
    "blora-step__desc": "Step description."
  },
  "slots": {
    "default": "Declarative <blora-step title description icon state> definitions; consumed into the official steps tree."
  },
  "parts": [],
  "cssProperties": [],
  "accessibilityPattern": "navigation"
}
