{ "name": "FeatureCardSix", "description": "Timeline-based feature section with scroll-triggered stacking animations and numbered step cards.", "constraints": { "textRules": { "title": { "required": true, "example": "Our Process", "minChars": 2, "maxChars": 35 }, "description": { "required": true, "example": "Discover how we bring ideas to life", "minChars": 5, "maxChars": 250 }, "tag": { "required": false, "example": "Process", "minChars": 2, "maxChars": 30 } }, "featureCardRules": { "id": { "required": true, "example": "1", "minChars": 1, "maxChars": 3, "note": "Step number displayed in circular badge" }, "title": { "required": true, "example": "Research & Planning", "minChars": 2, "maxChars": 50 }, "description": { "required": true, "example": "Understanding user needs, market trends, and project requirements", "minChars": 10, "maxChars": 300 } }, "mediaRules": { "imageSrc": { "required": false, "example": "/step1.jpg", "note": "Either imageSrc or videoSrc required per card" }, "videoSrc": { "required": false, "example": "/step1.mp4", "note": "Either imageSrc or videoSrc required per card" }, "imageAlt": { "required": false, "example": "Research phase illustration", "note": "Falls back to feature title if not provided" }, "videoAriaLabel": { "required": false, "example": "Research phase video", "note": "Falls back to feature title if not provided" } } }, "propsSchema": { "features": "Array<{ id: number, title: string, description: string } & ({ imageSrc: string, imageAlt?: string } | { videoSrc: string, videoAriaLabel?: 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)", "useInvertedBackground": "'noInvert' | 'invertDefault'", "ariaLabel?": "string (default: 'Feature section')", "className?": "string" }, "usageExample": "", "do": [ "Use for process flows", "Use for roadmaps", "Use for step-by-step explanation", "Use for feature showcases", "Use for capability displays", "Requires features[]", "Requires titleSegments?[]", "Requires buttons?[]" ], "dont": [ "Do not use non-sequential content", "Do not use single item" ], "editRules": { "textOnly": true, "layoutLocked": true, "styleLocked": true } }