{
  "$schema": "https://json.schemastore.org/web-types",
  "name": "@vaadin/progress-bar",
  "version": "25.0.0-rc1",
  "description-markup": "markdown",
  "contributions": {
    "html": {
      "elements": [
        {
          "name": "vaadin-progress-bar",
          "description": "`<vaadin-progress-bar>` is a Web Component for progress bars.\n\n```html\n<vaadin-progress-bar min=\"0\" max=\"1\" value=\"0.5\">\n</vaadin-progress-bar>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n----------------|----------------\n`bar` | Progress-bar's background\n`value` | Progress-bar's foreground\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.\n\nThe following custom properties are available:\n\nCustom property | Description | Default\n----------------|-------------|-------------\n`--vaadin-progress-value` | current progress value (between 0 and 1) | 0\n\nThe following state attributes are available for styling:\n\nAttribute       | Description\n----------------|-------------------------------------\n`indeterminate` | Set to an indeterminate progress bar",
          "attributes": [
            {
              "name": "value",
              "description": "Current progress value.",
              "value": {
                "type": [
                  "number",
                  "null",
                  "undefined"
                ]
              }
            },
            {
              "name": "min",
              "description": "Minimum bound of the progress bar.",
              "value": {
                "type": [
                  "number"
                ]
              }
            },
            {
              "name": "max",
              "description": "Maximum bound of the progress bar.",
              "value": {
                "type": [
                  "number"
                ]
              }
            },
            {
              "name": "indeterminate",
              "description": "Indeterminate state of the progress bar.\nThis property takes precedence over other state properties (min, max, value).",
              "value": {
                "type": [
                  "boolean"
                ]
              }
            },
            {
              "name": "theme",
              "description": "The theme variants to apply to the component.",
              "value": {
                "type": [
                  "string",
                  "null",
                  "undefined"
                ]
              }
            }
          ],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "Current progress value.",
                "value": {
                  "type": [
                    "number",
                    "null",
                    "undefined"
                  ]
                }
              },
              {
                "name": "min",
                "description": "Minimum bound of the progress bar.",
                "value": {
                  "type": [
                    "number"
                  ]
                }
              },
              {
                "name": "max",
                "description": "Maximum bound of the progress bar.",
                "value": {
                  "type": [
                    "number"
                  ]
                }
              },
              {
                "name": "indeterminate",
                "description": "Indeterminate state of the progress bar.\nThis property takes precedence over other state properties (min, max, value).",
                "value": {
                  "type": [
                    "boolean"
                  ]
                }
              }
            ],
            "events": []
          }
        }
      ]
    }
  }
}