@mdxui/named 7.0.0 → 8.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,6 +28,8 @@ interface Feature {
28
28
  description: string;
29
29
  items: FeatureItem[];
30
30
  code: string;
31
+ /** Shiki language id; defaults to TypeScript (the persona DSL). */
32
+ language?: string;
31
33
  badge: string;
32
34
  }
33
35
  interface FeaturesProps {
@@ -121,7 +123,7 @@ interface NavigationProps {
121
123
  links?: NavLink[];
122
124
  ctaText?: string;
123
125
  ctaHref?: string;
124
- ctaVariant?: 'default' | 'secondary' | 'outline' | 'ghost' | 'link' | 'destructive';
126
+ ctaVariant?: 'default' | 'secondary' | 'outline' | 'ghost' | 'link' | 'accent';
125
127
  className?: string;
126
128
  maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl' | 'full';
127
129
  sticky?: boolean;