mirror of
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git
synced 2026-08-01 02:46:17 +00:00
Click any StyleCard to open a full-screen modal showing the style applied to 9 interactive phone UI controls (buttons, inputs, toggles, checkboxes, radios, cards, badges, slider, nav bar) inside an iPhone mockup frame. Co-authored-by: yongtang <jlinux@msn.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
668 B
TypeScript
28 lines
668 B
TypeScript
export interface StyleData {
|
|
no: number;
|
|
styleCategory: string;
|
|
type: string;
|
|
keywords: string;
|
|
primaryColors: string;
|
|
secondaryColors: string;
|
|
effectsAnimation: string;
|
|
bestFor: string;
|
|
doNotUseFor: string;
|
|
lightMode: string;
|
|
darkMode: string;
|
|
performance: string;
|
|
accessibility: string;
|
|
mobileFriendly: string;
|
|
conversionFocused: string;
|
|
frameworkCompatibility: string;
|
|
eraOrigin: string;
|
|
complexity: string;
|
|
aiPromptKeywords: string;
|
|
cssTechnicalKeywords: string;
|
|
implementationChecklist: string;
|
|
designSystemVariables: string;
|
|
// Computed fields
|
|
extractedColors: string[];
|
|
cssProperties: Record<string, string>;
|
|
}
|