{
	"$schema": "https://schemas.wp.org/trunk/block.json",
	"apiVersion": 3,
	"version": "1.0.0",
	"name": "tailwind/html",
	"title": "Tailwind HTML Block",
	"category": "design",
	"icon": "editor-code",
	"description": "Flexible HTML block powered by Tailwind CSS utilities.",
	"keywords": [ "tailwind", "html", "layout" ],
	"textdomain": "advanced-animation",
	"attributes": {
		"tagName": {
			"type": "string",
			"default": "div",
			"description": "HTML element used for the block wrapper."
		},
		"className": {
			"type": "string",
			"default": "",
			"description": "Tailwind CSS classes applied to the block wrapper."
		},
		"content": {
			"type": "string",
			"default": "",
			"description": "Text or encoded HTML content rendered by the block."
		},
		"children": {
			"type": "string",
			"default": "blocks",
			"description": "Whether the block renders nested Gutenberg blocks."
		},
		"src": {
			"type": "string",
			"default": "",
			"description": "Optional source URL used by media-oriented markup."
		},
		"alt": {
			"type": "string",
			"default": "",
			"description": "Optional alternative text used by media-oriented markup."
		},
		"attrs": {
			"type": "object",
			"default": {},
			"description": "Additional HTML attributes rendered by the block."
		},
		"responsive": {
			"type": "object",
			"default": {
				"sm": "",
				"md": "",
				"lg": "",
				"xl": ""
			},
			"description": "Responsive Tailwind class values by breakpoint."
		},
		"design": {
			"type": "object",
			"default": {},
			"description": "Structured design-panel values used to derive classes."
		}
	},
	"supports": {
		"html": false
	}
}
