{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "modern-fields/range",
  "version": "1.0",
  "title": "Range",
  "category": "mf-select-fields",
  "description": "A range input field.",
  "attributes": {
    "defaultValue": {
      "type": "number",
      "default": 0
    },
    "min": {
      "type": "number"
    },
    "max": {
      "type": "number"
    },
    "step": {
      "type": "number",
      "default": 1
    },
    "hasMarks": {
      "type": "boolean",
      "default": false
    }
  },
  "example": {
    "attributes": {
      "label": "Range",
      "defaultValue": 3,
      "min": 0,
      "max": 4,
      "step": 1,
      "hasMarks": true,
      "description": "A range input field."
    },
    "viewportWidth": 300
  },
  "textdomain": "modern-fields",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}