{
  "$schema": "../../schemas/component-contract.schema.json",
  "name": "search",
  "category": "data-input",
  "status": "beta",
  "kind": "custom-element",
  "tagName": "blora-search",
  "since": "2.0.0",
  "requiresJavaScript": true,
  "formAssociated": true,
  "attributes": {
    "value": {
      "type": "string",
      "default": ""
    },
    "placeholder": {
      "type": "string",
      "default": "搜索…"
    },
    "label": {
      "type": "string",
      "default": "搜索"
    },
    "name": {
      "type": "string"
    },
    "disabled": {
      "type": "boolean",
      "default": false
    },
    "required": {
      "type": "boolean",
      "default": false
    }
  },
  "properties": {
    "value": {
      "type": "string"
    }
  },
  "methods": {
    "focus": {
      "parameters": [],
      "returns": "void"
    }
  },
  "events": {
    "input": {
      "native": true,
      "bubbles": true,
      "composed": false
    }
  },
  "slots": {
    "default": "No authored internal DOM; the CE generates the official search tree."
  },
  "parts": [],
  "cssProperties": [],
  "accessibilityPattern": "searchbox"
}
