{
	"$schema": "https://schemas.wp.org/trunk/block.json",
	"apiVersion": 3,
	"name": "kudos-block/kudos-block",
	"version": "1.0.0",
	"title": "KudosBlock – Testimonial Display",
	"category": "widgets",
	"icon": "format-quote",
	"description": "Display testimonials in grid or carousel layouts with star ratings, colors, and editor controls.",
	"keywords": [ "testimonial", "review", "social proof", "rating", "carousel", "kudos" ],
	"example": {
		"attributes": {
			"layout": "grid",
			"columns": 2,
			"showLocationLabels": true,
			"showRatings": true,
			"cardStyle": "card",
			"ratingColor": "#f5a623",
			"borderColor": "#e0e0e0",
			"cardBackgroundColor": "#ffffff",
			"textAlignment": "center",
			"testimonials": [
				{
					"name": "Sarah Ahmed",
					"text": "Absolutely wonderful service! They went above and beyond for our family event.",
					"location": "Dhaka",
					"rating": 5
				},
				{
					"name": "Rafiq Hasan",
					"text": "Professional, punctual, and very affordable. Highly recommended for local businesses.",
					"location": "Chittagong",
					"rating": 4
				}
			]
		}
	},
	"supports": {
		"html": false,
		"align": [ "wide", "full" ],
		"layout": false,
		"spacing": {
			"margin": true,
			"padding": true
		},
		"typography": {
			"fontSize": true
		}
	},
	"align": "wide",
	"attributes": {
		"layout": {
			"type": "string",
			"default": "grid",
			"enum": [ "grid", "carousel" ]
		},
		"columns": {
			"type": "number",
			"default": 2
		},
		"showLocationLabels": {
			"type": "boolean",
			"default": true
		},
		"showRatings": {
			"type": "boolean",
			"default": true
		},
		"cardStyle": {
			"type": "string",
			"default": "card",
			"enum": [ "card", "minimal" ]
		},
		"ratingColor": {
			"type": "string",
			"default": "#f5a623"
		},
		"borderColor": {
			"type": "string",
			"default": "#e0e0e0"
		},
		"cardBackgroundColor": {
			"type": "string",
			"default": "#ffffff"
		},
		"nameColor": {
			"type": "string",
			"default": "#222222"
		},
		"textColor": {
			"type": "string",
			"default": "#333333"
		},
		"subtitleColor": {
			"type": "string",
			"default": "#888888"
		},
		"textAlignment": {
			"type": "string",
			"default": "left",
			"enum": [ "left", "center", "right" ]
		},
		"cardSize": {
			"type": "string",
			"default": "medium",
			"enum": [ "small", "medium", "large" ]
		},
		"autoScroll": {
			"type": "boolean",
			"default": false
		},
		"autoScrollSpeed": {
			"type": "number",
			"default": 30
		},
		"autoScrollDirection": {
			"type": "string",
			"default": "rtl",
			"enum": [ "rtl", "ltr" ]
		},
		"testimonials": {
			"type": "array",
			"default": [],
			"items": {
				"type": "object"
			}
		}
	},
	"textdomain": "kudos-block",
	"editorScript": "file:./index.js",
	"editorStyle": "file:./index.css",
	"style": "file:./style-index.css",
	"viewScript": "file:./view.js"
}