{ "name": "FeatureCardThree", "description": "Adaptive feature section with hover-reveal cards displaying numbered features with images.", "constraints": { "textRules": { "title": { "required": true, "example": "Our Features", "minChars": 2, "maxChars": 35 }, "description": { "required": true, "example": "Discover what makes us different", "minChars": 5, "maxChars": 250 }, "tag": { "required": false, "example": "Features", "minChars": 2, "maxChars": 30 } }, "featureCardRules": { "id": { "required": true, "example": "01", "minChars": 1, "maxChars": 3, "note": "Displayed in the flip badge" }, "title": { "required": true, "example": "Advanced Analytics", "minChars": 2, "maxChars": 35 }, "description": { "required": true, "example": "Get detailed insights into your business performance", "minChars": 10, "maxChars": 250 } }, "mediaRules": { "imageSrc": { "required": true, "example": "/feature.jpg", "note": "Supports external URLs with unoptimized prop" }, "imageAlt": { "required": false, "example": "Feature background", "note": "Empty string marks image as decorative (aria-hidden)" } } }, "propsSchema": { "features": "Array<{ id: string, title: string, description: string, imageSrc: string, imageAlt?: string }>", "carouselMode?": "'auto' | 'buttons' (default: 'buttons')", "gridVariant": "'uniform-all-items-equal' | 'bento-grid' | 'bento-grid-inverted' | 'two-columns-alternating-heights' | 'asymmetric-60-wide-40-narrow' | 'three-columns-all-equal-width' | 'four-items-2x2-equal-grid' | 'one-large-right-three-stacked-left' | 'items-top-row-full-width-bottom' | 'full-width-top-items-bottom-row' | 'one-large-left-three-stacked-right' | 'timeline' (required)", "animationType": "'none' | 'opacity' | 'slide-up' | 'scale-rotate' | 'blur-reveal' (required - controls GSAP scroll animations with stagger effect)", "uniformGridCustomHeightClasses?": "string", "title": "string", "titleSegments?": "Array<{ type: 'text', content: string } | { type: 'image', src: string, alt?: string }> - For inline images in title", "description": "string", "tag?": "string", "tagIcon?": "LucideIcon", "buttons?": "Array<{text: string, onClick?: () => void, href?: string}>", "textboxLayout": "'default' | 'split' | 'split-actions' | 'split-description' | 'inline-image' (required - 'inline-image' uses titleSegments for rich text with images)", "ariaLabel?": "string (default: 'Feature section')", "className?": "string", "useInvertedBackground": "'noInvert' | 'invertDefault'" }, "usageExample": "", "do": [ "Use for feature showcases", "Use for capability displays", "Requires features[]", "Requires titleSegments?[]", "Requires buttons?[]" ], "dont": [], "editRules": { "textOnly": true, "layoutLocked": true, "styleLocked": true } }