@moontra/moonui-pro 2.36.0 → 2.36.2

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.
package/dist/index.d.ts CHANGED
@@ -2699,7 +2699,7 @@ declare const SwipeableCard: React__default.ForwardRefExoticComponent<SwipeableC
2699
2699
  type MoonUISwipeableCardProProps = SwipeableCardProps;
2700
2700
 
2701
2701
  type TimelineEventType = 'success' | 'warning' | 'error' | 'info' | 'pending' | 'milestone' | 'custom';
2702
- type TimelineLayout = 'vertical' | 'vertical-left' | 'vertical-right' | 'horizontal' | 'alternating' | 'grouped';
2702
+ type TimelineLayout = 'vertical' | 'vertical-left' | 'vertical-right' | 'horizontal' | 'alternating' | 'centered' | 'grouped';
2703
2703
  type TimelineTheme = 'default' | 'minimal' | 'detailed' | 'compact';
2704
2704
  type TimelineAnimation = 'fade' | 'slide' | 'scale' | 'none';
2705
2705
  type TimelineGroupBy = 'none' | 'date' | 'week' | 'month' | 'year';
@@ -2791,6 +2791,14 @@ interface TimelineProps extends VariantProps<typeof timelineVariants> {
2791
2791
  parallaxEffect?: boolean;
2792
2792
  gradientConnectors?: boolean;
2793
2793
  animatedProgress?: boolean;
2794
+ nodeSize?: 'sm' | 'md' | 'lg' | 'xl';
2795
+ nodeStyle?: 'simple' | 'gradient' | 'glassmorphic' | 'animated';
2796
+ cardStyle?: 'minimal' | 'bordered' | 'elevated' | 'glassmorphic';
2797
+ connectorStyle?: 'line' | 'dots' | 'gradient' | 'animated';
2798
+ showPhaseNumbers?: boolean;
2799
+ pulseAnimation?: boolean;
2800
+ cardGradient?: boolean;
2801
+ enhancedMetadata?: boolean;
2794
2802
  ariaLabel?: string;
2795
2803
  keyboardNavigation?: boolean;
2796
2804
  }