@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.
- package/dist/feature-accordion-image.cjs +101 -27
- package/dist/feature-accordion-image.js +101 -27
- package/dist/feature-animated-carousel.cjs +801 -293
- package/dist/feature-animated-carousel.d.cts +25 -1
- package/dist/feature-animated-carousel.d.ts +25 -1
- package/dist/feature-animated-carousel.js +799 -291
- package/dist/feature-card-grid-linked.cjs +1 -1
- package/dist/feature-card-grid-linked.js +1 -1
- package/dist/feature-carousel-progress.cjs +23 -10
- package/dist/feature-carousel-progress.js +23 -10
- package/dist/feature-checklist-image.cjs +1 -1
- package/dist/feature-checklist-image.js +1 -1
- package/dist/feature-icon-grid-muted.cjs +521 -15
- package/dist/feature-icon-grid-muted.d.cts +5 -1
- package/dist/feature-icon-grid-muted.d.ts +5 -1
- package/dist/feature-icon-grid-muted.js +521 -15
- package/dist/feature-image-cards-three-column.cjs +146 -75
- package/dist/feature-image-cards-three-column.d.cts +5 -1
- package/dist/feature-image-cards-three-column.d.ts +5 -1
- package/dist/feature-image-cards-three-column.js +146 -75
- package/dist/feature-numbered-cards.cjs +1 -1
- package/dist/feature-numbered-cards.js +1 -1
- package/dist/feature-stats-highlight.cjs +25 -39
- package/dist/feature-stats-highlight.js +25 -39
- package/dist/registry.cjs +756 -413
- package/dist/registry.js +756 -413
- package/package.json +1 -1
|
@@ -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,
|
|
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,
|
|
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 };
|