{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "gutenito-blocks-addon/countdown",
  "version": "0.0.1",
  "title": "Countdown",
  "category": "gutenito",
  "icon": "clock",
  "description": "Countdown timer block",
  "example": {
    "attributes": {
      "preview": true
    }
  },
  "attributes": {
    "targetDate": {
      "type": "string",
      "default": "2026-12-31T23:59:59"
    },
    "showDays": {
      "type": "boolean",
      "default": true
    },
    "showHours": {
      "type": "boolean",
      "default": true
    },
    "showMinutes": {
      "type": "boolean",
      "default": true
    },
    "showSeconds": {
      "type": "boolean",
      "default": true
    },
    "daysLabel": {
      "type": "string",
      "default": "Days"
    },
    "hoursLabel": {
      "type": "string",
      "default": "Hours"
    },
    "minutesLabel": {
      "type": "string",
      "default": "Minutes"
    },
    "secondsLabel": {
      "type": "string",
      "default": "Seconds"
    },
    "numberColor": {
      "type": "string"
    },
    "labelColor": {
      "type": "string"
    },
    "backgroundColor": {
      "type": "string"
    },
    "numberFontSize": {
      "type": "string",
      "default": "48px"
    },
    "labelFontSize": {
      "type": "string",
      "default": "14px"
    },
    "alignmentDesktop": {
      "type": "string",
      "default": "center"
    },
    "alignmentTablet": {
      "type": "string"
    },
    "alignmentMobile": {
      "type": "string"
    }
  },
  "supports": {
    "html": false
  },
  "textdomain": "gutenito-blocks-addon",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}