{ "name": "BlogCardEleven", "description": "Two-column blog card list with title, author, description, tags, and media.", "constraints": { "textRules": { "title": { "required": true, "example": "Latest News", "minChars": 2, "maxChars": 50 }, "description": { "required": true, "example": "Stay updated with our latest announcements", "minChars": 5, "maxChars": 300 }, "tag": { "required": false, "example": "News", "minChars": 2, "maxChars": 30 } }, "itemRules": { "minItems": 1, "maxItems": 10, "recommendedItems": "2-4", "note": "Each blog requires id, title, author, description, tags array. Media uses discriminated union: either imageSrc (with optional imageAlt) OR videoSrc (with optional videoAriaLabel)." } }, "propsSchema": { "blogs": "Array<{ id: string, title: string, author: string, description: string, tags: string[], imageSrc?: string, imageAlt?: string, videoSrc?: string, videoAriaLabel?: string, onBlogClick?: () => void }> - Blog card items (requires imageSrc or videoSrc)", "animationType": "'none' | 'opacity' | 'slide-up' | 'scale-rotate' | 'blur-reveal' (required)", "title": "string (required)", "titleSegments?": "Array<{ type: 'text', content: string } | { type: 'image', src: string, alt?: string }> - For inline images in title", "description": "string (required)", "tag?": "string", "tagIcon?": "LucideIcon", "buttons?": "Array<{text: string, onClick?: () => void, href?: string}>", "textboxLayout": "'default' | 'split' | 'split-actions' | 'split-description' | 'inline-image' (required)", "useInvertedBackground": "'noInvert' | 'invertDefault' (required)", "ariaLabel?": "string (default: 'Blog section')", "className?": "string" }, "usageExample": "", "do": [ "Use for feature showcases", "Use for capability displays", "Use for blog listings", "Use for article grids", "Requires blogs[]", "Requires titleSegments?[]", "Requires buttons?[]" ], "dont": [ "Do not use more than 4 items", "Do not use more than 10 items" ], "editRules": { "textOnly": true, "layoutLocked": true, "styleLocked": true } }