@opensite/ui 1.2.4 → 1.2.5

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.
@@ -31,8 +31,32 @@ interface FeatureAnimatedCarouselItem {
31
31
  * Additional CSS classes for the item
32
32
  */
33
33
  className?: string;
34
+ /**
35
+ * Optional href for item
36
+ */
37
+ href?: string;
34
38
  }
35
39
  interface FeatureAnimatedCarouselProps {
40
+ /**
41
+ * Main heading content
42
+ */
43
+ title?: React.ReactNode;
44
+ /**
45
+ * Supporting description content
46
+ */
47
+ description?: React.ReactNode;
48
+ /**
49
+ * Additional CSS classes for the title
50
+ */
51
+ titleClassName?: string;
52
+ /**
53
+ * Additional CSS classes for the description
54
+ */
55
+ descriptionClassName?: string;
56
+ /**
57
+ * Additional CSS classes for the header
58
+ */
59
+ headerClassName?: string;
36
60
  /**
37
61
  * Array of feature items to display
38
62
  */
@@ -99,6 +123,6 @@ interface FeatureAnimatedCarouselProps {
99
123
  * />
100
124
  * ```
101
125
  */
102
- declare function FeatureAnimatedCarousel({ features, className, optixFlowConfig, background, spacing, pattern, patternOpacity, patternClassName, }: FeatureAnimatedCarouselProps): react_jsx_runtime.JSX.Element;
126
+ declare function FeatureAnimatedCarousel({ title, description, titleClassName, descriptionClassName, features, className, optixFlowConfig, background, pattern, patternOpacity, patternClassName, headerClassName, spacing, containerClassName, }: FeatureAnimatedCarouselProps): react_jsx_runtime.JSX.Element;
103
127
 
104
128
  export { FeatureAnimatedCarousel, type FeatureAnimatedCarouselItem, type FeatureAnimatedCarouselProps };
@@ -31,8 +31,32 @@ interface FeatureAnimatedCarouselItem {
31
31
  * Additional CSS classes for the item
32
32
  */
33
33
  className?: string;
34
+ /**
35
+ * Optional href for item
36
+ */
37
+ href?: string;
34
38
  }
35
39
  interface FeatureAnimatedCarouselProps {
40
+ /**
41
+ * Main heading content
42
+ */
43
+ title?: React.ReactNode;
44
+ /**
45
+ * Supporting description content
46
+ */
47
+ description?: React.ReactNode;
48
+ /**
49
+ * Additional CSS classes for the title
50
+ */
51
+ titleClassName?: string;
52
+ /**
53
+ * Additional CSS classes for the description
54
+ */
55
+ descriptionClassName?: string;
56
+ /**
57
+ * Additional CSS classes for the header
58
+ */
59
+ headerClassName?: string;
36
60
  /**
37
61
  * Array of feature items to display
38
62
  */
@@ -99,6 +123,6 @@ interface FeatureAnimatedCarouselProps {
99
123
  * />
100
124
  * ```
101
125
  */
102
- declare function FeatureAnimatedCarousel({ features, className, optixFlowConfig, background, spacing, pattern, patternOpacity, patternClassName, }: FeatureAnimatedCarouselProps): react_jsx_runtime.JSX.Element;
126
+ declare function FeatureAnimatedCarousel({ title, description, titleClassName, descriptionClassName, features, className, optixFlowConfig, background, pattern, patternOpacity, patternClassName, headerClassName, spacing, containerClassName, }: FeatureAnimatedCarouselProps): react_jsx_runtime.JSX.Element;
103
127
 
104
128
  export { FeatureAnimatedCarousel, type FeatureAnimatedCarouselItem, type FeatureAnimatedCarouselProps };