{ "name": "PricingCardEight", "description": "Pricing card with nested card layout featuring badge, price, buttons in secondary-button container, and feature list below.", "constraints": { "textRules": { "title": { "required": true, "example": "Choose Your Plan", "minChars": 2, "maxChars": 50 }, "description": { "required": true, "example": "Select the perfect plan for your needs", "minChars": 10, "maxChars": 200 }, "tag": { "required": false, "example": "Pricing", "minChars": 2, "maxChars": 30 } }, "planRules": { "minPlans": 1, "maxPlans": 6, "structure": { "id": "string - Unique identifier (required)", "badge": "string - Badge text, e.g., 'Most Popular' (required)", "badgeIcon": "LucideIcon - Optional icon for badge", "price": "string - Price display, e.g., '$29/mo' (required)", "subtitle": "string - Subtitle below price, e.g., 'Perfect for small teams' (required)", "buttons": "Array<{text: string, onClick?: () => void, href?: string}> - Action buttons, max 2 (required)", "features": "string[] - List of features included (required)" }, "note": "Each plan displays in a nested card layout with secondary-button styling for the top section." }, "buttonRules": { "maxButtons": 2, "structure": { "text": "string - Button label (required)", "href": "string - Link destination (optional)", "onClick": "() => void - Click handler (optional)", "props": "Partial - Additional button props (optional)" }, "note": "Buttons render full-width inside secondary-button container. Button variant controlled by ThemeProvider." } }, "propsSchema": { "plans": "Array<{ id: string, badge: string, badgeIcon?: LucideIcon, price: string, subtitle: string, buttons: Array<{text: string, onClick?: () => void, href?: string}>, features: string[] }>", "carouselMode?": "'auto' | 'buttons' (default: 'buttons')", "uniformGridCustomHeightClasses?": "string", "animationType": "'none' | 'opacity' | 'slide-up' | 'scale-rotate' | 'blur-reveal'", "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'", "useInvertedBackground": "'noInvert' | 'invertDefault'", "ariaLabel?": "string (default: 'Pricing section')", "className?": "string" }, "usageExample": "", "do": [ "Use for feature showcases", "Use for capability displays", "Use for pricing pages", "Use for subscription tiers", "Requires plans[]", "Requires titleSegments?[]", "Requires buttons?[]" ], "dont": [ "Do not use more than 4 items" ], "editRules": { "textOnly": true, "layoutLocked": true, "styleLocked": true } }