{
	"$schema": "https://schemas.wp.org/trunk/block.json",
	"apiVersion": 3,
	"name": "stalepilot/countdown",
	"title": "Countdown",
	"category": "widgets",
	"icon": "clock",
	"description": "Display a countdown timer or static date for the content expiry.",
	"textdomain": "stalepilot",
	"usesContext": [ "postId", "postType" ],
	"attributes": {
		"displayMode": {
			"type": "string",
			"default": "countdown"
		},
		"dateFormat": {
			"type": "string",
			"default": "F j, Y g:i a"
		},
		"prefixText": {
			"type": "string",
			"default": ""
		},
		"suffixText": {
			"type": "string",
			"default": ""
		},
		"expiredMessage": {
			"type": "string",
			"default": ""
		},
		"countdownFormat": {
			"type": "string",
			"default": "compact"
		},
		"warningThresholdValue": {
			"type": "number",
			"default": 2
		},
		"warningThresholdUnit": {
			"type": "string",
			"default": "days"
		},
		"warningColor": {
			"type": "string",
			"default": ""
		},
		"urgentThresholdValue": {
			"type": "number",
			"default": 12
		},
		"urgentThresholdUnit": {
			"type": "string",
			"default": "hours"
		},
		"urgentColor": {
			"type": "string",
			"default": ""
		}
	},
	"supports": {
		"color": {
			"text": true,
			"background": false
		},
		"spacing": {
			"margin": [ "horizontal", "vertical" ],
			"padding": [ "horizontal", "vertical" ]
		},
		"typography": {
			"fontSize": true,
			"lineHeight": true,
			"__experimentalFontFamily": true,
			"__experimentalFontWeight": true,
			"__experimentalFontStyle": true,
			"__experimentalTextTransform": true,
			"__experimentalDefaultControls": {
				"fontSize": true
			}
		}
	},
	"editorScript": "file:./index.js",
	"viewScript": "file:./view.js",
	"style": "file:./index.css"
}
